/[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 7 by dpavlin, Wed May 5 15:38:35 2004 UTC revision 14 by dpavlin, Thu May 6 19:46:58 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 78  while ( my $c = $d->accept ) { Line 79  while ( my $c = $d->accept ) {
79                  #                  #
80                  my $html;                  my $html;
81    
82                    if ($param->{'search_val'} && $param->{'search_fld'} && !$param->{'search'}) {
83                            $param->{'search'} = $param->{'search_fld'}.":".$param->{'search_val'};
84                    }
85    
86                    my $tpl_var = {
87                            param   => $param
88                    };
89    
90                  # show search results                  # show search results
91                  # ?search=foo:bar                  # ?search=foo:bar
92                  if ($param->{'search'}) {                  if ($param->{'search'}) {
# Line 87  while ( my $c = $d->accept ) { Line 96  while ( my $c = $d->accept ) {
96                          my $results = $mws->search($param->{'search'});                          my $results = $mws->search($param->{'search'});
97                          my @res = $mws->fetch_all_results();                          my @res = $mws->fetch_all_results();
98    
99                          $tt->process($tpl_file, {                          $tpl_var->{results} = \@res;
100                                  query   => $param->{'search'},  
                                 results => \@res,  
                                 param   => $param,  
                         }, \$html) || die $tt->error();  
101    
102                  #                  #
103                  # ?show_id=XXXXxxxx___message_id___xxxxXXXX                  # ?show_id=XXXXxxxx___message_id___xxxxXXXX
104                  } elsif ($param->{'show_id'}) {                  } elsif ($param->{'show_id'}) {
105                                                    
106                          my $row = $mws->fetch_result_by_id($param->{'show_id'});                          my $row = $mws->fetch_result_by_id($param->{'show_id'});
107                          $tt->process($tpl_file, {                          $tpl_var->{message} = $row;
                                 message => $row,  
                         }, \$html) || die $tt->error();  
108                  }                  }
109    
110                    $tt->process($tpl_file, $tpl_var, \$html) || die $tt->error();
111    
112                  #                  #
113                  # send HTMLto client                  # send HTMLto client
114                  #                  #
115    
116                  my $res = HTTP::Response->new(RC_OK);                  my $res = HTTP::Response->new(RC_OK);
117                  $res->header( 'Content-type' => 'text/html; charset=iso-8859-2' );                  $res->header( 'Content-type' => 'text/html; charset=ISO-8859-2' );
118                  $res->content($html);                  $res->content($html);
119                  $c->send_response($res);                  $c->send_response($res);
120    
# Line 119  while ( my $c = $d->accept ) { Line 125  while ( my $c = $d->accept ) {
125    
126  # template toolkit filter  # template toolkit filter
127    
128    #use Text::Context::EitherSide;
129    
130  sub body5_filter {  sub body5_filter {
131          my $text = shift;          my $text = shift;
132          $text =~ s/^\s+//gs;          $text =~ s/^\s+//gs;
133          $text =~ s/[\n\r]+[\>:\|=]+\s*.*?[\n\r]+//sg;   # remove quoted text          $text =~ s/^[\>:\|=]+\s*.*?$//msg;      # remove quoted text
134          $text =~ s,^((?:.*?[\n\r]){5}).*$,$1<span style="color:#808080">--8&lt;--[cut]--8&lt;--</span>,s;          $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;          $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;          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.7  
changed lines
  Added in v.14

  ViewVC Help
Powered by ViewVC 1.1.26