/[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

Annotation of /trunk/httpd.pl

Parent Directory Parent Directory | Revision Log Revision Log


Revision 28 - (hide annotations)
Sat May 8 22:18:38 2004 UTC (20 years ago) by dpavlin
File MIME type: text/plain
File size: 6669 byte(s)
v0.9-rc2: bugfixes and small improvements
- added quote and signature styles
- better detection of quotes/signagures (and removal)
- back to home link (#) to get you out of search
- on root url (/) messages are sorted descending by date, as they should

1 dpavlin 5 #!/usr/bin/perl
2    
3     # based on post
4     # http://www.mail-archive.com/libwww@perl.org/msg04750.html
5    
6     use strict;
7     use warnings;
8     use HTTP::Daemon;
9     use HTTP::Status;
10     use IO::String;
11 dpavlin 6 use CGI::Lite;
12     use Template;
13     use MWS;
14 dpavlin 24 use URI::Escape;
15 dpavlin 5
16 dpavlin 6 use Data::Dumper;
17    
18 dpavlin 17 my $debug = 1;
19    
20 dpavlin 27 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 dpavlin 5 my $d = HTTP::Daemon->new( Reuse => 1, LocalPort => 6969 ) || die;
32 dpavlin 6 my $cgi = new CGI::Lite;
33 dpavlin 27 my $mws = MWS->new($config_file);
34 dpavlin 6 my $tt = Template->new({
35     INCLUDE_PATH => $mws->{config}->val('global', 'templates'),
36     FILTERS => {
37     'body5' => \&body5_filter,
38 dpavlin 28 'body' => \&body_filter,
39 dpavlin 6 },
40 dpavlin 20 EVAL_PERL => 1,
41 dpavlin 6 });
42    
43 dpavlin 25 my $static_html = $mws->{config}->val('global', 'static_html');
44    
45 dpavlin 13 print "Web server ready at: ", $d->url, "\n";
46 dpavlin 6
47 dpavlin 13
48 dpavlin 5 while ( my $c = $d->accept ) {
49     while ( my $r = $c->get_request ) {
50    
51     # environs that a webserver should set.
52     $ENV{'REQUEST_METHOD'} = $r->method;
53     $ENV{'GATEWAY_INTERFACE'} = "CGI/1.0";
54     $ENV{'SERVER_PROTOCOL'} = $r->protocol;
55     $ENV{'CONTENT_TYPE'} = $r->content_type;
56    
57 dpavlin 6 # this part is based on CGI::Lite
58 dpavlin 5
59 dpavlin 6 $cgi->close_all_files();
60     $cgi->{web_data} = {};
61     $cgi->{ordered_keys} = [];
62     $cgi->{all_handles} = [];
63     $cgi->{error_status} = 0;
64     $cgi->{error_message} = undef;
65    
66 dpavlin 5 if ( $r->method eq 'GET' || $r->uri =~ /\?/ ) {
67 dpavlin 6 my $query_string = $r->uri;
68     $query_string =~ s/[^\?]+\?(.*)/$1/;
69     $cgi->_decode_url_encoded_data (\$query_string, 'form');
70    
71     } elsif ( $r->method eq 'POST' ) {
72    
73     if ($r->content_type eq 'application/x-www-form-urlencoded') {
74     # local $^W = 0;
75     $cgi->_decode_url_encoded_data (\$r->content, 'form');
76     } elsif ($r->content_type =~ /multipart\/form-data/) {
77     my ($boundary) = $r->content_type =~ /boundary=(\S+)$/;
78     $cgi->_parse_multipart_data ($r->content_length, $boundary);
79     }
80     } else {
81     $c->send_error(RC_FORBIDDEN);
82 dpavlin 5 }
83    
84 dpavlin 6 my $param = $cgi->{web_data};
85     my $url = $r->url->path;
86 dpavlin 5
87 dpavlin 6 # XXX LOG
88 dpavlin 17 print $r->method," ",$url,"\n",Dumper($param),"\n" if ($debug);
89 dpavlin 5
90 dpavlin 25 # is this static page?
91     if ($static_html && -f "$static_html/$url") {
92     print "static file: $static_html/$url\n" if ($debug);
93     $c->send_file_response("$static_html/$url");
94     $c->close;
95     next;
96     }
97    
98 dpavlin 7 # template file name (use ?format=html as default)
99     my $tpl_file = 'master.';
100     $tpl_file .= $param->{'format'} || 'html';
101    
102 dpavlin 20 # parse date from url
103     my ($yyyy,$mm,$dd) = $mws->yyyymmdd;
104    
105     my $yyyymm;
106    
107     my $date_limit;
108    
109     if ($url =~ m,^/(\d{4})[/-](\d+)[/-](\d+),) {
110     ($yyyy, $mm, $dd) = $mws->fmtdate($1,$2,$3);
111     $date_limit = "$yyyy-$mm-$dd";
112     } elsif ($url =~ m,^/(\d{4})[/-](\d+),) {
113     ($yyyy,$mm) = $mws->fmtdate($1,$2);
114     $date_limit = "$yyyy-$mm";
115     } elsif ($url =~ m,^/(\d{4}),) {
116     $date_limit = $mws->fmtdate($1);
117     }
118    
119 dpavlin 7 #
120     # implement functionality and generate HTML
121     #
122 dpavlin 6 my $html;
123 dpavlin 5
124 dpavlin 12 if ($param->{'search_val'} && $param->{'search_fld'} && !$param->{'search'}) {
125     $param->{'search'} = $param->{'search_fld'}.":".$param->{'search_val'};
126 dpavlin 16 } elsif ($param->{'search'}) {
127     ($param->{'search_fld'}, $param->{'search_val'}) = split(/:/,$param->{'search'},2);
128 dpavlin 12 }
129    
130 dpavlin 13 my $tpl_var = {
131 dpavlin 20 param => $param,
132     yyyy => $yyyy,
133     mm => $mm,
134     dd => $dd,
135 dpavlin 21 date_limit => $date_limit,
136 dpavlin 13 };
137    
138 dpavlin 27 # is this access to root of web server?
139     if ($url eq "/" && !$param->{'search'}) {
140     # if first access, go to current year
141     $date_limit = $mws->fmtdate($yyyy);
142 dpavlin 28 $param->{sort_by} = "date desc";
143 dpavlin 27 }
144    
145 dpavlin 21 # ?show_id=XXXXxxxx___message_id___xxxxXXXX
146     if ($param->{'show_id'}) {
147 dpavlin 20
148 dpavlin 21 $mws->reset_counters;
149     my $row = $mws->fetch_result_by_id($param->{'show_id'});
150     $tpl_var->{message} = $row;
151     } elsif ($param->{'search'} || $date_limit) {
152 dpavlin 5
153 dpavlin 21 # show search results
154     # ?search=foo:bar
155 dpavlin 5
156 dpavlin 27 my @search;
157     push @search, $param->{'search'} if ($param->{'search'});
158 dpavlin 21
159     if ($date_limit) {
160     push @search, "and" if (@search);
161     push @search, "date:\"$date_limit\"";
162     }
163    
164 dpavlin 24 if ($param->{sort_by}) {
165     push @search, "sort:".$param->{sort_by};
166     }
167    
168 dpavlin 21 print STDERR "search: ",join(" ",@search),"\n";
169    
170     my $results = $mws->search(@search);
171 dpavlin 6 my @res = $mws->fetch_all_results();
172 dpavlin 5
173 dpavlin 20 $tpl_var->{results} = \@res if (@res);
174 dpavlin 25 $tpl_var->{total_hits} = $mws->{total_hits} || 0;
175 dpavlin 7
176 dpavlin 6 }
177 dpavlin 5
178 dpavlin 19
179     # push counters to template
180     foreach my $f (qw(from to cc bcc)) {
181     my $h = $mws->counter($f) || next;
182     my @a;
183     foreach my $k (sort { $h->{$b}->{usage} <=> $h->{$a}->{usage} } keys %$h) {
184     push @a, $h->{$k};
185     }
186     $tpl_var->{counters}->{$f} = [ @a ] if (@a);
187     }
188    
189 dpavlin 20 # push calendar in template
190     $tpl_var->{calendar} = $mws->counter('calendar');
191    
192 dpavlin 13 $tt->process($tpl_file, $tpl_var, \$html) || die $tt->error();
193    
194 dpavlin 7 #
195     # send HTMLto client
196     #
197    
198 dpavlin 5 my $res = HTTP::Response->new(RC_OK);
199 dpavlin 14 $res->header( 'Content-type' => 'text/html; charset=ISO-8859-2' );
200 dpavlin 6 $res->content($html);
201 dpavlin 5 $c->send_response($res);
202    
203     $c->close;
204     }
205     undef($c);
206     }
207 dpavlin 6
208     # template toolkit filter
209    
210 dpavlin 28 sub html_escape($) {
211     my $text = shift;
212    
213     # Escape <, >, & and ", and to produce valid XML
214     my %escape = ('<'=>'&lt;', '>'=>'&gt;', '&'=>'&amp;', '"'=>'&quot;');
215     my $escape_re = join '|' => keys %escape;
216    
217     $text =~ s/($escape_re)/$escape{$1}/gs;
218     return $text;
219     }
220    
221 dpavlin 12 #use Text::Context::EitherSide;
222    
223 dpavlin 6 sub body5_filter {
224     my $text = shift;
225 dpavlin 28
226     # remove quote
227     $text =~ s/^[\>:\|=]+\s*.*?$/#-q-#/msg;
228     # remove quote author
229     $text =~ s/[\n\r]+[^\n\r]+:\s*(:?#-q-#[\n\r*])+//gs;
230     $text =~ s/^[^\n\r]+:\s*(:?#-q-#[\n\r]*)+//gs;
231     # outlook quoting
232     $text =~ s/(\s*--+\s*Original\s+Message\s*--+.*)$//si;
233     $text =~ s/(\s*--+\s*Forwarded\s+message\s*from\s+.+\s*--+.*)$//si;
234    
235     # remove signature
236     $text =~ s/[\n\r]+--\s*[\n\r]+.*$//s;
237    
238     # compress cr/lf
239     $text =~ s/[\n\r]+/\n/gs;
240    
241     # remove whitespaces
242     $text =~ s/^\n+//gs;
243     $text =~ s/[\s\n]+$//gs;
244    
245     # cut to 5 lines;
246 dpavlin 14 if ($text =~ s,^((?:.*?[\n\r]){5}).*$,$1,s) {
247     $text =~ s/[\n\r]*$/ .../;
248     }
249 dpavlin 12
250     # my $context = Text::Context::EitherSide->new($text, context => 5);
251     # return $context->as_string("perl");
252    
253 dpavlin 28 return html_escape($text);
254     }
255    
256     sub body_filter {
257     my $text = shift;
258    
259     my $sig = '';
260    
261     # remove signature
262     if ($text =~ s/([\n\r]+)(--\s*[\n\r]+.*)$//s) {
263     $sig = "$1#-#signature##$2##signature#-#";
264     }
265    
266     # find quoted text
267     $text =~ s/^([\>:\|=]+\s*.*?)$/#-#quote##$1##quote#-#/msg;
268     $text =~ s/(--+\s*Original\s+Message\s*--+.*)$/#-#quote##$1##quote#-#/si || $text =~ s/(--+\s*Forwarded\s+message\s*from\s+.+\s*--+.*)$/#-#quote##$1##quote#-#/si;
269    
270     $text = html_escape($text . $sig);
271     $text =~ s/#-#(quote|signature)##(.+?)##(\1)#-#/<span class="$1">$2<\/span>/gs;
272 dpavlin 6 return $text;
273     }
274 dpavlin 7

Properties

Name Value
svn:executable *

  ViewVC Help
Powered by ViewVC 1.1.26