Index  Up  <<  >>  


Advanced Multi-level Order Pages

An unlimited number of order checking profiles can be defined with the OrderProfile directive, or by defining order profiles in scratch variables. This allows a multi-level ordering process, with checking for format and validity at every stage.

To custom-configure the error message, place it after the format check requirement.

Specifications take the form of an order page variable (like name or address), followed by an equals sign and one of five check types:

required
A non-blank value is required

mandatory
Must be non-blank, and must have been specified on this form, not a saved value from a previous form

phone
The field must look like a phone number, by a very loose specification allowing numbers from all countries

phone_us
Must have US phone number formatting, with area code

state
Must be a US state, including DC and Puerto Rico.

province
Must be a Canadian province or pre-1997 territory.

state_or_province
Must be a US state or Canadian province.

zip
Must have US postal code formatting, with optional ZIP+4. Also called by the alias us_postcode.

ca_postcode
Must have Canadian postal code formatting. Checks for a valid first letter.

postcode
Must have Canadian or US postal code formatting.

true
Field begins with y, 1, or t (Yes, 1, or True) - not case sensitive

false
Field begins with n, 0, or f (No, 0, or False) - not case sensitive

email
Rudimentary email address check, must have an '@' sign, a name, and a minimal domain

Also, there are pragmas that can be used to change behavior:

&amp;charge
Perform a real-time charge operation. If set to any value but ``custom'', it will use MiniVend's CyberCash routines. To set to something else, use the value ``custom ROUTINE''. The ROUTINE should be a GlobalSub which will cause the charge operation to occur -- if it returns non-blank, non-zero the profile will have succeeded. If it returns 0 or undef or blank, the profile will return failure.

&amp;credit_card
Checks the mv_credit_card_* variables for validity. If set to ``standard'', it will use Minivend's encrypt_standard_cc routines. This destroys the CGI value of mv_credit_card_number -- if you don't want that to happen (perhaps to save it for sending to CyberCash) then add the word keep on the end.

Example:

    # Checks credit card number and destroys number after encryption
    # The charge operation can never work
 
    &credit_card=standard
    &charge=custom authorizenet
  
    # Checks credit card number and keeps number after encryption
    # The charge operation can now work
 
    &credit_card=standard keep
    &charge=custom authorizenet

You can supply your own check routine with a GlobalSub:

    &credit_card=check_cc

The GlobalSub check_cc will be used to check and encrypt the credit card number, and its return value will be used to determine profile success.

&amp;fail
Sets the mv_failpage value.

    &fail=page4

If the submit process succeeds, the user will be sent to the page page4.

&amp;fatal
Set to '&fatal=yes' if an error should generate the error page.

&amp;final
Set to '&final=yes' if a successful check should cause the order to be placed.

&amp;return
Causes profile processing to terminate with either a success or failure depending on what follows. If it is non-blank and non-zero, the profile succeeds.

    # Success :)
    &return 1

    # Failure :\
    &return 0

Will ignore the &fatal pragma, but &final is still in effect if set.

&amp;set
Set a user session variable to a value, i.e. &set=mv_email [value email]. This will not cause failure if blank or zero.

&amp;setcheck
Set a user session variable to a value, i.e. &set=mv_email [value email]. This will cause failure if set to a blank or zero. It is usually placed at the end after a &fatal pragma would have caused the process to stop if there was an error -- can also be used to determine pass/fail based on a derived value, as it will cause failure if it evaluates to zero or a blank value.

&amp;success
Sets the mv_successpage value. Example:

    &success=page5

If the submit process succeeds, the user will be sent to the page page5.

As an added measure of control, the specification is evaluated for the special MiniVend tags to provide conditional setting of order parameters. With the [perl] [/perl] capability, quite complex checks can be done. Also, the name of the page to be displayed on an error can be set in the mv_failpage variable.

The following file specifies a simple check of formatted parameters:

 name=required You must give us your name.
 address=required Oops! No address.
 city=required
 state=required
 zip=required
 email=required
 phone_day=phone_us XXX-XXX-XXXX phone-number for US or Canada
 &fatal=yes
 email=email Email address missing the domain?
 &set=mv_email [value email]
 &set=mv_successpage ord/shipping

The profile above only performs the &set directives if all of the previous checks have passed -- the &fatal=yes will stop processing after the check of the email address if any of the previous checks failed.

If you want to place multiple order profiles in the same file, separate them with __END__, which must be on a line by itself.

User-defined check routines can be defined in a GlobalSub:

        GlobalSub <<EOF
        sub set_up_extra_check {
                BEGIN {
                        package Vend::Order;
                        sub _pt_postcode {
                                # $ref is to Vend::Session->{'values'} hash
                                # $var is the passed name of the variable
                                # $val is current value of checked variable
                                my($ref, $var, $val) = @_;
                                
                                if ($ref->{country} =~ /^(PT|portugal)$/i) {
                                        return $val =~ /^\d\d\d\d$/ ?  1 : 0;
                                }
                                else {
                                        return 1;
                                }
                        }
                }
        }
        EOF

Now you can specify in an order profile:

  postcode=pt_postcode

There must be an underscore preceding the routine name in this case. Very elaborate checks are possible, of course. If some user takes on the polyglot it would be appreciated if they contribute the routines.


Index  Up  <<  >>