/[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 19 by dpavlin, Fri May 7 20:52:34 2004 UTC revision 27 by dpavlin, Sat May 8 20:34:26 2004 UTC
# Line 11  use IO::String; Line 11  use IO::String;
11  use CGI::Lite;  use CGI::Lite;
12  use Template;  use Template;
13  use MWS;  use MWS;
14    use URI::Escape;
15    
16  use Data::Dumper;  use Data::Dumper;
17    
18  my $debug = 1;  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  my $cgi = new CGI::Lite;  my $cgi = new CGI::Lite;
33  my $mws = MWS->new('global.conf');  my $mws = MWS->new($config_file);
34  my $tt = Template->new({  my $tt = Template->new({
35          INCLUDE_PATH => $mws->{config}->val('global', 'templates'),          INCLUDE_PATH => $mws->{config}->val('global', 'templates'),
36          FILTERS => {          FILTERS => {
37                  'body5' => \&body5_filter,                  'body5' => \&body5_filter,
                 'subject_search' => \&subject_search_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";  print "Web server ready at: ", $d->url, "\n";
45    
46    
# Line 72  while ( my $c = $d->accept ) { Line 86  while ( my $c = $d->accept ) {
86                  # XXX LOG                  # XXX LOG
87                  print $r->method," ",$url,"\n",Dumper($param),"\n" if ($debug);                  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                  # template file name (use ?format=html as default)                  # template file name (use ?format=html as default)
98                  my $tpl_file = 'master.';                  my $tpl_file = 'master.';
99                  $tpl_file .= $param->{'format'} || 'html';                  $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                  #                  #
119                  # implement functionality and generate HTML                  # implement functionality and generate HTML
120                  #                  #
# Line 88  while ( my $c = $d->accept ) { Line 127  while ( my $c = $d->accept ) {
127                  }                  }
128    
129                  my $tpl_var = {                  my $tpl_var = {
130                          param   => $param                          param   => $param,
131                            yyyy    => $yyyy,
132                            mm      => $mm,
133                            dd      => $dd,
134                            date_limit => $date_limit,
135                  };                  };
136    
137                  # show search results                  # is this access to root of web server?
138                  # ?search=foo:bar                  if ($url eq "/" && !$param->{'search'}) {
139                  if ($param->{'search'}) {                          # if first access, go to current year
140                            $date_limit = $mws->fmtdate($yyyy);
141                          print STDERR "search: ",$param->{'search'},"\n";                          $param->{sort} = "date desc";
142                    }
                         my $results = $mws->search($param->{'search'});  
                         my @res = $mws->fetch_all_results();  
   
                         $tpl_var->{results} = \@res;  
                         $tpl_var->{total_hits} = $mws->{total_hits};  
   
143    
                 #  
144                  # ?show_id=XXXXxxxx___message_id___xxxxXXXX                  # ?show_id=XXXXxxxx___message_id___xxxxXXXX
145                  } elsif ($param->{'show_id'}) {                  if ($param->{'show_id'}) {
146    
147                          $mws->reset_counters;                          $mws->reset_counters;
148                          my $row = $mws->fetch_result_by_id($param->{'show_id'});                          my $row = $mws->fetch_result_by_id($param->{'show_id'});
149                          $tpl_var->{message} = $row;                          $tpl_var->{message} = $row;
150                    } elsif ($param->{'search'} || $date_limit) {
151    
152                            # 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    
 print Dumper($mws->{counter});  
177    
178                  # push counters to template                  # push counters to template
179                  foreach my $f (qw(from to cc bcc)) {                  foreach my $f (qw(from to cc bcc)) {
# Line 125  print Dumper($mws->{counter}); Line 185  print Dumper($mws->{counter});
185                          $tpl_var->{counters}->{$f} = [ @a ] if (@a);                          $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();                  $tt->process($tpl_file, $tpl_var, \$html) || die $tt->error();
192    
193                  #                  #
# Line 161  sub body5_filter { Line 224  sub body5_filter {
224          return $text;          return $text;
225  }  }
226    
 sub subject_search_filter {  
         my $s = shift;  
         # remove re: fdw: [list] preffixes from e-mail  
         while ( $s =~ s/^\s*\[(?:re|fwd|fw):\s+(.+)\]\s*$/$1/ig ||  
                 $s =~ s/^\s*(?:re|fwd|fw):\s+(.+?)\s*$/$1/ig ||  
                 $s =~ s/^\[\S+\]\s*//ig ||  
                 $s =~ s/^\[[^@]+@\w+\.\w+\s*:\s+(.+)\s*\]\s*$/$1/g ||  
                 $s =~ s/\(fwd\)\s*$//ig ||  
                 $s =~ s/\"//g  
         ) { };  
         return $s;  
 }  

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

  ViewVC Help
Powered by ViewVC 1.1.26