8 use URI::Escape q{uri_escape_utf8};
10 use open qw{:utf8 :std};
12 use vars qw{%config %links %oldlinks %pagemtime %pagectime %pagecase
13 %renderedfiles %oldrenderedfiles %pagesources %destsources
14 %depends %hooks %forcerebuild $gettext_obj};
16 use Exporter q{import};
17 our @EXPORT = qw(hook debug error template htmlpage add_depends pagespec_match
18 bestlink htmllink readfile writefile pagetype srcfile pagename
19 displaytime will_render gettext urlto targetpage
21 %config %links %renderedfiles %pagesources %destsources);
22 our $VERSION = 2.00; # plugin interface version, next is ikiwiki version
23 our $version='unknown'; # VERSION_AUTOREPLACE done by Makefile, DNE
24 my $installdir=''; # INSTALLDIR_AUTOREPLACE done by Makefile, DNE
29 memoize("pagespec_translate");
30 memoize("file_pruned");
32 sub defaultconfig () { #{{{
34 wiki_file_prune_regexps => [qr/\.\./, qr/^\./, qr/\/\./,
35 qr/\.x?html?$/, qr/\.ikiwiki-new$/,
36 qr/(^|\/).svn\//, qr/.arch-ids\//, qr/{arch}\//,
39 wiki_link_regexp => qr{
40 \[\[ # beginning of link
42 ([^\]\|\n]+) # 1: link text
46 ([^\s\]#]+) # 2: page to link to
48 \# # '#', beginning of anchor
49 ([^\s\]]+) # 3: anchor text
54 wiki_file_regexp => qr/(^[-[:alnum:]_.:\/+]+$)/,
55 web_commit_regexp => qr/^web commit (by (.*?(?=: |$))|from (\d+\.\d+\.\d+\.\d+)):?(.*)/,
59 default_pageext => "mdwn",
80 gitorigin_branch => "origin",
81 gitmaster_branch => "master",
85 templatedir => "$installdir/share/ikiwiki/templates",
86 underlaydir => "$installdir/share/ikiwiki/basewiki",
91 plugin => [qw{mdwn inline htmlscrubber passwordauth openid signinedit
92 lockedit conditional}],
101 account_creation_password => "",
104 sub checkconfig () { #{{{
105 # locale stuff; avoid LC_ALL since it overrides everything
106 if (defined $ENV{LC_ALL}) {
107 $ENV{LANG} = $ENV{LC_ALL};
110 if (defined $config{locale}) {
111 if (POSIX::setlocale(&POSIX::LC_ALL, $config{locale})) {
112 $ENV{LANG}=$config{locale};
117 if ($config{w3mmode}) {
118 eval q{use Cwd q{abs_path}};
120 $config{srcdir}=possibly_foolish_untaint(abs_path($config{srcdir}));
121 $config{destdir}=possibly_foolish_untaint(abs_path($config{destdir}));
122 $config{cgiurl}="file:///\$LIB/ikiwiki-w3m.cgi/".$config{cgiurl}
123 unless $config{cgiurl} =~ m!file:///!;
124 $config{url}="file://".$config{destdir};
127 if ($config{cgi} && ! length $config{url}) {
128 error(gettext("Must specify url to wiki with --url when using --cgi"));
131 $config{wikistatedir}="$config{srcdir}/.ikiwiki"
132 unless exists $config{wikistatedir};
135 eval qq{use IkiWiki::Rcs::$config{rcs}};
137 error("Failed to load RCS module IkiWiki::Rcs::$config{rcs}: $@");
141 require IkiWiki::Rcs::Stub;
144 run_hooks(checkconfig => sub { shift->() });
149 sub loadplugins () { #{{{
150 if (defined $config{libdir}) {
151 unshift @INC, possibly_foolish_untaint($config{libdir});
154 loadplugin($_) foreach @{$config{plugin}};
156 run_hooks(getopt => sub { shift->() });
157 if (grep /^-/, @ARGV) {
158 print STDERR "Unknown option: $_\n"
159 foreach grep /^-/, @ARGV;
166 sub loadplugin ($) { #{{{
169 return if grep { $_ eq $plugin} @{$config{disable_plugins}};
171 foreach my $dir (defined $config{libdir} ? possibly_foolish_untaint($config{libdir}) : undef,
172 "$installdir/lib/ikiwiki") {
173 if (defined $dir && -x "$dir/plugins/$plugin") {
174 require IkiWiki::Plugin::external;
175 import IkiWiki::Plugin::external "$dir/plugins/$plugin";
180 my $mod="IkiWiki::Plugin::".possibly_foolish_untaint($plugin);
183 error("Failed to load plugin $mod: $@");
188 sub error ($;$) { #{{{
192 print "Content-type: text/html\n\n";
193 print misctemplate(gettext("Error"),
194 "<p>".gettext("Error").": $message</p>");
196 log_message('err' => $message) if $config{syslog};
197 if (defined $cleaner) {
204 return unless $config{verbose};
205 return log_message(debug => @_);
209 sub log_message ($$) { #{{{
212 if ($config{syslog}) {
215 Sys::Syslog::setlogsock('unix');
216 Sys::Syslog::openlog('ikiwiki', '', 'user');
220 Sys::Syslog::syslog($type, "[$config{wikiname}] %s", join(" ", @_));
223 elsif (! $config{cgi}) {
227 return print STDERR "@_\n";
231 sub possibly_foolish_untaint ($) { #{{{
233 my ($untainted)=$tainted=~/(.*)/s;
237 sub basename ($) { #{{{
244 sub dirname ($) { #{{{
251 sub pagetype ($) { #{{{
254 if ($page =~ /\.([^.]+)$/) {
255 return $1 if exists $hooks{htmlize}{$1};
260 sub pagename ($) { #{{{
263 my $type=pagetype($file);
265 $page=~s/\Q.$type\E*$// if defined $type;
269 sub targetpage ($$) { #{{{
273 if (! $config{usedirs} || $page =~ /^index$/ ) {
274 return $page.".".$ext;
276 return $page."/index.".$ext;
280 sub htmlpage ($) { #{{{
283 return targetpage($page, $config{htmlext});
286 sub srcfile ($) { #{{{
289 return "$config{srcdir}/$file" if -e "$config{srcdir}/$file";
290 foreach my $dir (@{$config{underlaydirs}}, $config{underlaydir}) {
291 return "$dir/$file" if -e "$dir/$file";
293 error("internal error: $file cannot be found in $config{srcdir} or underlay");
297 sub add_underlay ($) { #{{{
301 unshift @{$config{underlaydirs}}, $dir;
304 unshift @{$config{underlaydirs}}, "$config{underlaydir}/../$dir";
310 sub readfile ($;$$) { #{{{
316 error("cannot read a symlink ($file)");
320 open (my $in, "<", $file) || error("failed to read $file: $!");
321 binmode($in) if ($binary);
322 return \*$in if $wantfd;
324 close $in || error("failed to read $file: $!");
328 sub writefile ($$$;$$) { #{{{
329 my $file=shift; # can include subdirs
330 my $destdir=shift; # directory to put file in
336 while (length $test) {
337 if (-l "$destdir/$test") {
338 error("cannot write to a symlink ($test)");
340 $test=dirname($test);
342 my $newfile="$destdir/$file.ikiwiki-new";
344 error("cannot write to a symlink ($newfile)");
347 my $dir=dirname($newfile);
350 foreach my $s (split(m!/+!, $dir)) {
353 mkdir($d) || error("failed to create directory $d: $!");
358 my $cleanup = sub { unlink($newfile) };
359 open (my $out, '>', $newfile) || error("failed to write $newfile: $!", $cleanup);
360 binmode($out) if ($binary);
362 $writer->(\*$out, $cleanup);
365 print $out $content or error("failed writing to $newfile: $!", $cleanup);
367 close $out || error("failed saving $newfile: $!", $cleanup);
368 rename($newfile, "$destdir/$file") ||
369 error("failed renaming $newfile to $destdir/$file: $!", $cleanup);
375 sub will_render ($$;$) { #{{{
380 # Important security check.
381 if (-e "$config{destdir}/$dest" && ! $config{rebuild} &&
382 ! grep { $_ eq $dest } (@{$renderedfiles{$page}}, @{$oldrenderedfiles{$page}})) {
383 error("$config{destdir}/$dest independently created, not overwriting with version from $page");
386 if (! $clear || $cleared{$page}) {
387 $renderedfiles{$page}=[$dest, grep { $_ ne $dest } @{$renderedfiles{$page}}];
390 foreach my $old (@{$renderedfiles{$page}}) {
391 delete $destsources{$old};
393 $renderedfiles{$page}=[$dest];
396 $destsources{$dest}=$page;
401 sub bestlink ($$) { #{{{
406 if ($link=~s/^\/+//) {
413 $l.="/" if length $l;
416 if (exists $links{$l}) {
419 elsif (exists $pagecase{lc $l}) {
420 return $pagecase{lc $l};
422 } while $cwd=~s!/?[^/]+$!!;
424 if (length $config{userdir}) {
425 my $l = "$config{userdir}/".lc($link);
426 if (exists $links{$l}) {
429 elsif (exists $pagecase{lc $l}) {
430 return $pagecase{lc $l};
434 #print STDERR "warning: page $page, broken link: $link\n";
438 sub isinlinableimage ($) { #{{{
441 return $file =~ /\.(png|gif|jpg|jpeg)$/i;
444 sub pagetitle ($;$) { #{{{
449 $page=~s/(__(\d+)__|_)/$1 eq '_' ? ' ' : chr($2)/eg;
452 $page=~s/(__(\d+)__|_)/$1 eq '_' ? ' ' : "&#$2;"/eg;
458 sub titlepage ($) { #{{{
460 $title=~s/([^-[:alnum:]:+\/.])/$1 eq ' ' ? '_' : "__".ord($1)."__"/eg;
464 sub linkpage ($) { #{{{
466 $link=~s/([^-[:alnum:]:+\/._])/$1 eq ' ' ? '_' : "__".ord($1)."__"/eg;
470 sub cgiurl (@) { #{{{
473 return $config{cgiurl}."?".
474 join("&", map $_."=".uri_escape_utf8($params{$_}), keys %params);
477 sub baseurl (;$) { #{{{
480 return "$config{url}/" if ! defined $page;
482 $page=htmlpage($page);
484 $page=~s/[^\/]+\//..\//g;
488 sub abs2rel ($$) { #{{{
489 # Work around very innefficient behavior in File::Spec if abs2rel
490 # is passed two relative paths. It's much faster if paths are
491 # absolute! (Debian bug #376658; fixed in debian unstable now)
496 my $ret=File::Spec->abs2rel($path, $base);
497 $ret=~s/^// if defined $ret;
501 sub displaytime ($) { #{{{
504 # strftime doesn't know about encodings, so make sure
505 # its output is properly treated as utf8
506 return decode_utf8(POSIX::strftime(
507 $config{timeformat}, localtime($time)));
510 sub beautify_url ($) { #{{{
513 $url =~ s!/index.$config{htmlext}$!/!;
514 $url =~ s!^$!./!; # Browsers don't like empty links...
519 sub urlto ($$) { #{{{
524 return beautify_url(baseurl($from));
527 if (! $destsources{$to}) {
531 my $link = abs2rel($to, dirname(htmlpage($from)));
533 return beautify_url($link);
536 sub htmllink ($$$;@) { #{{{
537 my $lpage=shift; # the page doing the linking
538 my $page=shift; # the page that will contain the link (different for inline)
543 if (! $opts{forcesubpage}) {
544 $bestlink=bestlink($lpage, $link);
547 $bestlink="$lpage/".lc($link);
551 if (defined $opts{linktext}) {
552 $linktext=$opts{linktext};
555 $linktext=pagetitle(basename($link));
558 return "<span class=\"selflink\">$linktext</span>"
559 if length $bestlink && $page eq $bestlink;
561 if (! $destsources{$bestlink}) {
562 $bestlink=htmlpage($bestlink);
564 if (! $destsources{$bestlink}) {
565 return $linktext unless length $config{cgiurl};
566 return "<span><a href=\"".
569 page => pagetitle(lc($link), 1),
572 "\">?</a>$linktext</span>"
576 $bestlink=abs2rel($bestlink, dirname(htmlpage($page)));
577 $bestlink=beautify_url($bestlink);
579 if (! $opts{noimageinline} && isinlinableimage($bestlink)) {
580 return "<img src=\"$bestlink\" alt=\"$linktext\" />";
583 if (defined $opts{anchor}) {
584 $bestlink.="#".$opts{anchor};
588 if (defined $opts{rel}) {
589 push @attrs, ' rel="'.$opts{rel}.'"';
591 if (defined $opts{class}) {
592 push @attrs, ' class="'.$opts{class}.'"';
595 return "<a href=\"$bestlink\"@attrs>$linktext</a>";
598 sub htmlize ($$$) { #{{{
603 if (exists $hooks{htmlize}{$type}) {
604 $content=$hooks{htmlize}{$type}{call}->(
610 error("htmlization of $type not supported");
613 run_hooks(sanitize => sub {
623 sub linkify ($$$) { #{{{
624 my $lpage=shift; # the page containing the links
625 my $page=shift; # the page the link will end up on (different for inline)
628 $content =~ s{(\\?)$config{wiki_link_regexp}}{
631 ? "[[$2|$3".($4 ? "#$4" : "")."]]"
632 : htmllink($lpage, $page, linkpage($3),
633 anchor => $4, linktext => pagetitle($2)))
635 ? "[[$3".($4 ? "#$4" : "")."]]"
636 : htmllink($lpage, $page, linkpage($3),
644 our $preprocess_preview=0;
645 sub preprocess ($$$;$$) { #{{{
646 my $page=shift; # the page the data comes from
647 my $destpage=shift; # the page the data will appear in (different for inline)
652 # Using local because it needs to be set within any nested calls
654 local $preprocess_preview=$preview if defined $preview;
660 if (length $escape) {
661 return "[[$command $params]]";
663 elsif (exists $hooks{preprocess}{$command}) {
664 return "" if $scan && ! $hooks{preprocess}{$command}{scan};
665 # Note: preserve order of params, some plugins may
666 # consider it significant.
669 (?:(\w+)=)? # 1: named parameter key?
671 """(.*?)""" # 2: triple-quoted value
673 "([^"]+)" # 3: single-quoted value
675 (\S+) # 4: unquoted value
677 (?:\s+|$) # delimiter to next param
695 push @params, $key, $val;
698 push @params, $val, '';
701 if ($preprocessing{$page}++ > 3) {
702 # Avoid loops of preprocessed pages preprocessing
703 # other pages that preprocess them, etc.
704 #translators: The first parameter is a
705 #translators: preprocessor directive name,
706 #translators: the second a page name, the
707 #translators: third a number.
708 return "[[".sprintf(gettext("%s preprocessing loop detected on %s at depth %i"),
709 $command, $page, $preprocessing{$page}).
712 my $ret=$hooks{preprocess}{$command}{call}->(
715 destpage => $destpage,
716 preview => $preprocess_preview,
718 $preprocessing{$page}--;
722 return "[[$command $params]]";
728 \[\[ # directive open
731 ( # 3: the parameters..
733 (?:\w+=)? # named parameter key?
735 """.*?""" # triple-quoted value
737 "[^"]+" # single-quoted value
739 [^\s\]]+ # unquoted value
741 \s* # whitespace or end
744 *) # 0 or more parameters
745 \]\] # directive closed
746 }{$handle->($1, $2, $3)}sexg;
750 sub filter ($$$) { #{{{
755 run_hooks(filter => sub {
756 $content=shift->(page => $page, destpage => $destpage,
757 content => $content);
763 sub indexlink () { #{{{
764 return "<a href=\"$config{url}\">$config{wikiname}</a>";
769 sub lockwiki (;$) { #{{{
770 my $wait=@_ ? shift : 1;
771 # Take an exclusive lock on the wiki to prevent multiple concurrent
772 # run issues. The lock will be dropped on program exit.
773 if (! -d $config{wikistatedir}) {
774 mkdir($config{wikistatedir});
776 open($wikilock, '>', "$config{wikistatedir}/lockfile") ||
777 error ("cannot write to $config{wikistatedir}/lockfile: $!");
778 if (! flock($wikilock, 2 | 4)) { # LOCK_EX | LOCK_NB
780 debug("wiki seems to be locked, waiting for lock");
781 my $wait=600; # arbitrary, but don't hang forever to
782 # prevent process pileup
784 return if flock($wikilock, 2 | 4);
787 error("wiki is locked; waited $wait seconds without lock being freed (possible stuck process or stale lock?)");
796 sub unlockwiki () { #{{{
797 return close($wikilock) if $wikilock;
803 sub commit_hook_enabled () { #{{{
804 open($commitlock, '+>', "$config{wikistatedir}/commitlock") ||
805 error("cannot write to $config{wikistatedir}/commitlock: $!");
806 if (! flock($commitlock, 1 | 4)) { # LOCK_SH | LOCK_NB to test
807 close($commitlock) || error("failed closing commitlock: $!");
810 close($commitlock) || error("failed closing commitlock: $!");
814 sub disable_commit_hook () { #{{{
815 open($commitlock, '>', "$config{wikistatedir}/commitlock") ||
816 error("cannot write to $config{wikistatedir}/commitlock: $!");
817 if (! flock($commitlock, 2)) { # LOCK_EX
818 error("failed to get commit lock");
823 sub enable_commit_hook () { #{{{
824 return close($commitlock) if $commitlock;
828 sub loadindex () { #{{{
829 open (my $in, "<", "$config{wikistatedir}/index") || return;
831 $_=possibly_foolish_untaint($_);
836 foreach my $i (split(/ /, $_)) {
837 my ($item, $val)=split(/=/, $i, 2);
838 push @{$items{$item}}, decode_entities($val);
841 next unless exists $items{src}; # skip bad lines for now
843 my $page=pagename($items{src}[0]);
844 if (! $config{rebuild}) {
845 $pagesources{$page}=$items{src}[0];
846 $pagemtime{$page}=$items{mtime}[0];
847 $oldlinks{$page}=[@{$items{link}}];
848 $links{$page}=[@{$items{link}}];
849 $depends{$page}=$items{depends}[0] if exists $items{depends};
850 $destsources{$_}=$page foreach @{$items{dest}};
851 $renderedfiles{$page}=[@{$items{dest}}];
852 $pagecase{lc $page}=$page;
854 $oldrenderedfiles{$page}=[@{$items{dest}}];
855 $pagectime{$page}=$items{ctime}[0];
860 sub saveindex () { #{{{
861 run_hooks(savestate => sub { shift->() });
863 if (! -d $config{wikistatedir}) {
864 mkdir($config{wikistatedir});
866 my $newfile="$config{wikistatedir}/index.new";
867 my $cleanup = sub { unlink($newfile) };
868 open (my $out, '>', $newfile) || error("cannot write to $newfile: $!", $cleanup);
869 foreach my $page (keys %pagemtime) {
870 next unless $pagemtime{$page};
871 my $line="mtime=$pagemtime{$page} ".
872 "ctime=$pagectime{$page} ".
873 "src=$pagesources{$page}";
874 $line.=" dest=$_" foreach @{$renderedfiles{$page}};
876 $line.=" link=$_" foreach grep { ++$count{$_} == 1 } @{$links{$page}};
877 if (exists $depends{$page}) {
878 $line.=" depends=".encode_entities($depends{$page}, " \t\n");
880 print $out $line."\n" || error("failed writing to $newfile: $!", $cleanup);
882 close $out || error("failed saving to $newfile: $!", $cleanup);
883 rename($newfile, "$config{wikistatedir}/index") ||
884 error("failed renaming $newfile to $config{wikistatedir}/index", $cleanup);
889 sub template_file ($) { #{{{
892 foreach my $dir ($config{templatedir}, "$installdir/share/ikiwiki/templates") {
893 return "$dir/$template" if -e "$dir/$template";
898 sub template_params (@) { #{{{
899 my $filename=template_file(shift);
901 if (! defined $filename) {
908 my $text_ref = shift;
909 ${$text_ref} = decode_utf8(${$text_ref});
911 filename => $filename,
912 loop_context_vars => 1,
913 die_on_bad_params => 0,
916 return wantarray ? @ret : {@ret};
919 sub template ($;@) { #{{{
920 require HTML::Template;
921 return HTML::Template->new(template_params(@_));
924 sub misctemplate ($$;@) { #{{{
928 my $template=template("misc.tmpl");
931 indexlink => indexlink(),
932 wikiname => $config{wikiname},
933 pagebody => $pagebody,
934 baseurl => baseurl(),
937 run_hooks(pagetemplate => sub {
938 shift->(page => "", destpage => "", template => $template);
940 return $template->output;
946 if (! exists $param{type} || ! ref $param{call} || ! exists $param{id}) {
947 error 'hook requires type, call, and id parameters';
950 return if $param{no_override} && exists $hooks{$param{type}}{$param{id}};
952 $hooks{$param{type}}{$param{id}}=\%param;
956 sub run_hooks ($$) { # {{{
957 # Calls the given sub for each hook of the given type,
958 # passing it the hook function to call.
962 if (exists $hooks{$type}) {
964 foreach my $id (keys %{$hooks{$type}}) {
965 if ($hooks{$type}{$id}{last}) {
969 $sub->($hooks{$type}{$id}{call});
971 foreach my $id (@deferred) {
972 $sub->($hooks{$type}{$id}{call});
979 sub globlist_to_pagespec ($) { #{{{
980 my @globlist=split(' ', shift);
983 foreach my $glob (@globlist) {
984 if ($glob=~/^!(.*)/) {
992 my $spec=join(' or ', @spec);
994 my $skip=join(' and ', @skip);
996 $spec="$skip and ($spec)";
1005 sub is_globlist ($) { #{{{
1007 return ( $s =~ /[^\s]+\s+([^\s]+)/ && $1 ne "and" && $1 ne "or" );
1010 sub safequote ($) { #{{{
1016 sub add_depends ($$) { #{{{
1020 if (! exists $depends{$page}) {
1021 $depends{$page}=$pagespec;
1024 $depends{$page}=pagespec_merge($depends{$page}, $pagespec);
1030 sub file_pruned ($$) { #{{{
1032 my $file=File::Spec->canonpath(shift);
1033 my $base=File::Spec->canonpath(shift);
1034 $file =~ s#^\Q$base\E/*##;
1036 my $regexp='('.join('|', @{$config{wiki_file_prune_regexps}}).')';
1037 return $file =~ m/$regexp/;
1041 # Only use gettext in the rare cases it's needed.
1042 if ((exists $ENV{LANG} && length $ENV{LANG}) ||
1043 (exists $ENV{LC_ALL} && length $ENV{LC_ALL}) ||
1044 (exists $ENV{LC_MESSAGES} && length $ENV{LC_MESSAGES})) {
1045 if (! $gettext_obj) {
1046 $gettext_obj=eval q{
1047 use Locale::gettext q{textdomain};
1048 Locale::gettext->domain('ikiwiki')
1056 return $gettext_obj->get(shift);
1063 sub pagespec_merge ($$) { #{{{
1067 return $a if $a eq $b;
1069 # Support for old-style GlobLists.
1070 if (is_globlist($a)) {
1071 $a=globlist_to_pagespec($a);
1073 if (is_globlist($b)) {
1074 $b=globlist_to_pagespec($b);
1077 return "($a) or ($b)";
1080 sub pagespec_translate ($) { #{{{
1081 # This assumes that $page is in scope in the function
1082 # that evalulates the translated pagespec code.
1085 # Support for old-style GlobLists.
1086 if (is_globlist($spec)) {
1087 $spec=globlist_to_pagespec($spec);
1090 # Convert spec to perl code.
1093 \s* # ignore whitespace
1094 ( # 1: match a single word
1101 \w+\([^\)]*\) # command(params)
1103 [^\s()]+ # any other text
1105 \s* # ignore whitespace
1108 if (lc $word eq 'and') {
1111 elsif (lc $word eq 'or') {
1114 elsif ($word eq "(" || $word eq ")" || $word eq "!") {
1117 elsif ($word =~ /^(\w+)\((.*)\)$/) {
1118 if (exists $IkiWiki::PageSpec::{"match_$1"}) {
1119 $code.="IkiWiki::PageSpec::match_$1(\$page, ".safequote($2).", \@params)";
1126 $code.=" IkiWiki::PageSpec::match_glob(\$page, ".safequote($word).", \@params)";
1133 sub pagespec_match ($$;@) { #{{{
1138 # Backwards compatability with old calling convention.
1140 unshift @params, 'location';
1143 my $ret=eval pagespec_translate($spec);
1144 return IkiWiki::FailReason->new('syntax error') if $@;
1148 package IkiWiki::FailReason;
1151 '""' => sub { ${$_[0]} },
1153 '!' => sub { bless $_[0], 'IkiWiki::SuccessReason'},
1158 return bless \$_[1], $_[0];
1161 package IkiWiki::SuccessReason;
1164 '""' => sub { ${$_[0]} },
1166 '!' => sub { bless $_[0], 'IkiWiki::FailReason'},
1171 return bless \$_[1], $_[0];
1174 package IkiWiki::PageSpec;
1176 sub match_glob ($$;@) { #{{{
1181 my $from=exists $params{location} ? $params{location} : '';
1184 if ($glob =~ m!^\./!) {
1185 $from=~s#/?[^/]+$##;
1187 $glob="$from/$glob" if length $from;
1190 # turn glob into safe regexp
1191 $glob=quotemeta($glob);
1195 if ($page=~/^$glob$/i) {
1196 return IkiWiki::SuccessReason->new("$glob matches $page");
1199 return IkiWiki::FailReason->new("$glob does not match $page");
1203 sub match_link ($$;@) { #{{{
1208 my $from=exists $params{location} ? $params{location} : '';
1211 if ($link =~ m!^\.! && defined $from) {
1212 $from=~s#/?[^/]+$##;
1214 $link="$from/$link" if length $from;
1217 my $links = $IkiWiki::links{$page};
1218 return IkiWiki::FailReason->new("$page has no links") unless $links && @{$links};
1219 my $bestlink = IkiWiki::bestlink($from, $link);
1220 foreach my $p (@{$links}) {
1221 if (length $bestlink) {
1222 return IkiWiki::SuccessReason->new("$page links to $link")
1223 if $bestlink eq IkiWiki::bestlink($page, $p);
1226 return IkiWiki::SuccessReason->new("$page links to page matching $link")
1227 if match_glob($p, $link, %params);
1230 return IkiWiki::FailReason->new("$page does not link to $link");
1233 sub match_backlink ($$;@) { #{{{
1234 return match_link($_[1], $_[0], @_);
1237 sub match_created_before ($$;@) { #{{{
1241 if (exists $IkiWiki::pagectime{$testpage}) {
1242 if ($IkiWiki::pagectime{$page} < $IkiWiki::pagectime{$testpage}) {
1243 return IkiWiki::SuccessReason->new("$page created before $testpage");
1246 return IkiWiki::FailReason->new("$page not created before $testpage");
1250 return IkiWiki::FailReason->new("$testpage has no ctime");
1254 sub match_created_after ($$;@) { #{{{
1258 if (exists $IkiWiki::pagectime{$testpage}) {
1259 if ($IkiWiki::pagectime{$page} > $IkiWiki::pagectime{$testpage}) {
1260 return IkiWiki::SuccessReason->new("$page created after $testpage");
1263 return IkiWiki::FailReason->new("$page not created after $testpage");
1267 return IkiWiki::FailReason->new("$testpage has no ctime");
1271 sub match_creation_day ($$;@) { #{{{
1272 if ((gmtime($IkiWiki::pagectime{shift()}))[3] == shift) {
1273 return IkiWiki::SuccessReason->new('creation_day matched');
1276 return IkiWiki::FailReason->new('creation_day did not match');
1280 sub match_creation_month ($$;@) { #{{{
1281 if ((gmtime($IkiWiki::pagectime{shift()}))[4] + 1 == shift) {
1282 return IkiWiki::SuccessReason->new('creation_month matched');
1285 return IkiWiki::FailReason->new('creation_month did not match');
1289 sub match_creation_year ($$;@) { #{{{
1290 if ((gmtime($IkiWiki::pagectime{shift()}))[5] + 1900 == shift) {
1291 return IkiWiki::SuccessReason->new('creation_year matched');
1294 return IkiWiki::FailReason->new('creation_year did not match');
1298 sub match_user ($$;@) { #{{{
1303 return IkiWiki::FailReason->new('cannot match user')
1304 unless exists $params{user};
1305 if ($user eq $params{user}) {
1306 return IkiWiki::SuccessReason->new("user is $user")
1309 return IkiWiki::FailReason->new("user is not $user");