* Add preview parameter to preprocesser calls, use this rather than the
[ikiwiki] / IkiWiki.pm
1 #!/usr/bin/perl
2
3 package IkiWiki;
4 use warnings;
5 use strict;
6 use Encode;
7 use HTML::Entities;
8 use open qw{:utf8 :std};
9
10 use vars qw{%config %links %oldlinks %oldpagemtime %pagectime %pagecase
11             %renderedfiles %oldrenderedfiles %pagesources %depends %hooks
12             %forcerebuild $gettext_obj};
13
14 use Exporter q{import};
15 our @EXPORT = qw(hook debug error template htmlpage add_depends pagespec_match
16                  bestlink htmllink readfile writefile pagetype srcfile pagename
17                  displaytime will_render gettext
18                  %config %links %renderedfiles %pagesources);
19 our $VERSION = 1.02; # plugin interface version, next is ikiwiki version
20 our $version="1.45";my $installdir="/usr";
21 # Optimisation.
22 use Memoize;
23 memoize("abs2rel");
24 memoize("pagespec_translate");
25 memoize("file_pruned");
26
27 sub defaultconfig () { #{{{
28         wiki_file_prune_regexps => [qr/\.\./, qr/^\./, qr/\/\./,
29                 qr/\.x?html?$/, qr/\.ikiwiki-new$/,
30                 qr/(^|\/).svn\//, qr/.arch-ids\//, qr/{arch}\//],
31         wiki_link_regexp => qr/\[\[(?:([^\]\|]+)\|)?([^\s\]#]+)(?:#([^\s\]]+))?\]\]/,
32         wiki_file_regexp => qr/(^[-[:alnum:]_.:\/+]+$)/,
33         web_commit_regexp => qr/^web commit (by (.*?(?=: |$))|from (\d+\.\d+\.\d+\.\d+)):?(.*)/,
34         verbose => 0,
35         syslog => 0,
36         wikiname => "wiki",
37         default_pageext => "mdwn",
38         cgi => 0,
39         post_commit => 0,
40         rcs => '',
41         notify => 0,
42         url => '',
43         cgiurl => '',
44         historyurl => '',
45         diffurl => '',
46         rss => 0,
47         atom => 0,
48         discussion => 1,
49         rebuild => 0,
50         refresh => 0,
51         getctime => 0,
52         w3mmode => 0,
53         wrapper => undef,
54         wrappermode => undef,
55         svnrepo => undef,
56         svnpath => "trunk",
57         gitorigin_branch => "origin",
58         gitmaster_branch => "master",
59         srcdir => undef,
60         destdir => undef,
61         pingurl => [],
62         templatedir => "$installdir/share/ikiwiki/templates",
63         underlaydir => "$installdir/share/ikiwiki/basewiki",
64         setup => undef,
65         adminuser => undef,
66         adminemail => undef,
67         plugin => [qw{mdwn inline htmlscrubber passwordauth signinedit
68                       lockedit conditional}],
69         timeformat => '%c',
70         locale => undef,
71         sslcookie => 0,
72         httpauth => 0,
73         userdir => "",
74 } #}}}
75    
76 sub checkconfig () { #{{{
77         # locale stuff; avoid LC_ALL since it overrides everything
78         if (defined $ENV{LC_ALL}) {
79                 $ENV{LANG} = $ENV{LC_ALL};
80                 delete $ENV{LC_ALL};
81         }
82         if (defined $config{locale}) {
83                 eval q{use POSIX};
84                 error($@) if $@;
85                 if (POSIX::setlocale(&POSIX::LC_ALL, $config{locale})) {
86                         $ENV{LANG}=$config{locale};
87                         $gettext_obj=undef;
88                 }
89         }
90
91         if ($config{w3mmode}) {
92                 eval q{use Cwd q{abs_path}};
93                 error($@) if $@;
94                 $config{srcdir}=possibly_foolish_untaint(abs_path($config{srcdir}));
95                 $config{destdir}=possibly_foolish_untaint(abs_path($config{destdir}));
96                 $config{cgiurl}="file:///\$LIB/ikiwiki-w3m.cgi/".$config{cgiurl}
97                         unless $config{cgiurl} =~ m!file:///!;
98                 $config{url}="file://".$config{destdir};
99         }
100
101         if ($config{cgi} && ! length $config{url}) {
102                 error(gettext("Must specify url to wiki with --url when using --cgi"));
103         }
104         
105         $config{wikistatedir}="$config{srcdir}/.ikiwiki"
106                 unless exists $config{wikistatedir};
107         
108         if ($config{rcs}) {
109                 eval qq{require IkiWiki::Rcs::$config{rcs}};
110                 if ($@) {
111                         error("Failed to load RCS module IkiWiki::Rcs::$config{rcs}: $@");
112                 }
113         }
114         else {
115                 require IkiWiki::Rcs::Stub;
116         }
117
118         run_hooks(checkconfig => sub { shift->() });
119 } #}}}
120
121 sub loadplugins () { #{{{
122         loadplugin($_) foreach @{$config{plugin}};
123         
124         run_hooks(getopt => sub { shift->() });
125         if (grep /^-/, @ARGV) {
126                 print STDERR "Unknown option: $_\n"
127                         foreach grep /^-/, @ARGV;
128                 usage();
129         }
130 } #}}}
131
132 sub loadplugin ($) { #{{{
133         my $plugin=shift;
134
135         return if grep { $_ eq $plugin} @{$config{disable_plugins}};
136
137         my $mod="IkiWiki::Plugin::".possibly_foolish_untaint($plugin);
138         eval qq{use $mod};
139         if ($@) {
140                 error("Failed to load plugin $mod: $@");
141         }
142 } #}}}
143
144 sub error ($;$) { #{{{
145         my $message=shift;
146         my $cleaner=shift;
147         if ($config{cgi}) {
148                 print "Content-type: text/html\n\n";
149                 print misctemplate(gettext("Error"),
150                         "<p>".gettext("Error").": $message</p>");
151         }
152         log_message(debug => $message) if $config{syslog};
153         if (defined $cleaner) {
154                 $cleaner->();
155         }
156         die $message."\n";
157 } #}}}
158
159 sub debug ($) { #{{{
160         return unless $config{verbose};
161         log_message(debug => @_);
162 } #}}}
163
164 my $log_open=0;
165 sub log_message ($$) { #{{{
166         my $type=shift;
167
168         if ($config{syslog}) {
169                 require Sys::Syslog;
170                 unless ($log_open) {
171                         Sys::Syslog::setlogsock('unix');
172                         Sys::Syslog::openlog('ikiwiki', '', 'user');
173                         $log_open=1;
174                 }
175                 eval {
176                         Sys::Syslog::syslog($type, "%s", join(" ", @_));
177                 }
178         }
179         elsif (! $config{cgi}) {
180                 print "@_\n";
181         }
182         else {
183                 print STDERR "@_\n";
184         }
185 } #}}}
186
187 sub possibly_foolish_untaint ($) { #{{{
188         my $tainted=shift;
189         my ($untainted)=$tainted=~/(.*)/;
190         return $untainted;
191 } #}}}
192
193 sub basename ($) { #{{{
194         my $file=shift;
195
196         $file=~s!.*/+!!;
197         return $file;
198 } #}}}
199
200 sub dirname ($) { #{{{
201         my $file=shift;
202
203         $file=~s!/*[^/]+$!!;
204         return $file;
205 } #}}}
206
207 sub pagetype ($) { #{{{
208         my $page=shift;
209         
210         if ($page =~ /\.([^.]+)$/) {
211                 return $1 if exists $hooks{htmlize}{$1};
212         }
213         return undef;
214 } #}}}
215
216 sub pagename ($) { #{{{
217         my $file=shift;
218
219         my $type=pagetype($file);
220         my $page=$file;
221         $page=~s/\Q.$type\E*$// if defined $type;
222         return $page;
223 } #}}}
224
225 sub htmlpage ($) { #{{{
226         my $page=shift;
227
228         return $page.".html";
229 } #}}}
230
231 sub srcfile ($) { #{{{
232         my $file=shift;
233
234         return "$config{srcdir}/$file" if -e "$config{srcdir}/$file";
235         return "$config{underlaydir}/$file" if -e "$config{underlaydir}/$file";
236         error("internal error: $file cannot be found");
237 } #}}}
238
239 sub readfile ($;$$) { #{{{
240         my $file=shift;
241         my $binary=shift;
242         my $wantfd=shift;
243
244         if (-l $file) {
245                 error("cannot read a symlink ($file)");
246         }
247         
248         local $/=undef;
249         open (IN, $file) || error("failed to read $file: $!");
250         binmode(IN) if ($binary);
251         return \*IN if $wantfd;
252         my $ret=<IN>;
253         close IN || error("failed to read $file: $!");
254         return $ret;
255 } #}}}
256
257 sub writefile ($$$;$$) { #{{{
258         my $file=shift; # can include subdirs
259         my $destdir=shift; # directory to put file in
260         my $content=shift;
261         my $binary=shift;
262         my $writer=shift;
263         
264         my $test=$file;
265         while (length $test) {
266                 if (-l "$destdir/$test") {
267                         error("cannot write to a symlink ($test)");
268                 }
269                 $test=dirname($test);
270         }
271         my $newfile="$destdir/$file.ikiwiki-new";
272         if (-l $newfile) {
273                 error("cannot write to a symlink ($newfile)");
274         }
275
276         my $dir=dirname($newfile);
277         if (! -d $dir) {
278                 my $d="";
279                 foreach my $s (split(m!/+!, $dir)) {
280                         $d.="$s/";
281                         if (! -d $d) {
282                                 mkdir($d) || error("failed to create directory $d: $!");
283                         }
284                 }
285         }
286
287         my $cleanup = sub { unlink($newfile) };
288         open (OUT, ">$newfile") || error("failed to write $newfile: $!", $cleanup);
289         binmode(OUT) if ($binary);
290         if ($writer) {
291                 $writer->(\*OUT, $cleanup);
292         }
293         else {
294                 print OUT $content or error("failed writing to $newfile: $!", $cleanup);
295         }
296         close OUT || error("failed saving $newfile: $!", $cleanup);
297         rename($newfile, "$destdir/$file") || 
298                 error("failed renaming $newfile to $destdir/$file: $!", $cleanup);
299 } #}}}
300
301 my %cleared;
302 sub will_render ($$;$) { #{{{
303         my $page=shift;
304         my $dest=shift;
305         my $clear=shift;
306
307         # Important security check.
308         if (-e "$config{destdir}/$dest" && ! $config{rebuild} &&
309             ! grep { $_ eq $dest } (@{$renderedfiles{$page}}, @{$oldrenderedfiles{$page}})) {
310                 error("$config{destdir}/$dest independently created, not overwriting with version from $page");
311         }
312
313         if (! $clear || $cleared{$page}) {
314                 $renderedfiles{$page}=[$dest, grep { $_ ne $dest } @{$renderedfiles{$page}}];
315         }
316         else {
317                 $renderedfiles{$page}=[$dest];
318                 $cleared{$page}=1;
319         }
320 } #}}}
321
322 sub bestlink ($$) { #{{{
323         my $page=shift;
324         my $link=shift;
325         
326         my $cwd=$page;
327         if ($link=~s/^\/+//) {
328                 # absolute links
329                 $cwd="";
330         }
331
332         do {
333                 my $l=$cwd;
334                 $l.="/" if length $l;
335                 $l.=$link;
336
337                 if (exists $links{$l}) {
338                         return $l;
339                 }
340                 elsif (exists $pagecase{lc $l}) {
341                         return $pagecase{lc $l};
342                 }
343         } while $cwd=~s!/?[^/]+$!!;
344
345         if (length $config{userdir} && exists $links{"$config{userdir}/".lc($link)}) {
346                 return "$config{userdir}/".lc($link);
347         }
348
349         #print STDERR "warning: page $page, broken link: $link\n";
350         return "";
351 } #}}}
352
353 sub isinlinableimage ($) { #{{{
354         my $file=shift;
355         
356         $file=~/\.(png|gif|jpg|jpeg)$/i;
357 } #}}}
358
359 sub pagetitle ($;$) { #{{{
360         my $page=shift;
361         my $unescaped=shift;
362
363         if ($unescaped) {
364                 $page=~s/(__(\d+)__|_)/$1 eq '_' ? ' ' : chr($2)/eg;
365         }
366         else {
367                 $page=~s/(__(\d+)__|_)/$1 eq '_' ? ' ' : "&#$2;"/eg;
368         }
369
370         return $page;
371 } #}}}
372
373 sub titlepage ($) { #{{{
374         my $title=shift;
375         $title=~s/([^-[:alnum:]:+\/.])/$1 eq ' ' ? '_' : "__".ord($1)."__"/eg;
376         return $title;
377 } #}}}
378
379 sub cgiurl (@) { #{{{
380         my %params=@_;
381
382         return $config{cgiurl}."?".join("&amp;", map "$_=$params{$_}", keys %params);
383 } #}}}
384
385 sub baseurl (;$) { #{{{
386         my $page=shift;
387
388         return "$config{url}/" if ! defined $page;
389         
390         $page=~s/[^\/]+$//;
391         $page=~s/[^\/]+\//..\//g;
392         return $page;
393 } #}}}
394
395 sub abs2rel ($$) { #{{{
396         # Work around very innefficient behavior in File::Spec if abs2rel
397         # is passed two relative paths. It's much faster if paths are
398         # absolute! (Debian bug #376658; fixed in debian unstable now)
399         my $path="/".shift;
400         my $base="/".shift;
401
402         require File::Spec;
403         my $ret=File::Spec->abs2rel($path, $base);
404         $ret=~s/^// if defined $ret;
405         return $ret;
406 } #}}}
407
408 sub displaytime ($) { #{{{
409         my $time=shift;
410
411         eval q{use POSIX};
412         error($@) if $@;
413         # strftime doesn't know about encodings, so make sure
414         # its output is properly treated as utf8
415         return decode_utf8(POSIX::strftime(
416                         $config{timeformat}, localtime($time)));
417 } #}}}
418
419 sub htmllink ($$$;@) { #{{{
420         my $lpage=shift; # the page doing the linking
421         my $page=shift; # the page that will contain the link (different for inline)
422         my $link=shift;
423         my %opts=@_;
424
425         my $bestlink;
426         if (! $opts{forcesubpage}) {
427                 $bestlink=bestlink($lpage, $link);
428         }
429         else {
430                 $bestlink="$lpage/".lc($link);
431         }
432
433         my $linktext;
434         if (defined $opts{linktext}) {
435                 $linktext=$opts{linktext};
436         }
437         else {
438                 $linktext=pagetitle(basename($link));
439         }
440         
441         return "<span class=\"selflink\">$linktext</span>"
442                 if length $bestlink && $page eq $bestlink;
443         
444         if (! grep { $_ eq $bestlink } map { @{$_} } values %renderedfiles) {
445                 $bestlink=htmlpage($bestlink);
446         }
447         if (! grep { $_ eq $bestlink } map { @{$_} } values %renderedfiles) {
448                 return $linktext unless length $config{cgiurl};
449                 return "<span><a href=\"".
450                         cgiurl(do => "create", page => lc($link), from => $page).
451                         "\">?</a>$linktext</span>"
452         }
453         
454         $bestlink=abs2rel($bestlink, dirname($page));
455         
456         if (! $opts{noimageinline} && isinlinableimage($bestlink)) {
457                 return "<img src=\"$bestlink\" alt=\"$linktext\" />";
458         }
459
460         if (defined $opts{anchor}) {
461                 $bestlink.="#".$opts{anchor};
462         }
463
464         return "<a href=\"$bestlink\">$linktext</a>";
465 } #}}}
466
467 sub htmlize ($$$) { #{{{
468         my $page=shift;
469         my $type=shift;
470         my $content=shift;
471
472         if (exists $hooks{htmlize}{$type}) {
473                 $content=$hooks{htmlize}{$type}{call}->(
474                         page => $page,
475                         content => $content,
476                 );
477         }
478         else {
479                 error("htmlization of $type not supported");
480         }
481
482         run_hooks(sanitize => sub {
483                 $content=shift->(
484                         page => $page,
485                         content => $content,
486                 );
487         });
488
489         return $content;
490 } #}}}
491
492 sub linkify ($$$) { #{{{
493         my $lpage=shift; # the page containing the links
494         my $page=shift; # the page the link will end up on (different for inline)
495         my $content=shift;
496
497         $content =~ s{(\\?)$config{wiki_link_regexp}}{
498                 defined $2
499                         ? ( $1 ? "[[$2|$3]]" : htmllink($lpage, $page, titlepage($3), anchor => $4, linktext => pagetitle($2)))
500                         : ( $1 ? "[[$3]]"    : htmllink($lpage, $page, titlepage($3), anchor => $4))
501         }eg;
502         
503         return $content;
504 } #}}}
505
506 my %preprocessing;
507 our $preprocess_preview=0;
508 sub preprocess ($$$;$$) { #{{{
509         my $page=shift; # the page the data comes from
510         my $destpage=shift; # the page the data will appear in (different for inline)
511         my $content=shift;
512         my $scan=shift;
513         my $preview=shift;
514
515         # Using local because it needs to be set within any nested calls
516         # of this function.
517         local $preprocess_preview=$preview if defined $preview;
518
519         my $handle=sub {
520                 my $escape=shift;
521                 my $command=shift;
522                 my $params=shift;
523                 if (length $escape) {
524                         return "[[$command $params]]";
525                 }
526                 elsif (exists $hooks{preprocess}{$command}) {
527                         return "" if $scan && ! $hooks{preprocess}{$command}{scan};
528                         # Note: preserve order of params, some plugins may
529                         # consider it significant.
530                         my @params;
531                         while ($params =~ /(?:(\w+)=)?(?:"""(.*?)"""|"([^"]+)"|(\S+))(?:\s+|$)/sg) {
532                                 my $key=$1;
533                                 my $val;
534                                 if (defined $2) {
535                                         $val=$2;
536                                         $val=~s/\r\n/\n/mg;
537                                         $val=~s/^\n+//g;
538                                         $val=~s/\n+$//g;
539                                 }
540                                 elsif (defined $3) {
541                                         $val=$3;
542                                 }
543                                 elsif (defined $4) {
544                                         $val=$4;
545                                 }
546
547                                 if (defined $key) {
548                                         push @params, $key, $val;
549                                 }
550                                 else {
551                                         push @params, $val, '';
552                                 }
553                         }
554                         if ($preprocessing{$page}++ > 3) {
555                                 # Avoid loops of preprocessed pages preprocessing
556                                 # other pages that preprocess them, etc.
557                                 #translators: The first parameter is a
558                                 #translators: preprocessor directive name,
559                                 #translators: the second a page name, the
560                                 #translators: third a number.
561                                 return "[[".sprintf(gettext("%s preprocessing loop detected on %s at depth %i"),
562                                         $command, $page, $preprocessing{$page}).
563                                 "]]";
564                         }
565                         my $ret=$hooks{preprocess}{$command}{call}->(
566                                 @params,
567                                 page => $page,
568                                 destpage => $destpage,
569                                 preview => $preprocess_preview,
570                         );
571                         $preprocessing{$page}--;
572                         return $ret;
573                 }
574                 else {
575                         return "[[$command $params]]";
576                 }
577         };
578         
579         $content =~ s{(\\?)\[\[(\w+)\s+((?:(?:\w+=)?(?:""".*?"""|"[^"]+"|[^\s\]]+)\s*)*)\]\]}{$handle->($1, $2, $3)}seg;
580         return $content;
581 } #}}}
582
583 sub filter ($$) { #{{{
584         my $page=shift;
585         my $content=shift;
586
587         run_hooks(filter => sub {
588                 $content=shift->(page => $page, content => $content);
589         });
590
591         return $content;
592 } #}}}
593
594 sub indexlink () { #{{{
595         return "<a href=\"$config{url}\">$config{wikiname}</a>";
596 } #}}}
597
598 sub lockwiki () { #{{{
599         # Take an exclusive lock on the wiki to prevent multiple concurrent
600         # run issues. The lock will be dropped on program exit.
601         if (! -d $config{wikistatedir}) {
602                 mkdir($config{wikistatedir});
603         }
604         open(WIKILOCK, ">$config{wikistatedir}/lockfile") ||
605                 error ("cannot write to $config{wikistatedir}/lockfile: $!");
606         if (! flock(WIKILOCK, 2 | 4)) { # LOCK_EX | LOCK_NB
607                 debug("wiki seems to be locked, waiting for lock");
608                 my $wait=600; # arbitrary, but don't hang forever to 
609                               # prevent process pileup
610                 for (1..$wait) {
611                         return if flock(WIKILOCK, 2 | 4);
612                         sleep 1;
613                 }
614                 error("wiki is locked; waited $wait seconds without lock being freed (possible stuck process or stale lock?)");
615         }
616 } #}}}
617
618 sub unlockwiki () { #{{{
619         close WIKILOCK;
620 } #}}}
621
622 sub commit_hook_enabled () { #{{{
623         open(COMMITLOCK, "+>$config{wikistatedir}/commitlock") ||
624                 error ("cannot write to $config{wikistatedir}/commitlock: $!");
625         if (! flock(COMMITLOCK, 1 | 4)) { # LOCK_SH | LOCK_NB to test
626                 close COMMITLOCK;
627                 return 0;
628         }
629         close COMMITLOCK;
630         return 1;
631 } #}}}
632
633 sub disable_commit_hook () { #{{{
634         open(COMMITLOCK, ">$config{wikistatedir}/commitlock") ||
635                 error ("cannot write to $config{wikistatedir}/commitlock: $!");
636         if (! flock(COMMITLOCK, 2)) { # LOCK_EX
637                 error("failed to get commit lock");
638         }
639 } #}}}
640
641 sub enable_commit_hook () { #{{{
642         close COMMITLOCK;
643 } #}}}
644
645 sub loadindex () { #{{{
646         open (IN, "$config{wikistatedir}/index") || return;
647         while (<IN>) {
648                 $_=possibly_foolish_untaint($_);
649                 chomp;
650                 my %items;
651                 $items{link}=[];
652                 $items{dest}=[];
653                 foreach my $i (split(/ /, $_)) {
654                         my ($item, $val)=split(/=/, $i, 2);
655                         push @{$items{$item}}, decode_entities($val);
656                 }
657
658                 next unless exists $items{src}; # skip bad lines for now
659
660                 my $page=pagename($items{src}[0]);
661                 if (! $config{rebuild}) {
662                         $pagesources{$page}=$items{src}[0];
663                         $oldpagemtime{$page}=$items{mtime}[0];
664                         $oldlinks{$page}=[@{$items{link}}];
665                         $links{$page}=[@{$items{link}}];
666                         $depends{$page}=$items{depends}[0] if exists $items{depends};
667                         $renderedfiles{$page}=[@{$items{dest}}];
668                         $oldrenderedfiles{$page}=[@{$items{dest}}];
669                         $pagecase{lc $page}=$page;
670                 }
671                 $pagectime{$page}=$items{ctime}[0];
672         }
673         close IN;
674 } #}}}
675
676 sub saveindex () { #{{{
677         run_hooks(savestate => sub { shift->() });
678
679         if (! -d $config{wikistatedir}) {
680                 mkdir($config{wikistatedir});
681         }
682         my $newfile="$config{wikistatedir}/index.new";
683         my $cleanup = sub { unlink($newfile) };
684         open (OUT, ">$newfile") || error("cannot write to $newfile: $!", $cleanup);
685         foreach my $page (keys %oldpagemtime) {
686                 next unless $oldpagemtime{$page};
687                 my $line="mtime=$oldpagemtime{$page} ".
688                         "ctime=$pagectime{$page} ".
689                         "src=$pagesources{$page}";
690                 $line.=" dest=$_" foreach @{$renderedfiles{$page}};
691                 my %count;
692                 $line.=" link=$_" foreach grep { ++$count{$_} == 1 } @{$links{$page}};
693                 if (exists $depends{$page}) {
694                         $line.=" depends=".encode_entities($depends{$page}, " \t\n");
695                 }
696                 print OUT $line."\n" || error("failed writing to $newfile: $!", $cleanup);
697         }
698         close OUT || error("failed saving to $newfile: $!", $cleanup);
699         rename($newfile, "$config{wikistatedir}/index") ||
700                 error("failed renaming $newfile to $config{wikistatedir}/index", $cleanup);
701 } #}}}
702
703 sub template_file ($) { #{{{
704         my $template=shift;
705
706         foreach my $dir ($config{templatedir}, "$installdir/share/ikiwiki/templates") {
707                 return "$dir/$template" if -e "$dir/$template";
708         }
709         return undef;
710 } #}}}
711
712 sub template_params (@) { #{{{
713         my $filename=template_file(shift);
714
715         if (! defined $filename) {
716                 return if wantarray;
717                 return "";
718         }
719
720         require HTML::Template;
721         my @ret=(
722                 filter => sub {
723                         my $text_ref = shift;
724                         $$text_ref=&Encode::decode_utf8($$text_ref);
725                 },
726                 filename => $filename,
727                 loop_context_vars => 1,
728                 die_on_bad_params => 0,
729                 @_
730         );
731         return wantarray ? @ret : {@ret};
732 } #}}}
733
734 sub template ($;@) { #{{{
735         HTML::Template->new(template_params(@_));
736 } #}}}
737
738 sub misctemplate ($$;@) { #{{{
739         my $title=shift;
740         my $pagebody=shift;
741         
742         my $template=template("misc.tmpl");
743         $template->param(
744                 title => $title,
745                 indexlink => indexlink(),
746                 wikiname => $config{wikiname},
747                 pagebody => $pagebody,
748                 baseurl => baseurl(),
749                 @_,
750         );
751         run_hooks(pagetemplate => sub {
752                 shift->(page => "", destpage => "", template => $template);
753         });
754         return $template->output;
755 }#}}}
756
757 sub hook (@) { # {{{
758         my %param=@_;
759         
760         if (! exists $param{type} || ! ref $param{call} || ! exists $param{id}) {
761                 error "hook requires type, call, and id parameters";
762         }
763
764         return if $param{no_override} && exists $hooks{$param{type}}{$param{id}};
765         
766         $hooks{$param{type}}{$param{id}}=\%param;
767 } # }}}
768
769 sub run_hooks ($$) { # {{{
770         # Calls the given sub for each hook of the given type,
771         # passing it the hook function to call.
772         my $type=shift;
773         my $sub=shift;
774
775         if (exists $hooks{$type}) {
776                 my @deferred;
777                 foreach my $id (keys %{$hooks{$type}}) {
778                         if ($hooks{$type}{$id}{last}) {
779                                 push @deferred, $id;
780                                 next;
781                         }
782                         $sub->($hooks{$type}{$id}{call});
783                 }
784                 foreach my $id (@deferred) {
785                         $sub->($hooks{$type}{$id}{call});
786                 }
787         }
788 } #}}}
789
790 sub globlist_to_pagespec ($) { #{{{
791         my @globlist=split(' ', shift);
792
793         my (@spec, @skip);
794         foreach my $glob (@globlist) {
795                 if ($glob=~/^!(.*)/) {
796                         push @skip, $glob;
797                 }
798                 else {
799                         push @spec, $glob;
800                 }
801         }
802
803         my $spec=join(" or ", @spec);
804         if (@skip) {
805                 my $skip=join(" and ", @skip);
806                 if (length $spec) {
807                         $spec="$skip and ($spec)";
808                 }
809                 else {
810                         $spec=$skip;
811                 }
812         }
813         return $spec;
814 } #}}}
815
816 sub is_globlist ($) { #{{{
817         my $s=shift;
818         $s=~/[^\s]+\s+([^\s]+)/ && $1 ne "and" && $1 ne "or";
819 } #}}}
820
821 sub safequote ($) { #{{{
822         my $s=shift;
823         $s=~s/[{}]//g;
824         return "q{$s}";
825 } #}}}
826
827 sub add_depends ($$) { #{{{
828         my $page=shift;
829         my $pagespec=shift;
830         
831         if (! exists $depends{$page}) {
832                 $depends{$page}=$pagespec;
833         }
834         else {
835                 $depends{$page}=pagespec_merge($depends{$page}, $pagespec);
836         }
837 } # }}}
838
839 sub file_pruned ($$) { #{{{
840         require File::Spec;
841         my $file=File::Spec->canonpath(shift);
842         my $base=File::Spec->canonpath(shift);
843         $file=~s#^\Q$base\E/*##;
844
845         my $regexp='('.join('|', @{$config{wiki_file_prune_regexps}}).')';
846         $file =~ m/$regexp/;
847 } #}}}
848
849 sub gettext { #{{{
850         # Only use gettext in the rare cases it's needed.
851         if (exists $ENV{LANG} || exists $ENV{LC_ALL} || exists $ENV{LC_MESSAGES}) {
852                 if (! $gettext_obj) {
853                         $gettext_obj=eval q{
854                                 use Locale::gettext q{textdomain};
855                                 Locale::gettext->domain('ikiwiki')
856                         };
857                         if ($@) {
858                                 print STDERR "$@";
859                                 $gettext_obj=undef;
860                                 return shift;
861                         }
862                 }
863                 return $gettext_obj->get(shift);
864         }
865         else {
866                 return shift;
867         }
868 } #}}}
869
870 sub pagespec_merge ($$) { #{{{
871         my $a=shift;
872         my $b=shift;
873
874         return $a if $a eq $b;
875
876         # Support for old-style GlobLists.
877         if (is_globlist($a)) {
878                 $a=globlist_to_pagespec($a);
879         }
880         if (is_globlist($b)) {
881                 $b=globlist_to_pagespec($b);
882         }
883
884         return "($a) or ($b)";
885 } #}}}
886
887 sub pagespec_translate ($) { #{{{
888         # This assumes that $page is in scope in the function
889         # that evalulates the translated pagespec code.
890         my $spec=shift;
891
892         # Support for old-style GlobLists.
893         if (is_globlist($spec)) {
894                 $spec=globlist_to_pagespec($spec);
895         }
896
897         # Convert spec to perl code.
898         my $code="";
899         while ($spec=~m/\s*(\!|\(|\)|\w+\([^\)]+\)|[^\s()]+)\s*/ig) {
900                 my $word=$1;
901                 if (lc $word eq "and") {
902                         $code.=" &&";
903                 }
904                 elsif (lc $word eq "or") {
905                         $code.=" ||";
906                 }
907                 elsif ($word eq "(" || $word eq ")" || $word eq "!") {
908                         $code.=" ".$word;
909                 }
910                 elsif ($word =~ /^(\w+)\((.*)\)$/) {
911                         if (exists $IkiWiki::PageSpec::{"match_$1"}) {
912                                 $code.=" IkiWiki::PageSpec::match_$1(\$page, ".safequote($2).")";
913                         }
914                         else {
915                                 $code.=" 0";
916                         }
917                 }
918                 else {
919                         $code.=" IkiWiki::PageSpec::match_glob(\$page, ".safequote($word).", \$from)";
920                 }
921         }
922
923         return $code;
924 } #}}}
925
926 sub pagespec_match ($$;$) { #{{{
927         my $page=shift;
928         my $spec=shift;
929         my $from=shift;
930
931         return eval pagespec_translate($spec);
932 } #}}}
933
934 package IkiWiki::PageSpec;
935
936 sub match_glob ($$$) { #{{{
937         my $page=shift;
938         my $glob=shift;
939         my $from=shift;
940         if (! defined $from){
941                 $from = "";
942         }
943
944         # relative matching
945         if ($glob =~ m!^\./!) {
946                 $from=~s!/?[^/]+$!!;
947                 $glob=~s!^\./!!;
948                 $glob="$from/$glob" if length $from;
949         }
950
951         # turn glob into safe regexp
952         $glob=quotemeta($glob);
953         $glob=~s/\\\*/.*/g;
954         $glob=~s/\\\?/./g;
955
956         return $page=~/^$glob$/i;
957 } #}}}
958
959 sub match_link ($$) { #{{{
960         my $page=shift;
961         my $link=lc(shift);
962
963         my $links = $IkiWiki::links{$page} or return undef;
964         foreach my $p (@$links) {
965                 return 1 if lc $p eq $link;
966         }
967         return 0;
968 } #}}}
969
970 sub match_backlink ($$) { #{{{
971         match_link(pop, pop);
972 } #}}}
973
974 sub match_created_before ($$) { #{{{
975         my $page=shift;
976         my $testpage=shift;
977
978         if (exists $IkiWiki::pagectime{$testpage}) {
979                 return $IkiWiki::pagectime{$page} < $IkiWiki::pagectime{$testpage};
980         }
981         else {
982                 return 0;
983         }
984 } #}}}
985
986 sub match_created_after ($$) { #{{{
987         my $page=shift;
988         my $testpage=shift;
989
990         if (exists $IkiWiki::pagectime{$testpage}) {
991                 return $IkiWiki::pagectime{$page} > $IkiWiki::pagectime{$testpage};
992         }
993         else {
994                 return 0;
995         }
996 } #}}}
997
998 sub match_creation_day ($$) { #{{{
999         return ((gmtime($IkiWiki::pagectime{shift()}))[3] == shift);
1000 } #}}}
1001
1002 sub match_creation_month ($$) { #{{{
1003         return ((gmtime($IkiWiki::pagectime{shift()}))[4] + 1 == shift);
1004 } #}}}
1005
1006 sub match_creation_year ($$) { #{{{
1007         return ((gmtime($IkiWiki::pagectime{shift()}))[5] + 1900 == shift);
1008 } #}}}
1009
1010 1