home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1998 October A / Pcwk10a98.iso / Lotus / NETOBJ / T2.Z / Forms-Handler.cgi / Forms-Handler.cgi.rsrc / TEXT_128_!.txt < prev    next >
Text File  |  1998-02-11  |  4KB  |  296 lines

  1. require "MAC_form.cfg";
  2.  
  3.  
  4.  
  5.  
  6. #The database separator token is -- 
  7.  
  8.  
  9.  
  10. $TOKEN ="    ,";
  11.  
  12. ###################
  13.  
  14. ###################
  15.  
  16. ###################
  17.  
  18.  
  19.  
  20. #This will allow error to pump directly to to client, instead of crashing the server.
  21.  
  22. select STDOUT;
  23.  
  24. print "Content-type: text/html\n\n";
  25.  
  26.  
  27.  
  28.  
  29.  
  30. #
  31.  
  32. # This reads in the information sent when the user pressed Submit
  33.  
  34. #
  35.  
  36. if ($ENV{'REQUEST_METHOD'} eq "GET") { $buffer = $ENV{'QUERY_STRING'}; }
  37.  
  38. else { read(STDIN, $buffer, $ENV{'CONTENT_LENGTH'}); }
  39.  
  40.  
  41.  
  42. #
  43.  
  44. # Now, using a little loop, we'll split up the data into name/value
  45.  
  46. # pairs, which makes them easier to work with. 
  47.  
  48. #
  49.  
  50. $buffer =~ s/([;<>\*\|`&\$!\#\(\)\[\]\{\}:'"])/\\$1/g; 
  51.  
  52. $buffer =~ tr/\n//d; 
  53.  
  54. $buffer = "$buffer ";
  55.  
  56.  
  57.  
  58. @pairs = split(/&/, $buffer);
  59.  
  60. foreach $pair (@pairs)
  61.  
  62. {
  63.  
  64.     ($name, $value) = split(/=/, $pair);
  65.  
  66.     $value =~ tr/+/ /;
  67.  
  68.     $value =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C", hex($1))/eg;
  69.  
  70.     chop($value);
  71.  
  72.     $FORM{$name} = $value;
  73.  
  74. }
  75.  
  76.  
  77.  
  78.  
  79.  
  80. # Once the name/value pairs have been created, you can work with
  81.  
  82. # them by referring to the variable names you set up in the 
  83.  
  84. # original HTML, using $FORM{"varname"}.
  85.  
  86.  
  87.  
  88. # First, we make sure that they actually gave an email address
  89.  
  90. #
  91.  
  92. #check for error -- REQUIRE on selective basis $FORM{'na'}
  93.  
  94.  
  95.  
  96. ¬completeinternal unless $FORM{'fields'} && $FORM{'filename'} && $FORM{'error'} && $FORM{'success'};
  97.  
  98.  
  99.  
  100. $STORAGEFILE = $FORM{'filename'};
  101.  
  102. $NUMBERARG = $FORM{'fields'};
  103.  
  104.  
  105.  
  106. $COUNTER = 1;
  107.  
  108.  
  109.  
  110.  
  111.  
  112. #### Auto #####
  113.  
  114. $ERRORRESPONSE=$FORM{'error'};
  115.  
  116. $SUCCESSRESPONSE=$FORM{'success'};
  117.  
  118. $STORAGE = $STORAGEDIR.$STORAGEFILE;
  119.  
  120. $ENV{'HTTP_REFERER'} =~ s/\/[^\/]*$/\//g; 
  121.  
  122.  
  123.  
  124. while($COUNTER <= $NUMBERARG){ 
  125.  
  126.    $CONFIG = $COUNTER.a;
  127.  
  128.    ¬complete if (($FORM{$COUNTER} eq '') && ($FORM{$CONFIG} eq "TRUE"));
  129.  
  130.    $COUNTER = $COUNTER + 1;
  131.  
  132. }
  133.  
  134.  
  135.  
  136. &makedat;
  137.  
  138. &success;
  139.  
  140. exit;
  141.  
  142.  
  143.  
  144.  
  145.  
  146. ######################################################################
  147.  
  148. ############################  Make .dat file    ######################
  149.  
  150. ######################################################################
  151.  
  152. sub makedat {
  153.  
  154.     open(NEW,">> $STORAGE") || die "can't open $STORAGE\n";
  155.  
  156.     select(NEW);
  157.  
  158.     $COUNTER = 1;
  159.  
  160.     print NEW "$FORM{$COUNTER}";
  161.  
  162.     $COUNTER = 2;
  163.  
  164.     while($COUNTER <= $NUMBERARG){ 
  165.  
  166.     print NEW "$TOKEN$FORM{$COUNTER}";
  167.  
  168.     $COUNTER = $COUNTER + 1;
  169.  
  170.     }
  171.  
  172.     print NEW "\n";
  173.  
  174.     close(NEW);
  175.  
  176. }
  177.  
  178. ###############################################################################
  179.  
  180. ############################  Complete/Success  ###############################
  181.  
  182. ###############################################################################
  183.  
  184. sub success{
  185.  
  186.     select(STDOUT);
  187.  
  188.     print "<html>";
  189.  
  190.     print "<head>";
  191.  
  192.     print "<meta http-equiv=\"Refresh\" content=\"0; URL=$SUCCESSRESPONSE\">";
  193.  
  194.     print "</head>";
  195.  
  196.     print "</html>";
  197.  
  198.  
  199.  
  200. }
  201.  
  202.  
  203.  
  204. ###############################################################################
  205.  
  206. ############################  Incomplete Error  ###############################
  207.  
  208. ###############################################################################
  209.  
  210. sub notcomplete {
  211.  
  212.    select(STDOUT);
  213.  
  214.    print "<html>";
  215.  
  216.    print "<head>";
  217.  
  218.    print "<meta http-equiv=\"Refresh\" content=\"0; URL=$ERRORRESPONSE\">";
  219.  
  220.    print "</head>";
  221.  
  222.    print "</html>";
  223.  
  224.     exit;
  225.  
  226.  
  227.  
  228.  
  229. ###############################################################################
  230.  
  231. ############################  Incomplete Error  ###############################
  232.  
  233. ###############################################################################
  234.  
  235. sub notcompleteinternal {
  236.  
  237.     select(STDOUT);
  238.  
  239.     print "<html>";
  240.  
  241.     print "<h3>This is a internal error (without configuration variable)</h3>";
  242.  
  243.     print "the following variable are escape out for perl script protection:";
  244.  
  245.     print "<UL>";
  246.  
  247.     print "\;<>\*\|\`\&\$\!\#()[]{}\:\'\"\/ (return character deleted)<br>";
  248.  
  249.     print "</UL>";
  250.  
  251.     print "or one of the following file is not declare in the field:";
  252.  
  253.     print "<UL>";
  254.  
  255.     print "filename (date file name)<br>";
  256.  
  257.     print "fields (# of field)<br>";
  258.  
  259.     print "success(success respond file) <br> "; 
  260.  
  261.     print "error(error respond file) <br>";
  262.  
  263.     print "</UL>";
  264.  
  265.     print "</html>";
  266.  
  267.     exit;
  268.  
  269.  
  270.  
  271.  
  272.  
  273.  
  274.  
  275.  
  276.  
  277.  
  278.  
  279.  
  280.  
  281.  
  282.  
  283.  
  284.  
  285.  
  286.  
  287.  
  288.  
  289.  
  290.  
  291.  
  292.  
  293.  
  294.