/[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 24 by dpavlin, Sat May 8 14:27:54 2004 UTC revision 39 by dpavlin, Mon May 10 14:07:44 2004 UTC
# Line 17  use Data::Dumper; Line 17  use Data::Dumper;
17    
18  my $debug = 1;  my $debug = 1;
19    
20  my $d = HTTP::Daemon->new( Reuse => 1, LocalPort => 6969 ) || die;  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 $mws = MWS->new($config_file);
32    
33    my ($local_addr,$local_port) = ('127.0.0.1',6969);
34    
35    my $listen = $mws->{config}->val('global', 'listen');
36    if ($listen =~ m/:/) {
37            ($local_addr,$local_port) = split(/:/,$listen);
38    } elsif ($listen) {
39            $local_addr = $listen;
40    }
41    
42    my $d = HTTP::Daemon->new(
43            Reuse => 1,
44            LocalAddr => $local_addr,
45            LocalPort => $local_port,
46    ) || die "can't create HTTP::Daemon";
47    
48  my $cgi = new CGI::Lite;  my $cgi = new CGI::Lite;
 my $mws = MWS->new('global.conf');  
49  my $tt = Template->new({  my $tt = Template->new({
50          INCLUDE_PATH => $mws->{config}->val('global', 'templates'),          INCLUDE_PATH => $mws->{config}->val('global', 'templates'),
51          FILTERS => {          FILTERS => {
52                  'body5' => \&body5_filter,                  'body5' => \&body5_filter,
53                    'body' => \&body_filter,
54          },          },
55          EVAL_PERL => 1,          EVAL_PERL => 1,
56  });  });
57    
58    my $static_html = $mws->{config}->val('global', 'static_html');
59    
60  print "Web server ready at: ", $d->url, "\n";  print "Web server ready at: ", $d->url, "\n";
61    
62    
# Line 71  while ( my $c = $d->accept ) { Line 100  while ( my $c = $d->accept ) {
100                  my $url = $r->url->path;                  my $url = $r->url->path;
101    
102                  # XXX LOG                  # XXX LOG
103                  print $r->method," ",$url,"\n",Dumper($param),"\n" if ($debug);                  print $r->method," ",$url,"\n";
104                    print Dumper($param),"\n" if ($debug);
105    
106                    # is this static page?
107                    if ($static_html && -f "$static_html/$url") {
108                            print "static file: $static_html/$url\n" if ($debug);
109                            $c->send_file_response("$static_html/$url");
110                            $c->close;
111                            next;
112                    }
113    
114                  # template file name (use ?format=html as default)                  # template file name (use ?format=html as default)
115                  my $tpl_file = 'master.';                  my $tpl_file = 'master.';
# Line 113  while ( my $c = $d->accept ) { Line 151  while ( my $c = $d->accept ) {
151                          date_limit => $date_limit,                          date_limit => $date_limit,
152                  };                  };
153    
154                  #                  # is this access to root of web server?
155                    if ($url eq "/" && !$param->{'search'}) {
156                            # if first access, go to current year
157                            $date_limit = $mws->fmtdate($yyyy);
158                            $param->{sort_by} = "date desc";
159                    }
160    
161                  # ?show_id=XXXXxxxx___message_id___xxxxXXXX                  # ?show_id=XXXXxxxx___message_id___xxxxXXXX
162                  if ($param->{'show_id'}) {                  if ($param->{'show_id'}) {
163    
# Line 125  while ( my $c = $d->accept ) { Line 169  while ( my $c = $d->accept ) {
169                          # show search results                          # show search results
170                          # ?search=foo:bar                          # ?search=foo:bar
171    
172                          my @search = ( $param->{'search'} );                          my @search;
173                            push @search, $param->{'search'} if ($param->{'search'});
174    
175                          if ($date_limit) {                          if ($date_limit) {
176                                  push @search, "and" if (@search);                                  push @search, "and" if (@search);
# Line 142  while ( my $c = $d->accept ) { Line 187  while ( my $c = $d->accept ) {
187                          my @res = $mws->fetch_all_results();                          my @res = $mws->fetch_all_results();
188    
189                          $tpl_var->{results} = \@res if (@res);                          $tpl_var->{results} = \@res if (@res);
190                          $tpl_var->{total_hits} = $mws->{total_hits};                          $tpl_var->{total_hits} = $mws->{total_hits} || 0;
191    
192                            # no hits, offer suggestions
193                            if (! $tpl_var->{results}) {
194                                    @{$tpl_var->{apropos}} = $mws->apropos_index($param->{'search_fld'}, $param->{'search_val'});
195                            }
196    
197                  }                  }
198    
# Line 178  while ( my $c = $d->accept ) { Line 228  while ( my $c = $d->accept ) {
228    
229  # template toolkit filter  # template toolkit filter
230    
231    sub html_escape($) {
232            my $text = shift || return;
233    
234            # don't re-escape html
235            #return $text if ($text =~ /&(?:lt|gt|amp|quot);/);
236    
237            # Escape <, >, & and ", and to produce valid XML
238            my %escape = ('<'=>'&lt;', '>'=>'&gt;', '&'=>'&amp;', '"'=>'&quot;');
239            my $escape_re  = join '|' => keys %escape;
240    
241            $text =~ s/($escape_re)/$escape{$1}/gs;
242    
243            while ($text =~ s/#-#(quote|signature)(\d*)##(.+?)##\1\2#-#/<span class="$1">$3<\/span>/gs) { } ;
244    
245            return $text;
246    }
247    
248  #use Text::Context::EitherSide;  #use Text::Context::EitherSide;
249    
250  sub body5_filter {  sub body5_filter {
251          my $text = shift;          my $text = shift;
252          $text =~ s/^\s+//gs;  
253          $text =~ s/^[\>:\|=]+\s*.*?$//msg;      # remove quoted text          # remove quote
254          $text =~ s/[\n\r]+/\n/gs;               # compress cr/lf          $text =~ s/^[\>:\|=]+[^\n\r]*[\n\r]*$/#-q-#/msg;
255            # remove quote author
256            $text =~ s/[\n\r]+[^\n\r]+:\s*(?:#-q-#[\n\r*])+//gs;
257            $text =~ s/^[^\n\r]+:\s*(?:#-q-#[\n\r]*)+//gs;
258            $text =~ s/#-q-#[\n\r]*//gs;
259            # outlook quoting
260            $text =~ s/(\s*--+\s*Original\s+Message\s*--+.*)$//si;
261            $text =~ s/(\s*--+\s*Forwarded\s+message.+\s*--+.*)$//si;
262    
263            # remove signature
264            $text =~ s/[\n\r]+--\s*[\n\r]+.*$//s;
265    
266            # compress cr/lf
267            $text =~ s/[\n\r]+/\n/gs;
268    
269            # remove whitespaces
270            $text =~ s/^\n+//gs;
271            $text =~ s/[\s\n]+$//gs;
272    
273            if ($text eq "") {
274                    $text="#-#quote##forwarded message##quote#-#";
275            }
276    
277            # cut to 5 lines;
278          if ($text =~ s,^((?:.*?[\n\r]){5}).*$,$1,s) {          if ($text =~ s,^((?:.*?[\n\r]){5}).*$,$1,s) {
279                  $text =~ s/[\n\r]*$/ .../;                  $text =~ s/[\n\r]*$/ .../;
280          }          }
         $text =~ s/[\n\r]+--\s*[\n\r]+.*$//s;  
281    
282  #       my $context = Text::Context::EitherSide->new($text, context => 5);  #       my $context = Text::Context::EitherSide->new($text, context => 5);
283  #       return $context->as_string("perl");  #       return $context->as_string("perl");
284    
285            return html_escape($text);
286    }
287    
288    sub body_filter {
289            my $text = shift;
290    
291            my $sig = '';
292    
293            # remove signature
294            if ($text =~ s/([\n\r]+)(--\s*[\n\r]+.*)$//s) {
295                    $sig = "$1#-#signature##$2##signature#-#";
296            }
297    
298            # find quoted text
299            $text =~ s/^([\>:\|=]+[^\n\r]*[\n\r]*)$/#-#quote1##$1##quote1#-#/mg;
300            $text =~ s/(--+\s*Original\s+Message\s*--+.*)$/#-#quote2##$1##quote2#-#/si;
301            $text =~ s/(--+\s*Forwarded\s+message.+\s*--+.*)$/#-#quote3##$1##quote3#-#/si;
302    
303            $text = html_escape($text . $sig);
304          return $text;          return $text;
305  }  }
306    

Legend:
Removed from v.24  
changed lines
  Added in v.39

  ViewVC Help
Powered by ViewVC 1.1.26