/[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 6 by dpavlin, Wed May 5 13:42:27 2004 UTC revision 16 by dpavlin, Thu May 6 23:06:08 2004 UTC
# Line 15  use MWS; Line 15  use MWS;
15  use Data::Dumper;  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;
 print "Please contact me at: <URL:", $d->url, ">\n";  
   
18  my $cgi = new CGI::Lite;  my $cgi = new CGI::Lite;
19  my $mws = MWS->new('global.conf');  my $mws = MWS->new('global.conf');
20  my $tt = Template->new({  my $tt = Template->new({
21          INCLUDE_PATH => $mws->{config}->val('global', 'templates'),          INCLUDE_PATH => $mws->{config}->val('global', 'templates'),
22          FILTERS => {          FILTERS => {
23                  'body5' => \&body5_filter,                  '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 69  while ( my $c = $d->accept ) { Line 70  while ( my $c = $d->accept ) {
70                  # XXX LOG                  # XXX LOG
71                  print $r->method," ",$url,Dumper($param);                  print $r->method," ",$url,Dumper($param);
72    
73                  # generate HTML                  # 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;                  my $html;
81    
82                  my $s=$param->{'search'};                  if ($param->{'search_val'} && $param->{'search_fld'} && !$param->{'search'}) {
83                            $param->{'search'} = $param->{'search_fld'}.":".$param->{'search_val'};
84                    } elsif ($param->{'search'}) {
85                            ($param->{'search_fld'}, $param->{'search_val'}) = split(/:/,$param->{'search'},2);
86                    }
87    
88                  if ($s) {                  my $tpl_var = {
89                            param   => $param
90                    };
91    
92                          print STDERR "search: $s\n";                  # show search results
93                    # ?search=foo:bar
94                    if ($param->{'search'}) {
95    
96                          my $results = $mws->search($s);                          print STDERR "search: ",$param->{'search'},"\n";
97    
98                            my $results = $mws->search($param->{'search'});
99                          my @res = $mws->fetch_all_results();                          my @res = $mws->fetch_all_results();
100    
101                          my $tpl_file = 'master.';                          $tpl_var->{results} = \@res;
                         $tpl_file .= $param->{'format'} || 'html';  
102    
103                          $tt->process($tpl_file, {  
104                                  query   => $s,                  #
105                                  results => \@res,                  # ?show_id=XXXXxxxx___message_id___xxxxXXXX
106                                  param   => $param,                  } elsif ($param->{'show_id'}) {
107                          }, \$html) || die $tt->error();                          
108                            my $row = $mws->fetch_result_by_id($param->{'show_id'});
109                            $tpl_var->{message} = $row;
110                  }                  }
111    
112                    $tt->process($tpl_file, $tpl_var, \$html) || die $tt->error();
113    
114                    #
115                    # send HTMLto client
116                    #
117    
118                  my $res = HTTP::Response->new(RC_OK);                  my $res = HTTP::Response->new(RC_OK);
119                  $res->header( 'Content-type' => 'text/html; charset=iso-8859-2' );                  $res->header( 'Content-type' => 'text/html; charset=ISO-8859-2' );
120                  $res->content($html);                  $res->content($html);
121                  $c->send_response($res);                  $c->send_response($res);
122    
# Line 104  while ( my $c = $d->accept ) { Line 127  while ( my $c = $d->accept ) {
127    
128  # template toolkit filter  # template toolkit filter
129    
130    #use Text::Context::EitherSide;
131    
132  sub body5_filter {  sub body5_filter {
133          my $text = shift;          my $text = shift;
134          $text =~ s/^\s+//gs;          $text =~ s/^\s+//gs;
135          $text =~ s/^(.*?[\n\r]+){5}.*$/$1/s;          $text =~ s/^[\>:\|=]+\s*.*?$//msg;      # remove quoted text
136            $text =~ s/[\n\r]+/\n/gs;               # compress cr/lf
137            if ($text =~ s,^((?:.*?[\n\r]){5}).*$,$1,s) {
138                    $text =~ s/[\n\r]*$/ .../;
139            }
140            $text =~ s/[\n\r]+--\s*[\n\r]+.*$//s;
141    
142    #       my $context = Text::Context::EitherSide->new($text, context => 5);
143    #       return $context->as_string("perl");
144    
145          return $text;          return $text;
146  }  }
147    
148    sub subject_search_filter {
149            my $s = shift;
150            # remove re: fdw: [list] preffixes from e-mail
151            while ( $s =~ s/^\s*\[(?:re|fwd|fw):\s+(.+)\]\s*$/$1/ig ||
152                    $s =~ s/^\s*(?:re|fwd|fw):\s+(.+?)\s*$/$1/ig ||
153                    $s =~ s/^\[\S+\]\s*//ig ||
154                    $s =~ s/^\[[^@]+@\w+\.\w+\s*:\s+(.+)\s*\]\s*$/$1/g
155            ) { };
156            return $s;
157    }

Legend:
Removed from v.6  
changed lines
  Added in v.16

  ViewVC Help
Powered by ViewVC 1.1.26