8 use URI::Escape q{uri_escape_utf8};
11 use open qw{:utf8 :std};
13 use vars qw{%config %links %oldlinks %pagemtime %pagectime %pagecase
14 %pagestate %wikistate %renderedfiles %oldrenderedfiles
15 %pagesources %delpagesources %destsources %depends %depends_simple
16 @mass_depends %hooks %forcerebuild %loaded_plugins %typedlinks
17 %oldtypedlinks %autofiles};
19 use Exporter q{import};
20 our @EXPORT = qw(hook debug error htmlpage template template_depends
21 deptype add_depends pagespec_match pagespec_match_list bestlink
22 htmllink readfile writefile pagetype srcfile pagename
23 displaytime strftime_utf8 will_render gettext ngettext urlto targetpage
24 add_underlay pagetitle titlepage linkpage newpagefile
25 inject add_link add_autofile
26 %config %links %pagestate %wikistate %renderedfiles
27 %pagesources %destsources %typedlinks);
28 our $VERSION = 3.00; # plugin interface version, next is ikiwiki version
29 our $version='unknown'; # VERSION_AUTOREPLACE done by Makefile, DNE
30 our $installdir='/usr'; # INSTALLDIR_AUTOREPLACE done by Makefile, DNE
32 # Page dependency types.
33 our $DEPEND_CONTENT=1;
34 our $DEPEND_PRESENCE=2;
40 memoize("sortspec_translate");
41 memoize("pagespec_translate");
42 memoize("template_file");
48 description => "name of the wiki",
55 example => 'me@example.com',
56 description => "contact email for wiki",
63 description => "users who are wiki admins",
70 description => "users who are banned from the wiki",
77 example => "$ENV{HOME}/wiki",
78 description => "where the source of the wiki is located",
85 example => "/var/www/wiki",
86 description => "where to build the wiki",
93 example => "http://example.com/wiki",
94 description => "base url to the wiki",
101 example => "http://example.com/wiki/ikiwiki.cgi",
102 description => "url to the ikiwiki.cgi",
109 example => "/var/www/wiki/ikiwiki.cgi",
110 description => "filename of cgi wrapper to generate",
117 description => "mode for cgi_wrapper (can safely be made suid)",
124 description => "rcs backend to use",
125 safe => 0, # don't allow overriding
130 default => [qw{mdwn link inline meta htmlscrubber passwordauth
131 openid signinedit lockedit conditional
132 recentchanges parentlinks editpage}],
133 description => "plugins to enable by default",
140 description => "plugins to add to the default configuration",
147 description => "plugins to disable",
153 default => "$installdir/share/ikiwiki/templates",
154 description => "additional directory to search for template files",
161 default => "$installdir/share/ikiwiki/basewiki",
162 description => "base wiki source location",
169 default => "$installdir/share/ikiwiki",
170 description => "parent directory containing additional underlays",
177 description => "wrappers to generate",
184 description => "additional underlays to use",
191 description => "display verbose messages?",
198 description => "log to syslog?",
205 description => "create output files named page/index.html?",
206 safe => 0, # changing requires manual transition
209 prefix_directives => {
212 description => "use '!'-prefixed preprocessor directives?",
213 safe => 0, # changing requires manual transition
219 description => "use page/index.mdwn source files",
226 description => "enable Discussion pages?",
232 default => gettext("Discussion"),
233 description => "name of Discussion pages",
240 description => "generate HTML5?",
248 description => "only send cookies over SSL connections?",
256 description => "extension to use for new pages",
257 safe => 0, # not sanitized
263 description => "extension to use for html files",
264 safe => 0, # not sanitized
270 description => "strftime format string to display date",
278 example => "en_US.UTF-8",
279 description => "UTF-8 locale to use",
288 description => "put user pages below specified page",
295 description => "how many backlinks to show before hiding excess (0 to show all)",
302 description => "attempt to hardlink source files? (optimisation for large files)",
304 safe => 0, # paranoia
310 description => "force ikiwiki to use a particular umask (keywords public, group or private, or a number)",
312 safe => 0, # paranoia
317 example => "ikiwiki",
318 description => "group for wrappers to run in",
320 safe => 0, # paranoia
326 example => "$ENV{HOME}/.ikiwiki/",
327 description => "extra library and plugin directory",
329 safe => 0, # directory
335 description => "environment variables",
336 safe => 0, # paranoia
342 example => "US/Eastern",
343 description => "time zone name",
350 example => '^\.htaccess$',
351 description => "regexp of normally excluded files to include",
359 example => '^(*\.private|Makefile)$',
360 description => "regexp of files that should be skipped",
365 wiki_file_prune_regexps => {
367 default => [qr/(^|\/)\.\.(\/|$)/, qr/^\//, qr/^\./, qr/\/\./,
368 qr/\.x?html?$/, qr/\.ikiwiki-new$/,
369 qr/(^|\/).svn\//, qr/.arch-ids\//, qr/{arch}\//,
370 qr/(^|\/)_MTN\//, qr/(^|\/)_darcs\//,
371 qr/(^|\/)CVS\//, qr/\.dpkg-tmp$/],
372 description => "regexps of source files to ignore",
378 description => "specifies the characters that are allowed in source filenames",
379 default => "-[:alnum:]+/.:_",
383 wiki_file_regexp => {
385 description => "regexp of legal source files",
389 web_commit_regexp => {
391 default => qr/^web commit (by (.*?(?=: |$))|from ([0-9a-fA-F:.]+[0-9a-fA-F])):?(.*)/,
392 description => "regexp to parse web commits from logs",
399 description => "run as a cgi",
403 cgi_disable_uploads => {
406 description => "whether CGI should accept file uploads",
413 description => "run as a post-commit hook",
420 description => "running in rebuild mode",
427 description => "running in setup mode",
434 description => "running in clean mode",
441 description => "running in refresh mode",
448 description => "running in receive test mode",
452 wrapper_background_command => {
455 description => "background shell command to run",
461 description => "running in gettime mode",
468 description => "running in w3mmode",
475 description => "path to the .ikiwiki directory holding ikiwiki state",
482 description => "path to setup file",
489 description => "perl class to use to dump setup file",
493 allow_symlinks_before_srcdir => {
496 description => "allow symlinks in the path leading to the srcdir (potentially insecure)",
502 sub defaultconfig () {
505 foreach my $key (keys %s) {
506 push @ret, $key, $s{$key}->{default};
511 # URL to top of wiki as a path starting with /, valid from any wiki page or
512 # the CGI; if that's not possible, an absolute URL. Either way, it ends with /
514 # URL to CGI script, similar to $local_url
518 # locale stuff; avoid LC_ALL since it overrides everything
519 if (defined $ENV{LC_ALL}) {
520 $ENV{LANG} = $ENV{LC_ALL};
523 if (defined $config{locale}) {
524 if (POSIX::setlocale(&POSIX::LC_ALL, $config{locale})) {
525 $ENV{LANG}=$config{locale};
530 if (! defined $config{wiki_file_regexp}) {
531 $config{wiki_file_regexp}=qr/(^[$config{wiki_file_chars}]+$)/;
534 if (ref $config{ENV} eq 'HASH') {
535 foreach my $val (keys %{$config{ENV}}) {
536 $ENV{$val}=$config{ENV}{$val};
539 if (defined $config{timezone} && length $config{timezone}) {
540 $ENV{TZ}=$config{timezone};
543 $config{timezone}=$ENV{TZ};
546 if ($config{w3mmode}) {
547 eval q{use Cwd q{abs_path}};
549 $config{srcdir}=possibly_foolish_untaint(abs_path($config{srcdir}));
550 $config{destdir}=possibly_foolish_untaint(abs_path($config{destdir}));
551 $config{cgiurl}="file:///\$LIB/ikiwiki-w3m.cgi/".$config{cgiurl}
552 unless $config{cgiurl} =~ m!file:///!;
553 $config{url}="file://".$config{destdir};
556 if ($config{cgi} && ! length $config{url}) {
557 error(gettext("Must specify url to wiki with --url when using --cgi"));
560 if (defined $config{url} && length $config{url}) {
562 my $baseurl = URI->new($config{url});
564 $local_url = $baseurl->path . "/";
565 $local_cgiurl = undef;
567 if (length $config{cgiurl}) {
568 my $cgiurl = URI->new($config{cgiurl});
570 $local_cgiurl = $cgiurl->path;
572 if ($cgiurl->scheme ne $baseurl->scheme or
573 $cgiurl->authority ne $baseurl->authority) {
574 # too far apart, fall back to absolute URLs
575 $local_url = "$config{url}/";
576 $local_cgiurl = $config{cgiurl};
580 $local_url =~ s{//$}{/};
583 $local_cgiurl = $config{cgiurl};
586 $config{wikistatedir}="$config{srcdir}/.ikiwiki"
587 unless exists $config{wikistatedir} && defined $config{wikistatedir};
589 if (defined $config{umask}) {
590 my $u = possibly_foolish_untaint($config{umask});
592 if ($u =~ m/^\d+$/) {
595 elsif ($u eq 'private') {
598 elsif ($u eq 'group') {
601 elsif ($u eq 'public') {
605 error(sprintf(gettext("unsupported umask setting %s"), $u));
609 run_hooks(checkconfig => sub { shift->() });
617 foreach my $dir (@INC, $config{libdir}) {
618 next unless defined $dir && length $dir;
619 foreach my $file (glob("$dir/IkiWiki/Plugin/*.pm")) {
620 my ($plugin)=$file=~/.*\/(.*)\.pm$/;
624 foreach my $dir ($config{libdir}, "$installdir/lib/ikiwiki") {
625 next unless defined $dir && length $dir;
626 foreach my $file (glob("$dir/plugins/*")) {
627 $ret{basename($file)}=1 if -x $file;
635 if (defined $config{libdir} && length $config{libdir}) {
636 unshift @INC, possibly_foolish_untaint($config{libdir});
639 foreach my $plugin (@{$config{default_plugins}}, @{$config{add_plugins}}) {
644 if (exists $hooks{rcs}) {
645 error(gettext("cannot use multiple rcs plugins"));
647 loadplugin($config{rcs});
649 if (! exists $hooks{rcs}) {
653 run_hooks(getopt => sub { shift->() });
654 if (grep /^-/, @ARGV) {
655 print STDERR "Unknown option (or missing parameter): $_\n"
656 foreach grep /^-/, @ARGV;
663 sub loadplugin ($;$) {
667 return if ! $force && grep { $_ eq $plugin} @{$config{disable_plugins}};
669 foreach my $dir (defined $config{libdir} ? possibly_foolish_untaint($config{libdir}) : undef,
670 "$installdir/lib/ikiwiki") {
671 if (defined $dir && -x "$dir/plugins/$plugin") {
672 eval { require IkiWiki::Plugin::external };
675 error(sprintf(gettext("failed to load external plugin needed for %s plugin: %s"), $plugin, $reason));
677 import IkiWiki::Plugin::external "$dir/plugins/$plugin";
678 $loaded_plugins{$plugin}=1;
683 my $mod="IkiWiki::Plugin::".possibly_foolish_untaint($plugin);
686 error("Failed to load plugin $mod: $@");
688 $loaded_plugins{$plugin}=1;
695 log_message('err' => $message) if $config{syslog};
696 if (defined $cleaner) {
703 return unless $config{verbose};
704 return log_message(debug => @_);
708 sub log_message ($$) {
711 if ($config{syslog}) {
714 Sys::Syslog::setlogsock('unix');
715 Sys::Syslog::openlog('ikiwiki', '', 'user');
719 Sys::Syslog::syslog($type, "[$config{wikiname}] %s", join(" ", @_));
722 elsif (! $config{cgi}) {
726 return print STDERR "@_\n";
730 sub possibly_foolish_untaint ($) {
732 my ($untainted)=$tainted=~/(.*)/s;
752 return exists $pagesources{$page} &&
753 $pagesources{$page} =~ /\._([^.]+)$/;
759 if ($file =~ /\.([^.]+)$/) {
760 return $1 if exists $hooks{htmlize}{$1};
762 my $base=basename($file);
763 if (exists $hooks{htmlize}{$base} &&
764 $hooks{htmlize}{$base}{noextension}) {
775 if (exists $pagename_cache{$file}) {
776 return $pagename_cache{$file};
779 my $type=pagetype($file);
781 $page=~s/\Q.$type\E*$//
782 if defined $type && !$hooks{htmlize}{$type}{keepextension}
783 && !$hooks{htmlize}{$type}{noextension};
784 if ($config{indexpages} && $page=~/(.*)\/index$/) {
788 $pagename_cache{$file} = $page;
792 sub newpagefile ($$) {
796 if (! $config{indexpages} || $page eq 'index') {
797 return $page.".".$type;
800 return $page."/index.".$type;
804 sub targetpage ($$;$) {
809 if (defined $filename) {
810 return $page."/".$filename.".".$ext;
812 elsif (! $config{usedirs} || $page eq 'index') {
813 return $page.".".$ext;
816 return $page."/index.".$ext;
823 return targetpage($page, $config{htmlext});
830 return "$config{srcdir}/$file", stat(_) if -e "$config{srcdir}/$file";
831 foreach my $dir (@{$config{underlaydirs}}, $config{underlaydir}) {
832 return "$dir/$file", stat(_) if -e "$dir/$file";
834 error("internal error: $file cannot be found in $config{srcdir} or underlay") unless $nothrow;
839 return (srcfile_stat(@_))[0];
842 sub add_literal_underlay ($) {
845 if (! grep { $_ eq $dir } @{$config{underlaydirs}}) {
846 unshift @{$config{underlaydirs}}, $dir;
850 sub add_underlay ($) {
854 $dir="$config{underlaydirbase}/$dir";
857 add_literal_underlay($dir);
858 # why does it return 1? we just don't know
862 sub readfile ($;$$) {
868 error("cannot read a symlink ($file)");
872 open (my $in, "<", $file) || error("failed to read $file: $!");
873 binmode($in) if ($binary);
874 return \*$in if $wantfd;
876 # check for invalid utf-8, and toss it back to avoid crashes
877 if (! utf8::valid($ret)) {
878 $ret=encode_utf8($ret);
880 close $in || error("failed to read $file: $!");
884 sub prep_writefile ($$) {
889 while (length $test) {
890 if (-l "$destdir/$test") {
891 error("cannot write to a symlink ($test)");
893 if (-f _ && $test ne $file) {
894 # Remove conflicting file.
895 foreach my $p (keys %renderedfiles, keys %oldrenderedfiles) {
896 foreach my $f (@{$renderedfiles{$p}}, @{$oldrenderedfiles{$p}}) {
898 unlink("$destdir/$test");
904 $test=dirname($test);
907 my $dir=dirname("$destdir/$file");
910 foreach my $s (split(m!/+!, $dir)) {
913 mkdir($d) || error("failed to create directory $d: $!");
921 sub writefile ($$$;$$) {
922 my $file=shift; # can include subdirs
923 my $destdir=shift; # directory to put file in
928 prep_writefile($file, $destdir);
930 my $newfile="$destdir/$file.ikiwiki-new";
932 error("cannot write to a symlink ($newfile)");
935 my $cleanup = sub { unlink($newfile) };
936 open (my $out, '>', $newfile) || error("failed to write $newfile: $!", $cleanup);
937 binmode($out) if ($binary);
939 $writer->(\*$out, $cleanup);
942 print $out $content or error("failed writing to $newfile: $!", $cleanup);
944 close $out || error("failed saving $newfile: $!", $cleanup);
945 rename($newfile, "$destdir/$file") ||
946 error("failed renaming $newfile to $destdir/$file: $!", $cleanup);
952 sub will_render ($$;$) {
957 # Important security check for independently created files.
958 if (-e "$config{destdir}/$dest" && ! $config{rebuild} &&
959 ! grep { $_ eq $dest } (@{$renderedfiles{$page}}, @{$oldrenderedfiles{$page}}, @{$wikistate{editpage}{previews}})) {
960 my $from_other_page=0;
961 # Expensive, but rarely runs.
962 foreach my $p (keys %renderedfiles, keys %oldrenderedfiles) {
966 } @{$renderedfiles{$p}}, @{$oldrenderedfiles{$p}}) {
972 error("$config{destdir}/$dest independently created, not overwriting with version from $page")
973 unless $from_other_page;
976 # If $dest exists as a directory, remove conflicting files in it
977 # rendered from other pages.
979 foreach my $p (keys %renderedfiles, keys %oldrenderedfiles) {
980 foreach my $f (@{$renderedfiles{$p}}, @{$oldrenderedfiles{$p}}) {
981 if (dirname($f) eq $dest) {
982 unlink("$config{destdir}/$f");
983 rmdir(dirname("$config{destdir}/$f"));
989 if (! $clear || $cleared{$page}) {
990 $renderedfiles{$page}=[$dest, grep { $_ ne $dest } @{$renderedfiles{$page}}];
993 foreach my $old (@{$renderedfiles{$page}}) {
994 delete $destsources{$old};
996 $renderedfiles{$page}=[$dest];
999 $destsources{$dest}=$page;
1009 if ($link=~s/^\/+//) {
1017 $l.="/" if length $l;
1020 if (exists $pagesources{$l}) {
1023 elsif (exists $pagecase{lc $l}) {
1024 return $pagecase{lc $l};
1026 } while $cwd=~s{/?[^/]+$}{};
1028 if (length $config{userdir}) {
1029 my $l = "$config{userdir}/".lc($link);
1030 if (exists $pagesources{$l}) {
1033 elsif (exists $pagecase{lc $l}) {
1034 return $pagecase{lc $l};
1038 #print STDERR "warning: page $page, broken link: $link\n";
1042 sub isinlinableimage ($) {
1045 return $file =~ /\.(png|gif|jpg|jpeg|svg)$/i;
1048 sub pagetitle ($;$) {
1050 my $unescaped=shift;
1053 $page=~s/(__(\d+)__|_)/$1 eq '_' ? ' ' : chr($2)/eg;
1056 $page=~s/(__(\d+)__|_)/$1 eq '_' ? ' ' : "&#$2;"/eg;
1064 # support use w/o %config set
1065 my $chars = defined $config{wiki_file_chars} ? $config{wiki_file_chars} : "-[:alnum:]+/.:_";
1066 $title=~s/([^$chars]|_)/$1 eq ' ' ? '_' : "__".ord($1)."__"/eg;
1072 my $chars = defined $config{wiki_file_chars} ? $config{wiki_file_chars} : "-[:alnum:]+/.:_";
1073 $link=~s/([^$chars])/$1 eq ' ' ? '_' : "__".ord($1)."__"/eg;
1080 my $cgiurl=$local_cgiurl;
1082 if (exists $params{cgiurl}) {
1083 $cgiurl=$params{cgiurl};
1084 delete $params{cgiurl};
1092 join("&", map $_."=".uri_escape_utf8($params{$_}), keys %params);
1098 return $local_url if ! defined $page;
1100 $page=htmlpage($page);
1102 $page=~s/[^\/]+\//..\//g;
1110 return $url unless defined $urlbase && length $urlbase;
1113 URI->new_abs($url, $urlbase)->as_string;
1117 # Work around very innefficient behavior in File::Spec if abs2rel
1118 # is passed two relative paths. It's much faster if paths are
1119 # absolute! (Debian bug #376658; fixed in debian unstable now)
1124 my $ret=File::Spec->abs2rel($path, $base);
1125 $ret=~s/^// if defined $ret;
1129 sub displaytime ($;$$) {
1130 # Plugins can override this function to mark up the time to
1132 my $time=formattime($_[0], $_[1]);
1133 if ($config{html5}) {
1134 return '<time datetime="'.date_3339($_[0]).'"'.
1135 ($_[2] ? ' pubdate="pubdate"' : '').
1136 '>'.$time.'</time>';
1139 return '<span class="date">'.$time.'</span>';
1143 sub formattime ($;$) {
1144 # Plugins can override this function to format the time.
1147 if (! defined $format) {
1148 $format=$config{timeformat};
1151 return strftime_utf8($format, localtime($time));
1154 my $strftime_encoding;
1156 # strftime doesn't know about encodings, so make sure
1157 # its output is properly treated as utf8.
1158 # Note that this does not handle utf-8 in the format string.
1159 ($strftime_encoding) = POSIX::setlocale(&POSIX::LC_TIME) =~ m#\.([^@]+)#
1160 unless defined $strftime_encoding;
1162 ? Encode::decode($strftime_encoding, POSIX::strftime(@_))
1163 : POSIX::strftime(@_);
1169 my $lc_time=POSIX::setlocale(&POSIX::LC_TIME);
1170 POSIX::setlocale(&POSIX::LC_TIME, "C");
1171 my $ret=POSIX::strftime("%Y-%m-%dT%H:%M:%SZ", gmtime($time));
1172 POSIX::setlocale(&POSIX::LC_TIME, $lc_time);
1176 sub beautify_urlpath ($) {
1179 # Ensure url is not an empty link, and if necessary,
1180 # add ./ to avoid colon confusion.
1181 if ($url !~ /^\// && $url !~ /^\.\.?\//) {
1185 if ($config{usedirs}) {
1186 $url =~ s!/index.$config{htmlext}$!/!;
1201 if (! $destsources{$to}) {
1206 return $config{url}.beautify_urlpath("/".$to);
1209 if (! defined $from) {
1210 my $u = $local_url || '';
1212 return $u.beautify_urlpath("/".$to);
1215 my $link = abs2rel($to, dirname(htmlpage($from)));
1217 return beautify_urlpath($link);
1220 sub isselflink ($$) {
1221 # Plugins can override this function to support special types
1226 return $page eq $link;
1229 sub htmllink ($$$;@) {
1230 my $lpage=shift; # the page doing the linking
1231 my $page=shift; # the page that will contain the link (different for inline)
1238 if (! $opts{forcesubpage}) {
1239 $bestlink=bestlink($lpage, $link);
1242 $bestlink="$lpage/".lc($link);
1246 if (defined $opts{linktext}) {
1247 $linktext=$opts{linktext};
1250 $linktext=pagetitle(basename($link));
1253 return "<span class=\"selflink\">$linktext</span>"
1254 if length $bestlink && isselflink($page, $bestlink) &&
1255 ! defined $opts{anchor};
1257 if (! $destsources{$bestlink}) {
1258 $bestlink=htmlpage($bestlink);
1260 if (! $destsources{$bestlink}) {
1262 if (length $config{cgiurl}) {
1263 $cgilink = "<a href=\"".
1268 )."\" rel=\"nofollow\">?</a>";
1270 return "<span class=\"createlink\">$cgilink$linktext</span>"
1274 $bestlink=abs2rel($bestlink, dirname(htmlpage($page)));
1275 $bestlink=beautify_urlpath($bestlink);
1277 if (! $opts{noimageinline} && isinlinableimage($bestlink)) {
1278 return "<img src=\"$bestlink\" alt=\"$linktext\" />";
1281 if (defined $opts{anchor}) {
1282 $bestlink.="#".$opts{anchor};
1286 foreach my $attr (qw{rel class title}) {
1287 if (defined $opts{$attr}) {
1288 push @attrs, " $attr=\"$opts{$attr}\"";
1292 return "<a href=\"$bestlink\"@attrs>$linktext</a>";
1297 return length $config{userdir} ? "$config{userdir}/$user" : $user;
1300 sub openiduser ($) {
1303 if (defined $user && $user =~ m!^https?://! &&
1304 eval q{use Net::OpenID::VerifiedIdentity; 1} && !$@) {
1307 if (Net::OpenID::VerifiedIdentity->can("DisplayOfURL")) {
1308 $display = Net::OpenID::VerifiedIdentity::DisplayOfURL($user);
1311 # backcompat with old version
1312 my $oid=Net::OpenID::VerifiedIdentity->new(identity => $user);
1313 $display=$oid->display;
1316 # Convert "user.somehost.com" to "user [somehost.com]"
1317 # (also "user.somehost.co.uk")
1318 if ($display !~ /\[/) {
1319 $display=~s/^([-a-zA-Z0-9]+?)\.([-.a-zA-Z0-9]+\.[a-z]+)$/$1 [$2]/;
1321 # Convert "http://somehost.com/user" to "user [somehost.com]".
1322 # (also "https://somehost.com/user/")
1323 if ($display !~ /\[/) {
1324 $display=~s/^https?:\/\/(.+)\/([^\/#?]+)\/?(?:[#?].*)?$/$2 [$1]/;
1326 $display=~s!^https?://!!; # make sure this is removed
1327 eval q{use CGI 'escapeHTML'};
1329 return escapeHTML($display);
1334 sub htmlize ($$$$) {
1340 my $oneline = $content !~ /\n/;
1342 if (exists $hooks{htmlize}{$type}) {
1343 $content=$hooks{htmlize}{$type}{call}->(
1345 content => $content,
1349 error("htmlization of $type not supported");
1352 run_hooks(sanitize => sub {
1355 destpage => $destpage,
1356 content => $content,
1361 # hack to get rid of enclosing junk added by markdown
1362 # and other htmlizers/sanitizers
1363 $content=~s/^<p>//i;
1364 $content=~s/<\/p>\n*$//i;
1375 run_hooks(linkify => sub {
1378 destpage => $destpage,
1379 content => $content,
1387 our $preprocess_preview=0;
1388 sub preprocess ($$$;$$) {
1389 my $page=shift; # the page the data comes from
1390 my $destpage=shift; # the page the data will appear in (different for inline)
1395 # Using local because it needs to be set within any nested calls
1397 local $preprocess_preview=$preview if defined $preview;
1404 $params="" if ! defined $params;
1406 if (length $escape) {
1407 return "[[$prefix$command $params]]";
1409 elsif (exists $hooks{preprocess}{$command}) {
1410 return "" if $scan && ! $hooks{preprocess}{$command}{scan};
1411 # Note: preserve order of params, some plugins may
1412 # consider it significant.
1414 while ($params =~ m{
1415 (?:([-\w]+)=)? # 1: named parameter key?
1417 """(.*?)""" # 2: triple-quoted value
1419 "([^"]*?)" # 3: single-quoted value
1421 '''(.*?)''' # 4: triple-single-quote
1423 <<([a-zA-Z]+)\n # 5: heredoc start
1424 (.*?)\n\5 # 6: heredoc value
1426 (\S+) # 7: unquoted value
1428 (?:\s+|$) # delimiter to next param
1438 elsif (defined $3) {
1441 elsif (defined $4) {
1444 elsif (defined $7) {
1447 elsif (defined $6) {
1452 push @params, $key, $val;
1455 push @params, $val, '';
1458 if ($preprocessing{$page}++ > 3) {
1459 # Avoid loops of preprocessed pages preprocessing
1460 # other pages that preprocess them, etc.
1461 return "[[!$command <span class=\"error\">".
1462 sprintf(gettext("preprocessing loop detected on %s at depth %i"),
1463 $page, $preprocessing{$page}).
1469 $hooks{preprocess}{$command}{call}->(
1472 destpage => $destpage,
1473 preview => $preprocess_preview,
1479 $ret="[[!$command <span class=\"error\">".
1480 gettext("Error").": $error"."</span>]]";
1484 # use void context during scan pass
1486 $hooks{preprocess}{$command}{call}->(
1489 destpage => $destpage,
1490 preview => $preprocess_preview,
1495 $preprocessing{$page}--;
1499 return "[[$prefix$command $params]]";
1504 if ($config{prefix_directives}) {
1507 \[\[(!) # directive open; 2: prefix
1508 ([-\w]+) # 3: command
1509 ( # 4: the parameters..
1510 \s+ # Must have space if parameters present
1512 (?:[-\w]+=)? # named parameter key?
1514 """.*?""" # triple-quoted value
1516 "[^"]*?" # single-quoted value
1518 '''.*?''' # triple-single-quote
1520 <<([a-zA-Z]+)\n # 5: heredoc start
1521 (?:.*?)\n\5 # heredoc value
1523 [^"\s\]]+ # unquoted value
1525 \s* # whitespace or end
1528 *)? # 0 or more parameters
1529 \]\] # directive closed
1535 \[\[(!?) # directive open; 2: optional prefix
1536 ([-\w]+) # 3: command
1538 ( # 4: the parameters..
1540 (?:[-\w]+=)? # named parameter key?
1542 """.*?""" # triple-quoted value
1544 "[^"]*?" # single-quoted value
1546 '''.*?''' # triple-single-quote
1548 <<([a-zA-Z]+)\n # 5: heredoc start
1549 (?:.*?)\n\5 # heredoc value
1551 [^"\s\]]+ # unquoted value
1553 \s* # whitespace or end
1556 *) # 0 or more parameters
1557 \]\] # directive closed
1561 $content =~ s{$regex}{$handle->($1, $2, $3, $4)}eg;
1570 run_hooks(filter => sub {
1571 $content=shift->(page => $page, destpage => $destpage,
1572 content => $content);
1578 sub check_canedit ($$$;$) {
1585 run_hooks(canedit => sub {
1586 return if defined $canedit;
1587 my $ret=shift->($page, $q, $session);
1592 elsif (ref $ret eq 'CODE') {
1593 $ret->() unless $nonfatal;
1596 elsif (defined $ret) {
1597 error($ret) unless $nonfatal;
1602 return defined $canedit ? $canedit : 1;
1605 sub check_content (@) {
1608 return 1 if ! exists $hooks{checkcontent}; # optimisation
1610 if (exists $pagesources{$params{page}}) {
1612 my %old=map { $_ => 1 }
1613 split("\n", readfile(srcfile($pagesources{$params{page}})));
1614 foreach my $line (split("\n", $params{content})) {
1615 push @diff, $line if ! exists $old{$line};
1617 $params{diff}=join("\n", @diff);
1621 run_hooks(checkcontent => sub {
1622 return if defined $ok;
1623 my $ret=shift->(%params);
1628 elsif (ref $ret eq 'CODE') {
1629 $ret->() unless $params{nonfatal};
1632 elsif (defined $ret) {
1633 error($ret) unless $params{nonfatal};
1639 return defined $ok ? $ok : 1;
1642 sub check_canchange (@) {
1644 my $cgi = $params{cgi};
1645 my $session = $params{session};
1646 my @changes = @{$params{changes}};
1649 foreach my $change (@changes) {
1650 # This untaint is safe because we check file_pruned and
1652 my ($file)=$change->{file}=~/$config{wiki_file_regexp}/;
1653 $file=possibly_foolish_untaint($file);
1654 if (! defined $file || ! length $file ||
1655 file_pruned($file)) {
1656 error(gettext("bad file name %s"), $file);
1659 my $type=pagetype($file);
1660 my $page=pagename($file) if defined $type;
1662 if ($change->{action} eq 'add') {
1666 if ($change->{action} eq 'change' ||
1667 $change->{action} eq 'add') {
1668 if (defined $page) {
1669 check_canedit($page, $cgi, $session);
1673 if (IkiWiki::Plugin::attachment->can("check_canattach")) {
1674 IkiWiki::Plugin::attachment::check_canattach($session, $file, $change->{path});
1675 check_canedit($file, $cgi, $session);
1680 elsif ($change->{action} eq 'remove') {
1681 # check_canremove tests to see if the file is present
1682 # on disk. This will fail when a single commit adds a
1683 # file and then removes it again. Avoid the problem
1684 # by not testing the removal in such pairs of changes.
1685 # (The add is still tested, just to make sure that
1686 # no data is added to the repo that a web edit
1688 next if $newfiles{$file};
1690 if (IkiWiki::Plugin::remove->can("check_canremove")) {
1691 IkiWiki::Plugin::remove::check_canremove(defined $page ? $page : $file, $cgi, $session);
1692 check_canedit(defined $page ? $page : $file, $cgi, $session);
1697 error "unknown action ".$change->{action};
1700 error sprintf(gettext("you are not allowed to change %s"), $file);
1708 # Take an exclusive lock on the wiki to prevent multiple concurrent
1709 # run issues. The lock will be dropped on program exit.
1710 if (! -d $config{wikistatedir}) {
1711 mkdir($config{wikistatedir});
1713 open($wikilock, '>', "$config{wikistatedir}/lockfile") ||
1714 error ("cannot write to $config{wikistatedir}/lockfile: $!");
1715 if (! flock($wikilock, 2)) { # LOCK_EX
1716 error("failed to get lock");
1722 POSIX::close($ENV{IKIWIKI_CGILOCK_FD}) if exists $ENV{IKIWIKI_CGILOCK_FD};
1723 return close($wikilock) if $wikilock;
1729 sub commit_hook_enabled () {
1730 open($commitlock, '+>', "$config{wikistatedir}/commitlock") ||
1731 error("cannot write to $config{wikistatedir}/commitlock: $!");
1732 if (! flock($commitlock, 1 | 4)) { # LOCK_SH | LOCK_NB to test
1733 close($commitlock) || error("failed closing commitlock: $!");
1736 close($commitlock) || error("failed closing commitlock: $!");
1740 sub disable_commit_hook () {
1741 open($commitlock, '>', "$config{wikistatedir}/commitlock") ||
1742 error("cannot write to $config{wikistatedir}/commitlock: $!");
1743 if (! flock($commitlock, 2)) { # LOCK_EX
1744 error("failed to get commit lock");
1749 sub enable_commit_hook () {
1750 return close($commitlock) if $commitlock;
1755 %oldrenderedfiles=%pagectime=();
1756 if (! $config{rebuild}) {
1757 %pagesources=%pagemtime=%oldlinks=%links=%depends=
1758 %destsources=%renderedfiles=%pagecase=%pagestate=
1759 %depends_simple=%typedlinks=%oldtypedlinks=();
1762 if (! open ($in, "<", "$config{wikistatedir}/indexdb")) {
1763 if (-e "$config{wikistatedir}/index") {
1764 system("ikiwiki-transition", "indexdb", $config{srcdir});
1765 open ($in, "<", "$config{wikistatedir}/indexdb") || return;
1768 $config{gettime}=1; # first build
1773 my $index=Storable::fd_retrieve($in);
1774 if (! defined $index) {
1779 if (exists $index->{version} && ! ref $index->{version}) {
1780 $pages=$index->{page};
1781 %wikistate=%{$index->{state}};
1782 # Handle plugins that got disabled by loading a new setup.
1783 if (exists $config{setupfile}) {
1784 require IkiWiki::Setup;
1785 IkiWiki::Setup::disabled_plugins(
1786 grep { ! $loaded_plugins{$_} } keys %wikistate);
1794 foreach my $src (keys %$pages) {
1795 my $d=$pages->{$src};
1796 my $page=pagename($src);
1797 $pagectime{$page}=$d->{ctime};
1798 $pagesources{$page}=$src;
1799 if (! $config{rebuild}) {
1800 $pagemtime{$page}=$d->{mtime};
1801 $renderedfiles{$page}=$d->{dest};
1802 if (exists $d->{links} && ref $d->{links}) {
1803 $links{$page}=$d->{links};
1804 $oldlinks{$page}=[@{$d->{links}}];
1806 if (ref $d->{depends_simple} eq 'ARRAY') {
1808 $depends_simple{$page}={
1809 map { $_ => 1 } @{$d->{depends_simple}}
1812 elsif (exists $d->{depends_simple}) {
1813 $depends_simple{$page}=$d->{depends_simple};
1815 if (exists $d->{dependslist}) {
1818 map { $_ => $DEPEND_CONTENT }
1819 @{$d->{dependslist}}
1822 elsif (exists $d->{depends} && ! ref $d->{depends}) {
1824 $depends{$page}={$d->{depends} => $DEPEND_CONTENT };
1826 elsif (exists $d->{depends}) {
1827 $depends{$page}=$d->{depends};
1829 if (exists $d->{state}) {
1830 $pagestate{$page}=$d->{state};
1832 if (exists $d->{typedlinks}) {
1833 $typedlinks{$page}=$d->{typedlinks};
1835 while (my ($type, $links) = each %{$typedlinks{$page}}) {
1836 next unless %$links;
1837 $oldtypedlinks{$page}{$type} = {%$links};
1841 $oldrenderedfiles{$page}=[@{$d->{dest}}];
1843 foreach my $page (keys %pagesources) {
1844 $pagecase{lc $page}=$page;
1846 foreach my $page (keys %renderedfiles) {
1847 $destsources{$_}=$page foreach @{$renderedfiles{$page}};
1853 run_hooks(savestate => sub { shift->() });
1855 my @plugins=keys %loaded_plugins;
1857 if (! -d $config{wikistatedir}) {
1858 mkdir($config{wikistatedir});
1860 my $newfile="$config{wikistatedir}/indexdb.new";
1861 my $cleanup = sub { unlink($newfile) };
1862 open (my $out, '>', $newfile) || error("cannot write to $newfile: $!", $cleanup);
1865 foreach my $page (keys %pagemtime) {
1866 next unless $pagemtime{$page};
1867 my $src=$pagesources{$page};
1869 $index{page}{$src}={
1870 ctime => $pagectime{$page},
1871 mtime => $pagemtime{$page},
1872 dest => $renderedfiles{$page},
1873 links => $links{$page},
1876 if (exists $depends{$page}) {
1877 $index{page}{$src}{depends} = $depends{$page};
1880 if (exists $depends_simple{$page}) {
1881 $index{page}{$src}{depends_simple} = $depends_simple{$page};
1884 if (exists $typedlinks{$page} && %{$typedlinks{$page}}) {
1885 $index{page}{$src}{typedlinks} = $typedlinks{$page};
1888 if (exists $pagestate{$page}) {
1889 foreach my $id (@plugins) {
1890 foreach my $key (keys %{$pagestate{$page}{$id}}) {
1891 $index{page}{$src}{state}{$id}{$key}=$pagestate{$page}{$id}{$key};
1898 foreach my $id (@plugins) {
1899 $index{state}{$id}={}; # used to detect disabled plugins
1900 foreach my $key (keys %{$wikistate{$id}}) {
1901 $index{state}{$id}{$key}=$wikistate{$id}{$key};
1905 $index{version}="3";
1906 my $ret=Storable::nstore_fd(\%index, $out);
1907 return if ! defined $ret || ! $ret;
1908 close $out || error("failed saving to $newfile: $!", $cleanup);
1909 rename($newfile, "$config{wikistatedir}/indexdb") ||
1910 error("failed renaming $newfile to $config{wikistatedir}/indexdb", $cleanup);
1915 sub template_file ($) {
1918 my $tpage=($name =~ s/^\///) ? $name : "templates/$name";
1920 if ($name !~ /\.tmpl$/ && exists $pagesources{$tpage}) {
1921 $template=srcfile($pagesources{$tpage}, 1);
1925 $template=srcfile($tpage, 1);
1928 if (defined $template) {
1929 return $template, $tpage, 1 if wantarray;
1933 $name=~s:/::; # avoid path traversal
1934 foreach my $dir ($config{templatedir},
1935 "$installdir/share/ikiwiki/templates") {
1936 if (-e "$dir/$name") {
1937 $template="$dir/$name";
1941 if (defined $template) {
1942 return $template, $tpage if wantarray;
1950 sub template_depends ($$;@) {
1954 my ($filename, $tpage, $untrusted)=template_file($name);
1955 if (! defined $filename) {
1956 error(sprintf(gettext("template %s not found"), $name))
1959 if (defined $page && defined $tpage) {
1960 add_depends($page, $tpage);
1965 my $text_ref = shift;
1966 ${$text_ref} = decode_utf8(${$text_ref});
1968 loop_context_vars => 1,
1969 die_on_bad_params => 0,
1970 parent_global_vars => 1,
1971 filename => $filename,
1973 ($untrusted ? (no_includes => 1) : ()),
1975 return @opts if wantarray;
1977 require HTML::Template;
1978 return HTML::Template->new(@opts);
1981 sub template ($;@) {
1982 template_depends(shift, undef, @_);
1985 sub templateactions ($$) {
1991 run_hooks(pageactions => sub {
1992 push @actions, map { { action => $_ } }
1993 grep { defined } shift->(page => $page);
1995 $template->param(actions => \@actions);
1997 if ($config{cgiurl} && exists $hooks{auth}) {
1998 $template->param(prefsurl => cgiurl(do => "prefs"));
2002 if ($have_actions || @actions) {
2003 $template->param(have_actions => 1);
2010 if (! exists $param{type} || ! ref $param{call} || ! exists $param{id}) {
2011 error 'hook requires type, call, and id parameters';
2014 return if $param{no_override} && exists $hooks{$param{type}}{$param{id}};
2016 $hooks{$param{type}}{$param{id}}=\%param;
2020 sub run_hooks ($$) {
2021 # Calls the given sub for each hook of the given type,
2022 # passing it the hook function to call.
2026 if (exists $hooks{$type}) {
2027 my (@first, @middle, @last);
2028 foreach my $id (keys %{$hooks{$type}}) {
2029 if ($hooks{$type}{$id}{first}) {
2032 elsif ($hooks{$type}{$id}{last}) {
2039 foreach my $id (@first, @middle, @last) {
2040 $sub->($hooks{$type}{$id}{call});
2048 $hooks{rcs}{rcs_update}{call}->(@_);
2051 sub rcs_prepedit ($) {
2052 $hooks{rcs}{rcs_prepedit}{call}->(@_);
2055 sub rcs_commit (@) {
2056 $hooks{rcs}{rcs_commit}{call}->(@_);
2059 sub rcs_commit_staged (@) {
2060 $hooks{rcs}{rcs_commit_staged}{call}->(@_);
2064 $hooks{rcs}{rcs_add}{call}->(@_);
2067 sub rcs_remove ($) {
2068 $hooks{rcs}{rcs_remove}{call}->(@_);
2071 sub rcs_rename ($$) {
2072 $hooks{rcs}{rcs_rename}{call}->(@_);
2075 sub rcs_recentchanges ($) {
2076 $hooks{rcs}{rcs_recentchanges}{call}->(@_);
2079 sub rcs_diff ($;$) {
2080 $hooks{rcs}{rcs_diff}{call}->(@_);
2083 sub rcs_getctime ($) {
2084 $hooks{rcs}{rcs_getctime}{call}->(@_);
2087 sub rcs_getmtime ($) {
2088 $hooks{rcs}{rcs_getmtime}{call}->(@_);
2091 sub rcs_receive () {
2092 $hooks{rcs}{rcs_receive}{call}->();
2095 sub add_depends ($$;$) {
2098 my $deptype=shift || $DEPEND_CONTENT;
2100 # Is the pagespec a simple page name?
2101 if ($pagespec =~ /$config{wiki_file_regexp}/ &&
2102 $pagespec !~ /[\s*?()!]/) {
2103 $depends_simple{$page}{lc $pagespec} |= $deptype;
2107 # Add explicit dependencies for influences.
2108 my $sub=pagespec_translate($pagespec);
2109 return unless defined $sub;
2110 foreach my $p (keys %pagesources) {
2111 my $r=$sub->($p, location => $page);
2112 my $i=$r->influences;
2113 my $static=$r->influences_static;
2114 foreach my $k (keys %$i) {
2115 next unless $r || $static || $k eq $page;
2116 $depends_simple{$page}{lc $k} |= $i->{$k};
2121 $depends{$page}{$pagespec} |= $deptype;
2127 foreach my $type (@_) {
2128 if ($type eq 'presence') {
2129 $deptype |= $DEPEND_PRESENCE;
2131 elsif ($type eq 'links') {
2132 $deptype |= $DEPEND_LINKS;
2134 elsif ($type eq 'content') {
2135 $deptype |= $DEPEND_CONTENT;
2141 my $file_prune_regexp;
2142 sub file_pruned ($) {
2145 if (defined $config{include} && length $config{include}) {
2146 return 0 if $file =~ m/$config{include}/;
2149 if (! defined $file_prune_regexp) {
2150 $file_prune_regexp='('.join('|', @{$config{wiki_file_prune_regexps}}).')';
2151 $file_prune_regexp=qr/$file_prune_regexp/;
2153 return $file =~ m/$file_prune_regexp/;
2156 sub define_gettext () {
2157 # If translation is needed, redefine the gettext function to do it.
2158 # Otherwise, it becomes a quick no-op.
2161 if ((exists $ENV{LANG} && length $ENV{LANG}) ||
2162 (exists $ENV{LC_ALL} && length $ENV{LC_ALL}) ||
2163 (exists $ENV{LC_MESSAGES} && length $ENV{LC_MESSAGES})) {
2165 $gettext_obj=eval q{
2166 use Locale::gettext q{textdomain};
2167 Locale::gettext->domain('ikiwiki')
2172 no warnings 'redefine';
2174 $getobj->() if $getobj;
2176 $gettext_obj->get(shift);
2183 $getobj->() if $getobj;
2185 $gettext_obj->nget(@_);
2188 return ($_[2] == 1 ? $_[0] : $_[1])
2206 return (defined $val && (lc($val) eq gettext("yes") || lc($val) eq "yes" || $val eq "1"));
2210 # Injects a new function into the symbol table to replace an
2211 # exported function.
2214 # This is deep ugly perl foo, beware.
2217 if (! defined $params{parent}) {
2218 $params{parent}='::';
2219 $params{old}=\&{$params{name}};
2220 $params{name}=~s/.*:://;
2222 my $parent=$params{parent};
2223 foreach my $ns (grep /^\w+::/, keys %{$parent}) {
2224 $ns = $params{parent} . $ns;
2225 inject(%params, parent => $ns) unless $ns eq '::main::';
2226 *{$ns . $params{name}} = $params{call}
2227 if exists ${$ns}{$params{name}} &&
2228 \&{${$ns}{$params{name}}} == $params{old};
2234 sub add_link ($$;$) {
2239 push @{$links{$page}}, $link
2240 unless grep { $_ eq $link } @{$links{$page}};
2242 if (defined $type) {
2243 $typedlinks{$page}{$type}{$link} = 1;
2247 sub add_autofile ($$$) {
2250 my $generator=shift;
2252 $autofiles{$file}{plugin}=$plugin;
2253 $autofiles{$file}{generator}=$generator;
2256 sub sortspec_translate ($$) {
2258 my $reverse = shift;
2264 (-?) # group 1: perhaps negated
2267 \w+\([^\)]*\) # command(params)
2269 [^\s]+ # or anything else
2277 if ($word =~ m/^(\w+)\((.*)\)$/) {
2278 # command with parameters
2282 elsif ($word !~ m/^\w+$/) {
2283 error(sprintf(gettext("invalid sort type %s"), $word));
2294 if (exists $IkiWiki::SortSpec::{"cmp_$word"}) {
2295 if (defined $params) {
2296 push @data, $params;
2297 $code .= "IkiWiki::SortSpec::cmp_$word(\$data[$#data])";
2300 $code .= "IkiWiki::SortSpec::cmp_$word(undef)";
2304 error(sprintf(gettext("unknown sort type %s"), $word));
2308 if (! length $code) {
2309 # undefined sorting method... sort arbitrarily
2318 return eval 'sub { '.$code.' }';
2321 sub pagespec_translate ($) {
2324 # Convert spec to perl code.
2328 \s* # ignore whitespace
2329 ( # 1: match a single word
2336 \w+\([^\)]*\) # command(params)
2338 [^\s()]+ # any other text
2340 \s* # ignore whitespace
2343 if (lc $word eq 'and') {
2346 elsif (lc $word eq 'or') {
2349 elsif ($word eq "(" || $word eq ")" || $word eq "!") {
2352 elsif ($word =~ /^(\w+)\((.*)\)$/) {
2353 if (exists $IkiWiki::PageSpec::{"match_$1"}) {
2355 $code.="IkiWiki::PageSpec::match_$1(\$page, \$data[$#data], \@_)";
2358 push @data, qq{unknown function in pagespec "$word"};
2359 $code.="IkiWiki::ErrorReason->new(\$data[$#data])";
2364 $code.=" IkiWiki::PageSpec::match_glob(\$page, \$data[$#data], \@_)";
2368 if (! length $code) {
2369 $code="IkiWiki::FailReason->new('empty pagespec')";
2373 return eval 'sub { my $page=shift; '.$code.' }';
2376 sub pagespec_match ($$;@) {
2381 # Backwards compatability with old calling convention.
2383 unshift @params, 'location';
2386 my $sub=pagespec_translate($spec);
2387 return IkiWiki::ErrorReason->new("syntax error in pagespec \"$spec\"")
2389 return $sub->($page, @params);
2392 sub pagespec_match_list ($$;@) {
2397 # Backwards compatability with old calling convention.
2399 print STDERR "warning: a plugin (".caller().") is using pagespec_match_list in an obsolete way, and needs to be updated\n";
2400 $params{list}=$page;
2401 $page=$params{location}; # ugh!
2404 my $sub=pagespec_translate($pagespec);
2405 error "syntax error in pagespec \"$pagespec\""
2407 my $sort=sortspec_translate($params{sort}, $params{reverse})
2408 if defined $params{sort};
2411 if (exists $params{list}) {
2412 @candidates=exists $params{filter}
2413 ? grep { ! $params{filter}->($_) } @{$params{list}}
2417 @candidates=exists $params{filter}
2418 ? grep { ! $params{filter}->($_) } keys %pagesources
2419 : keys %pagesources;
2422 # clear params, remainder is passed to pagespec
2423 $depends{$page}{$pagespec} |= ($params{deptype} || $DEPEND_CONTENT);
2424 my $num=$params{num};
2425 delete @params{qw{num deptype reverse sort filter list}};
2427 # when only the top matches will be returned, it's efficient to
2428 # sort before matching to pagespec,
2429 if (defined $num && defined $sort) {
2430 @candidates=IkiWiki::SortSpec::sort_pages(
2431 $sort, @candidates);
2437 my $accum=IkiWiki::SuccessReason->new();
2438 foreach my $p (@candidates) {
2439 my $r=$sub->($p, %params, location => $page);
2440 error(sprintf(gettext("cannot match pages: %s"), $r))
2441 if $r->isa("IkiWiki::ErrorReason");
2442 unless ($r || $r->influences_static) {
2443 $r->remove_influence($p);
2448 last if defined $num && ++$count == $num;
2452 # Add simple dependencies for accumulated influences.
2453 my $i=$accum->influences;
2454 foreach my $k (keys %$i) {
2455 $depends_simple{$page}{lc $k} |= $i->{$k};
2458 # when all matches will be returned, it's efficient to
2459 # sort after matching
2460 if (! defined $num && defined $sort) {
2461 return IkiWiki::SortSpec::sort_pages(
2469 sub pagespec_valid ($) {
2472 return defined pagespec_translate($spec);
2476 my $re=quotemeta(shift);
2482 package IkiWiki::FailReason;
2485 '""' => sub { $_[0][0] },
2487 '!' => sub { bless $_[0], 'IkiWiki::SuccessReason'},
2488 '&' => sub { $_[0]->merge_influences($_[1], 1); $_[0] },
2489 '|' => sub { $_[1]->merge_influences($_[0]); $_[1] },
2493 our @ISA = 'IkiWiki::SuccessReason';
2495 package IkiWiki::SuccessReason;
2498 '""' => sub { $_[0][0] },
2500 '!' => sub { bless $_[0], 'IkiWiki::FailReason'},
2501 '&' => sub { $_[1]->merge_influences($_[0], 1); $_[1] },
2502 '|' => sub { $_[0]->merge_influences($_[1]); $_[0] },
2509 return bless [$value, {@_}], $class;
2514 $this->[1]={@_} if @_;
2515 my %i=%{$this->[1]};
2520 sub influences_static {
2521 return ! $_[0][1]->{""};
2524 sub merge_influences {
2529 if (! $anded || (($this || %{$this->[1]}) &&
2530 ($other || %{$other->[1]}))) {
2531 foreach my $influence (keys %{$other->[1]}) {
2532 $this->[1]{$influence} |= $other->[1]{$influence};
2541 sub remove_influence {
2545 delete $this->[1]{$torm};
2548 package IkiWiki::ErrorReason;
2550 our @ISA = 'IkiWiki::FailReason';
2552 package IkiWiki::PageSpec;
2558 if ($path =~ m!^\.(/|$)!) {
2560 $from=~s#/?[^/]+$## if defined $from;
2562 $path="$from/$path" if defined $from && length $from;
2566 $path = "" unless defined $path;
2575 sub match_glob ($$;@) {
2580 $glob=derel($glob, $params{location});
2582 # Instead of converting the glob to a regex every time,
2583 # cache the compiled regex to save time.
2584 my $re=$glob_cache{$glob};
2585 unless (defined $re) {
2586 $glob_cache{$glob} = $re = IkiWiki::glob2re($glob);
2589 if (! IkiWiki::isinternal($page) || $params{internal}) {
2590 return IkiWiki::SuccessReason->new("$glob matches $page");
2593 return IkiWiki::FailReason->new("$glob matches $page, but the page is an internal page");
2597 return IkiWiki::FailReason->new("$glob does not match $page");
2601 sub match_internal ($$;@) {
2602 return match_glob(shift, shift, @_, internal => 1)
2605 sub match_page ($$;@) {
2607 my $match=match_glob($page, shift, @_);
2609 my $source=exists $IkiWiki::pagesources{$page} ?
2610 $IkiWiki::pagesources{$page} :
2611 $IkiWiki::delpagesources{$page};
2612 my $type=defined $source ? IkiWiki::pagetype($source) : undef;
2613 if (! defined $type) {
2614 return IkiWiki::FailReason->new("$page is not a page");
2620 sub match_link ($$;@) {
2625 $link=derel($link, $params{location});
2626 my $from=exists $params{location} ? $params{location} : '';
2627 my $linktype=$params{linktype};
2629 if (defined $linktype) {
2630 $qualifier=" with type $linktype";
2633 my $links = $IkiWiki::links{$page};
2634 return IkiWiki::FailReason->new("$page has no links", $page => $IkiWiki::DEPEND_LINKS, "" => 1)
2635 unless $links && @{$links};
2636 my $bestlink = IkiWiki::bestlink($from, $link);
2637 foreach my $p (@{$links}) {
2638 next unless (! defined $linktype || exists $IkiWiki::typedlinks{$page}{$linktype}{$p});
2640 if (length $bestlink) {
2641 if ($bestlink eq IkiWiki::bestlink($page, $p)) {
2642 return IkiWiki::SuccessReason->new("$page links to $link$qualifier", $page => $IkiWiki::DEPEND_LINKS, "" => 1)
2646 if (match_glob($p, $link, %params)) {
2647 return IkiWiki::SuccessReason->new("$page links to page $p$qualifier, matching $link", $page => $IkiWiki::DEPEND_LINKS, "" => 1)
2649 my ($p_rel)=$p=~/^\/?(.*)/;
2651 if (match_glob($p_rel, $link, %params)) {
2652 return IkiWiki::SuccessReason->new("$page links to page $p_rel$qualifier, matching $link", $page => $IkiWiki::DEPEND_LINKS, "" => 1)
2656 return IkiWiki::FailReason->new("$page does not link to $link$qualifier", $page => $IkiWiki::DEPEND_LINKS, "" => 1);
2659 sub match_backlink ($$;@) {
2663 if ($testpage eq '.') {
2664 $testpage = $params{'location'}
2666 my $ret=match_link($testpage, $page, @_);
2667 $ret->influences($testpage => $IkiWiki::DEPEND_LINKS);
2671 sub match_created_before ($$;@) {
2676 $testpage=derel($testpage, $params{location});
2678 if (exists $IkiWiki::pagectime{$testpage}) {
2679 if ($IkiWiki::pagectime{$page} < $IkiWiki::pagectime{$testpage}) {
2680 return IkiWiki::SuccessReason->new("$page created before $testpage", $testpage => $IkiWiki::DEPEND_PRESENCE);
2683 return IkiWiki::FailReason->new("$page not created before $testpage", $testpage => $IkiWiki::DEPEND_PRESENCE);
2687 return IkiWiki::ErrorReason->new("$testpage does not exist", $testpage => $IkiWiki::DEPEND_PRESENCE);
2691 sub match_created_after ($$;@) {
2696 $testpage=derel($testpage, $params{location});
2698 if (exists $IkiWiki::pagectime{$testpage}) {
2699 if ($IkiWiki::pagectime{$page} > $IkiWiki::pagectime{$testpage}) {
2700 return IkiWiki::SuccessReason->new("$page created after $testpage", $testpage => $IkiWiki::DEPEND_PRESENCE);
2703 return IkiWiki::FailReason->new("$page not created after $testpage", $testpage => $IkiWiki::DEPEND_PRESENCE);
2707 return IkiWiki::ErrorReason->new("$testpage does not exist", $testpage => $IkiWiki::DEPEND_PRESENCE);
2711 sub match_creation_day ($$;@) {
2714 if ($d !~ /^\d+$/) {
2715 return IkiWiki::ErrorReason->new("invalid day $d");
2717 if ((localtime($IkiWiki::pagectime{$page}))[3] == $d) {
2718 return IkiWiki::SuccessReason->new('creation_day matched');
2721 return IkiWiki::FailReason->new('creation_day did not match');
2725 sub match_creation_month ($$;@) {
2728 if ($m !~ /^\d+$/) {
2729 return IkiWiki::ErrorReason->new("invalid month $m");
2731 if ((localtime($IkiWiki::pagectime{$page}))[4] + 1 == $m) {
2732 return IkiWiki::SuccessReason->new('creation_month matched');
2735 return IkiWiki::FailReason->new('creation_month did not match');
2739 sub match_creation_year ($$;@) {
2742 if ($y !~ /^\d+$/) {
2743 return IkiWiki::ErrorReason->new("invalid year $y");
2745 if ((localtime($IkiWiki::pagectime{$page}))[5] + 1900 == $y) {
2746 return IkiWiki::SuccessReason->new('creation_year matched');
2749 return IkiWiki::FailReason->new('creation_year did not match');
2753 sub match_user ($$;@) {
2758 my $regexp=IkiWiki::glob2re($user);
2760 if (! exists $params{user}) {
2761 return IkiWiki::ErrorReason->new("no user specified");
2764 if (defined $params{user} && $params{user}=~$regexp) {
2765 return IkiWiki::SuccessReason->new("user is $user");
2767 elsif (! defined $params{user}) {
2768 return IkiWiki::FailReason->new("not logged in");
2771 return IkiWiki::FailReason->new("user is $params{user}, not $user");
2775 sub match_admin ($$;@) {
2780 if (! exists $params{user}) {
2781 return IkiWiki::ErrorReason->new("no user specified");
2784 if (defined $params{user} && IkiWiki::is_admin($params{user})) {
2785 return IkiWiki::SuccessReason->new("user is an admin");
2787 elsif (! defined $params{user}) {
2788 return IkiWiki::FailReason->new("not logged in");
2791 return IkiWiki::FailReason->new("user is not an admin");
2795 sub match_ip ($$;@) {
2800 if (! exists $params{ip}) {
2801 return IkiWiki::ErrorReason->new("no IP specified");
2804 if (defined $params{ip} && lc $params{ip} eq lc $ip) {
2805 return IkiWiki::SuccessReason->new("IP is $ip");
2808 return IkiWiki::FailReason->new("IP is $params{ip}, not $ip");
2812 package IkiWiki::SortSpec;
2814 # This is in the SortSpec namespace so that the $a and $b that sort() uses
2815 # are easily available in this namespace, for cmp functions to use them.
2822 IkiWiki::pagetitle(IkiWiki::basename($a))
2824 IkiWiki::pagetitle(IkiWiki::basename($b))
2827 sub cmp_path { IkiWiki::pagetitle($a) cmp IkiWiki::pagetitle($b) }
2828 sub cmp_mtime { $IkiWiki::pagemtime{$b} <=> $IkiWiki::pagemtime{$a} }
2829 sub cmp_age { $IkiWiki::pagectime{$b} <=> $IkiWiki::pagectime{$a} }