/[mws]/trunk/httpd.pl
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /trunk/httpd.pl

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 5 by dpavlin, Wed May 5 10:26:27 2004 UTC revision 14 by dpavlin, Thu May 6 19:46:58 2004 UTC
# Line 8  use warnings; Line 8  use warnings;
8  use HTTP::Daemon;  use HTTP::Daemon;
9  use HTTP::Status;  use HTTP::Status;
10  use IO::String;  use IO::String;
11  use CGI 2.50 qw/:standard :cgi-lib/;  use CGI::Lite;
12    use Template;
13    use MWS;
14    
15    use Data::Dumper;
16    
17  my $d = HTTP::Daemon->new( Reuse => 1, LocalPort => 6969 ) || die;  my $d = HTTP::Daemon->new( Reuse => 1, LocalPort => 6969 ) || die;
18  print "Please contact me at: <URL:", $d->url, ">\n";  my $cgi = new CGI::Lite;
19    my $mws = MWS->new('global.conf');
20    my $tt = Template->new({
21            INCLUDE_PATH => $mws->{config}->val('global', 'templates'),
22            FILTERS => {
23                    'body5' => \&body5_filter,
24                    'subject_search' => \&subject_search_filter,
25            },
26    });
27    
28    print "Web server ready at: ", $d->url, "\n";
29    
30    
31  while ( my $c = $d->accept ) {  while ( my $c = $d->accept ) {
32          while ( my $r = $c->get_request ) {          while ( my $r = $c->get_request ) {
# Line 22  while ( my $c = $d->accept ) { Line 37  while ( my $c = $d->accept ) {
37                  $ENV{'SERVER_PROTOCOL'}   = $r->protocol;                  $ENV{'SERVER_PROTOCOL'}   = $r->protocol;
38                  $ENV{'CONTENT_TYPE'}      = $r->content_type;                  $ENV{'CONTENT_TYPE'}      = $r->content_type;
39    
40                  my $form_parameters;    # GET/POST storage.                  # this part is based on CGI::Lite
41    
42                    $cgi->close_all_files();
43                    $cgi->{web_data}       = {};
44                    $cgi->{ordered_keys}   = [];
45                    $cgi->{all_handles}    = [];
46                    $cgi->{error_status}   = 0;
47                    $cgi->{error_message}  = undef;
48    
                 # is this a happy GET?  
49                  if ( $r->method eq 'GET' || $r->uri =~ /\?/ ) {                  if ( $r->method eq 'GET' || $r->uri =~ /\?/ ) {
50                          $form_parameters = $r->uri;                          my $query_string = $r->uri;
51                          $form_parameters =~ s/[^\?]+\?(.*)/$1/;                          $query_string =~ s/[^\?]+\?(.*)/$1/;
52                          $CGI::Q = new CGI($form_parameters);                          $cgi->_decode_url_encoded_data (\$query_string, 'form');
53    
54                    } elsif ( $r->method eq 'POST' ) {
55    
56                            if ($r->content_type eq 'application/x-www-form-urlencoded') {
57    #                               local $^W = 0;
58                                    $cgi->_decode_url_encoded_data (\$r->content, 'form');
59                            } elsif ($r->content_type =~ /multipart\/form-data/) {
60                                    my ($boundary) = $r->content_type =~ /boundary=(\S+)$/;
61                                    $cgi->_parse_multipart_data ($r->content_length, $boundary);
62                            }
63                    } else {
64                             $c->send_error(RC_FORBIDDEN);
65                  }                  }
66    
67                  # possibly POST?                  my $param = $cgi->{web_data};
68                  if ( $r->method eq 'POST' ) {                  my $url = $r->url->path;
69    
70                          # now decide how we want to turn the parameters                  # XXX LOG
71                          # over to CGI.pm. note that this will cause                  print $r->method," ",$url,Dumper($param);
                         # problems with your STDIN with multipart forms.  
                         my $form_parameters = $r->content;  
                         $ENV{'CONTENT_LENGTH'} = $r->content_length || 0;  
   
                         # sounds like multipart.  
                         if ( $form_parameters =~ /^--/ ) {  
   
                                 my ($boundary) = split ( /\n/, $form_parameters );  
                                 chop($boundary);  
                                 substr( $boundary, 0, 2 ) = '';    # delete the leading "--" !!!  
                                 $ENV{'CONTENT_TYPE'} =  
                                   $r->content_type . "; boundary=$boundary";  
   
                                 # this breaks STDIN forever. I've yet to discover  
                                 # how to properly save and reassign STDIN after  
                                 # we're done breaking things horrifically here.  
                                 close STDIN;  
                                 my $t = tie *STDIN, 'IO::String';  
                                 $t->open($form_parameters);  
                                 $CGI::Q = new CGI();  
                         }  
72    
73                          else { $CGI::Q = new CGI($form_parameters); }                  # template file name (use ?format=html as default)
74                  }                  my $tpl_file = 'master.';
75                    $tpl_file .= $param->{'format'} || 'html';
76    
77                    #
78                    # implement functionality and generate HTML
79                    #
80                    my $html;
81    
82                  if (! $CGI::Q) {                  if ($param->{'search_val'} && $param->{'search_fld'} && !$param->{'search'}) {
83                           $c->send_error(RC_FORBIDDEN);                          $param->{'search'} = $param->{'search_fld'}.":".$param->{'search_val'};
84                  }                  }
85    
86                  my $param = param("hello") || '';                  my $tpl_var = {
87                  my $url = $r->url->path;                          param   => $param
88                    };
89    
90                  print "I saw: $param\n";                  # show search results
91                    # ?search=foo:bar
92                    if ($param->{'search'}) {
93    
94                  #      my $f = param("thefile");                          print STDERR "search: ",$param->{'search'},"\n";
95                  #      print "thefile filename: $f\n";  
96                  #      { undef $/; print "thefile size: ", length(<$f>), "\n" }                          my $results = $mws->search($param->{'search'});
97                            my @res = $mws->fetch_all_results();
98    
99                            $tpl_var->{results} = \@res;
100    
                 my $res = HTTP::Response->new(RC_OK);  
                 $res->content( qq{  
 <html>  
         hello = $param<br>  
         URL: $url  
 </html>  
         }  
                 );  
101    
102                    #
103                    # ?show_id=XXXXxxxx___message_id___xxxxXXXX
104                    } elsif ($param->{'show_id'}) {
105                            
106                            my $row = $mws->fetch_result_by_id($param->{'show_id'});
107                            $tpl_var->{message} = $row;
108                    }
109    
110                    $tt->process($tpl_file, $tpl_var, \$html) || die $tt->error();
111    
112                    #
113                    # send HTMLto client
114                    #
115    
116                    my $res = HTTP::Response->new(RC_OK);
117                    $res->header( 'Content-type' => 'text/html; charset=ISO-8859-2' );
118                    $res->content($html);
119                  $c->send_response($res);                  $c->send_response($res);
120    
121                  $c->close;                  $c->close;
122          }          }
123          undef($c);          undef($c);
124  }  }
125    
126    # template toolkit filter
127    
128    #use Text::Context::EitherSide;
129    
130    sub body5_filter {
131            my $text = shift;
132            $text =~ s/^\s+//gs;
133            $text =~ s/^[\>:\|=]+\s*.*?$//msg;      # remove quoted text
134            $text =~ s/[\n\r]+/\n/gs;               # compress cr/lf
135            if ($text =~ s,^((?:.*?[\n\r]){5}).*$,$1,s) {
136                    $text =~ s/[\n\r]*$/ .../;
137            }
138            $text =~ s/[\n\r]+--\s*[\n\r]+.*$//s;
139    
140    #       my $context = Text::Context::EitherSide->new($text, context => 5);
141    #       return $context->as_string("perl");
142    
143            return $text;
144    }
145    
146    sub subject_search_filter {
147            my $s = shift;
148            # remove re: fdw: [list] preffixes from e-mail
149            while ( $s =~ s/^\s*\[(?:re|fwd):\s+(.+)\]\s*$/$1/ig ||
150                    $s =~ s/^\s*(?:re|fwd):\s+(.+?)\s*$/$1/ig ||
151                    $s =~ s/^\[\w+\]\s*//ig
152            ) { };
153            return $s;
154    }

Legend:
Removed from v.5  
changed lines
  Added in v.14

  ViewVC Help
Powered by ViewVC 1.1.26