9 use URI::Escape q{uri_escape_utf8};
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 %depends_simple %hooks
17 %forcerebuild %loaded_plugins};
19 use Exporter q{import};
20 our @EXPORT = qw(hook debug error template htmlpage deptype use_pagespec
21 add_depends pagespec_match pagespec_match_list bestlink
22 htmllink readfile writefile pagetype srcfile pagename
23 displaytime will_render gettext urlto targetpage
24 add_underlay pagetitle titlepage linkpage newpagefile
26 %config %links %pagestate %wikistate %renderedfiles
27 %pagesources %destsources);
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("pagespec_translate");
41 memoize("file_pruned");
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 => "location of template files",
162 description => "additional directories containing template files",
168 default => "$installdir/share/ikiwiki/basewiki",
169 description => "base wiki source location",
176 default => "$installdir/share/ikiwiki",
177 description => "parent directory containing additional underlays",
184 description => "wrappers to generate",
191 description => "additional underlays to use",
198 description => "display verbose messages?",
205 description => "log to syslog?",
212 description => "create output files named page/index.html?",
213 safe => 0, # changing requires manual transition
216 prefix_directives => {
219 description => "use '!'-prefixed preprocessor directives?",
220 safe => 0, # changing requires manual transition
226 description => "use page/index.mdwn source files",
233 description => "enable Discussion pages?",
239 default => gettext("Discussion"),
240 description => "name of Discussion pages",
247 description => "only send cookies over SSL connections?",
255 description => "extension to use for new pages",
256 safe => 0, # not sanitized
262 description => "extension to use for html files",
263 safe => 0, # not sanitized
269 description => "strftime format string to display date",
277 example => "en_US.UTF-8",
278 description => "UTF-8 locale to use",
287 description => "put user pages below specified page",
294 description => "how many backlinks to show before hiding excess (0 to show all)",
301 description => "attempt to hardlink source files? (optimisation for large files)",
303 safe => 0, # paranoia
309 description => "force ikiwiki to use a particular umask",
311 safe => 0, # paranoia
316 example => "ikiwiki",
317 description => "group for wrappers to run in",
319 safe => 0, # paranoia
325 example => "$ENV{HOME}/.ikiwiki/",
326 description => "extra library and plugin directory",
328 safe => 0, # directory
334 description => "environment variables",
335 safe => 0, # paranoia
342 description => "regexp of source files to ignore",
347 wiki_file_prune_regexps => {
349 default => [qr/(^|\/)\.\.(\/|$)/, qr/^\./, qr/\/\./,
350 qr/\.x?html?$/, qr/\.ikiwiki-new$/,
351 qr/(^|\/).svn\//, qr/.arch-ids\//, qr/{arch}\//,
352 qr/(^|\/)_MTN\//, qr/(^|\/)_darcs\//,
353 qr/(^|\/)CVS\//, qr/\.dpkg-tmp$/],
354 description => "regexps of source files to ignore",
360 description => "specifies the characters that are allowed in source filenames",
361 default => "-[:alnum:]+/.:_",
365 wiki_file_regexp => {
367 description => "regexp of legal source files",
371 web_commit_regexp => {
373 default => qr/^web commit (by (.*?(?=: |$))|from ([0-9a-fA-F:.]+[0-9a-fA-F])):?(.*)/,
374 description => "regexp to parse web commits from logs",
381 description => "run as a cgi",
385 cgi_disable_uploads => {
388 description => "whether CGI should accept file uploads",
395 description => "run as a post-commit hook",
402 description => "running in rebuild mode",
409 description => "running in setup mode",
416 description => "running in refresh mode",
423 description => "running in receive test mode",
430 description => "running in getctime mode",
437 description => "running in w3mmode",
444 description => "path to the .ikiwiki directory holding ikiwiki state",
451 description => "path to setup file",
455 allow_symlinks_before_srcdir => {
458 description => "allow symlinks in the path leading to the srcdir (potentially insecure)",
464 sub defaultconfig () {
467 foreach my $key (keys %s) {
468 push @ret, $key, $s{$key}->{default};
475 # locale stuff; avoid LC_ALL since it overrides everything
476 if (defined $ENV{LC_ALL}) {
477 $ENV{LANG} = $ENV{LC_ALL};
480 if (defined $config{locale}) {
481 if (POSIX::setlocale(&POSIX::LC_ALL, $config{locale})) {
482 $ENV{LANG}=$config{locale};
487 if (! defined $config{wiki_file_regexp}) {
488 $config{wiki_file_regexp}=qr/(^[$config{wiki_file_chars}]+$)/;
491 if (ref $config{ENV} eq 'HASH') {
492 foreach my $val (keys %{$config{ENV}}) {
493 $ENV{$val}=$config{ENV}{$val};
497 if ($config{w3mmode}) {
498 eval q{use Cwd q{abs_path}};
500 $config{srcdir}=possibly_foolish_untaint(abs_path($config{srcdir}));
501 $config{destdir}=possibly_foolish_untaint(abs_path($config{destdir}));
502 $config{cgiurl}="file:///\$LIB/ikiwiki-w3m.cgi/".$config{cgiurl}
503 unless $config{cgiurl} =~ m!file:///!;
504 $config{url}="file://".$config{destdir};
507 if ($config{cgi} && ! length $config{url}) {
508 error(gettext("Must specify url to wiki with --url when using --cgi"));
511 $config{wikistatedir}="$config{srcdir}/.ikiwiki"
512 unless exists $config{wikistatedir} && defined $config{wikistatedir};
514 if (defined $config{umask}) {
515 umask(possibly_foolish_untaint($config{umask}));
518 run_hooks(checkconfig => sub { shift->() });
526 foreach my $dir (@INC, $config{libdir}) {
527 next unless defined $dir && length $dir;
528 foreach my $file (glob("$dir/IkiWiki/Plugin/*.pm")) {
529 my ($plugin)=$file=~/.*\/(.*)\.pm$/;
533 foreach my $dir ($config{libdir}, "$installdir/lib/ikiwiki") {
534 next unless defined $dir && length $dir;
535 foreach my $file (glob("$dir/plugins/*")) {
536 $ret{basename($file)}=1 if -x $file;
544 if (defined $config{libdir} && length $config{libdir}) {
545 unshift @INC, possibly_foolish_untaint($config{libdir});
548 foreach my $plugin (@{$config{default_plugins}}, @{$config{add_plugins}}) {
553 if (exists $hooks{rcs}) {
554 error(gettext("cannot use multiple rcs plugins"));
556 loadplugin($config{rcs});
558 if (! exists $hooks{rcs}) {
562 run_hooks(getopt => sub { shift->() });
563 if (grep /^-/, @ARGV) {
564 print STDERR "Unknown option (or missing parameter): $_\n"
565 foreach grep /^-/, @ARGV;
575 return if grep { $_ eq $plugin} @{$config{disable_plugins}};
577 foreach my $dir (defined $config{libdir} ? possibly_foolish_untaint($config{libdir}) : undef,
578 "$installdir/lib/ikiwiki") {
579 if (defined $dir && -x "$dir/plugins/$plugin") {
580 eval { require IkiWiki::Plugin::external };
583 error(sprintf(gettext("failed to load external plugin needed for %s plugin: %s"), $plugin, $reason));
585 import IkiWiki::Plugin::external "$dir/plugins/$plugin";
586 $loaded_plugins{$plugin}=1;
591 my $mod="IkiWiki::Plugin::".possibly_foolish_untaint($plugin);
594 error("Failed to load plugin $mod: $@");
596 $loaded_plugins{$plugin}=1;
603 log_message('err' => $message) if $config{syslog};
604 if (defined $cleaner) {
611 return unless $config{verbose};
612 return log_message(debug => @_);
616 sub log_message ($$) {
619 if ($config{syslog}) {
622 Sys::Syslog::setlogsock('unix');
623 Sys::Syslog::openlog('ikiwiki', '', 'user');
627 Sys::Syslog::syslog($type, "[$config{wikiname}] %s", join(" ", @_));
630 elsif (! $config{cgi}) {
634 return print STDERR "@_\n";
638 sub possibly_foolish_untaint ($) {
640 my ($untainted)=$tainted=~/(.*)/s;
660 return exists $pagesources{$page} &&
661 $pagesources{$page} =~ /\._([^.]+)$/;
667 if ($file =~ /\.([^.]+)$/) {
668 return $1 if exists $hooks{htmlize}{$1};
670 my $base=basename($file);
671 if (exists $hooks{htmlize}{$base} &&
672 $hooks{htmlize}{$base}{noextension}) {
683 if (exists $pagename_cache{$file}) {
684 return $pagename_cache{$file};
687 my $type=pagetype($file);
689 $page=~s/\Q.$type\E*$//
690 if defined $type && !$hooks{htmlize}{$type}{keepextension}
691 && !$hooks{htmlize}{$type}{noextension};
692 if ($config{indexpages} && $page=~/(.*)\/index$/) {
696 $pagename_cache{$file} = $page;
700 sub newpagefile ($$) {
704 if (! $config{indexpages} || $page eq 'index') {
705 return $page.".".$type;
708 return $page."/index.".$type;
712 sub targetpage ($$;$) {
717 if (defined $filename) {
718 return $page."/".$filename.".".$ext;
720 elsif (! $config{usedirs} || $page eq 'index') {
721 return $page.".".$ext;
724 return $page."/index.".$ext;
731 return targetpage($page, $config{htmlext});
738 return "$config{srcdir}/$file", stat(_) if -e "$config{srcdir}/$file";
739 foreach my $dir (@{$config{underlaydirs}}, $config{underlaydir}) {
740 return "$dir/$file", stat(_) if -e "$dir/$file";
742 error("internal error: $file cannot be found in $config{srcdir} or underlay") unless $nothrow;
747 return (srcfile_stat(@_))[0];
750 sub add_underlay ($) {
754 $dir="$config{underlaydirbase}/$dir";
757 if (! grep { $_ eq $dir } @{$config{underlaydirs}}) {
758 unshift @{$config{underlaydirs}}, $dir;
764 sub readfile ($;$$) {
770 error("cannot read a symlink ($file)");
774 open (my $in, "<", $file) || error("failed to read $file: $!");
775 binmode($in) if ($binary);
776 return \*$in if $wantfd;
778 # check for invalid utf-8, and toss it back to avoid crashes
779 if (! utf8::valid($ret)) {
780 $ret=encode_utf8($ret);
782 close $in || error("failed to read $file: $!");
786 sub prep_writefile ($$) {
791 while (length $test) {
792 if (-l "$destdir/$test") {
793 error("cannot write to a symlink ($test)");
795 $test=dirname($test);
798 my $dir=dirname("$destdir/$file");
801 foreach my $s (split(m!/+!, $dir)) {
804 mkdir($d) || error("failed to create directory $d: $!");
812 sub writefile ($$$;$$) {
813 my $file=shift; # can include subdirs
814 my $destdir=shift; # directory to put file in
819 prep_writefile($file, $destdir);
821 my $newfile="$destdir/$file.ikiwiki-new";
823 error("cannot write to a symlink ($newfile)");
826 my $cleanup = sub { unlink($newfile) };
827 open (my $out, '>', $newfile) || error("failed to write $newfile: $!", $cleanup);
828 binmode($out) if ($binary);
830 $writer->(\*$out, $cleanup);
833 print $out $content or error("failed writing to $newfile: $!", $cleanup);
835 close $out || error("failed saving $newfile: $!", $cleanup);
836 rename($newfile, "$destdir/$file") ||
837 error("failed renaming $newfile to $destdir/$file: $!", $cleanup);
843 sub will_render ($$;$) {
848 # Important security check.
849 if (-e "$config{destdir}/$dest" && ! $config{rebuild} &&
850 ! grep { $_ eq $dest } (@{$renderedfiles{$page}}, @{$oldrenderedfiles{$page}}, @{$wikistate{editpage}{previews}})) {
851 error("$config{destdir}/$dest independently created, not overwriting with version from $page");
854 if (! $clear || $cleared{$page}) {
855 $renderedfiles{$page}=[$dest, grep { $_ ne $dest } @{$renderedfiles{$page}}];
858 foreach my $old (@{$renderedfiles{$page}}) {
859 delete $destsources{$old};
861 $renderedfiles{$page}=[$dest];
864 $destsources{$dest}=$page;
874 if ($link=~s/^\/+//) {
882 $l.="/" if length $l;
885 if (exists $links{$l}) {
888 elsif (exists $pagecase{lc $l}) {
889 return $pagecase{lc $l};
891 } while $cwd=~s{/?[^/]+$}{};
893 if (length $config{userdir}) {
894 my $l = "$config{userdir}/".lc($link);
895 if (exists $links{$l}) {
898 elsif (exists $pagecase{lc $l}) {
899 return $pagecase{lc $l};
903 #print STDERR "warning: page $page, broken link: $link\n";
907 sub isinlinableimage ($) {
910 return $file =~ /\.(png|gif|jpg|jpeg)$/i;
913 sub pagetitle ($;$) {
918 $page=~s/(__(\d+)__|_)/$1 eq '_' ? ' ' : chr($2)/eg;
921 $page=~s/(__(\d+)__|_)/$1 eq '_' ? ' ' : "&#$2;"/eg;
929 # support use w/o %config set
930 my $chars = defined $config{wiki_file_chars} ? $config{wiki_file_chars} : "-[:alnum:]+/.:_";
931 $title=~s/([^$chars]|_)/$1 eq ' ' ? '_' : "__".ord($1)."__"/eg;
937 my $chars = defined $config{wiki_file_chars} ? $config{wiki_file_chars} : "-[:alnum:]+/.:_";
938 $link=~s/([^$chars])/$1 eq ' ' ? '_' : "__".ord($1)."__"/eg;
945 return $config{cgiurl}."?".
946 join("&", map $_."=".uri_escape_utf8($params{$_}), keys %params);
952 return "$config{url}/" if ! defined $page;
954 $page=htmlpage($page);
956 $page=~s/[^\/]+\//..\//g;
961 # Work around very innefficient behavior in File::Spec if abs2rel
962 # is passed two relative paths. It's much faster if paths are
963 # absolute! (Debian bug #376658; fixed in debian unstable now)
968 my $ret=File::Spec->abs2rel($path, $base);
969 $ret=~s/^// if defined $ret;
973 sub displaytime ($;$) {
974 # Plugins can override this function to mark up the time to
976 return '<span class="date">'.formattime(@_).'</span>';
979 sub formattime ($;$) {
980 # Plugins can override this function to format the time.
983 if (! defined $format) {
984 $format=$config{timeformat};
987 # strftime doesn't know about encodings, so make sure
988 # its output is properly treated as utf8
989 return decode_utf8(POSIX::strftime($format, localtime($time)));
992 sub beautify_urlpath ($) {
995 # Ensure url is not an empty link, and if necessary,
996 # add ./ to avoid colon confusion.
997 if ($url !~ /^\// && $url !~ /^\.\.?\//) {
1001 if ($config{usedirs}) {
1002 $url =~ s!/index.$config{htmlext}$!/!;
1014 return beautify_urlpath(baseurl($from)."index.$config{htmlext}");
1017 if (! $destsources{$to}) {
1022 return $config{url}.beautify_urlpath("/".$to);
1025 my $link = abs2rel($to, dirname(htmlpage($from)));
1027 return beautify_urlpath($link);
1030 sub htmllink ($$$;@) {
1031 my $lpage=shift; # the page doing the linking
1032 my $page=shift; # the page that will contain the link (different for inline)
1039 if (! $opts{forcesubpage}) {
1040 $bestlink=bestlink($lpage, $link);
1043 $bestlink="$lpage/".lc($link);
1047 if (defined $opts{linktext}) {
1048 $linktext=$opts{linktext};
1051 $linktext=pagetitle(basename($link));
1054 return "<span class=\"selflink\">$linktext</span>"
1055 if length $bestlink && $page eq $bestlink &&
1056 ! defined $opts{anchor};
1058 if (! $destsources{$bestlink}) {
1059 $bestlink=htmlpage($bestlink);
1061 if (! $destsources{$bestlink}) {
1062 return $linktext unless length $config{cgiurl};
1063 return "<span class=\"createlink\"><a href=\"".
1069 "\" rel=\"nofollow\">?</a>$linktext</span>"
1073 $bestlink=abs2rel($bestlink, dirname(htmlpage($page)));
1074 $bestlink=beautify_urlpath($bestlink);
1076 if (! $opts{noimageinline} && isinlinableimage($bestlink)) {
1077 return "<img src=\"$bestlink\" alt=\"$linktext\" />";
1080 if (defined $opts{anchor}) {
1081 $bestlink.="#".$opts{anchor};
1085 if (defined $opts{rel}) {
1086 push @attrs, ' rel="'.$opts{rel}.'"';
1088 if (defined $opts{class}) {
1089 push @attrs, ' class="'.$opts{class}.'"';
1092 return "<a href=\"$bestlink\"@attrs>$linktext</a>";
1095 sub openiduser ($) {
1098 if ($user =~ m!^https?://! &&
1099 eval q{use Net::OpenID::VerifiedIdentity; 1} && !$@) {
1102 if (Net::OpenID::VerifiedIdentity->can("DisplayOfURL")) {
1103 # this works in at least 2.x
1104 $display = Net::OpenID::VerifiedIdentity::DisplayOfURL($user);
1107 # this only works in 1.x
1108 my $oid=Net::OpenID::VerifiedIdentity->new(identity => $user);
1109 $display=$oid->display;
1112 # Convert "user.somehost.com" to "user [somehost.com]"
1113 # (also "user.somehost.co.uk")
1114 if ($display !~ /\[/) {
1115 $display=~s/^([-a-zA-Z0-9]+?)\.([-.a-zA-Z0-9]+\.[a-z]+)$/$1 [$2]/;
1117 # Convert "http://somehost.com/user" to "user [somehost.com]".
1118 # (also "https://somehost.com/user/")
1119 if ($display !~ /\[/) {
1120 $display=~s/^https?:\/\/(.+)\/([^\/]+)\/?$/$2 [$1]/;
1122 $display=~s!^https?://!!; # make sure this is removed
1123 eval q{use CGI 'escapeHTML'};
1125 return escapeHTML($display);
1133 my $oiduser=eval { openiduser($user) };
1134 if (defined $oiduser) {
1135 return "<a href=\"$user\">$oiduser</a>";
1138 eval q{use CGI 'escapeHTML'};
1141 return htmllink("", "", escapeHTML(
1142 length $config{userdir} ? $config{userdir}."/".$user : $user
1143 ), noimageinline => 1);
1147 sub htmlize ($$$$) {
1153 my $oneline = $content !~ /\n/;
1155 if (exists $hooks{htmlize}{$type}) {
1156 $content=$hooks{htmlize}{$type}{call}->(
1158 content => $content,
1162 error("htmlization of $type not supported");
1165 run_hooks(sanitize => sub {
1168 destpage => $destpage,
1169 content => $content,
1174 # hack to get rid of enclosing junk added by markdown
1175 # and other htmlizers
1176 $content=~s/^<p>//i;
1177 $content=~s/<\/p>$//i;
1189 run_hooks(linkify => sub {
1192 destpage => $destpage,
1193 content => $content,
1201 our $preprocess_preview=0;
1202 sub preprocess ($$$;$$) {
1203 my $page=shift; # the page the data comes from
1204 my $destpage=shift; # the page the data will appear in (different for inline)
1209 # Using local because it needs to be set within any nested calls
1211 local $preprocess_preview=$preview if defined $preview;
1218 $params="" if ! defined $params;
1220 if (length $escape) {
1221 return "[[$prefix$command $params]]";
1223 elsif (exists $hooks{preprocess}{$command}) {
1224 return "" if $scan && ! $hooks{preprocess}{$command}{scan};
1225 # Note: preserve order of params, some plugins may
1226 # consider it significant.
1228 while ($params =~ m{
1229 (?:([-\w]+)=)? # 1: named parameter key?
1231 """(.*?)""" # 2: triple-quoted value
1233 "([^"]+)" # 3: single-quoted value
1235 (\S+) # 4: unquoted value
1237 (?:\s+|$) # delimiter to next param
1247 elsif (defined $3) {
1250 elsif (defined $4) {
1255 push @params, $key, $val;
1258 push @params, $val, '';
1261 if ($preprocessing{$page}++ > 3) {
1262 # Avoid loops of preprocessed pages preprocessing
1263 # other pages that preprocess them, etc.
1264 return "[[!$command <span class=\"error\">".
1265 sprintf(gettext("preprocessing loop detected on %s at depth %i"),
1266 $page, $preprocessing{$page}).
1272 $hooks{preprocess}{$command}{call}->(
1275 destpage => $destpage,
1276 preview => $preprocess_preview,
1282 $ret="[[!$command <span class=\"error\">".
1283 gettext("Error").": $error"."</span>]]";
1287 # use void context during scan pass
1289 $hooks{preprocess}{$command}{call}->(
1292 destpage => $destpage,
1293 preview => $preprocess_preview,
1298 $preprocessing{$page}--;
1302 return "[[$prefix$command $params]]";
1307 if ($config{prefix_directives}) {
1310 \[\[(!) # directive open; 2: prefix
1311 ([-\w]+) # 3: command
1312 ( # 4: the parameters..
1313 \s+ # Must have space if parameters present
1315 (?:[-\w]+=)? # named parameter key?
1317 """.*?""" # triple-quoted value
1319 "[^"]+" # single-quoted value
1321 [^"\s\]]+ # unquoted value
1323 \s* # whitespace or end
1326 *)? # 0 or more parameters
1327 \]\] # directive closed
1333 \[\[(!?) # directive open; 2: optional prefix
1334 ([-\w]+) # 3: command
1336 ( # 4: the parameters..
1338 (?:[-\w]+=)? # named parameter key?
1340 """.*?""" # triple-quoted value
1342 "[^"]+" # single-quoted value
1344 [^"\s\]]+ # unquoted value
1346 \s* # whitespace or end
1349 *) # 0 or more parameters
1350 \]\] # directive closed
1354 $content =~ s{$regex}{$handle->($1, $2, $3, $4)}eg;
1363 run_hooks(filter => sub {
1364 $content=shift->(page => $page, destpage => $destpage,
1365 content => $content);
1372 return "<a href=\"$config{url}\">$config{wikiname}</a>";
1375 sub check_canedit ($$$;$) {
1382 run_hooks(canedit => sub {
1383 return if defined $canedit;
1384 my $ret=shift->($page, $q, $session);
1389 elsif (ref $ret eq 'CODE') {
1390 $ret->() unless $nonfatal;
1393 elsif (defined $ret) {
1394 error($ret) unless $nonfatal;
1399 return defined $canedit ? $canedit : 1;
1402 sub check_content (@) {
1405 return 1 if ! exists $hooks{checkcontent}; # optimisation
1407 if (exists $pagesources{$params{page}}) {
1409 my %old=map { $_ => 1 }
1410 split("\n", readfile(srcfile($pagesources{$params{page}})));
1411 foreach my $line (split("\n", $params{content})) {
1412 push @diff, $line if ! exists $old{$_};
1414 $params{diff}=join("\n", @diff);
1418 run_hooks(checkcontent => sub {
1419 return if defined $ok;
1420 my $ret=shift->(%params);
1425 elsif (ref $ret eq 'CODE') {
1426 $ret->() unless $params{nonfatal};
1429 elsif (defined $ret) {
1430 error($ret) unless $params{nonfatal};
1436 return defined $ok ? $ok : 1;
1442 # Take an exclusive lock on the wiki to prevent multiple concurrent
1443 # run issues. The lock will be dropped on program exit.
1444 if (! -d $config{wikistatedir}) {
1445 mkdir($config{wikistatedir});
1447 open($wikilock, '>', "$config{wikistatedir}/lockfile") ||
1448 error ("cannot write to $config{wikistatedir}/lockfile: $!");
1449 if (! flock($wikilock, 2)) { # LOCK_EX
1450 error("failed to get lock");
1456 POSIX::close($ENV{IKIWIKI_CGILOCK_FD}) if exists $ENV{IKIWIKI_CGILOCK_FD};
1457 return close($wikilock) if $wikilock;
1463 sub commit_hook_enabled () {
1464 open($commitlock, '+>', "$config{wikistatedir}/commitlock") ||
1465 error("cannot write to $config{wikistatedir}/commitlock: $!");
1466 if (! flock($commitlock, 1 | 4)) { # LOCK_SH | LOCK_NB to test
1467 close($commitlock) || error("failed closing commitlock: $!");
1470 close($commitlock) || error("failed closing commitlock: $!");
1474 sub disable_commit_hook () {
1475 open($commitlock, '>', "$config{wikistatedir}/commitlock") ||
1476 error("cannot write to $config{wikistatedir}/commitlock: $!");
1477 if (! flock($commitlock, 2)) { # LOCK_EX
1478 error("failed to get commit lock");
1483 sub enable_commit_hook () {
1484 return close($commitlock) if $commitlock;
1489 %oldrenderedfiles=%pagectime=();
1490 if (! $config{rebuild}) {
1491 %pagesources=%pagemtime=%oldlinks=%links=%depends=
1492 %destsources=%renderedfiles=%pagecase=%pagestate=
1496 if (! open ($in, "<", "$config{wikistatedir}/indexdb")) {
1497 if (-e "$config{wikistatedir}/index") {
1498 system("ikiwiki-transition", "indexdb", $config{srcdir});
1499 open ($in, "<", "$config{wikistatedir}/indexdb") || return;
1506 my $index=Storable::fd_retrieve($in);
1507 if (! defined $index) {
1512 if (exists $index->{version} && ! ref $index->{version}) {
1513 $pages=$index->{page};
1514 %wikistate=%{$index->{state}};
1521 foreach my $src (keys %$pages) {
1522 my $d=$pages->{$src};
1523 my $page=pagename($src);
1524 $pagectime{$page}=$d->{ctime};
1525 if (! $config{rebuild}) {
1526 $pagesources{$page}=$src;
1527 $pagemtime{$page}=$d->{mtime};
1528 $renderedfiles{$page}=$d->{dest};
1529 if (exists $d->{links} && ref $d->{links}) {
1530 $links{$page}=$d->{links};
1531 $oldlinks{$page}=[@{$d->{links}}];
1533 if (ref $d->{depends_simple} eq 'ARRAY') {
1535 $depends_simple{$page}={
1536 map { $_ => 1 } @{$d->{depends_simple}}
1539 elsif (exists $d->{depends_simple}) {
1540 $depends_simple{$page}=$d->{depends_simple};
1542 if (exists $d->{dependslist}) {
1545 map { $_ => $DEPEND_CONTENT }
1546 @{$d->{dependslist}}
1549 elsif (exists $d->{depends} && ! ref $d->{depends}) {
1551 $depends{$page}={$d->{depends} => $DEPEND_CONTENT };
1553 elsif (exists $d->{depends}) {
1554 $depends{$page}=$d->{depends};
1556 if (exists $d->{state}) {
1557 $pagestate{$page}=$d->{state};
1560 $oldrenderedfiles{$page}=[@{$d->{dest}}];
1562 foreach my $page (keys %pagesources) {
1563 $pagecase{lc $page}=$page;
1565 foreach my $page (keys %renderedfiles) {
1566 $destsources{$_}=$page foreach @{$renderedfiles{$page}};
1572 run_hooks(savestate => sub { shift->() });
1575 foreach my $type (keys %hooks) {
1576 $hookids{$_}=1 foreach keys %{$hooks{$type}};
1578 my @hookids=keys %hookids;
1580 if (! -d $config{wikistatedir}) {
1581 mkdir($config{wikistatedir});
1583 my $newfile="$config{wikistatedir}/indexdb.new";
1584 my $cleanup = sub { unlink($newfile) };
1585 open (my $out, '>', $newfile) || error("cannot write to $newfile: $!", $cleanup);
1588 foreach my $page (keys %pagemtime) {
1589 next unless $pagemtime{$page};
1590 my $src=$pagesources{$page};
1592 $index{page}{$src}={
1593 ctime => $pagectime{$page},
1594 mtime => $pagemtime{$page},
1595 dest => $renderedfiles{$page},
1596 links => $links{$page},
1599 if (exists $depends{$page}) {
1600 $index{page}{$src}{depends} = $depends{$page};
1603 if (exists $depends_simple{$page}) {
1604 $index{page}{$src}{depends_simple} = $depends_simple{$page};
1607 if (exists $pagestate{$page}) {
1608 foreach my $id (@hookids) {
1609 foreach my $key (keys %{$pagestate{$page}{$id}}) {
1610 $index{page}{$src}{state}{$id}{$key}=$pagestate{$page}{$id}{$key};
1617 foreach my $id (@hookids) {
1618 foreach my $key (keys %{$wikistate{$id}}) {
1619 $index{state}{$id}{$key}=$wikistate{$id}{$key};
1623 $index{version}="3";
1624 my $ret=Storable::nstore_fd(\%index, $out);
1625 return if ! defined $ret || ! $ret;
1626 close $out || error("failed saving to $newfile: $!", $cleanup);
1627 rename($newfile, "$config{wikistatedir}/indexdb") ||
1628 error("failed renaming $newfile to $config{wikistatedir}/indexdb", $cleanup);
1633 sub template_file ($) {
1636 foreach my $dir ($config{templatedir}, @{$config{templatedirs}},
1637 "$installdir/share/ikiwiki/templates") {
1638 return "$dir/$template" if -e "$dir/$template";
1643 sub template_params (@) {
1644 my $filename=template_file(shift);
1646 if (! defined $filename) {
1647 return if wantarray;
1653 my $text_ref = shift;
1654 ${$text_ref} = decode_utf8(${$text_ref});
1656 filename => $filename,
1657 loop_context_vars => 1,
1658 die_on_bad_params => 0,
1661 return wantarray ? @ret : {@ret};
1664 sub template ($;@) {
1665 require HTML::Template;
1666 return HTML::Template->new(template_params(@_));
1669 sub misctemplate ($$;@) {
1673 my $template=template("misc.tmpl");
1676 indexlink => indexlink(),
1677 wikiname => $config{wikiname},
1678 pagebody => $pagebody,
1679 baseurl => baseurl(),
1682 run_hooks(pagetemplate => sub {
1683 shift->(page => "", destpage => "", template => $template);
1685 return $template->output;
1691 if (! exists $param{type} || ! ref $param{call} || ! exists $param{id}) {
1692 error 'hook requires type, call, and id parameters';
1695 return if $param{no_override} && exists $hooks{$param{type}}{$param{id}};
1697 $hooks{$param{type}}{$param{id}}=\%param;
1701 sub run_hooks ($$) {
1702 # Calls the given sub for each hook of the given type,
1703 # passing it the hook function to call.
1707 if (exists $hooks{$type}) {
1708 my (@first, @middle, @last);
1709 foreach my $id (keys %{$hooks{$type}}) {
1710 if ($hooks{$type}{$id}{first}) {
1713 elsif ($hooks{$type}{$id}{last}) {
1720 foreach my $id (@first, @middle, @last) {
1721 $sub->($hooks{$type}{$id}{call});
1729 $hooks{rcs}{rcs_update}{call}->(@_);
1732 sub rcs_prepedit ($) {
1733 $hooks{rcs}{rcs_prepedit}{call}->(@_);
1736 sub rcs_commit ($$$;$$) {
1737 $hooks{rcs}{rcs_commit}{call}->(@_);
1740 sub rcs_commit_staged ($$$) {
1741 $hooks{rcs}{rcs_commit_staged}{call}->(@_);
1745 $hooks{rcs}{rcs_add}{call}->(@_);
1748 sub rcs_remove ($) {
1749 $hooks{rcs}{rcs_remove}{call}->(@_);
1752 sub rcs_rename ($$) {
1753 $hooks{rcs}{rcs_rename}{call}->(@_);
1756 sub rcs_recentchanges ($) {
1757 $hooks{rcs}{rcs_recentchanges}{call}->(@_);
1761 $hooks{rcs}{rcs_diff}{call}->(@_);
1764 sub rcs_getctime ($) {
1765 $hooks{rcs}{rcs_getctime}{call}->(@_);
1768 sub rcs_receive () {
1769 $hooks{rcs}{rcs_receive}{call}->();
1772 sub add_depends ($$;$) {
1775 my $deptype=shift || $DEPEND_CONTENT;
1777 # Is the pagespec a simple page name?
1778 if ($pagespec =~ /$config{wiki_file_regexp}/ &&
1779 $pagespec !~ /[\s*?()!]/) {
1780 $depends_simple{$page}{lc $pagespec} |= $deptype;
1784 # Analyse the pagespec, and match it against all pages
1785 # to get a list of influences, and add explicit dependencies
1787 #my $sub=pagespec_translate($pagespec);
1789 #foreach my $p (keys %pagesources) {
1790 # my $r=$sub->($p, location => $page );
1791 # my %i=$r->influences;
1792 # foreach my $i (keys %i) {
1793 # $depends_simple{$page}{lc $i} |= $i{$i};
1796 print STDERR "warning: use of add_depends; influences not tracked\n";
1798 $depends{$page}{$pagespec} |= $deptype;
1802 sub use_pagespec ($$;@) {
1807 my $sub=pagespec_translate($pagespec);
1808 error "syntax error in pagespec \"$pagespec\""
1809 if $@ || ! defined $sub;
1812 if (exists $params{limit}) {
1813 @candidates=grep { $params{limit}->($_) } keys %pagesources;
1816 @candidates=keys %pagesources;
1819 if (defined $params{sort}) {
1821 if ($params{sort} eq 'title') {
1822 $f=sub { pagetitle(basename($a)) cmp pagetitle(basename($b)) };
1824 elsif ($params{sort} eq 'title_natural') {
1825 eval q{use Sort::Naturally};
1827 error(gettext("Sort::Naturally needed for title_natural sort"));
1829 $f=sub { Sort::Naturally::ncmp(pagetitle(basename($a)), pagetitle(basename($b))) };
1831 elsif ($params{sort} eq 'mtime') {
1832 $f=sub { $pagemtime{$b} <=> $pagemtime{$a} };
1834 elsif ($params{sort} eq 'age') {
1835 $f=sub { $pagectime{$b} <=> $pagectime{$a} };
1838 error sprintf(gettext("unknown sort type %s"), $params{sort});
1840 @candidates = sort { &$f } @candidates;
1843 @candidates=reverse(@candidates) if $params{reverse};
1848 foreach my $p (@candidates) {
1849 my $r=$sub->($p, location => $page);
1851 push @matches, [$p, $r];
1852 last if defined $params{num} && ++$count == $params{num};
1854 elsif (! defined $firstfail) {
1859 $depends{$page}{$pagespec} |= ($params{deptype} || $DEPEND_CONTENT);
1863 # Add all influences from successful matches.
1864 foreach my $m (@matches) {
1866 my %i=$m->[1]->influences;
1867 foreach my $i (keys %i) {
1868 $depends_simple{$page}{lc $i} |= $i{$i};
1872 elsif (defined $firstfail) {
1873 # Add influences from one failure. (Which one should not
1874 # matter; all should have the same influences.)
1875 my %i=$firstfail->influences;
1876 foreach my $i (keys %i) {
1877 $depends_simple{$page}{lc $i} |= $i{$i};
1879 error(sprintf(gettext("cannot match pages: %s"), $firstfail));
1887 foreach my $type (@_) {
1888 if ($type eq 'presence') {
1889 $deptype |= $DEPEND_PRESENCE;
1891 elsif ($type eq 'links') {
1892 $deptype |= $DEPEND_LINKS;
1894 elsif ($type eq 'content') {
1895 $deptype |= $DEPEND_CONTENT;
1901 sub file_pruned ($$) {
1903 my $file=File::Spec->canonpath(shift);
1904 my $base=File::Spec->canonpath(shift);
1905 $file =~ s#^\Q$base\E/+##;
1907 my $regexp='('.join('|', @{$config{wiki_file_prune_regexps}}).')';
1908 return $file =~ m/$regexp/ && $file ne $base;
1911 sub define_gettext () {
1912 # If translation is needed, redefine the gettext function to do it.
1913 # Otherwise, it becomes a quick no-op.
1914 no warnings 'redefine';
1915 if ((exists $ENV{LANG} && length $ENV{LANG}) ||
1916 (exists $ENV{LC_ALL} && length $ENV{LC_ALL}) ||
1917 (exists $ENV{LC_MESSAGES} && length $ENV{LC_MESSAGES})) {
1919 my $gettext_obj=eval q{
1920 use Locale::gettext q{textdomain};
1921 Locale::gettext->domain('ikiwiki')
1925 $gettext_obj->get(shift);
1933 *gettext=sub { return shift };
1945 return (defined $val && (lc($val) eq gettext("yes") || lc($val) eq "yes" || $val eq "1"));
1949 # Injects a new function into the symbol table to replace an
1950 # exported function.
1953 # This is deep ugly perl foo, beware.
1956 if (! defined $params{parent}) {
1957 $params{parent}='::';
1958 $params{old}=\&{$params{name}};
1959 $params{name}=~s/.*:://;
1961 my $parent=$params{parent};
1962 foreach my $ns (grep /^\w+::/, keys %{$parent}) {
1963 $ns = $params{parent} . $ns;
1964 inject(%params, parent => $ns) unless $ns eq '::main::';
1965 *{$ns . $params{name}} = $params{call}
1966 if exists ${$ns}{$params{name}} &&
1967 \&{${$ns}{$params{name}}} == $params{old};
1977 push @{$links{$page}}, $link
1978 unless grep { $_ eq $link } @{$links{$page}};
1981 sub pagespec_translate ($) {
1984 # Convert spec to perl code.
1988 \s* # ignore whitespace
1989 ( # 1: match a single word
1996 \w+\([^\)]*\) # command(params)
1998 [^\s()]+ # any other text
2000 \s* # ignore whitespace
2003 if (lc $word eq 'and') {
2006 elsif (lc $word eq 'or') {
2009 elsif ($word eq "(" || $word eq ")" || $word eq "!") {
2012 elsif ($word =~ /^(\w+)\((.*)\)$/) {
2013 if (exists $IkiWiki::PageSpec::{"match_$1"}) {
2015 $code.="IkiWiki::PageSpec::match_$1(\$page, \$data[$#data], \@_)";
2018 push @data, qq{unknown function in pagespec "$word"};
2019 $code.="IkiWiki::ErrorReason->new(\$data[$#data])";
2024 $code.=" IkiWiki::PageSpec::match_glob(\$page, \$data[$#data], \@_)";
2028 if (! length $code) {
2029 $code="IkiWiki::FailReason->new('empty pagespec')";
2033 return eval 'sub { my $page=shift; '.$code.' }';
2036 sub pagespec_match ($$;@) {
2041 # Backwards compatability with old calling convention.
2043 unshift @params, 'location';
2046 my $sub=pagespec_translate($spec);
2047 return IkiWiki::ErrorReason->new("syntax error in pagespec \"$spec\"")
2048 if $@ || ! defined $sub;
2049 return $sub->($page, @params);
2052 sub pagespec_match_list ($$;@) {
2057 my $sub=pagespec_translate($spec);
2058 error "syntax error in pagespec \"$spec\""
2059 if $@ || ! defined $sub;
2063 foreach my $page (@$pages) {
2064 $r=$sub->($page, @params);
2065 push @ret, $page if $r;
2068 if (! @ret && defined $r && $r->isa("IkiWiki::ErrorReason")) {
2069 error(sprintf(gettext("cannot match pages: %s"), $r));
2076 sub pagespec_valid ($) {
2079 my $sub=pagespec_translate($spec);
2084 my $re=quotemeta(shift);
2090 package IkiWiki::FailReason;
2093 '""' => sub { $_[0][0] },
2095 '!' => sub { bless $_[0], 'IkiWiki::SuccessReason'},
2096 '&' => sub { $_[0]->merge_influences($_[1]); $_[0] },
2097 '|' => sub { $_[1]->merge_influences($_[0]); $_[1] },
2101 our @ISA = 'IkiWiki::SuccessReason';
2103 package IkiWiki::SuccessReason;
2106 '""' => sub { $_[0][0] },
2108 '!' => sub { bless $_[0], 'IkiWiki::FailReason'},
2109 '&' => sub { $_[1]->merge_influences($_[0]); $_[1] },
2110 '|' => sub { $_[0]->merge_influences($_[1]); $_[0] },
2117 return bless [$value, {@_}], $class;
2123 return %{$this->[1]};
2130 sub merge_influences {
2133 foreach my $influence (keys %{$other->[1]}) {
2134 $this->[1]{$influence} |= $other->[1]{$influence};
2138 package IkiWiki::ErrorReason;
2140 our @ISA = 'IkiWiki::FailReason';
2142 package IkiWiki::PageSpec;
2148 if ($path =~ m!^\./!) {
2149 $from=~s#/?[^/]+$## if defined $from;
2151 $path="$from/$path" if length $from;
2157 sub match_glob ($$;@) {
2162 $glob=derel($glob, $params{location});
2164 my $regexp=IkiWiki::glob2re($glob);
2165 if ($page=~/^$regexp$/i) {
2166 if (! IkiWiki::isinternal($page) || $params{internal}) {
2167 return IkiWiki::SuccessReason->new("$glob matches $page");
2170 return IkiWiki::FailReason->new("$glob matches $page, but the page is an internal page");
2174 return IkiWiki::FailReason->new("$glob does not match $page");
2178 sub match_internal ($$;@) {
2179 return match_glob($_[0], $_[1], @_, internal => 1)
2182 sub match_link ($$;@) {
2187 $link=derel($link, $params{location});
2188 my $from=exists $params{location} ? $params{location} : '';
2190 my $links = $IkiWiki::links{$page};
2191 return IkiWiki::FailReason->new("$page has no links")
2192 unless $links && @{$links};
2193 my $bestlink = IkiWiki::bestlink($from, $link);
2194 foreach my $p (@{$links}) {
2195 if (length $bestlink) {
2196 return IkiWiki::SuccessReason->new("$page links to $link", $page => $IkiWiki::DEPEND_LINKS)
2197 if $bestlink eq IkiWiki::bestlink($page, $p);
2200 return IkiWiki::SuccessReason->new("$page links to page $p matching $link", $page => $IkiWiki::DEPEND_LINKS)
2201 if match_glob($p, $link, %params);
2202 my ($p_rel)=$p=~/^\/?(.*)/;
2204 return IkiWiki::SuccessReason->new("$page links to page $p_rel matching $link", $page => $IkiWiki::DEPEND_LINKS)
2205 if match_glob($p_rel, $link, %params);
2208 return IkiWiki::FailReason->new("$page does not link to $link");
2211 sub match_backlink ($$;@) {
2212 my $ret=match_link($_[1], $_[0], @_);
2213 $ret->influences($_[1] => $IkiWiki::DEPEND_LINKS);
2217 sub match_created_before ($$;@) {
2222 $testpage=derel($testpage, $params{location});
2224 if (exists $IkiWiki::pagectime{$testpage}) {
2225 if ($IkiWiki::pagectime{$page} < $IkiWiki::pagectime{$testpage}) {
2226 return IkiWiki::SuccessReason->new("$page created before $testpage", $testpage => $IkiWiki::DEPEND_PRESENCE);
2229 return IkiWiki::FailReason->new("$page not created before $testpage", $testpage => $IkiWiki::DEPEND_PRESENCE);
2233 return IkiWiki::ErrorReason->new("$testpage does not exist", $testpage => $IkiWiki::DEPEND_PRESENCE);
2237 sub match_created_after ($$;@) {
2242 $testpage=derel($testpage, $params{location});
2244 if (exists $IkiWiki::pagectime{$testpage}) {
2245 if ($IkiWiki::pagectime{$page} > $IkiWiki::pagectime{$testpage}) {
2246 return IkiWiki::SuccessReason->new("$page created after $testpage", $testpage => $IkiWiki::DEPEND_PRESENCE);
2249 return IkiWiki::FailReason->new("$page not created after $testpage", $testpage => $IkiWiki::DEPEND_PRESENCE);
2253 return IkiWiki::ErrorReason->new("$testpage does not exist", $testpage => $IkiWiki::DEPEND_PRESENCE);
2257 sub match_creation_day ($$;@) {
2258 if ((gmtime($IkiWiki::pagectime{shift()}))[3] == shift) {
2259 return IkiWiki::SuccessReason->new('creation_day matched');
2262 return IkiWiki::FailReason->new('creation_day did not match');
2266 sub match_creation_month ($$;@) {
2267 if ((gmtime($IkiWiki::pagectime{shift()}))[4] + 1 == shift) {
2268 return IkiWiki::SuccessReason->new('creation_month matched');
2271 return IkiWiki::FailReason->new('creation_month did not match');
2275 sub match_creation_year ($$;@) {
2276 if ((gmtime($IkiWiki::pagectime{shift()}))[5] + 1900 == shift) {
2277 return IkiWiki::SuccessReason->new('creation_year matched');
2280 return IkiWiki::FailReason->new('creation_year did not match');
2284 sub match_user ($$;@) {
2289 if (! exists $params{user}) {
2290 return IkiWiki::ErrorReason->new("no user specified");
2293 if (defined $params{user} && lc $params{user} eq lc $user) {
2294 return IkiWiki::SuccessReason->new("user is $user");
2296 elsif (! defined $params{user}) {
2297 return IkiWiki::FailReason->new("not logged in");
2300 return IkiWiki::FailReason->new("user is $params{user}, not $user");
2304 sub match_admin ($$;@) {
2309 if (! exists $params{user}) {
2310 return IkiWiki::ErrorReason->new("no user specified");
2313 if (defined $params{user} && IkiWiki::is_admin($params{user})) {
2314 return IkiWiki::SuccessReason->new("user is an admin");
2316 elsif (! defined $params{user}) {
2317 return IkiWiki::FailReason->new("not logged in");
2320 return IkiWiki::FailReason->new("user is not an admin");
2324 sub match_ip ($$;@) {
2329 if (! exists $params{ip}) {
2330 return IkiWiki::ErrorReason->new("no IP specified");
2333 if (defined $params{ip} && lc $params{ip} eq lc $ip) {
2334 return IkiWiki::SuccessReason->new("IP is $ip");
2337 return IkiWiki::FailReason->new("IP is $params{ip}, not $ip");