Fixed bug 1344334.
[matthijs/upstream/blosxom.git] / blosxom.cgi
1 #!/usr/bin/perl
2
3 # Blosxom
4 # Author: Rael Dornfest <rael@oreilly.com>
5 # Version: 2.0
6 # Home/Docs/Licensing: http://www.raelity.org/apps/blosxom/
7
8 package blosxom;
9
10 # --- Configurable variables -----
11
12 # What's this blog's title?
13 $blog_title = "My Weblog";
14
15 # What's this blog's description (for outgoing RSS feed)?
16 $blog_description = "Yet another Blosxom weblog.";
17
18 # What's this blog's primary language (for outgoing RSS feed)?
19 $blog_language = "en";
20
21 # Where are this blog's entries kept?
22 $datadir = "/Library/WebServer/Documents/blosxom";
23
24 # What's my preferred base URL for this blog (leave blank for automatic)?
25 $url = "";
26
27 # Should I stick only to the datadir for items or travel down the
28 # directory hierarchy looking for items?  If so, to what depth?
29 # 0 = infinite depth (aka grab everything), 1 = datadir only, n = n levels down
30 $depth = 0;
31
32 # How many entries should I show on the home page?
33 $num_entries = 40;
34
35 # What file extension signifies a blosxom entry?
36 $file_extension = "txt";
37
38 # What is the default flavour?
39 $default_flavour = "html";
40
41 # Should I show entries from the future (i.e. dated after now)?
42 $show_future_entries = 0;
43
44 # --- Plugins (Optional) -----
45
46 # Where are my plugins kept?
47 $plugin_dir = "";
48
49 # Where should my modules keep their state information?
50 $plugin_state_dir = "$plugin_dir/state";
51
52 # --- Static Rendering -----
53
54 # Where are this blog's static files to be created?
55 $static_dir = "/Library/WebServer/Documents/blog";
56
57 # What's my administrative password (you must set this for static rendering)?
58 $static_password = "";
59
60 # What flavours should I generate statically?
61 @static_flavours = qw/html rss/;
62
63 # Should I statically generate individual entries?
64 # 0 = no, 1 = yes
65 $static_entries = 0;
66
67 # --------------------------------
68
69 use vars qw! $version $blog_title $blog_description $blog_language $datadir $url %template $template $depth $num_entries $file_extension $default_flavour $static_or_dynamic $plugin_dir $plugin_state_dir @plugins %plugins $static_dir $static_password @static_flavours $static_entries $path_info $path_info_yr $path_info_mo $path_info_da $path_info_mo_num $flavour $static_or_dynamic %month2num @num2month $interpolate $entries $output $header $show_future_entries %files %indexes %others !;
70
71 use strict;
72 use FileHandle;
73 use File::Find;
74 use File::stat;
75 use Time::localtime;
76 use CGI qw/:standard :netscape/;
77
78 $version = "2.0";
79
80 my $fh = new FileHandle;
81
82 %month2num = (nil=>'00', Jan=>'01', Feb=>'02', Mar=>'03', Apr=>'04', May=>'05', Jun=>'06', Jul=>'07', Aug=>'08', Sep=>'09', Oct=>'10', Nov=>'11', Dec=>'12');
83 @num2month = sort { $month2num{$a} <=> $month2num{$b} } keys %month2num;
84
85 # Use the stated preferred URL or figure it out automatically
86 $url ||= url();
87 $url =~ s/^included:/http:/; # Fix for Server Side Includes (SSI)
88 $url =~ s!/$!!;
89
90 # Drop ending any / from dir settings
91 $datadir =~ s!/$!!; $plugin_dir =~ s!/$!!; $static_dir =~ s!/$!!;
92   
93 # Fix depth to take into account datadir's path
94 $depth and $depth += ($datadir =~ tr[/][]) - 1;
95
96 # Global variable to be used in head/foot.{flavour} templates
97 $path_info = '';
98
99 $static_or_dynamic = (!$ENV{GATEWAY_INTERFACE} and param('-password') and $static_password and param('-password') eq $static_password) ? 'static' : 'dynamic';
100 $static_or_dynamic eq 'dynamic' and param(-name=>'-quiet', -value=>1);
101
102 # Path Info Magic
103 # Take a gander at HTTP's PATH_INFO for optional blog name, archive yr/mo/day
104 my @path_info = split m{/}, path_info() || param('path'); 
105 shift @path_info;
106
107 while ($path_info[0] and $path_info[0] =~ /^[a-zA-Z].*$/ and $path_info[0] !~ /(.*)\.(.*)/) { $path_info .= '/' . shift @path_info; }
108
109 # Flavour specified by ?flav={flav} or index.{flav}
110 $flavour = '';
111
112 if ( $path_info[$#path_info] =~ /(.+)\.(.+)$/ ) {
113   $flavour = $2;
114   $1 ne 'index' and $path_info .= "/$1.$2";
115   pop @path_info;
116 } else {
117   $flavour = param('flav') || $default_flavour;
118 }
119
120 # Strip spurious slashes
121 $path_info =~ s!(^/*)|(/*$)!!g;
122
123 # Date fiddling
124 ($path_info_yr,$path_info_mo,$path_info_da) = @path_info;
125 $path_info_mo_num = $path_info_mo ? ( $path_info_mo =~ /\d{2}/ ? $path_info_mo : ($month2num{ucfirst(lc $path_info_mo)} || undef) ) : undef;
126
127 # Define standard template subroutine, plugin-overridable at Plugins: Template
128 $template = 
129   sub {
130     my ($path, $chunk, $flavour) = @_;
131
132     do {
133       return join '', <$fh> if $fh->open("< $datadir/$path/$chunk.$flavour");
134     } while ($path =~ s/(\/*[^\/]*)$// and $1);
135
136     return join '', ($template{$flavour}{$chunk} || $template{error}{$chunk} || '');
137   };
138 # Bring in the templates
139 %template = ();
140 while (<DATA>) {
141   last if /^(__END__)?$/;
142   my($ct, $comp, $txt) = /^(\S+)\s(\S+)\s(.*)$/;
143   $txt =~ s/\\n/\n/mg;
144   $template{$ct}{$comp} = $txt;
145 }
146
147 # Plugins: Start
148 if ( $plugin_dir and opendir PLUGINS, $plugin_dir ) {
149   foreach my $plugin ( grep { /^\w+$/ && -f "$plugin_dir/$_"  } sort readdir(PLUGINS) ) {
150     next if ($plugin =~ /~$/);   # Ignore emacs backups
151     my($plugin_name, $off) = $plugin =~ /^\d*(\w+?)(_?)$/;
152     my $on_off = $off eq '_' ? -1 : 1;
153     require "$plugin_dir/$plugin";
154     $plugin_name->start() and ( $plugins{$plugin_name} = $on_off ) and push @plugins, $plugin_name;
155   }
156   closedir PLUGINS;
157 }
158
159 # Plugins: Template
160 # Allow for the first encountered plugin::template subroutine to override the
161 # default built-in template subroutine
162 my $tmp; foreach my $plugin ( @plugins ) { $plugins{$plugin} > 0 and $plugin->can('template') and defined($tmp = $plugin->template()) and $template = $tmp and last; }
163
164 # Provide backward compatibility for Blosxom < 2.0rc1 plug-ins
165 sub load_template {
166   return &$template(@_);
167 }
168
169 # Define default entries subroutine
170 $entries =
171   sub {
172     my(%files, %indexes, %others);
173     find(
174       sub {
175         my $d; 
176         my $curr_depth = $File::Find::dir =~ tr[/][]; 
177         return if $depth and $curr_depth > $depth; 
178      
179         if ( 
180           # a match
181           $File::Find::name =~ m!^$datadir/(?:(.*)/)?(.+)\.$file_extension$!
182           # not an index, .file, and is readable
183           and $2 ne 'index' and $2 !~ /^\./ and (-r $File::Find::name)
184         ) {
185
186             # to show or not to show future entries
187             ( 
188               $show_future_entries
189               or stat($File::Find::name)->mtime < time 
190             )
191
192               # add the file and its associated mtime to the list of files
193               and $files{$File::Find::name} = stat($File::Find::name)->mtime
194
195                 # static rendering bits
196                 and (
197                   param('-all') 
198                   or !-f "$static_dir/$1/index." . $static_flavours[0]
199                   or stat("$static_dir/$1/index." . $static_flavours[0])->mtime < stat($File::Find::name)->mtime
200                 )
201                   and $indexes{$1} = 1
202                     and $d = join('/', (nice_date($files{$File::Find::name}))[5,2,3])
203   
204                       and $indexes{$d} = $d
205                         and $static_entries and $indexes{ ($1 ? "$1/" : '') . "$2.$file_extension" } = 1
206
207             } 
208             else {
209               !-d $File::Find::name and -r $File::Find::name and $others{$File::Find::name} = stat($File::Find::name)->mtime
210             }
211       }, $datadir
212     );
213
214     return (\%files, \%indexes, \%others);
215   };
216
217 # Plugins: Entries
218 # Allow for the first encountered plugin::entries subroutine to override the
219 # default built-in entries subroutine
220 my $tmp; foreach my $plugin ( @plugins ) { $plugins{$plugin} > 0 and $plugin->can('entries') and defined($tmp = $plugin->entries()) and $entries = $tmp and last; }
221
222 my ($files, $indexes, $others) = &$entries();
223 %files = %$files; %indexes = %$indexes; %others = ref $others ? %$others : ();
224
225 # Plugins: Filter
226 foreach my $plugin ( @plugins ) { $plugins{$plugin} > 0 and $plugin->can('filter') and $entries = $plugin->filter(\%files, \%others) }
227
228 # Static
229 if (!$ENV{GATEWAY_INTERFACE} and param('-password') and $static_password and param('-password') eq $static_password) {
230
231   param('-quiet') or print "Blosxom is generating static index pages...\n";
232
233   # Home Page and Directory Indexes
234   my %done;
235   foreach my $path ( sort keys %indexes) {
236     my $p = '';
237     foreach ( ('', split /\//, $path) ) {
238       $p .= "/$_";
239       $p =~ s!^/!!;
240       $path_info = $p;
241       $done{$p}++ and next;
242       (-d "$static_dir/$p" or $p =~ /\.$file_extension$/) or mkdir "$static_dir/$p", 0755;
243       foreach $flavour ( @static_flavours ) {
244         my $content_type = (&$template($p,'content_type',$flavour));
245         $content_type =~ s!\n.*!!s;
246         my $fn = $p =~ m!^(.+)\.$file_extension$! ? $1 : "$p/index";
247         param('-quiet') or print "$fn.$flavour\n";
248         my $fh_w = new FileHandle "> $static_dir/$fn.$flavour" or die "Couldn't open $static_dir/$p for writing: $!";  
249         $output = '';
250         print $fh_w 
251           $indexes{$path} == 1
252             ? &generate('static', $p, '', $flavour, $content_type)
253             : &generate('static', '', $p, $flavour, $content_type);
254         $fh_w->close;
255       }
256     }
257   }
258 }
259
260 # Dynamic
261 else {
262   my $content_type = (&$template($path_info,'content_type',$flavour));
263   $content_type =~ s!\n.*!!s;
264
265   $header = {-type=>$content_type};
266
267   print generate('dynamic', $path_info, "$path_info_yr/$path_info_mo_num/$path_info_da", $flavour, $content_type);
268 }
269
270 # Plugins: End
271 foreach my $plugin ( @plugins ) { $plugins{$plugin} > 0 and $plugin->can('end') and $entries = $plugin->end() }
272
273 # Generate 
274 sub generate {
275   my($static_or_dynamic, $currentdir, $date, $flavour, $content_type) = @_;
276
277   my %f = %files;
278
279   # Plugins: Skip
280   # Allow plugins to decide if we can cut short story generation
281   my $skip; foreach my $plugin ( @plugins ) { $plugins{$plugin} > 0 and $plugin->can('skip') and defined($tmp = $plugin->skip()) and $skip = $tmp and last; }
282   
283   # Define default interpolation subroutine
284   $interpolate = 
285     sub {
286       package blosxom;
287       my $template = shift;
288       $template =~ 
289         s/(\$\w+(?:::)?\w*)/"defined $1 ? $1 : ''"/gee;
290       return $template;
291     };  
292
293   unless (defined($skip) and $skip) {
294
295     # Plugins: Interpolate
296     # Allow for the first encountered plugin::interpolate subroutine to 
297     # override the default built-in interpolate subroutine
298     my $tmp; foreach my $plugin ( @plugins ) { $plugins{$plugin} > 0 and $plugin->can('interpolate') and defined($tmp = $plugin->interpolate()) and $interpolate = $tmp and last; }
299         
300     # Head
301     my $head = (&$template($currentdir,'head',$flavour));
302   
303     # Plugins: Head
304     foreach my $plugin ( @plugins ) { $plugins{$plugin} > 0 and $plugin->can('head') and $entries = $plugin->head($currentdir, \$head) }
305   
306     $head = &$interpolate($head);
307   
308     $output .= $head;
309     
310     # Stories
311     my $curdate = '';
312     my $ne = $num_entries;
313
314     if ( $currentdir =~ /(.*?)([^\/]+)\.(.+)$/ and $2 ne 'index' ) {
315       $currentdir = "$1$2.$file_extension";
316       $files{"$datadir/$1$2.$file_extension"} and %f = ( "$datadir/$1$2.$file_extension" => $files{"$datadir/$1$2.$file_extension"} );
317     } 
318     else { 
319       $currentdir =~ s!/index\..+$!!;
320     }
321
322     # Define a default sort subroutine
323     my $sort = sub {
324       my($files_ref) = @_;
325       return sort { $files_ref->{$b} <=> $files_ref->{$a} } keys %$files_ref;
326     };
327   
328     # Plugins: Sort
329     # Allow for the first encountered plugin::sort subroutine to override the
330     # default built-in sort subroutine
331     my $tmp; foreach my $plugin ( @plugins ) { $plugins{$plugin} > 0 and $plugin->can('sort') and defined($tmp = $plugin->sort()) and $sort = $tmp and last; }
332   
333     foreach my $path_file ( &$sort(\%f, \%others) ) {
334       last if $ne <= 0 && $date !~ /\d/;
335       use vars qw/ $path $fn /;
336       ($path,$fn) = $path_file =~ m!^$datadir/(?:(.*)/)?(.*)\.$file_extension!;
337   
338       # Only stories in the right hierarchy
339       $path =~ /^$currentdir/ or $path_file eq "$datadir/$currentdir" or next;
340   
341       # Prepend a slash for use in templates only if a path exists
342       $path &&= "/$path";
343
344       # Date fiddling for by-{year,month,day} archive views
345       use vars qw/ $dw $mo $mo_num $da $ti $yr $hr $min $hr12 $ampm /;
346       ($dw,$mo,$mo_num,$da,$ti,$yr) = nice_date($files{"$path_file"});
347       ($hr,$min) = split /:/, $ti;
348       ($hr12, $ampm) = $hr >= 12 ? ($hr - 12,'pm') : ($hr, 'am'); 
349       $hr12 =~ s/^0//; $hr12 == 0 and $hr12 = 12;
350   
351       # Only stories from the right date
352       my($path_info_yr,$path_info_mo_num, $path_info_da) = split /\//, $date;
353       next if $path_info_yr && $yr != $path_info_yr; last if $path_info_yr && $yr < $path_info_yr; 
354       next if $path_info_mo_num && $mo ne $num2month[$path_info_mo_num];
355       next if $path_info_da && $da != $path_info_da; last if $path_info_da && $da < $path_info_da; 
356   
357       # Date 
358       my $date = (&$template($path,'date',$flavour));
359       
360       # Plugins: Date
361       foreach my $plugin ( @plugins ) { $plugins{$plugin} > 0 and $plugin->can('date') and $entries = $plugin->date($currentdir, \$date, $files{$path_file}, $dw,$mo,$mo_num,$da,$ti,$yr) }
362   
363       $date = &$interpolate($date);
364   
365       $curdate ne $date and $curdate = $date and $output .= $date;
366       
367       use vars qw/ $title $body $raw /;
368       if (-f "$path_file" && $fh->open("< $path_file")) {
369         chomp($title = <$fh>);
370         chomp($body = join '', <$fh>);
371         $fh->close;
372         $raw = "$title\n$body";
373       }
374       my $story = (&$template($path,'story',$flavour));
375   
376       # Plugins: Story
377       foreach my $plugin ( @plugins ) { $plugins{$plugin} > 0 and $plugin->can('story') and $entries = $plugin->story($path, $fn, \$story, \$title, \$body) }
378       
379       if ($content_type =~ m{\bxml\b}) {
380         # Escape <, >, and &, and to produce valid RSS
381         my %escape = ('<'=>'&lt;', '>'=>'&gt;', '&'=>'&amp;', '"'=>'&quot;');  
382         my $escape_re  = join '|' => keys %escape;
383         $title =~ s/($escape_re)/$escape{$1}/g;
384         $body =~ s/($escape_re)/$escape{$1}/g;
385       }
386   
387       $story = &$interpolate($story);
388     
389       $output .= $story;
390       $fh->close;
391   
392       $ne--;
393     }
394   
395     # Foot
396     my $foot = (&$template($currentdir,'foot',$flavour));
397   
398     # Plugins: Foot
399     foreach my $plugin ( @plugins ) { $plugins{$plugin} > 0 and $plugin->can('foot') and $entries = $plugin->foot($currentdir, \$foot) }
400   
401     $foot = &$interpolate($foot);
402     $output .= $foot;
403
404     # Plugins: Last
405     foreach my $plugin ( @plugins ) { $plugins{$plugin} > 0 and $plugin->can('last') and $entries = $plugin->last() }
406
407   } # End skip
408
409   # Finally, add the header, if any and running dynamically
410   $static_or_dynamic eq 'dynamic' and $header and $output = header($header) . $output;
411   
412   $output;
413 }
414
415
416 sub nice_date {
417   my($unixtime) = @_;
418   
419   my $c_time = ctime($unixtime);
420   my($dw,$mo,$da,$ti,$yr) = ( $c_time =~ /(\w{3}) +(\w{3}) +(\d{1,2}) +(\d{2}:\d{2}):\d{2} +(\d{4})$/ );
421   $da = sprintf("%02d", $da);
422   my $mo_num = $month2num{$mo};
423   
424   return ($dw,$mo,$mo_num,$da,$ti,$yr);
425 }
426
427
428 # Default HTML and RSS template bits
429 __DATA__
430 html content_type text/html
431 html head <html><head><link rel="alternate" type="type="application/rss+xml" title="RSS" href="$url/index.rss" /><title>$blog_title $path_info_da $path_info_mo $path_info_yr</title></head><body><center><font size="+3">$blog_title</font><br />$path_info_da $path_info_mo $path_info_yr</center><p />
432 html story <p><a name="$fn"><b>$title</b></a><br />$body<br /><br />posted at: $ti | path: <a href="$url$path">$path</a> | <a href="$url/$yr/$mo_num/$da#$fn">permanent link to this entry</a></p>\n
433 html date <h3>$dw, $da $mo $yr</h3>\n
434 html foot <p /><center><a href="http://www.blosxom.com/"><img src="http://www.blosxom.com/images/pb_blosxom.gif" border="0" /></a></body></html>
435 rss content_type text/xml
436 rss head <?xml version="1.0"?>\n<!-- name="generator" content="blosxom/$version" -->\n<!DOCTYPE rss PUBLIC "-//Netscape Communications//DTD RSS 0.91//EN" "http://my.netscape.com/publish/formats/rss-0.91.dtd">\n\n<rss version="0.91">\n  <channel>\n    <title>$blog_title $path_info_da $path_info_mo $path_info_yr</title>\n    <link>$url</link>\n    <description>$blog_description</description>\n    <language>$blog_language</language>\n
437 rss story   <item>\n    <title>$title</title>\n    <link>$url/$yr/$mo_num/$da#$fn</link>\n    <description>$body</description>\n  </item>\n
438 rss date \n
439 rss foot   </channel>\n</rss>
440 error content_type text/html
441 error head <html><body><p><font color="red">Error: I'm afraid this is the first I've heard of a "$flavour" flavoured Blosxom.  Try dropping the "/+$flavour" bit from the end of the URL.</font>\n\n
442 error story <p><b>$title</b><br />$body <a href="$url/$yr/$mo_num/$da#fn.$default_flavour">#</a></p>\n
443 error date <h3>$dw, $da $mo $yr</h3>\n
444 error foot </body></html>
445 __END__