Danish translation update
[ikiwiki.git] / IkiWiki.pm
bloba11b330f2126a038f69678512e1a1ba2f2c238fb
1 #!/usr/bin/perl
3 package IkiWiki;
5 use warnings;
6 use strict;
7 use Encode;
8 use HTML::Entities;
9 use URI::Escape q{uri_escape_utf8};
10 use POSIX;
11 use Storable;
12 use open qw{:utf8 :std};
14 use vars qw{%config %links %oldlinks %pagemtime %pagectime %pagecase
15 %pagestate %wikistate %renderedfiles %oldrenderedfiles
16 %pagesources %destsources %depends %hooks %forcerebuild
17 %loaded_plugins};
19 use Exporter q{import};
20 our @EXPORT = qw(hook debug error template htmlpage add_depends pagespec_match
21 pagespec_match_list bestlink htmllink readfile writefile
22 pagetype srcfile pagename displaytime will_render gettext urlto
23 targetpage add_underlay pagetitle titlepage linkpage
24 newpagefile inject add_link
25 %config %links %pagestate %wikistate %renderedfiles
26 %pagesources %destsources);
27 our $VERSION = 3.00; # plugin interface version, next is ikiwiki version
28 our $version='unknown'; # VERSION_AUTOREPLACE done by Makefile, DNE
29 our $installdir='/usr'; # INSTALLDIR_AUTOREPLACE done by Makefile, DNE
31 # Optimisation.
32 use Memoize;
33 memoize("abs2rel");
34 memoize("pagespec_translate");
35 memoize("file_pruned");
37 sub getsetup () {
38 wikiname => {
39 type => "string",
40 default => "wiki",
41 description => "name of the wiki",
42 safe => 1,
43 rebuild => 1,
45 adminemail => {
46 type => "string",
47 default => undef,
48 example => 'me@example.com',
49 description => "contact email for wiki",
50 safe => 1,
51 rebuild => 0,
53 adminuser => {
54 type => "string",
55 default => [],
56 description => "users who are wiki admins",
57 safe => 1,
58 rebuild => 0,
60 banned_users => {
61 type => "string",
62 default => [],
63 description => "users who are banned from the wiki",
64 safe => 1,
65 rebuild => 0,
67 srcdir => {
68 type => "string",
69 default => undef,
70 example => "$ENV{HOME}/wiki",
71 description => "where the source of the wiki is located",
72 safe => 0, # path
73 rebuild => 1,
75 destdir => {
76 type => "string",
77 default => undef,
78 example => "/var/www/wiki",
79 description => "where to build the wiki",
80 safe => 0, # path
81 rebuild => 1,
83 url => {
84 type => "string",
85 default => '',
86 example => "http://example.com/wiki",
87 description => "base url to the wiki",
88 safe => 1,
89 rebuild => 1,
91 cgiurl => {
92 type => "string",
93 default => '',
94 example => "http://example.com/wiki/ikiwiki.cgi",
95 description => "url to the ikiwiki.cgi",
96 safe => 1,
97 rebuild => 1,
99 cgi_wrapper => {
100 type => "string",
101 default => '',
102 example => "/var/www/wiki/ikiwiki.cgi",
103 description => "filename of cgi wrapper to generate",
104 safe => 0, # file
105 rebuild => 0,
107 cgi_wrappermode => {
108 type => "string",
109 default => '06755',
110 description => "mode for cgi_wrapper (can safely be made suid)",
111 safe => 0,
112 rebuild => 0,
114 rcs => {
115 type => "string",
116 default => '',
117 description => "rcs backend to use",
118 safe => 0, # don't allow overriding
119 rebuild => 0,
121 default_plugins => {
122 type => "internal",
123 default => [qw{mdwn link inline meta htmlscrubber passwordauth
124 openid signinedit lockedit conditional
125 recentchanges parentlinks editpage}],
126 description => "plugins to enable by default",
127 safe => 0,
128 rebuild => 1,
130 add_plugins => {
131 type => "string",
132 default => [],
133 description => "plugins to add to the default configuration",
134 safe => 1,
135 rebuild => 1,
137 disable_plugins => {
138 type => "string",
139 default => [],
140 description => "plugins to disable",
141 safe => 1,
142 rebuild => 1,
144 templatedir => {
145 type => "string",
146 default => "$installdir/share/ikiwiki/templates",
147 description => "location of template files",
148 advanced => 1,
149 safe => 0, # path
150 rebuild => 1,
152 underlaydir => {
153 type => "string",
154 default => "$installdir/share/ikiwiki/basewiki",
155 description => "base wiki source location",
156 advanced => 1,
157 safe => 0, # path
158 rebuild => 0,
160 underlaydirbase => {
161 type => "internal",
162 default => "$installdir/share/ikiwiki",
163 description => "parent directory containing additional underlays",
164 safe => 0,
165 rebuild => 0,
167 wrappers => {
168 type => "internal",
169 default => [],
170 description => "wrappers to generate",
171 safe => 0,
172 rebuild => 0,
174 underlaydirs => {
175 type => "internal",
176 default => [],
177 description => "additional underlays to use",
178 safe => 0,
179 rebuild => 0,
181 verbose => {
182 type => "boolean",
183 example => 1,
184 description => "display verbose messages?",
185 safe => 1,
186 rebuild => 0,
188 syslog => {
189 type => "boolean",
190 example => 1,
191 description => "log to syslog?",
192 safe => 1,
193 rebuild => 0,
195 usedirs => {
196 type => "boolean",
197 default => 1,
198 description => "create output files named page/index.html?",
199 safe => 0, # changing requires manual transition
200 rebuild => 1,
202 prefix_directives => {
203 type => "boolean",
204 default => 1,
205 description => "use '!'-prefixed preprocessor directives?",
206 safe => 0, # changing requires manual transition
207 rebuild => 1,
209 indexpages => {
210 type => "boolean",
211 default => 0,
212 description => "use page/index.mdwn source files",
213 safe => 1,
214 rebuild => 1,
216 discussion => {
217 type => "boolean",
218 default => 1,
219 description => "enable Discussion pages?",
220 safe => 1,
221 rebuild => 1,
223 sslcookie => {
224 type => "boolean",
225 default => 0,
226 description => "only send cookies over SSL connections?",
227 advanced => 1,
228 safe => 1,
229 rebuild => 0,
231 default_pageext => {
232 type => "string",
233 default => "mdwn",
234 description => "extension to use for new pages",
235 safe => 0, # not sanitized
236 rebuild => 0,
238 htmlext => {
239 type => "string",
240 default => "html",
241 description => "extension to use for html files",
242 safe => 0, # not sanitized
243 rebuild => 1,
245 timeformat => {
246 type => "string",
247 default => '%c',
248 description => "strftime format string to display date",
249 advanced => 1,
250 safe => 1,
251 rebuild => 1,
253 locale => {
254 type => "string",
255 default => undef,
256 example => "en_US.UTF-8",
257 description => "UTF-8 locale to use",
258 advanced => 1,
259 safe => 0,
260 rebuild => 1,
262 userdir => {
263 type => "string",
264 default => "",
265 example => "users",
266 description => "put user pages below specified page",
267 safe => 1,
268 rebuild => 1,
270 numbacklinks => {
271 type => "integer",
272 default => 10,
273 description => "how many backlinks to show before hiding excess (0 to show all)",
274 safe => 1,
275 rebuild => 1,
277 hardlink => {
278 type => "boolean",
279 default => 0,
280 description => "attempt to hardlink source files? (optimisation for large files)",
281 advanced => 1,
282 safe => 0, # paranoia
283 rebuild => 0,
285 umask => {
286 type => "integer",
287 example => "022",
288 description => "force ikiwiki to use a particular umask",
289 advanced => 1,
290 safe => 0, # paranoia
291 rebuild => 0,
293 wrappergroup => {
294 type => "string",
295 example => "ikiwiki",
296 description => "group for wrappers to run in",
297 advanced => 1,
298 safe => 0, # paranoia
299 rebuild => 0,
301 libdir => {
302 type => "string",
303 default => "",
304 example => "$ENV{HOME}/.ikiwiki/",
305 description => "extra library and plugin directory",
306 advanced => 1,
307 safe => 0, # directory
308 rebuild => 0,
310 ENV => {
311 type => "string",
312 default => {},
313 description => "environment variables",
314 safe => 0, # paranoia
315 rebuild => 0,
317 exclude => {
318 type => "string",
319 default => undef,
320 example => '\.wav$',
321 description => "regexp of source files to ignore",
322 advanced => 1,
323 safe => 0, # regexp
324 rebuild => 1,
326 wiki_file_prune_regexps => {
327 type => "internal",
328 default => [qr/(^|\/)\.\.(\/|$)/, qr/^\./, qr/\/\./,
329 qr/\.x?html?$/, qr/\.ikiwiki-new$/,
330 qr/(^|\/).svn\//, qr/.arch-ids\//, qr/{arch}\//,
331 qr/(^|\/)_MTN\//, qr/(^|\/)_darcs\//,
332 qr/\.dpkg-tmp$/],
333 description => "regexps of source files to ignore",
334 safe => 0,
335 rebuild => 1,
337 wiki_file_chars => {
338 type => "string",
339 description => "specifies the characters that are allowed in source filenames",
340 default => "-[:alnum:]+/.:_",
341 safe => 0,
342 rebuild => 1,
344 wiki_file_regexp => {
345 type => "internal",
346 description => "regexp of legal source files",
347 safe => 0,
348 rebuild => 1,
350 web_commit_regexp => {
351 type => "internal",
352 default => qr/^web commit (by (.*?(?=: |$))|from (\d+\.\d+\.\d+\.\d+)):?(.*)/,
353 description => "regexp to parse web commits from logs",
354 safe => 0,
355 rebuild => 0,
357 cgi => {
358 type => "internal",
359 default => 0,
360 description => "run as a cgi",
361 safe => 0,
362 rebuild => 0,
364 cgi_disable_uploads => {
365 type => "internal",
366 default => 1,
367 description => "whether CGI should accept file uploads",
368 safe => 0,
369 rebuild => 0,
371 post_commit => {
372 type => "internal",
373 default => 0,
374 description => "run as a post-commit hook",
375 safe => 0,
376 rebuild => 0,
378 rebuild => {
379 type => "internal",
380 default => 0,
381 description => "running in rebuild mode",
382 safe => 0,
383 rebuild => 0,
385 setup => {
386 type => "internal",
387 default => undef,
388 description => "running in setup mode",
389 safe => 0,
390 rebuild => 0,
392 refresh => {
393 type => "internal",
394 default => 0,
395 description => "running in refresh mode",
396 safe => 0,
397 rebuild => 0,
399 test_receive => {
400 type => "internal",
401 default => 0,
402 description => "running in receive test mode",
403 safe => 0,
404 rebuild => 0,
406 getctime => {
407 type => "internal",
408 default => 0,
409 description => "running in getctime mode",
410 safe => 0,
411 rebuild => 0,
413 w3mmode => {
414 type => "internal",
415 default => 0,
416 description => "running in w3mmode",
417 safe => 0,
418 rebuild => 0,
420 wikistatedir => {
421 type => "internal",
422 default => undef,
423 description => "path to the .ikiwiki directory holding ikiwiki state",
424 safe => 0,
425 rebuild => 0,
427 setupfile => {
428 type => "internal",
429 default => undef,
430 description => "path to setup file",
431 safe => 0,
432 rebuild => 0,
434 allow_symlinks_before_srcdir => {
435 type => "boolean",
436 default => 0,
437 description => "allow symlinks in the path leading to the srcdir (potentially insecure)",
438 safe => 0,
439 rebuild => 0,
443 sub defaultconfig () {
444 my %s=getsetup();
445 my @ret;
446 foreach my $key (keys %s) {
447 push @ret, $key, $s{$key}->{default};
449 use Data::Dumper;
450 return @ret;
453 sub checkconfig () {
454 # locale stuff; avoid LC_ALL since it overrides everything
455 if (defined $ENV{LC_ALL}) {
456 $ENV{LANG} = $ENV{LC_ALL};
457 delete $ENV{LC_ALL};
459 if (defined $config{locale}) {
460 if (POSIX::setlocale(&POSIX::LC_ALL, $config{locale})) {
461 $ENV{LANG}=$config{locale};
462 define_gettext();
466 if (! defined $config{wiki_file_regexp}) {
467 $config{wiki_file_regexp}=qr/(^[$config{wiki_file_chars}]+$)/;
470 if (ref $config{ENV} eq 'HASH') {
471 foreach my $val (keys %{$config{ENV}}) {
472 $ENV{$val}=$config{ENV}{$val};
476 if ($config{w3mmode}) {
477 eval q{use Cwd q{abs_path}};
478 error($@) if $@;
479 $config{srcdir}=possibly_foolish_untaint(abs_path($config{srcdir}));
480 $config{destdir}=possibly_foolish_untaint(abs_path($config{destdir}));
481 $config{cgiurl}="file:///\$LIB/ikiwiki-w3m.cgi/".$config{cgiurl}
482 unless $config{cgiurl} =~ m!file:///!;
483 $config{url}="file://".$config{destdir};
486 if ($config{cgi} && ! length $config{url}) {
487 error(gettext("Must specify url to wiki with --url when using --cgi"));
490 $config{wikistatedir}="$config{srcdir}/.ikiwiki"
491 unless exists $config{wikistatedir} && defined $config{wikistatedir};
493 if (defined $config{umask}) {
494 umask(possibly_foolish_untaint($config{umask}));
497 run_hooks(checkconfig => sub { shift->() });
499 return 1;
502 sub listplugins () {
503 my %ret;
505 foreach my $dir (@INC, $config{libdir}) {
506 next unless defined $dir && length $dir;
507 foreach my $file (glob("$dir/IkiWiki/Plugin/*.pm")) {
508 my ($plugin)=$file=~/.*\/(.*)\.pm$/;
509 $ret{$plugin}=1;
512 foreach my $dir ($config{libdir}, "$installdir/lib/ikiwiki") {
513 next unless defined $dir && length $dir;
514 foreach my $file (glob("$dir/plugins/*")) {
515 $ret{basename($file)}=1 if -x $file;
519 return keys %ret;
522 sub loadplugins () {
523 if (defined $config{libdir} && length $config{libdir}) {
524 unshift @INC, possibly_foolish_untaint($config{libdir});
527 foreach my $plugin (@{$config{default_plugins}}, @{$config{add_plugins}}) {
528 loadplugin($plugin);
531 if ($config{rcs}) {
532 if (exists $IkiWiki::hooks{rcs}) {
533 error(gettext("cannot use multiple rcs plugins"));
535 loadplugin($config{rcs});
537 if (! exists $IkiWiki::hooks{rcs}) {
538 loadplugin("norcs");
541 run_hooks(getopt => sub { shift->() });
542 if (grep /^-/, @ARGV) {
543 print STDERR "Unknown option (or missing parameter): $_\n"
544 foreach grep /^-/, @ARGV;
545 usage();
548 return 1;
551 sub loadplugin ($) {
552 my $plugin=shift;
554 return if grep { $_ eq $plugin} @{$config{disable_plugins}};
556 foreach my $dir (defined $config{libdir} ? possibly_foolish_untaint($config{libdir}) : undef,
557 "$installdir/lib/ikiwiki") {
558 if (defined $dir && -x "$dir/plugins/$plugin") {
559 eval { require IkiWiki::Plugin::external };
560 if ($@) {
561 my $reason=$@;
562 error(sprintf(gettext("failed to load external plugin needed for %s plugin: %s"), $plugin, $reason));
564 import IkiWiki::Plugin::external "$dir/plugins/$plugin";
565 $loaded_plugins{$plugin}=1;
566 return 1;
570 my $mod="IkiWiki::Plugin::".possibly_foolish_untaint($plugin);
571 eval qq{use $mod};
572 if ($@) {
573 error("Failed to load plugin $mod: $@");
575 $loaded_plugins{$plugin}=1;
576 return 1;
579 sub error ($;$) {
580 my $message=shift;
581 my $cleaner=shift;
582 log_message('err' => $message) if $config{syslog};
583 if (defined $cleaner) {
584 $cleaner->();
586 die $message."\n";
589 sub debug ($) {
590 return unless $config{verbose};
591 return log_message(debug => @_);
594 my $log_open=0;
595 sub log_message ($$) {
596 my $type=shift;
598 if ($config{syslog}) {
599 require Sys::Syslog;
600 if (! $log_open) {
601 Sys::Syslog::setlogsock('unix');
602 Sys::Syslog::openlog('ikiwiki', '', 'user');
603 $log_open=1;
605 return eval {
606 Sys::Syslog::syslog($type, "[$config{wikiname}] %s", join(" ", @_));
609 elsif (! $config{cgi}) {
610 return print "@_\n";
612 else {
613 return print STDERR "@_\n";
617 sub possibly_foolish_untaint ($) {
618 my $tainted=shift;
619 my ($untainted)=$tainted=~/(.*)/s;
620 return $untainted;
623 sub basename ($) {
624 my $file=shift;
626 $file=~s!.*/+!!;
627 return $file;
630 sub dirname ($) {
631 my $file=shift;
633 $file=~s!/*[^/]+$!!;
634 return $file;
637 sub isinternal ($) {
638 my $page=shift;
639 return exists $pagesources{$page} &&
640 $pagesources{$page} =~ /\._([^.]+)$/;
643 sub pagetype ($) {
644 my $file=shift;
646 if ($file =~ /\.([^.]+)$/) {
647 return $1 if exists $hooks{htmlize}{$1};
649 my $base=basename($file);
650 if (exists $hooks{htmlize}{$base} &&
651 $hooks{htmlize}{$base}{noextension}) {
652 return $base;
654 return;
657 sub pagename ($) {
658 my $file=shift;
660 my $type=pagetype($file);
661 my $page=$file;
662 $page=~s/\Q.$type\E*$//
663 if defined $type && !$hooks{htmlize}{$type}{keepextension}
664 && !$hooks{htmlize}{$type}{noextension};
665 if ($config{indexpages} && $page=~/(.*)\/index$/) {
666 $page=$1;
668 return $page;
671 sub newpagefile ($$) {
672 my $page=shift;
673 my $type=shift;
675 if (! $config{indexpages} || $page eq 'index') {
676 return $page.".".$type;
678 else {
679 return $page."/index.".$type;
683 sub targetpage ($$;$) {
684 my $page=shift;
685 my $ext=shift;
686 my $filename=shift;
688 if (defined $filename) {
689 return $page."/".$filename.".".$ext;
691 elsif (! $config{usedirs} || $page eq 'index') {
692 return $page.".".$ext;
694 else {
695 return $page."/index.".$ext;
699 sub htmlpage ($) {
700 my $page=shift;
702 return targetpage($page, $config{htmlext});
705 sub srcfile_stat {
706 my $file=shift;
707 my $nothrow=shift;
709 return "$config{srcdir}/$file", stat(_) if -e "$config{srcdir}/$file";
710 foreach my $dir (@{$config{underlaydirs}}, $config{underlaydir}) {
711 return "$dir/$file", stat(_) if -e "$dir/$file";
713 error("internal error: $file cannot be found in $config{srcdir} or underlay") unless $nothrow;
714 return;
717 sub srcfile ($;$) {
718 return (srcfile_stat(@_))[0];
721 sub add_underlay ($) {
722 my $dir=shift;
724 if ($dir !~ /^\//) {
725 $dir="$config{underlaydirbase}/$dir";
728 if (! grep { $_ eq $dir } @{$config{underlaydirs}}) {
729 unshift @{$config{underlaydirs}}, $dir;
732 return 1;
735 sub readfile ($;$$) {
736 my $file=shift;
737 my $binary=shift;
738 my $wantfd=shift;
740 if (-l $file) {
741 error("cannot read a symlink ($file)");
744 local $/=undef;
745 open (my $in, "<", $file) || error("failed to read $file: $!");
746 binmode($in) if ($binary);
747 return \*$in if $wantfd;
748 my $ret=<$in>;
749 # check for invalid utf-8, and toss it back to avoid crashes
750 if (! utf8::valid($ret)) {
751 $ret=encode_utf8($ret);
753 close $in || error("failed to read $file: $!");
754 return $ret;
757 sub prep_writefile ($$) {
758 my $file=shift;
759 my $destdir=shift;
761 my $test=$file;
762 while (length $test) {
763 if (-l "$destdir/$test") {
764 error("cannot write to a symlink ($test)");
766 $test=dirname($test);
769 my $dir=dirname("$destdir/$file");
770 if (! -d $dir) {
771 my $d="";
772 foreach my $s (split(m!/+!, $dir)) {
773 $d.="$s/";
774 if (! -d $d) {
775 mkdir($d) || error("failed to create directory $d: $!");
780 return 1;
783 sub writefile ($$$;$$) {
784 my $file=shift; # can include subdirs
785 my $destdir=shift; # directory to put file in
786 my $content=shift;
787 my $binary=shift;
788 my $writer=shift;
790 prep_writefile($file, $destdir);
792 my $newfile="$destdir/$file.ikiwiki-new";
793 if (-l $newfile) {
794 error("cannot write to a symlink ($newfile)");
797 my $cleanup = sub { unlink($newfile) };
798 open (my $out, '>', $newfile) || error("failed to write $newfile: $!", $cleanup);
799 binmode($out) if ($binary);
800 if ($writer) {
801 $writer->(\*$out, $cleanup);
803 else {
804 print $out $content or error("failed writing to $newfile: $!", $cleanup);
806 close $out || error("failed saving $newfile: $!", $cleanup);
807 rename($newfile, "$destdir/$file") ||
808 error("failed renaming $newfile to $destdir/$file: $!", $cleanup);
810 return 1;
813 my %cleared;
814 sub will_render ($$;$) {
815 my $page=shift;
816 my $dest=shift;
817 my $clear=shift;
819 # Important security check.
820 if (-e "$config{destdir}/$dest" && ! $config{rebuild} &&
821 ! grep { $_ eq $dest } (@{$renderedfiles{$page}}, @{$oldrenderedfiles{$page}}, @{$wikistate{editpage}{previews}})) {
822 error("$config{destdir}/$dest independently created, not overwriting with version from $page");
825 if (! $clear || $cleared{$page}) {
826 $renderedfiles{$page}=[$dest, grep { $_ ne $dest } @{$renderedfiles{$page}}];
828 else {
829 foreach my $old (@{$renderedfiles{$page}}) {
830 delete $destsources{$old};
832 $renderedfiles{$page}=[$dest];
833 $cleared{$page}=1;
835 $destsources{$dest}=$page;
837 return 1;
840 sub bestlink ($$) {
841 my $page=shift;
842 my $link=shift;
844 my $cwd=$page;
845 if ($link=~s/^\/+//) {
846 # absolute links
847 $cwd="";
849 $link=~s/\/$//;
851 do {
852 my $l=$cwd;
853 $l.="/" if length $l;
854 $l.=$link;
856 if (exists $links{$l}) {
857 return $l;
859 elsif (exists $pagecase{lc $l}) {
860 return $pagecase{lc $l};
862 } while $cwd=~s{/?[^/]+$}{};
864 if (length $config{userdir}) {
865 my $l = "$config{userdir}/".lc($link);
866 if (exists $links{$l}) {
867 return $l;
869 elsif (exists $pagecase{lc $l}) {
870 return $pagecase{lc $l};
874 #print STDERR "warning: page $page, broken link: $link\n";
875 return "";
878 sub isinlinableimage ($) {
879 my $file=shift;
881 return $file =~ /\.(png|gif|jpg|jpeg)$/i;
884 sub pagetitle ($;$) {
885 my $page=shift;
886 my $unescaped=shift;
888 if ($unescaped) {
889 $page=~s/(__(\d+)__|_)/$1 eq '_' ? ' ' : chr($2)/eg;
891 else {
892 $page=~s/(__(\d+)__|_)/$1 eq '_' ? ' ' : "&#$2;"/eg;
895 return $page;
898 sub titlepage ($) {
899 my $title=shift;
900 # support use w/o %config set
901 my $chars = defined $config{wiki_file_chars} ? $config{wiki_file_chars} : "-[:alnum:]+/.:_";
902 $title=~s/([^$chars]|_)/$1 eq ' ' ? '_' : "__".ord($1)."__"/eg;
903 return $title;
906 sub linkpage ($) {
907 my $link=shift;
908 my $chars = defined $config{wiki_file_chars} ? $config{wiki_file_chars} : "-[:alnum:]+/.:_";
909 $link=~s/([^$chars])/$1 eq ' ' ? '_' : "__".ord($1)."__"/eg;
910 return $link;
913 sub cgiurl (@) {
914 my %params=@_;
916 return $config{cgiurl}."?".
917 join("&amp;", map $_."=".uri_escape_utf8($params{$_}), keys %params);
920 sub baseurl (;$) {
921 my $page=shift;
923 return "$config{url}/" if ! defined $page;
925 $page=htmlpage($page);
926 $page=~s/[^\/]+$//;
927 $page=~s/[^\/]+\//..\//g;
928 return $page;
931 sub abs2rel ($$) {
932 # Work around very innefficient behavior in File::Spec if abs2rel
933 # is passed two relative paths. It's much faster if paths are
934 # absolute! (Debian bug #376658; fixed in debian unstable now)
935 my $path="/".shift;
936 my $base="/".shift;
938 require File::Spec;
939 my $ret=File::Spec->abs2rel($path, $base);
940 $ret=~s/^// if defined $ret;
941 return $ret;
944 sub displaytime ($;$) {
945 # Plugins can override this function to mark up the time to
946 # display.
947 return '<span class="date">'.formattime(@_).'</span>';
950 sub formattime ($;$) {
951 # Plugins can override this function to format the time.
952 my $time=shift;
953 my $format=shift;
954 if (! defined $format) {
955 $format=$config{timeformat};
958 # strftime doesn't know about encodings, so make sure
959 # its output is properly treated as utf8
960 return decode_utf8(POSIX::strftime($format, localtime($time)));
963 sub beautify_urlpath ($) {
964 my $url=shift;
966 # Ensure url is not an empty link, and if necessary,
967 # add ./ to avoid colon confusion.
968 if ($url !~ /^\// && $url !~ /^\.\.?\//) {
969 $url="./$url";
972 if ($config{usedirs}) {
973 $url =~ s!/index.$config{htmlext}$!/!;
976 return $url;
979 sub urlto ($$;$) {
980 my $to=shift;
981 my $from=shift;
982 my $absolute=shift;
984 if (! length $to) {
985 return beautify_urlpath(baseurl($from)."index.$config{htmlext}");
988 if (! $destsources{$to}) {
989 $to=htmlpage($to);
992 if ($absolute) {
993 return $config{url}.beautify_urlpath("/".$to);
996 my $link = abs2rel($to, dirname(htmlpage($from)));
998 return beautify_urlpath($link);
1001 sub htmllink ($$$;@) {
1002 my $lpage=shift; # the page doing the linking
1003 my $page=shift; # the page that will contain the link (different for inline)
1004 my $link=shift;
1005 my %opts=@_;
1007 $link=~s/\/$//;
1009 my $bestlink;
1010 if (! $opts{forcesubpage}) {
1011 $bestlink=bestlink($lpage, $link);
1013 else {
1014 $bestlink="$lpage/".lc($link);
1017 my $linktext;
1018 if (defined $opts{linktext}) {
1019 $linktext=$opts{linktext};
1021 else {
1022 $linktext=pagetitle(basename($link));
1025 return "<span class=\"selflink\">$linktext</span>"
1026 if length $bestlink && $page eq $bestlink &&
1027 ! defined $opts{anchor};
1029 if (! $destsources{$bestlink}) {
1030 $bestlink=htmlpage($bestlink);
1032 if (! $destsources{$bestlink}) {
1033 return $linktext unless length $config{cgiurl};
1034 return "<span class=\"createlink\"><a href=\"".
1035 cgiurl(
1036 do => "create",
1037 page => lc($link),
1038 from => $lpage
1040 "\" rel=\"nofollow\">?</a>$linktext</span>"
1044 $bestlink=abs2rel($bestlink, dirname(htmlpage($page)));
1045 $bestlink=beautify_urlpath($bestlink);
1047 if (! $opts{noimageinline} && isinlinableimage($bestlink)) {
1048 return "<img src=\"$bestlink\" alt=\"$linktext\" />";
1051 if (defined $opts{anchor}) {
1052 $bestlink.="#".$opts{anchor};
1055 my @attrs;
1056 if (defined $opts{rel}) {
1057 push @attrs, ' rel="'.$opts{rel}.'"';
1059 if (defined $opts{class}) {
1060 push @attrs, ' class="'.$opts{class}.'"';
1063 return "<a href=\"$bestlink\"@attrs>$linktext</a>";
1066 sub openiduser ($) {
1067 my $user=shift;
1069 if ($user =~ m!^https?://! &&
1070 eval q{use Net::OpenID::VerifiedIdentity; 1} && !$@) {
1071 my $display;
1073 if (Net::OpenID::VerifiedIdentity->can("DisplayOfURL")) {
1074 # this works in at least 2.x
1075 $display = Net::OpenID::VerifiedIdentity::DisplayOfURL($user);
1077 else {
1078 # this only works in 1.x
1079 my $oid=Net::OpenID::VerifiedIdentity->new(identity => $user);
1080 $display=$oid->display;
1083 # Convert "user.somehost.com" to "user [somehost.com]"
1084 # (also "user.somehost.co.uk")
1085 if ($display !~ /\[/) {
1086 $display=~s/^([-a-zA-Z0-9]+?)\.([-.a-zA-Z0-9]+\.[a-z]+)$/$1 [$2]/;
1088 # Convert "http://somehost.com/user" to "user [somehost.com]".
1089 # (also "https://somehost.com/user/")
1090 if ($display !~ /\[/) {
1091 $display=~s/^https?:\/\/(.+)\/([^\/]+)\/?$/$2 [$1]/;
1093 $display=~s!^https?://!!; # make sure this is removed
1094 eval q{use CGI 'escapeHTML'};
1095 error($@) if $@;
1096 return escapeHTML($display);
1098 return;
1101 sub userlink ($) {
1102 my $user=shift;
1104 my $oiduser=eval { openiduser($user) };
1105 if (defined $oiduser) {
1106 return "<a href=\"$user\">$oiduser</a>";
1108 else {
1109 eval q{use CGI 'escapeHTML'};
1110 error($@) if $@;
1112 return htmllink("", "", escapeHTML(
1113 length $config{userdir} ? $config{userdir}."/".$user : $user
1114 ), noimageinline => 1);
1118 sub htmlize ($$$$) {
1119 my $page=shift;
1120 my $destpage=shift;
1121 my $type=shift;
1122 my $content=shift;
1124 my $oneline = $content !~ /\n/;
1126 if (exists $hooks{htmlize}{$type}) {
1127 $content=$hooks{htmlize}{$type}{call}->(
1128 page => $page,
1129 content => $content,
1132 else {
1133 error("htmlization of $type not supported");
1136 run_hooks(sanitize => sub {
1137 $content=shift->(
1138 page => $page,
1139 destpage => $destpage,
1140 content => $content,
1144 if ($oneline) {
1145 # hack to get rid of enclosing junk added by markdown
1146 # and other htmlizers
1147 $content=~s/^<p>//i;
1148 $content=~s/<\/p>$//i;
1149 chomp $content;
1152 return $content;
1155 sub linkify ($$$) {
1156 my $page=shift;
1157 my $destpage=shift;
1158 my $content=shift;
1160 run_hooks(linkify => sub {
1161 $content=shift->(
1162 page => $page,
1163 destpage => $destpage,
1164 content => $content,
1168 return $content;
1171 our %preprocessing;
1172 our $preprocess_preview=0;
1173 sub preprocess ($$$;$$) {
1174 my $page=shift; # the page the data comes from
1175 my $destpage=shift; # the page the data will appear in (different for inline)
1176 my $content=shift;
1177 my $scan=shift;
1178 my $preview=shift;
1180 # Using local because it needs to be set within any nested calls
1181 # of this function.
1182 local $preprocess_preview=$preview if defined $preview;
1184 my $handle=sub {
1185 my $escape=shift;
1186 my $prefix=shift;
1187 my $command=shift;
1188 my $params=shift;
1189 $params="" if ! defined $params;
1191 if (length $escape) {
1192 return "[[$prefix$command $params]]";
1194 elsif (exists $hooks{preprocess}{$command}) {
1195 return "" if $scan && ! $hooks{preprocess}{$command}{scan};
1196 # Note: preserve order of params, some plugins may
1197 # consider it significant.
1198 my @params;
1199 while ($params =~ m{
1200 (?:([-\w]+)=)? # 1: named parameter key?
1202 """(.*?)""" # 2: triple-quoted value
1204 "([^"]+)" # 3: single-quoted value
1206 (\S+) # 4: unquoted value
1208 (?:\s+|$) # delimiter to next param
1209 }sgx) {
1210 my $key=$1;
1211 my $val;
1212 if (defined $2) {
1213 $val=$2;
1214 $val=~s/\r\n/\n/mg;
1215 $val=~s/^\n+//g;
1216 $val=~s/\n+$//g;
1218 elsif (defined $3) {
1219 $val=$3;
1221 elsif (defined $4) {
1222 $val=$4;
1225 if (defined $key) {
1226 push @params, $key, $val;
1228 else {
1229 push @params, $val, '';
1232 if ($preprocessing{$page}++ > 3) {
1233 # Avoid loops of preprocessed pages preprocessing
1234 # other pages that preprocess them, etc.
1235 return "[[!$command <span class=\"error\">".
1236 sprintf(gettext("preprocessing loop detected on %s at depth %i"),
1237 $page, $preprocessing{$page}).
1238 "</span>]]";
1240 my $ret;
1241 if (! $scan) {
1242 $ret=eval {
1243 $hooks{preprocess}{$command}{call}->(
1244 @params,
1245 page => $page,
1246 destpage => $destpage,
1247 preview => $preprocess_preview,
1250 if ($@) {
1251 chomp $@;
1252 $ret="[[!$command <span class=\"error\">".
1253 gettext("Error").": $@"."</span>]]";
1256 else {
1257 # use void context during scan pass
1258 eval {
1259 $hooks{preprocess}{$command}{call}->(
1260 @params,
1261 page => $page,
1262 destpage => $destpage,
1263 preview => $preprocess_preview,
1266 $ret="";
1268 $preprocessing{$page}--;
1269 return $ret;
1271 else {
1272 return "[[$prefix$command $params]]";
1276 my $regex;
1277 if ($config{prefix_directives}) {
1278 $regex = qr{
1279 (\\?) # 1: escape?
1280 \[\[(!) # directive open; 2: prefix
1281 ([-\w]+) # 3: command
1282 ( # 4: the parameters..
1283 \s+ # Must have space if parameters present
1285 (?:[-\w]+=)? # named parameter key?
1287 """.*?""" # triple-quoted value
1289 "[^"]+" # single-quoted value
1291 [^"\s\]]+ # unquoted value
1293 \s* # whitespace or end
1294 # of directive
1296 *)? # 0 or more parameters
1297 \]\] # directive closed
1298 }sx;
1300 else {
1301 $regex = qr{
1302 (\\?) # 1: escape?
1303 \[\[(!?) # directive open; 2: optional prefix
1304 ([-\w]+) # 3: command
1306 ( # 4: the parameters..
1308 (?:[-\w]+=)? # named parameter key?
1310 """.*?""" # triple-quoted value
1312 "[^"]+" # single-quoted value
1314 [^"\s\]]+ # unquoted value
1316 \s* # whitespace or end
1317 # of directive
1319 *) # 0 or more parameters
1320 \]\] # directive closed
1321 }sx;
1324 $content =~ s{$regex}{$handle->($1, $2, $3, $4)}eg;
1325 return $content;
1328 sub filter ($$$) {
1329 my $page=shift;
1330 my $destpage=shift;
1331 my $content=shift;
1333 run_hooks(filter => sub {
1334 $content=shift->(page => $page, destpage => $destpage,
1335 content => $content);
1338 return $content;
1341 sub indexlink () {
1342 return "<a href=\"$config{url}\">$config{wikiname}</a>";
1345 sub check_canedit ($$$;$) {
1346 my $page=shift;
1347 my $q=shift;
1348 my $session=shift;
1349 my $nonfatal=shift;
1351 my $canedit;
1352 run_hooks(canedit => sub {
1353 return if defined $canedit;
1354 my $ret=shift->($page, $q, $session);
1355 if (defined $ret) {
1356 if ($ret eq "") {
1357 $canedit=1;
1359 elsif (ref $ret eq 'CODE') {
1360 $ret->() unless $nonfatal;
1361 $canedit=0;
1363 elsif (defined $ret) {
1364 error($ret) unless $nonfatal;
1365 $canedit=0;
1369 return defined $canedit ? $canedit : 1;
1372 sub check_content (@) {
1373 my %params=@_;
1375 return 1 if ! exists $hooks{checkcontent}; # optimisation
1377 if (exists $pagesources{$params{page}}) {
1378 my @diff;
1379 my %old=map { $_ => 1 }
1380 split("\n", readfile(srcfile($pagesources{$params{page}})));
1381 foreach my $line (split("\n", $params{content})) {
1382 push @diff, $line if ! exists $old{$_};
1384 $params{diff}=join("\n", @diff);
1387 my $ok;
1388 run_hooks(checkcontent => sub {
1389 return if defined $ok;
1390 my $ret=shift->(%params);
1391 if (defined $ret) {
1392 if ($ret eq "") {
1393 $ok=1;
1395 elsif (ref $ret eq 'CODE') {
1396 $ret->() unless $params{nonfatal};
1397 $ok=0;
1399 elsif (defined $ret) {
1400 error($ret) unless $params{nonfatal};
1401 $ok=0;
1406 return defined $ok ? $ok : 1;
1409 my $wikilock;
1411 sub lockwiki () {
1412 # Take an exclusive lock on the wiki to prevent multiple concurrent
1413 # run issues. The lock will be dropped on program exit.
1414 if (! -d $config{wikistatedir}) {
1415 mkdir($config{wikistatedir});
1417 open($wikilock, '>', "$config{wikistatedir}/lockfile") ||
1418 error ("cannot write to $config{wikistatedir}/lockfile: $!");
1419 if (! flock($wikilock, 2)) { # LOCK_EX
1420 error("failed to get lock");
1422 return 1;
1425 sub unlockwiki () {
1426 POSIX::close($ENV{IKIWIKI_CGILOCK_FD}) if exists $ENV{IKIWIKI_CGILOCK_FD};
1427 return close($wikilock) if $wikilock;
1428 return;
1431 my $commitlock;
1433 sub commit_hook_enabled () {
1434 open($commitlock, '+>', "$config{wikistatedir}/commitlock") ||
1435 error("cannot write to $config{wikistatedir}/commitlock: $!");
1436 if (! flock($commitlock, 1 | 4)) { # LOCK_SH | LOCK_NB to test
1437 close($commitlock) || error("failed closing commitlock: $!");
1438 return 0;
1440 close($commitlock) || error("failed closing commitlock: $!");
1441 return 1;
1444 sub disable_commit_hook () {
1445 open($commitlock, '>', "$config{wikistatedir}/commitlock") ||
1446 error("cannot write to $config{wikistatedir}/commitlock: $!");
1447 if (! flock($commitlock, 2)) { # LOCK_EX
1448 error("failed to get commit lock");
1450 return 1;
1453 sub enable_commit_hook () {
1454 return close($commitlock) if $commitlock;
1455 return;
1458 sub loadindex () {
1459 %oldrenderedfiles=%pagectime=();
1460 if (! $config{rebuild}) {
1461 %pagesources=%pagemtime=%oldlinks=%links=%depends=
1462 %destsources=%renderedfiles=%pagecase=%pagestate=();
1464 my $in;
1465 if (! open ($in, "<", "$config{wikistatedir}/indexdb")) {
1466 if (-e "$config{wikistatedir}/index") {
1467 system("ikiwiki-transition", "indexdb", $config{srcdir});
1468 open ($in, "<", "$config{wikistatedir}/indexdb") || return;
1470 else {
1471 return;
1475 my $index=Storable::fd_retrieve($in);
1476 if (! defined $index) {
1477 return 0;
1480 my $pages;
1481 if (exists $index->{version} && ! ref $index->{version}) {
1482 $pages=$index->{page};
1483 %wikistate=%{$index->{state}};
1485 else {
1486 $pages=$index;
1487 %wikistate=();
1490 foreach my $src (keys %$pages) {
1491 my $d=$pages->{$src};
1492 my $page=pagename($src);
1493 $pagectime{$page}=$d->{ctime};
1494 if (! $config{rebuild}) {
1495 $pagesources{$page}=$src;
1496 $pagemtime{$page}=$d->{mtime};
1497 $renderedfiles{$page}=$d->{dest};
1498 if (exists $d->{links} && ref $d->{links}) {
1499 $links{$page}=$d->{links};
1500 $oldlinks{$page}=[@{$d->{links}}];
1502 if (exists $d->{depends}) {
1503 $depends{$page}=$d->{depends};
1505 if (exists $d->{state}) {
1506 $pagestate{$page}=$d->{state};
1509 $oldrenderedfiles{$page}=[@{$d->{dest}}];
1511 foreach my $page (keys %pagesources) {
1512 $pagecase{lc $page}=$page;
1514 foreach my $page (keys %renderedfiles) {
1515 $destsources{$_}=$page foreach @{$renderedfiles{$page}};
1517 return close($in);
1520 sub saveindex () {
1521 run_hooks(savestate => sub { shift->() });
1523 my %hookids;
1524 foreach my $type (keys %hooks) {
1525 $hookids{$_}=1 foreach keys %{$hooks{$type}};
1527 my @hookids=keys %hookids;
1529 if (! -d $config{wikistatedir}) {
1530 mkdir($config{wikistatedir});
1532 my $newfile="$config{wikistatedir}/indexdb.new";
1533 my $cleanup = sub { unlink($newfile) };
1534 open (my $out, '>', $newfile) || error("cannot write to $newfile: $!", $cleanup);
1536 my %index;
1537 foreach my $page (keys %pagemtime) {
1538 next unless $pagemtime{$page};
1539 my $src=$pagesources{$page};
1541 $index{page}{$src}={
1542 ctime => $pagectime{$page},
1543 mtime => $pagemtime{$page},
1544 dest => $renderedfiles{$page},
1545 links => $links{$page},
1548 if (exists $depends{$page}) {
1549 $index{page}{$src}{depends} = $depends{$page};
1552 if (exists $pagestate{$page}) {
1553 foreach my $id (@hookids) {
1554 foreach my $key (keys %{$pagestate{$page}{$id}}) {
1555 $index{page}{$src}{state}{$id}{$key}=$pagestate{$page}{$id}{$key};
1561 $index{state}={};
1562 foreach my $id (@hookids) {
1563 foreach my $key (keys %{$wikistate{$id}}) {
1564 $index{state}{$id}{$key}=$wikistate{$id}{$key};
1568 $index{version}="3";
1569 my $ret=Storable::nstore_fd(\%index, $out);
1570 return if ! defined $ret || ! $ret;
1571 close $out || error("failed saving to $newfile: $!", $cleanup);
1572 rename($newfile, "$config{wikistatedir}/indexdb") ||
1573 error("failed renaming $newfile to $config{wikistatedir}/indexdb", $cleanup);
1575 return 1;
1578 sub template_file ($) {
1579 my $template=shift;
1581 foreach my $dir ($config{templatedir}, "$installdir/share/ikiwiki/templates") {
1582 return "$dir/$template" if -e "$dir/$template";
1584 return;
1587 sub template_params (@) {
1588 my $filename=template_file(shift);
1590 if (! defined $filename) {
1591 return if wantarray;
1592 return "";
1595 my @ret=(
1596 filter => sub {
1597 my $text_ref = shift;
1598 ${$text_ref} = decode_utf8(${$text_ref});
1600 filename => $filename,
1601 loop_context_vars => 1,
1602 die_on_bad_params => 0,
1605 return wantarray ? @ret : {@ret};
1608 sub template ($;@) {
1609 require HTML::Template;
1610 return HTML::Template->new(template_params(@_));
1613 sub misctemplate ($$;@) {
1614 my $title=shift;
1615 my $pagebody=shift;
1617 my $template=template("misc.tmpl");
1618 $template->param(
1619 title => $title,
1620 indexlink => indexlink(),
1621 wikiname => $config{wikiname},
1622 pagebody => $pagebody,
1623 baseurl => baseurl(),
1626 run_hooks(pagetemplate => sub {
1627 shift->(page => "", destpage => "", template => $template);
1629 return $template->output;
1632 sub hook (@) {
1633 my %param=@_;
1635 if (! exists $param{type} || ! ref $param{call} || ! exists $param{id}) {
1636 error 'hook requires type, call, and id parameters';
1639 return if $param{no_override} && exists $hooks{$param{type}}{$param{id}};
1641 $hooks{$param{type}}{$param{id}}=\%param;
1642 return 1;
1645 sub run_hooks ($$) {
1646 # Calls the given sub for each hook of the given type,
1647 # passing it the hook function to call.
1648 my $type=shift;
1649 my $sub=shift;
1651 if (exists $hooks{$type}) {
1652 my (@first, @middle, @last);
1653 foreach my $id (keys %{$hooks{$type}}) {
1654 if ($hooks{$type}{$id}{first}) {
1655 push @first, $id;
1657 elsif ($hooks{$type}{$id}{last}) {
1658 push @last, $id;
1660 else {
1661 push @middle, $id;
1664 foreach my $id (@first, @middle, @last) {
1665 $sub->($hooks{$type}{$id}{call});
1669 return 1;
1672 sub rcs_update () {
1673 $hooks{rcs}{rcs_update}{call}->(@_);
1676 sub rcs_prepedit ($) {
1677 $hooks{rcs}{rcs_prepedit}{call}->(@_);
1680 sub rcs_commit ($$$;$$) {
1681 $hooks{rcs}{rcs_commit}{call}->(@_);
1684 sub rcs_commit_staged ($$$) {
1685 $hooks{rcs}{rcs_commit_staged}{call}->(@_);
1688 sub rcs_add ($) {
1689 $hooks{rcs}{rcs_add}{call}->(@_);
1692 sub rcs_remove ($) {
1693 $hooks{rcs}{rcs_remove}{call}->(@_);
1696 sub rcs_rename ($$) {
1697 $hooks{rcs}{rcs_rename}{call}->(@_);
1700 sub rcs_recentchanges ($) {
1701 $hooks{rcs}{rcs_recentchanges}{call}->(@_);
1704 sub rcs_diff ($) {
1705 $hooks{rcs}{rcs_diff}{call}->(@_);
1708 sub rcs_getctime ($) {
1709 $hooks{rcs}{rcs_getctime}{call}->(@_);
1712 sub rcs_receive () {
1713 $hooks{rcs}{rcs_receive}{call}->();
1716 sub add_depends ($$) {
1717 my $page=shift;
1718 my $pagespec=shift;
1720 return unless pagespec_valid($pagespec);
1722 if (! exists $depends{$page}) {
1723 $depends{$page}=$pagespec;
1725 else {
1726 $depends{$page}=pagespec_merge($depends{$page}, $pagespec);
1729 return 1;
1732 sub file_pruned ($$) {
1733 require File::Spec;
1734 my $file=File::Spec->canonpath(shift);
1735 my $base=File::Spec->canonpath(shift);
1736 $file =~ s#^\Q$base\E/+##;
1738 my $regexp='('.join('|', @{$config{wiki_file_prune_regexps}}).')';
1739 return $file =~ m/$regexp/ && $file ne $base;
1742 sub define_gettext () {
1743 # If translation is needed, redefine the gettext function to do it.
1744 # Otherwise, it becomes a quick no-op.
1745 no warnings 'redefine';
1746 if ((exists $ENV{LANG} && length $ENV{LANG}) ||
1747 (exists $ENV{LC_ALL} && length $ENV{LC_ALL}) ||
1748 (exists $ENV{LC_MESSAGES} && length $ENV{LC_MESSAGES})) {
1749 *gettext=sub {
1750 my $gettext_obj=eval q{
1751 use Locale::gettext q{textdomain};
1752 Locale::gettext->domain('ikiwiki')
1755 if ($gettext_obj) {
1756 $gettext_obj->get(shift);
1758 else {
1759 return shift;
1763 else {
1764 *gettext=sub { return shift };
1768 sub gettext {
1769 define_gettext();
1770 gettext(@_);
1773 sub yesno ($) {
1774 my $val=shift;
1776 return (defined $val && (lc($val) eq gettext("yes") || lc($val) eq "yes" || $val eq "1"));
1779 sub inject {
1780 # Injects a new function into the symbol table to replace an
1781 # exported function.
1782 my %params=@_;
1784 # This is deep ugly perl foo, beware.
1785 no strict;
1786 no warnings;
1787 if (! defined $params{parent}) {
1788 $params{parent}='::';
1789 $params{old}=\&{$params{name}};
1790 $params{name}=~s/.*:://;
1792 my $parent=$params{parent};
1793 foreach my $ns (grep /^\w+::/, keys %{$parent}) {
1794 $ns = $params{parent} . $ns;
1795 inject(%params, parent => $ns) unless $ns eq '::main::';
1796 *{$ns . $params{name}} = $params{call}
1797 if exists ${$ns}{$params{name}} &&
1798 \&{${$ns}{$params{name}}} == $params{old};
1800 use strict;
1801 use warnings;
1804 sub add_link ($$) {
1805 my $page=shift;
1806 my $link=shift;
1808 push @{$links{$page}}, $link
1809 unless grep { $_ eq $link } @{$links{$page}};
1812 sub pagespec_merge ($$) {
1813 my $a=shift;
1814 my $b=shift;
1816 return $a if $a eq $b;
1817 return "($a) or ($b)";
1820 sub pagespec_translate ($) {
1821 my $spec=shift;
1823 # Convert spec to perl code.
1824 my $code="";
1825 my @data;
1826 while ($spec=~m{
1827 \s* # ignore whitespace
1828 ( # 1: match a single word
1829 \! # !
1831 \( # (
1833 \) # )
1835 \w+\([^\)]*\) # command(params)
1837 [^\s()]+ # any other text
1839 \s* # ignore whitespace
1840 }igx) {
1841 my $word=$1;
1842 if (lc $word eq 'and') {
1843 $code.=' &&';
1845 elsif (lc $word eq 'or') {
1846 $code.=' ||';
1848 elsif ($word eq "(" || $word eq ")" || $word eq "!") {
1849 $code.=' '.$word;
1851 elsif ($word =~ /^(\w+)\((.*)\)$/) {
1852 if (exists $IkiWiki::PageSpec::{"match_$1"}) {
1853 push @data, $2;
1854 $code.="IkiWiki::PageSpec::match_$1(\$page, \$data[$#data], \@_)";
1856 else {
1857 push @data, qq{unknown function in pagespec "$word"};
1858 $code.="IkiWiki::ErrorReason->new(\$data[$#data])";
1861 else {
1862 push @data, $word;
1863 $code.=" IkiWiki::PageSpec::match_glob(\$page, \$data[$#data], \@_)";
1867 if (! length $code) {
1868 $code="IkiWiki::FailReason->new('empty pagespec')";
1871 no warnings;
1872 return eval 'sub { my $page=shift; '.$code.' }';
1875 sub pagespec_match ($$;@) {
1876 my $page=shift;
1877 my $spec=shift;
1878 my @params=@_;
1880 # Backwards compatability with old calling convention.
1881 if (@params == 1) {
1882 unshift @params, 'location';
1885 my $sub=pagespec_translate($spec);
1886 return IkiWiki::ErrorReason->new("syntax error in pagespec \"$spec\"")
1887 if $@ || ! defined $sub;
1888 return $sub->($page, @params);
1891 sub pagespec_match_list ($$;@) {
1892 my $pages=shift;
1893 my $spec=shift;
1894 my @params=@_;
1896 my $sub=pagespec_translate($spec);
1897 error "syntax error in pagespec \"$spec\""
1898 if $@ || ! defined $sub;
1900 my @ret;
1901 my $r;
1902 foreach my $page (@$pages) {
1903 $r=$sub->($page, @params);
1904 push @ret, $page if $r;
1907 if (! @ret && defined $r && $r->isa("IkiWiki::ErrorReason")) {
1908 error(sprintf(gettext("cannot match pages: %s"), $r));
1910 else {
1911 return @ret;
1915 sub pagespec_valid ($) {
1916 my $spec=shift;
1918 my $sub=pagespec_translate($spec);
1919 return ! $@;
1922 sub glob2re ($) {
1923 my $re=quotemeta(shift);
1924 $re=~s/\\\*/.*/g;
1925 $re=~s/\\\?/./g;
1926 return $re;
1929 package IkiWiki::FailReason;
1931 use overload (
1932 '""' => sub { ${$_[0]} },
1933 '0+' => sub { 0 },
1934 '!' => sub { bless $_[0], 'IkiWiki::SuccessReason'},
1935 fallback => 1,
1938 sub new {
1939 my $class = shift;
1940 my $value = shift;
1941 return bless \$value, $class;
1944 package IkiWiki::ErrorReason;
1946 our @ISA = 'IkiWiki::FailReason';
1948 package IkiWiki::SuccessReason;
1950 use overload (
1951 '""' => sub { ${$_[0]} },
1952 '0+' => sub { 1 },
1953 '!' => sub { bless $_[0], 'IkiWiki::FailReason'},
1954 fallback => 1,
1957 sub new {
1958 my $class = shift;
1959 my $value = shift;
1960 return bless \$value, $class;
1963 package IkiWiki::PageSpec;
1965 sub derel ($$) {
1966 my $path=shift;
1967 my $from=shift;
1969 if ($path =~ m!^\./!) {
1970 $from=~s#/?[^/]+$## if defined $from;
1971 $path=~s#^\./##;
1972 $path="$from/$path" if length $from;
1975 return $path;
1978 sub match_glob ($$;@) {
1979 my $page=shift;
1980 my $glob=shift;
1981 my %params=@_;
1983 $glob=derel($glob, $params{location});
1985 my $regexp=IkiWiki::glob2re($glob);
1986 if ($page=~/^$regexp$/i) {
1987 if (! IkiWiki::isinternal($page) || $params{internal}) {
1988 return IkiWiki::SuccessReason->new("$glob matches $page");
1990 else {
1991 return IkiWiki::FailReason->new("$glob matches $page, but the page is an internal page");
1994 else {
1995 return IkiWiki::FailReason->new("$glob does not match $page");
1999 sub match_internal ($$;@) {
2000 return match_glob($_[0], $_[1], @_, internal => 1)
2003 sub match_link ($$;@) {
2004 my $page=shift;
2005 my $link=lc(shift);
2006 my %params=@_;
2008 $link=derel($link, $params{location});
2009 my $from=exists $params{location} ? $params{location} : '';
2011 my $links = $IkiWiki::links{$page};
2012 return IkiWiki::FailReason->new("$page has no links") unless $links && @{$links};
2013 my $bestlink = IkiWiki::bestlink($from, $link);
2014 foreach my $p (@{$links}) {
2015 if (length $bestlink) {
2016 return IkiWiki::SuccessReason->new("$page links to $link")
2017 if $bestlink eq IkiWiki::bestlink($page, $p);
2019 else {
2020 return IkiWiki::SuccessReason->new("$page links to page $p matching $link")
2021 if match_glob($p, $link, %params);
2022 $p=~s/^\///;
2023 $link=~s/^\///;
2024 return IkiWiki::SuccessReason->new("$page links to page $p matching $link")
2025 if match_glob($p, $link, %params);
2028 return IkiWiki::FailReason->new("$page does not link to $link");
2031 sub match_backlink ($$;@) {
2032 return match_link($_[1], $_[0], @_);
2035 sub match_created_before ($$;@) {
2036 my $page=shift;
2037 my $testpage=shift;
2038 my %params=@_;
2040 $testpage=derel($testpage, $params{location});
2042 if (exists $IkiWiki::pagectime{$testpage}) {
2043 if ($IkiWiki::pagectime{$page} < $IkiWiki::pagectime{$testpage}) {
2044 return IkiWiki::SuccessReason->new("$page created before $testpage");
2046 else {
2047 return IkiWiki::FailReason->new("$page not created before $testpage");
2050 else {
2051 return IkiWiki::FailReason->new("$testpage has no ctime");
2055 sub match_created_after ($$;@) {
2056 my $page=shift;
2057 my $testpage=shift;
2058 my %params=@_;
2060 $testpage=derel($testpage, $params{location});
2062 if (exists $IkiWiki::pagectime{$testpage}) {
2063 if ($IkiWiki::pagectime{$page} > $IkiWiki::pagectime{$testpage}) {
2064 return IkiWiki::SuccessReason->new("$page created after $testpage");
2066 else {
2067 return IkiWiki::FailReason->new("$page not created after $testpage");
2070 else {
2071 return IkiWiki::FailReason->new("$testpage has no ctime");
2075 sub match_creation_day ($$;@) {
2076 if ((gmtime($IkiWiki::pagectime{shift()}))[3] == shift) {
2077 return IkiWiki::SuccessReason->new('creation_day matched');
2079 else {
2080 return IkiWiki::FailReason->new('creation_day did not match');
2084 sub match_creation_month ($$;@) {
2085 if ((gmtime($IkiWiki::pagectime{shift()}))[4] + 1 == shift) {
2086 return IkiWiki::SuccessReason->new('creation_month matched');
2088 else {
2089 return IkiWiki::FailReason->new('creation_month did not match');
2093 sub match_creation_year ($$;@) {
2094 if ((gmtime($IkiWiki::pagectime{shift()}))[5] + 1900 == shift) {
2095 return IkiWiki::SuccessReason->new('creation_year matched');
2097 else {
2098 return IkiWiki::FailReason->new('creation_year did not match');
2102 sub match_user ($$;@) {
2103 shift;
2104 my $user=shift;
2105 my %params=@_;
2107 if (! exists $params{user}) {
2108 return IkiWiki::ErrorReason->new("no user specified");
2111 if (defined $params{user} && lc $params{user} eq lc $user) {
2112 return IkiWiki::SuccessReason->new("user is $user");
2114 elsif (! defined $params{user}) {
2115 return IkiWiki::FailReason->new("not logged in");
2117 else {
2118 return IkiWiki::FailReason->new("user is $params{user}, not $user");
2122 sub match_admin ($$;@) {
2123 shift;
2124 shift;
2125 my %params=@_;
2127 if (! exists $params{user}) {
2128 return IkiWiki::ErrorReason->new("no user specified");
2131 if (defined $params{user} && IkiWiki::is_admin($params{user})) {
2132 return IkiWiki::SuccessReason->new("user is an admin");
2134 elsif (! defined $params{user}) {
2135 return IkiWiki::FailReason->new("not logged in");
2137 else {
2138 return IkiWiki::FailReason->new("user is not an admin");
2142 sub match_ip ($$;@) {
2143 shift;
2144 my $ip=shift;
2145 my %params=@_;
2147 if (! exists $params{ip}) {
2148 return IkiWiki::ErrorReason->new("no IP specified");
2151 if (defined $params{ip} && lc $params{ip} eq lc $ip) {
2152 return IkiWiki::SuccessReason->new("IP is $ip");
2154 else {
2155 return IkiWiki::FailReason->new("IP is $params{ip}, not $ip");