/[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 27 by dpavlin, Sat May 8 20:34:26 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    use URI::Escape;
15    
16    use Data::Dumper;
17    
18    my $debug = 1;
19    
20    my $config_file = shift @ARGV || 'global.conf';
21    
22    if (! -f $config_file) {
23            print qq{Usage: $0 [/path/to/local.conf]
24    
25    If local.conf is not specified, global.conf in current directory will
26    be used.
27    };
28            exit 1;
29    }
30    
31  my $d = HTTP::Daemon->new( Reuse => 1, LocalPort => 6969 ) || die;  my $d = HTTP::Daemon->new( Reuse => 1, LocalPort => 6969 ) || die;
32  print "Please contact me at: <URL:", $d->url, ">\n";  my $cgi = new CGI::Lite;
33    my $mws = MWS->new($config_file);
34    my $tt = Template->new({
35            INCLUDE_PATH => $mws->{config}->val('global', 'templates'),
36            FILTERS => {
37                    'body5' => \&body5_filter,
38            },
39            EVAL_PERL => 1,
40    });
41    
42    my $static_html = $mws->{config}->val('global', 'static_html');
43    
44    print "Web server ready at: ", $d->url, "\n";
45    
46    
47  while ( my $c = $d->accept ) {  while ( my $c = $d->accept ) {
48          while ( my $r = $c->get_request ) {          while ( my $r = $c->get_request ) {
# Line 22  while ( my $c = $d->accept ) { Line 53  while ( my $c = $d->accept ) {
53                  $ENV{'SERVER_PROTOCOL'}   = $r->protocol;                  $ENV{'SERVER_PROTOCOL'}   = $r->protocol;
54                  $ENV{'CONTENT_TYPE'}      = $r->content_type;                  $ENV{'CONTENT_TYPE'}      = $r->content_type;
55    
56                  my $form_parameters;    # GET/POST storage.                  # this part is based on CGI::Lite
57    
58                    $cgi->close_all_files();
59                    $cgi->{web_data}       = {};
60                    $cgi->{ordered_keys}   = [];
61                    $cgi->{all_handles}    = [];
62                    $cgi->{error_status}   = 0;
63                    $cgi->{error_message}  = undef;
64    
                 # is this a happy GET?  
65                  if ( $r->method eq 'GET' || $r->uri =~ /\?/ ) {                  if ( $r->method eq 'GET' || $r->uri =~ /\?/ ) {
66                          $form_parameters = $r->uri;                          my $query_string = $r->uri;
67                          $form_parameters =~ s/[^\?]+\?(.*)/$1/;                          $query_string =~ s/[^\?]+\?(.*)/$1/;
68                          $CGI::Q = new CGI($form_parameters);                          $cgi->_decode_url_encoded_data (\$query_string, 'form');
69                  }  
70                    } elsif ( $r->method eq 'POST' ) {
71                  # possibly POST?  
72                  if ( $r->method eq 'POST' ) {                          if ($r->content_type eq 'application/x-www-form-urlencoded') {
73    #                               local $^W = 0;
74                          # now decide how we want to turn the parameters                                  $cgi->_decode_url_encoded_data (\$r->content, 'form');
75                          # over to CGI.pm. note that this will cause                          } elsif ($r->content_type =~ /multipart\/form-data/) {
76                          # problems with your STDIN with multipart forms.                                  my ($boundary) = $r->content_type =~ /boundary=(\S+)$/;
77                          my $form_parameters = $r->content;                                  $cgi->_parse_multipart_data ($r->content_length, $boundary);
                         $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();  
78                          }                          }
79                    } else {
80                             $c->send_error(RC_FORBIDDEN);
81                    }
82    
83                          else { $CGI::Q = new CGI($form_parameters); }                  my $param = $cgi->{web_data};
84                    my $url = $r->url->path;
85    
86                    # XXX LOG
87                    print $r->method," ",$url,"\n",Dumper($param),"\n" if ($debug);
88    
89                    # is this static page?
90                    if ($static_html && -f "$static_html/$url") {
91                            print "static file: $static_html/$url\n" if ($debug);
92                            $c->send_file_response("$static_html/$url");
93                            $c->close;
94                            next;
95                  }                  }
96    
97                  if (! $CGI::Q) {                  # template file name (use ?format=html as default)
98                           $c->send_error(RC_FORBIDDEN);                  my $tpl_file = 'master.';
99                    $tpl_file .= $param->{'format'} || 'html';
100    
101                    # parse date from url
102                    my ($yyyy,$mm,$dd) = $mws->yyyymmdd;
103    
104                    my $yyyymm;
105    
106                    my $date_limit;
107    
108                    if ($url =~ m,^/(\d{4})[/-](\d+)[/-](\d+),) {
109                            ($yyyy, $mm, $dd) = $mws->fmtdate($1,$2,$3);
110                             $date_limit = "$yyyy-$mm-$dd";
111                    } elsif ($url =~ m,^/(\d{4})[/-](\d+),) {
112                            ($yyyy,$mm) = $mws->fmtdate($1,$2);
113                            $date_limit = "$yyyy-$mm";
114                    } elsif ($url =~ m,^/(\d{4}),) {
115                            $date_limit = $mws->fmtdate($1);
116                  }                  }
117    
118                  my $param = param("hello") || '';                  #
119                  my $url = $r->url->path;                  # implement functionality and generate HTML
120                    #
121                    my $html;
122    
123                    if ($param->{'search_val'} && $param->{'search_fld'} && !$param->{'search'}) {
124                            $param->{'search'} = $param->{'search_fld'}.":".$param->{'search_val'};
125                    } elsif ($param->{'search'}) {
126                            ($param->{'search_fld'}, $param->{'search_val'}) = split(/:/,$param->{'search'},2);
127                    }
128    
129                  print "I saw: $param\n";                  my $tpl_var = {
130                            param   => $param,
131                            yyyy    => $yyyy,
132                            mm      => $mm,
133                            dd      => $dd,
134                            date_limit => $date_limit,
135                    };
136    
137                    # is this access to root of web server?
138                    if ($url eq "/" && !$param->{'search'}) {
139                            # if first access, go to current year
140                            $date_limit = $mws->fmtdate($yyyy);
141                            $param->{sort} = "date desc";
142                    }
143    
144                  #      my $f = param("thefile");                  # ?show_id=XXXXxxxx___message_id___xxxxXXXX
145                  #      print "thefile filename: $f\n";                  if ($param->{'show_id'}) {
                 #      { undef $/; print "thefile size: ", length(<$f>), "\n" }  
146    
147                  my $res = HTTP::Response->new(RC_OK);                          $mws->reset_counters;
148                  $res->content( qq{                          my $row = $mws->fetch_result_by_id($param->{'show_id'});
149  <html>                          $tpl_var->{message} = $row;
150          hello = $param<br>                  } elsif ($param->{'search'} || $date_limit) {
151          URL: $url  
152  </html>                          # show search results
153          }                          # ?search=foo:bar
154                  );  
155                            my @search;
156                            push @search, $param->{'search'} if ($param->{'search'});
157    
158                            if ($date_limit) {
159                                    push @search, "and" if (@search);
160                                    push @search, "date:\"$date_limit\"";
161                            }
162    
163                            if ($param->{sort_by}) {
164                                    push @search, "sort:".$param->{sort_by};
165                            }
166    
167                            print STDERR "search: ",join(" ",@search),"\n";
168    
169                            my $results = $mws->search(@search);
170                            my @res = $mws->fetch_all_results();
171    
172                            $tpl_var->{results} = \@res if (@res);
173                            $tpl_var->{total_hits} = $mws->{total_hits} || 0;
174    
175                    }
176    
177    
178                    # push counters to template
179                    foreach my $f (qw(from to cc bcc)) {
180                            my $h = $mws->counter($f) || next;
181                            my @a;
182                            foreach my $k (sort { $h->{$b}->{usage} <=> $h->{$a}->{usage} } keys %$h) {
183                                    push @a, $h->{$k};
184                            }
185                            $tpl_var->{counters}->{$f} = [ @a ] if (@a);
186                    }
187    
188                    # push calendar in template
189                    $tpl_var->{calendar} = $mws->counter('calendar');
190    
191                    $tt->process($tpl_file, $tpl_var, \$html) || die $tt->error();
192    
193                    #
194                    # send HTMLto client
195                    #
196    
197                    my $res = HTTP::Response->new(RC_OK);
198                    $res->header( 'Content-type' => 'text/html; charset=ISO-8859-2' );
199                    $res->content($html);
200                  $c->send_response($res);                  $c->send_response($res);
201    
202                  $c->close;                  $c->close;
203          }          }
204          undef($c);          undef($c);
205  }  }
206    
207    # template toolkit filter
208    
209    #use Text::Context::EitherSide;
210    
211    sub body5_filter {
212            my $text = shift;
213            $text =~ s/^\s+//gs;
214            $text =~ s/^[\>:\|=]+\s*.*?$//msg;      # remove quoted text
215            $text =~ s/[\n\r]+/\n/gs;               # compress cr/lf
216            if ($text =~ s,^((?:.*?[\n\r]){5}).*$,$1,s) {
217                    $text =~ s/[\n\r]*$/ .../;
218            }
219            $text =~ s/[\n\r]+--\s*[\n\r]+.*$//s;
220    
221    #       my $context = Text::Context::EitherSide->new($text, context => 5);
222    #       return $context->as_string("perl");
223    
224            return $text;
225    }
226    

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

  ViewVC Help
Powered by ViewVC 1.1.26