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
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("template_file");
47 description => "name of the wiki",
54 example => 'me@example.com',
55 description => "contact email for wiki",
62 description => "users who are wiki admins",
69 description => "users who are banned from the wiki",
76 example => "$ENV{HOME}/wiki",
77 description => "where the source of the wiki is located",
84 example => "/var/www/wiki",
85 description => "where to build the wiki",
92 example => "http://example.com/wiki",
93 description => "base url to the wiki",
100 example => "http://example.com/wiki/ikiwiki.cgi",
101 description => "url to the ikiwiki.cgi",
108 example => "/var/www/wiki/ikiwiki.cgi",
109 description => "filename of cgi wrapper to generate",
116 description => "mode for cgi_wrapper (can safely be made suid)",
123 description => "rcs backend to use",
124 safe => 0, # don't allow overriding
129 default => [qw{mdwn link inline meta htmlscrubber passwordauth
130 openid signinedit lockedit conditional
131 recentchanges parentlinks editpage}],
132 description => "plugins to enable by default",
139 description => "plugins to add to the default configuration",
146 description => "plugins to disable",
152 default => "$installdir/share/ikiwiki/templates",
153 description => "location of template files",
161 description => "additional directories containing template files",
167 default => "$installdir/share/ikiwiki/basewiki",
168 description => "base wiki source location",
175 default => "$installdir/share/ikiwiki",
176 description => "parent directory containing additional underlays",
183 description => "wrappers to generate",
190 description => "additional underlays to use",
197 description => "display verbose messages?",
204 description => "log to syslog?",
211 description => "create output files named page/index.html?",
212 safe => 0, # changing requires manual transition
215 prefix_directives => {
218 description => "use '!'-prefixed preprocessor directives?",
219 safe => 0, # changing requires manual transition
225 description => "use page/index.mdwn source files",
232 description => "enable Discussion pages?",
238 default => gettext("Discussion"),
239 description => "name of Discussion pages",
246 description => "only send cookies over SSL connections?",
254 description => "extension to use for new pages",
255 safe => 0, # not sanitized
261 description => "extension to use for html files",
262 safe => 0, # not sanitized
268 description => "strftime format string to display date",
276 example => "en_US.UTF-8",
277 description => "UTF-8 locale to use",
286 description => "put user pages below specified page",
293 description => "how many backlinks to show before hiding excess (0 to show all)",
300 description => "attempt to hardlink source files? (optimisation for large files)",
302 safe => 0, # paranoia
308 description => "force ikiwiki to use a particular umask",
310 safe => 0, # paranoia
315 example => "ikiwiki",
316 description => "group for wrappers to run in",
318 safe => 0, # paranoia
324 example => "$ENV{HOME}/.ikiwiki/",
325 description => "extra library and plugin directory",
327 safe => 0, # directory
333 description => "environment variables",
334 safe => 0, # paranoia
341 description => "regexp of source files to ignore",
346 wiki_file_prune_regexps => {
348 default => [qr/(^|\/)\.\.(\/|$)/, qr/^\./, qr/\/\./,
349 qr/\.x?html?$/, qr/\.ikiwiki-new$/,
350 qr/(^|\/).svn\//, qr/.arch-ids\//, qr/{arch}\//,
351 qr/(^|\/)_MTN\//, qr/(^|\/)_darcs\//,
352 qr/(^|\/)CVS\//, qr/\.dpkg-tmp$/],
353 description => "regexps of source files to ignore",
359 description => "specifies the characters that are allowed in source filenames",
360 default => "-[:alnum:]+/.:_",
364 wiki_file_regexp => {
366 description => "regexp of legal source files",
370 web_commit_regexp => {
372 default => qr/^web commit (by (.*?(?=: |$))|from ([0-9a-fA-F:.]+[0-9a-fA-F])):?(.*)/,
373 description => "regexp to parse web commits from logs",
380 description => "run as a cgi",
384 cgi_disable_uploads => {
387 description => "whether CGI should accept file uploads",
394 description => "run as a post-commit hook",
401 description => "running in rebuild mode",
408 description => "running in setup mode",
415 description => "running in refresh mode",
422 description => "running in receive test mode",
429 description => "running in getctime mode",
436 description => "running in w3mmode",
443 description => "path to the .ikiwiki directory holding ikiwiki state",
450 description => "path to setup file",
454 allow_symlinks_before_srcdir => {
457 description => "allow symlinks in the path leading to the srcdir (potentially insecure)",
463 sub defaultconfig () {
466 foreach my $key (keys %s) {
467 push @ret, $key, $s{$key}->{default};
474 # locale stuff; avoid LC_ALL since it overrides everything
475 if (defined $ENV{LC_ALL}) {
476 $ENV{LANG} = $ENV{LC_ALL};
479 if (defined $config{locale}) {
480 if (POSIX::setlocale(&POSIX::LC_ALL, $config{locale})) {
481 $ENV{LANG}=$config{locale};
486 if (! defined $config{wiki_file_regexp}) {
487 $config{wiki_file_regexp}=qr/(^[$config{wiki_file_chars}]+$)/;
490 if (ref $config{ENV} eq 'HASH') {
491 foreach my $val (keys %{$config{ENV}}) {
492 $ENV{$val}=$config{ENV}{$val};
496 if ($config{w3mmode}) {
497 eval q{use Cwd q{abs_path}};
499 $config{srcdir}=possibly_foolish_untaint(abs_path($config{srcdir}));
500 $config{destdir}=possibly_foolish_untaint(abs_path($config{destdir}));
501 $config{cgiurl}="file:///\$LIB/ikiwiki-w3m.cgi/".$config{cgiurl}
502 unless $config{cgiurl} =~ m!file:///!;
503 $config{url}="file://".$config{destdir};
506 if ($config{cgi} && ! length $config{url}) {
507 error(gettext("Must specify url to wiki with --url when using --cgi"));
510 $config{wikistatedir}="$config{srcdir}/.ikiwiki"
511 unless exists $config{wikistatedir} && defined $config{wikistatedir};
513 if (defined $config{umask}) {
514 umask(possibly_foolish_untaint($config{umask}));
517 run_hooks(checkconfig => sub { shift->() });
525 foreach my $dir (@INC, $config{libdir}) {
526 next unless defined $dir && length $dir;
527 foreach my $file (glob("$dir/IkiWiki/Plugin/*.pm")) {
528 my ($plugin)=$file=~/.*\/(.*)\.pm$/;
532 foreach my $dir ($config{libdir}, "$installdir/lib/ikiwiki") {
533 next unless defined $dir && length $dir;
534 foreach my $file (glob("$dir/plugins/*")) {
535 $ret{basename($file)}=1 if -x $file;
543 if (defined $config{libdir} && length $config{libdir}) {
544 unshift @INC, possibly_foolish_untaint($config{libdir});
547 foreach my $plugin (@{$config{default_plugins}}, @{$config{add_plugins}}) {
552 if (exists $hooks{rcs}) {
553 error(gettext("cannot use multiple rcs plugins"));
555 loadplugin($config{rcs});
557 if (! exists $hooks{rcs}) {
561 run_hooks(getopt => sub { shift->() });
562 if (grep /^-/, @ARGV) {
563 print STDERR "Unknown option (or missing parameter): $_\n"
564 foreach grep /^-/, @ARGV;
574 return if grep { $_ eq $plugin} @{$config{disable_plugins}};
576 foreach my $dir (defined $config{libdir} ? possibly_foolish_untaint($config{libdir}) : undef,
577 "$installdir/lib/ikiwiki") {
578 if (defined $dir && -x "$dir/plugins/$plugin") {
579 eval { require IkiWiki::Plugin::external };
582 error(sprintf(gettext("failed to load external plugin needed for %s plugin: %s"), $plugin, $reason));
584 import IkiWiki::Plugin::external "$dir/plugins/$plugin";
585 $loaded_plugins{$plugin}=1;
590 my $mod="IkiWiki::Plugin::".possibly_foolish_untaint($plugin);
593 error("Failed to load plugin $mod: $@");
595 $loaded_plugins{$plugin}=1;
602 log_message('err' => $message) if $config{syslog};
603 if (defined $cleaner) {
610 return unless $config{verbose};
611 return log_message(debug => @_);
615 sub log_message ($$) {
618 if ($config{syslog}) {
621 Sys::Syslog::setlogsock('unix');
622 Sys::Syslog::openlog('ikiwiki', '', 'user');
626 Sys::Syslog::syslog($type, "[$config{wikiname}] %s", join(" ", @_));
629 elsif (! $config{cgi}) {
633 return print STDERR "@_\n";
637 sub possibly_foolish_untaint ($) {
639 my ($untainted)=$tainted=~/(.*)/s;
659 return exists $pagesources{$page} &&
660 $pagesources{$page} =~ /\._([^.]+)$/;
666 if ($file =~ /\.([^.]+)$/) {
667 return $1 if exists $hooks{htmlize}{$1};
669 my $base=basename($file);
670 if (exists $hooks{htmlize}{$base} &&
671 $hooks{htmlize}{$base}{noextension}) {
682 if (exists $pagename_cache{$file}) {
683 return $pagename_cache{$file};
686 my $type=pagetype($file);
688 $page=~s/\Q.$type\E*$//
689 if defined $type && !$hooks{htmlize}{$type}{keepextension}
690 && !$hooks{htmlize}{$type}{noextension};
691 if ($config{indexpages} && $page=~/(.*)\/index$/) {
695 $pagename_cache{$file} = $page;
699 sub newpagefile ($$) {
703 if (! $config{indexpages} || $page eq 'index') {
704 return $page.".".$type;
707 return $page."/index.".$type;
711 sub targetpage ($$;$) {
716 if (defined $filename) {
717 return $page."/".$filename.".".$ext;
719 elsif (! $config{usedirs} || $page eq 'index') {
720 return $page.".".$ext;
723 return $page."/index.".$ext;
730 return targetpage($page, $config{htmlext});
737 return "$config{srcdir}/$file", stat(_) if -e "$config{srcdir}/$file";
738 foreach my $dir (@{$config{underlaydirs}}, $config{underlaydir}) {
739 return "$dir/$file", stat(_) if -e "$dir/$file";
741 error("internal error: $file cannot be found in $config{srcdir} or underlay") unless $nothrow;
746 return (srcfile_stat(@_))[0];
749 sub add_underlay ($) {
753 $dir="$config{underlaydirbase}/$dir";
756 if (! grep { $_ eq $dir } @{$config{underlaydirs}}) {
757 unshift @{$config{underlaydirs}}, $dir;
763 sub readfile ($;$$) {
769 error("cannot read a symlink ($file)");
773 open (my $in, "<", $file) || error("failed to read $file: $!");
774 binmode($in) if ($binary);
775 return \*$in if $wantfd;
777 # check for invalid utf-8, and toss it back to avoid crashes
778 if (! utf8::valid($ret)) {
779 $ret=encode_utf8($ret);
781 close $in || error("failed to read $file: $!");
785 sub prep_writefile ($$) {
790 while (length $test) {
791 if (-l "$destdir/$test") {
792 error("cannot write to a symlink ($test)");
794 $test=dirname($test);
797 my $dir=dirname("$destdir/$file");
800 foreach my $s (split(m!/+!, $dir)) {
803 mkdir($d) || error("failed to create directory $d: $!");
811 sub writefile ($$$;$$) {
812 my $file=shift; # can include subdirs
813 my $destdir=shift; # directory to put file in
818 prep_writefile($file, $destdir);
820 my $newfile="$destdir/$file.ikiwiki-new";
822 error("cannot write to a symlink ($newfile)");
825 my $cleanup = sub { unlink($newfile) };
826 open (my $out, '>', $newfile) || error("failed to write $newfile: $!", $cleanup);
827 binmode($out) if ($binary);
829 $writer->(\*$out, $cleanup);
832 print $out $content or error("failed writing to $newfile: $!", $cleanup);
834 close $out || error("failed saving $newfile: $!", $cleanup);
835 rename($newfile, "$destdir/$file") ||
836 error("failed renaming $newfile to $destdir/$file: $!", $cleanup);
842 sub will_render ($$;$) {
847 # Important security check.
848 if (-e "$config{destdir}/$dest" && ! $config{rebuild} &&
849 ! grep { $_ eq $dest } (@{$renderedfiles{$page}}, @{$oldrenderedfiles{$page}}, @{$wikistate{editpage}{previews}})) {
850 error("$config{destdir}/$dest independently created, not overwriting with version from $page");
853 if (! $clear || $cleared{$page}) {
854 $renderedfiles{$page}=[$dest, grep { $_ ne $dest } @{$renderedfiles{$page}}];
857 foreach my $old (@{$renderedfiles{$page}}) {
858 delete $destsources{$old};
860 $renderedfiles{$page}=[$dest];
863 $destsources{$dest}=$page;
873 if ($link=~s/^\/+//) {
881 $l.="/" if length $l;
884 if (exists $pagesources{$l}) {
887 elsif (exists $pagecase{lc $l}) {
888 return $pagecase{lc $l};
890 } while $cwd=~s{/?[^/]+$}{};
892 if (length $config{userdir}) {
893 my $l = "$config{userdir}/".lc($link);
894 if (exists $pagesources{$l}) {
897 elsif (exists $pagecase{lc $l}) {
898 return $pagecase{lc $l};
902 #print STDERR "warning: page $page, broken link: $link\n";
906 sub isinlinableimage ($) {
909 return $file =~ /\.(png|gif|jpg|jpeg)$/i;
912 sub pagetitle ($;$) {
917 $page=~s/(__(\d+)__|_)/$1 eq '_' ? ' ' : chr($2)/eg;
920 $page=~s/(__(\d+)__|_)/$1 eq '_' ? ' ' : "&#$2;"/eg;
928 # support use w/o %config set
929 my $chars = defined $config{wiki_file_chars} ? $config{wiki_file_chars} : "-[:alnum:]+/.:_";
930 $title=~s/([^$chars]|_)/$1 eq ' ' ? '_' : "__".ord($1)."__"/eg;
936 my $chars = defined $config{wiki_file_chars} ? $config{wiki_file_chars} : "-[:alnum:]+/.:_";
937 $link=~s/([^$chars])/$1 eq ' ' ? '_' : "__".ord($1)."__"/eg;
944 return $config{cgiurl}."?".
945 join("&", map $_."=".uri_escape_utf8($params{$_}), keys %params);
951 return "$config{url}/" if ! defined $page;
953 $page=htmlpage($page);
955 $page=~s/[^\/]+\//..\//g;
960 # Work around very innefficient behavior in File::Spec if abs2rel
961 # is passed two relative paths. It's much faster if paths are
962 # absolute! (Debian bug #376658; fixed in debian unstable now)
967 my $ret=File::Spec->abs2rel($path, $base);
968 $ret=~s/^// if defined $ret;
972 sub displaytime ($;$) {
973 # Plugins can override this function to mark up the time to
975 return '<span class="date">'.formattime(@_).'</span>';
978 sub formattime ($;$) {
979 # Plugins can override this function to format the time.
982 if (! defined $format) {
983 $format=$config{timeformat};
986 # strftime doesn't know about encodings, so make sure
987 # its output is properly treated as utf8
988 return decode_utf8(POSIX::strftime($format, localtime($time)));
991 sub beautify_urlpath ($) {
994 # Ensure url is not an empty link, and if necessary,
995 # add ./ to avoid colon confusion.
996 if ($url !~ /^\// && $url !~ /^\.\.?\//) {
1000 if ($config{usedirs}) {
1001 $url =~ s!/index.$config{htmlext}$!/!;
1013 return beautify_urlpath(baseurl($from)."index.$config{htmlext}");
1016 if (! $destsources{$to}) {
1021 return $config{url}.beautify_urlpath("/".$to);
1024 my $link = abs2rel($to, dirname(htmlpage($from)));
1026 return beautify_urlpath($link);
1029 sub htmllink ($$$;@) {
1030 my $lpage=shift; # the page doing the linking
1031 my $page=shift; # the page that will contain the link (different for inline)
1038 if (! $opts{forcesubpage}) {
1039 $bestlink=bestlink($lpage, $link);
1042 $bestlink="$lpage/".lc($link);
1046 if (defined $opts{linktext}) {
1047 $linktext=$opts{linktext};
1050 $linktext=pagetitle(basename($link));
1053 return "<span class=\"selflink\">$linktext</span>"
1054 if length $bestlink && $page eq $bestlink &&
1055 ! defined $opts{anchor};
1057 if (! $destsources{$bestlink}) {
1058 $bestlink=htmlpage($bestlink);
1060 if (! $destsources{$bestlink}) {
1061 return $linktext unless length $config{cgiurl};
1062 return "<span class=\"createlink\"><a href=\"".
1068 "\" rel=\"nofollow\">?</a>$linktext</span>"
1072 $bestlink=abs2rel($bestlink, dirname(htmlpage($page)));
1073 $bestlink=beautify_urlpath($bestlink);
1075 if (! $opts{noimageinline} && isinlinableimage($bestlink)) {
1076 return "<img src=\"$bestlink\" alt=\"$linktext\" />";
1079 if (defined $opts{anchor}) {
1080 $bestlink.="#".$opts{anchor};
1084 foreach my $attr (qw{rel class title}) {
1085 if (defined $opts{$attr}) {
1086 push @attrs, " $attr=\"$opts{$attr}\"";
1090 return "<a href=\"$bestlink\"@attrs>$linktext</a>";
1095 return length $config{userdir} ? "$config{userdir}/$user" : $user;
1098 sub openiduser ($) {
1101 if ($user =~ m!^https?://! &&
1102 eval q{use Net::OpenID::VerifiedIdentity; 1} && !$@) {
1105 if (Net::OpenID::VerifiedIdentity->can("DisplayOfURL")) {
1106 $display = Net::OpenID::VerifiedIdentity::DisplayOfURL($user);
1109 # backcompat with old version
1110 my $oid=Net::OpenID::VerifiedIdentity->new(identity => $user);
1111 $display=$oid->display;
1114 # Convert "user.somehost.com" to "user [somehost.com]"
1115 # (also "user.somehost.co.uk")
1116 if ($display !~ /\[/) {
1117 $display=~s/^([-a-zA-Z0-9]+?)\.([-.a-zA-Z0-9]+\.[a-z]+)$/$1 [$2]/;
1119 # Convert "http://somehost.com/user" to "user [somehost.com]".
1120 # (also "https://somehost.com/user/")
1121 if ($display !~ /\[/) {
1122 $display=~s/^https?:\/\/(.+)\/([^\/]+)\/?$/$2 [$1]/;
1124 $display=~s!^https?://!!; # make sure this is removed
1125 eval q{use CGI 'escapeHTML'};
1127 return escapeHTML($display);
1132 sub htmlize ($$$$) {
1138 my $oneline = $content !~ /\n/;
1140 if (exists $hooks{htmlize}{$type}) {
1141 $content=$hooks{htmlize}{$type}{call}->(
1143 content => $content,
1147 error("htmlization of $type not supported");
1150 run_hooks(sanitize => sub {
1153 destpage => $destpage,
1154 content => $content,
1159 # hack to get rid of enclosing junk added by markdown
1160 # and other htmlizers
1161 $content=~s/^<p>//i;
1162 $content=~s/<\/p>$//i;
1174 run_hooks(linkify => sub {
1177 destpage => $destpage,
1178 content => $content,
1186 our $preprocess_preview=0;
1187 sub preprocess ($$$;$$) {
1188 my $page=shift; # the page the data comes from
1189 my $destpage=shift; # the page the data will appear in (different for inline)
1194 # Using local because it needs to be set within any nested calls
1196 local $preprocess_preview=$preview if defined $preview;
1203 $params="" if ! defined $params;
1205 if (length $escape) {
1206 return "[[$prefix$command $params]]";
1208 elsif (exists $hooks{preprocess}{$command}) {
1209 return "" if $scan && ! $hooks{preprocess}{$command}{scan};
1210 # Note: preserve order of params, some plugins may
1211 # consider it significant.
1213 while ($params =~ m{
1214 (?:([-\w]+)=)? # 1: named parameter key?
1216 """(.*?)""" # 2: triple-quoted value
1218 "([^"]+)" # 3: single-quoted value
1220 (\S+) # 4: unquoted value
1222 (?:\s+|$) # delimiter to next param
1232 elsif (defined $3) {
1235 elsif (defined $4) {
1240 push @params, $key, $val;
1243 push @params, $val, '';
1246 if ($preprocessing{$page}++ > 3) {
1247 # Avoid loops of preprocessed pages preprocessing
1248 # other pages that preprocess them, etc.
1249 return "[[!$command <span class=\"error\">".
1250 sprintf(gettext("preprocessing loop detected on %s at depth %i"),
1251 $page, $preprocessing{$page}).
1257 $hooks{preprocess}{$command}{call}->(
1260 destpage => $destpage,
1261 preview => $preprocess_preview,
1267 $ret="[[!$command <span class=\"error\">".
1268 gettext("Error").": $error"."</span>]]";
1272 # use void context during scan pass
1274 $hooks{preprocess}{$command}{call}->(
1277 destpage => $destpage,
1278 preview => $preprocess_preview,
1283 $preprocessing{$page}--;
1287 return "[[$prefix$command $params]]";
1292 if ($config{prefix_directives}) {
1295 \[\[(!) # directive open; 2: prefix
1296 ([-\w]+) # 3: command
1297 ( # 4: the parameters..
1298 \s+ # Must have space if parameters present
1300 (?:[-\w]+=)? # named parameter key?
1302 """.*?""" # triple-quoted value
1304 "[^"]+" # single-quoted value
1306 [^"\s\]]+ # unquoted value
1308 \s* # whitespace or end
1311 *)? # 0 or more parameters
1312 \]\] # directive closed
1318 \[\[(!?) # directive open; 2: optional prefix
1319 ([-\w]+) # 3: command
1321 ( # 4: the parameters..
1323 (?:[-\w]+=)? # named parameter key?
1325 """.*?""" # triple-quoted value
1327 "[^"]+" # single-quoted value
1329 [^"\s\]]+ # unquoted value
1331 \s* # whitespace or end
1334 *) # 0 or more parameters
1335 \]\] # directive closed
1339 $content =~ s{$regex}{$handle->($1, $2, $3, $4)}eg;
1348 run_hooks(filter => sub {
1349 $content=shift->(page => $page, destpage => $destpage,
1350 content => $content);
1357 return "<a href=\"$config{url}\">$config{wikiname}</a>";
1360 sub check_canedit ($$$;$) {
1367 run_hooks(canedit => sub {
1368 return if defined $canedit;
1369 my $ret=shift->($page, $q, $session);
1374 elsif (ref $ret eq 'CODE') {
1375 $ret->() unless $nonfatal;
1378 elsif (defined $ret) {
1379 error($ret) unless $nonfatal;
1384 return defined $canedit ? $canedit : 1;
1387 sub check_content (@) {
1390 return 1 if ! exists $hooks{checkcontent}; # optimisation
1392 if (exists $pagesources{$params{page}}) {
1394 my %old=map { $_ => 1 }
1395 split("\n", readfile(srcfile($pagesources{$params{page}})));
1396 foreach my $line (split("\n", $params{content})) {
1397 push @diff, $line if ! exists $old{$line};
1399 $params{diff}=join("\n", @diff);
1403 run_hooks(checkcontent => sub {
1404 return if defined $ok;
1405 my $ret=shift->(%params);
1410 elsif (ref $ret eq 'CODE') {
1411 $ret->() unless $params{nonfatal};
1414 elsif (defined $ret) {
1415 error($ret) unless $params{nonfatal};
1421 return defined $ok ? $ok : 1;
1427 # Take an exclusive lock on the wiki to prevent multiple concurrent
1428 # run issues. The lock will be dropped on program exit.
1429 if (! -d $config{wikistatedir}) {
1430 mkdir($config{wikistatedir});
1432 open($wikilock, '>', "$config{wikistatedir}/lockfile") ||
1433 error ("cannot write to $config{wikistatedir}/lockfile: $!");
1434 if (! flock($wikilock, 2)) { # LOCK_EX
1435 error("failed to get lock");
1441 POSIX::close($ENV{IKIWIKI_CGILOCK_FD}) if exists $ENV{IKIWIKI_CGILOCK_FD};
1442 return close($wikilock) if $wikilock;
1448 sub commit_hook_enabled () {
1449 open($commitlock, '+>', "$config{wikistatedir}/commitlock") ||
1450 error("cannot write to $config{wikistatedir}/commitlock: $!");
1451 if (! flock($commitlock, 1 | 4)) { # LOCK_SH | LOCK_NB to test
1452 close($commitlock) || error("failed closing commitlock: $!");
1455 close($commitlock) || error("failed closing commitlock: $!");
1459 sub disable_commit_hook () {
1460 open($commitlock, '>', "$config{wikistatedir}/commitlock") ||
1461 error("cannot write to $config{wikistatedir}/commitlock: $!");
1462 if (! flock($commitlock, 2)) { # LOCK_EX
1463 error("failed to get commit lock");
1468 sub enable_commit_hook () {
1469 return close($commitlock) if $commitlock;
1474 %oldrenderedfiles=%pagectime=();
1475 if (! $config{rebuild}) {
1476 %pagesources=%pagemtime=%oldlinks=%links=%depends=
1477 %destsources=%renderedfiles=%pagecase=%pagestate=
1481 if (! open ($in, "<", "$config{wikistatedir}/indexdb")) {
1482 if (-e "$config{wikistatedir}/index") {
1483 system("ikiwiki-transition", "indexdb", $config{srcdir});
1484 open ($in, "<", "$config{wikistatedir}/indexdb") || return;
1491 my $index=Storable::fd_retrieve($in);
1492 if (! defined $index) {
1497 if (exists $index->{version} && ! ref $index->{version}) {
1498 $pages=$index->{page};
1499 %wikistate=%{$index->{state}};
1506 foreach my $src (keys %$pages) {
1507 my $d=$pages->{$src};
1508 my $page=pagename($src);
1509 $pagectime{$page}=$d->{ctime};
1510 if (! $config{rebuild}) {
1511 $pagesources{$page}=$src;
1512 $pagemtime{$page}=$d->{mtime};
1513 $renderedfiles{$page}=$d->{dest};
1514 if (exists $d->{links} && ref $d->{links}) {
1515 $links{$page}=$d->{links};
1516 $oldlinks{$page}=[@{$d->{links}}];
1518 if (ref $d->{depends_simple} eq 'ARRAY') {
1520 $depends_simple{$page}={
1521 map { $_ => 1 } @{$d->{depends_simple}}
1524 elsif (exists $d->{depends_simple}) {
1525 $depends_simple{$page}=$d->{depends_simple};
1527 if (exists $d->{dependslist}) {
1530 map { $_ => $DEPEND_CONTENT }
1531 @{$d->{dependslist}}
1534 elsif (exists $d->{depends} && ! ref $d->{depends}) {
1536 $depends{$page}={$d->{depends} => $DEPEND_CONTENT };
1538 elsif (exists $d->{depends}) {
1539 $depends{$page}=$d->{depends};
1541 if (exists $d->{state}) {
1542 $pagestate{$page}=$d->{state};
1545 $oldrenderedfiles{$page}=[@{$d->{dest}}];
1547 foreach my $page (keys %pagesources) {
1548 $pagecase{lc $page}=$page;
1550 foreach my $page (keys %renderedfiles) {
1551 $destsources{$_}=$page foreach @{$renderedfiles{$page}};
1557 run_hooks(savestate => sub { shift->() });
1560 foreach my $type (keys %hooks) {
1561 $hookids{$_}=1 foreach keys %{$hooks{$type}};
1563 my @hookids=keys %hookids;
1565 if (! -d $config{wikistatedir}) {
1566 mkdir($config{wikistatedir});
1568 my $newfile="$config{wikistatedir}/indexdb.new";
1569 my $cleanup = sub { unlink($newfile) };
1570 open (my $out, '>', $newfile) || error("cannot write to $newfile: $!", $cleanup);
1573 foreach my $page (keys %pagemtime) {
1574 next unless $pagemtime{$page};
1575 my $src=$pagesources{$page};
1577 $index{page}{$src}={
1578 ctime => $pagectime{$page},
1579 mtime => $pagemtime{$page},
1580 dest => $renderedfiles{$page},
1581 links => $links{$page},
1584 if (exists $depends{$page}) {
1585 $index{page}{$src}{depends} = $depends{$page};
1588 if (exists $depends_simple{$page}) {
1589 $index{page}{$src}{depends_simple} = $depends_simple{$page};
1592 if (exists $pagestate{$page}) {
1593 foreach my $id (@hookids) {
1594 foreach my $key (keys %{$pagestate{$page}{$id}}) {
1595 $index{page}{$src}{state}{$id}{$key}=$pagestate{$page}{$id}{$key};
1602 foreach my $id (@hookids) {
1603 foreach my $key (keys %{$wikistate{$id}}) {
1604 $index{state}{$id}{$key}=$wikistate{$id}{$key};
1608 $index{version}="3";
1609 my $ret=Storable::nstore_fd(\%index, $out);
1610 return if ! defined $ret || ! $ret;
1611 close $out || error("failed saving to $newfile: $!", $cleanup);
1612 rename($newfile, "$config{wikistatedir}/indexdb") ||
1613 error("failed renaming $newfile to $config{wikistatedir}/indexdb", $cleanup);
1618 sub template_file ($) {
1621 foreach my $dir ($config{templatedir}, @{$config{templatedirs}},
1622 "$installdir/share/ikiwiki/templates") {
1623 return "$dir/$template" if -e "$dir/$template";
1628 sub template_params (@) {
1629 my $filename=template_file(shift);
1631 if (! defined $filename) {
1632 return if wantarray;
1638 my $text_ref = shift;
1639 ${$text_ref} = decode_utf8(${$text_ref});
1641 filename => $filename,
1642 loop_context_vars => 1,
1643 die_on_bad_params => 0,
1646 return wantarray ? @ret : {@ret};
1649 sub template ($;@) {
1650 require HTML::Template;
1651 return HTML::Template->new(template_params(@_));
1654 sub misctemplate ($$;@) {
1658 my $template=template("misc.tmpl");
1661 indexlink => indexlink(),
1662 wikiname => $config{wikiname},
1663 pagebody => $pagebody,
1664 baseurl => baseurl(),
1667 run_hooks(pagetemplate => sub {
1668 shift->(page => "", destpage => "", template => $template);
1670 return $template->output;
1676 if (! exists $param{type} || ! ref $param{call} || ! exists $param{id}) {
1677 error 'hook requires type, call, and id parameters';
1680 return if $param{no_override} && exists $hooks{$param{type}}{$param{id}};
1682 $hooks{$param{type}}{$param{id}}=\%param;
1686 sub run_hooks ($$) {
1687 # Calls the given sub for each hook of the given type,
1688 # passing it the hook function to call.
1692 if (exists $hooks{$type}) {
1693 my (@first, @middle, @last);
1694 foreach my $id (keys %{$hooks{$type}}) {
1695 if ($hooks{$type}{$id}{first}) {
1698 elsif ($hooks{$type}{$id}{last}) {
1705 foreach my $id (@first, @middle, @last) {
1706 $sub->($hooks{$type}{$id}{call});
1714 $hooks{rcs}{rcs_update}{call}->(@_);
1717 sub rcs_prepedit ($) {
1718 $hooks{rcs}{rcs_prepedit}{call}->(@_);
1721 sub rcs_commit ($$$;$$) {
1722 $hooks{rcs}{rcs_commit}{call}->(@_);
1725 sub rcs_commit_staged ($$$) {
1726 $hooks{rcs}{rcs_commit_staged}{call}->(@_);
1730 $hooks{rcs}{rcs_add}{call}->(@_);
1733 sub rcs_remove ($) {
1734 $hooks{rcs}{rcs_remove}{call}->(@_);
1737 sub rcs_rename ($$) {
1738 $hooks{rcs}{rcs_rename}{call}->(@_);
1741 sub rcs_recentchanges ($) {
1742 $hooks{rcs}{rcs_recentchanges}{call}->(@_);
1746 $hooks{rcs}{rcs_diff}{call}->(@_);
1749 sub rcs_getctime ($) {
1750 $hooks{rcs}{rcs_getctime}{call}->(@_);
1753 sub rcs_receive () {
1754 $hooks{rcs}{rcs_receive}{call}->();
1757 sub add_depends ($$;$) {
1760 my $deptype=shift || $DEPEND_CONTENT;
1762 # Is the pagespec a simple page name?
1763 if ($pagespec =~ /$config{wiki_file_regexp}/ &&
1764 $pagespec !~ /[\s*?()!]/) {
1765 $depends_simple{$page}{lc $pagespec} |= $deptype;
1769 # Add explicit dependencies for influences.
1770 my $sub=pagespec_translate($pagespec);
1772 foreach my $p (keys %pagesources) {
1773 my $r=$sub->($p, location => $page);
1774 my $i=$r->influences;
1775 foreach my $k (keys %$i) {
1776 $depends_simple{$page}{lc $k} |= $i->{$k};
1778 last if $r->influences_static;
1781 $depends{$page}{$pagespec} |= $deptype;
1787 foreach my $type (@_) {
1788 if ($type eq 'presence') {
1789 $deptype |= $DEPEND_PRESENCE;
1791 elsif ($type eq 'links') {
1792 $deptype |= $DEPEND_LINKS;
1794 elsif ($type eq 'content') {
1795 $deptype |= $DEPEND_CONTENT;
1801 sub file_pruned ($;$) {
1805 $file=File::Spec->canonpath($file);
1806 my $base=File::Spec->canonpath(shift);
1807 return if $file eq $base;
1808 $file =~ s#^\Q$base\E/+##;
1811 my $regexp='('.join('|', @{$config{wiki_file_prune_regexps}}).')';
1812 return $file =~ m/$regexp/;
1815 sub define_gettext () {
1816 # If translation is needed, redefine the gettext function to do it.
1817 # Otherwise, it becomes a quick no-op.
1818 no warnings 'redefine';
1819 if ((exists $ENV{LANG} && length $ENV{LANG}) ||
1820 (exists $ENV{LC_ALL} && length $ENV{LC_ALL}) ||
1821 (exists $ENV{LC_MESSAGES} && length $ENV{LC_MESSAGES})) {
1823 my $gettext_obj=eval q{
1824 use Locale::gettext q{textdomain};
1825 Locale::gettext->domain('ikiwiki')
1829 $gettext_obj->get(shift);
1837 *gettext=sub { return shift };
1849 return (defined $val && (lc($val) eq gettext("yes") || lc($val) eq "yes" || $val eq "1"));
1853 # Injects a new function into the symbol table to replace an
1854 # exported function.
1857 # This is deep ugly perl foo, beware.
1860 if (! defined $params{parent}) {
1861 $params{parent}='::';
1862 $params{old}=\&{$params{name}};
1863 $params{name}=~s/.*:://;
1865 my $parent=$params{parent};
1866 foreach my $ns (grep /^\w+::/, keys %{$parent}) {
1867 $ns = $params{parent} . $ns;
1868 inject(%params, parent => $ns) unless $ns eq '::main::';
1869 *{$ns . $params{name}} = $params{call}
1870 if exists ${$ns}{$params{name}} &&
1871 \&{${$ns}{$params{name}}} == $params{old};
1881 push @{$links{$page}}, $link
1882 unless grep { $_ eq $link } @{$links{$page}};
1885 sub pagespec_translate ($) {
1888 # Convert spec to perl code.
1892 \s* # ignore whitespace
1893 ( # 1: match a single word
1900 \w+\([^\)]*\) # command(params)
1902 [^\s()]+ # any other text
1904 \s* # ignore whitespace
1907 if (lc $word eq 'and') {
1910 elsif (lc $word eq 'or') {
1913 elsif ($word eq "(" || $word eq ")" || $word eq "!") {
1916 elsif ($word =~ /^(\w+)\((.*)\)$/) {
1917 if (exists $IkiWiki::PageSpec::{"match_$1"}) {
1919 $code.="IkiWiki::PageSpec::match_$1(\$page, \$data[$#data], \@_)";
1922 push @data, qq{unknown function in pagespec "$word"};
1923 $code.="IkiWiki::ErrorReason->new(\$data[$#data])";
1928 $code.=" IkiWiki::PageSpec::match_glob(\$page, \$data[$#data], \@_)";
1932 if (! length $code) {
1933 $code="IkiWiki::FailReason->new('empty pagespec')";
1937 return eval 'sub { my $page=shift; '.$code.' }';
1940 sub pagespec_match ($$;@) {
1945 # Backwards compatability with old calling convention.
1947 unshift @params, 'location';
1950 my $sub=pagespec_translate($spec);
1951 return IkiWiki::ErrorReason->new("syntax error in pagespec \"$spec\"")
1952 if $@ || ! defined $sub;
1953 return $sub->($page, @params);
1956 sub pagespec_match_list ($$;@) {
1961 # Backwards compatability with old calling convention.
1963 print STDERR "warning: a plugin (".caller().") is using pagespec_match_list in an obsolete way, and needs to be updated\n";
1964 $params{list}=$page;
1965 $page=$params{location}; # ugh!
1968 my $sub=pagespec_translate($pagespec);
1969 error "syntax error in pagespec \"$pagespec\""
1970 if $@ || ! defined $sub;
1973 if (exists $params{list}) {
1974 @candidates=exists $params{filter}
1975 ? grep { ! $params{filter}->($_) } @{$params{list}}
1979 @candidates=exists $params{filter}
1980 ? grep { ! $params{filter}->($_) } keys %pagesources
1981 : keys %pagesources;
1984 if (defined $params{sort}) {
1986 if ($params{sort} eq 'title') {
1987 $f=sub { pagetitle(basename($a)) cmp pagetitle(basename($b)) };
1989 elsif ($params{sort} eq 'title_natural') {
1990 eval q{use Sort::Naturally};
1992 error(gettext("Sort::Naturally needed for title_natural sort"));
1994 $f=sub { Sort::Naturally::ncmp(pagetitle(basename($a)), pagetitle(basename($b))) };
1996 elsif ($params{sort} eq 'mtime') {
1997 $f=sub { $pagemtime{$b} <=> $pagemtime{$a} };
1999 elsif ($params{sort} eq 'age') {
2000 $f=sub { $pagectime{$b} <=> $pagectime{$a} };
2003 error sprintf(gettext("unknown sort type %s"), $params{sort});
2005 @candidates = sort { &$f } @candidates;
2008 @candidates=reverse(@candidates) if $params{reverse};
2010 $depends{$page}{$pagespec} |= ($params{deptype} || $DEPEND_CONTENT);
2012 # clear params, remainder is passed to pagespec
2013 my $num=$params{num};
2014 delete @params{qw{num deptype reverse sort filter list}};
2019 my $accum=IkiWiki::SuccessReason->new();
2020 foreach my $p (@candidates) {
2021 my $r=$sub->($p, %params, location => $page);
2022 error(sprintf(gettext("cannot match pages: %s"), $r))
2023 if $r->isa("IkiWiki::ErrorReason");
2027 last if defined $num && ++$count == $num;
2031 # Add simple dependencies for accumulated influences.
2032 my $i=$accum->influences;
2033 foreach my $k (keys %$i) {
2034 $depends_simple{$page}{lc $k} |= $i->{$k};
2040 sub pagespec_valid ($) {
2043 my $sub=pagespec_translate($spec);
2048 my $re=quotemeta(shift);
2054 package IkiWiki::FailReason;
2057 '""' => sub { $_[0][0] },
2059 '!' => sub { bless $_[0], 'IkiWiki::SuccessReason'},
2060 '&' => sub { $_[0]->merge_influences($_[1], 1); $_[0] },
2061 '|' => sub { $_[1]->merge_influences($_[0]); $_[1] },
2065 our @ISA = 'IkiWiki::SuccessReason';
2067 package IkiWiki::SuccessReason;
2070 '""' => sub { $_[0][0] },
2072 '!' => sub { bless $_[0], 'IkiWiki::FailReason'},
2073 '&' => sub { $_[1]->merge_influences($_[0], 1); $_[1] },
2074 '|' => sub { $_[0]->merge_influences($_[1]); $_[0] },
2081 return bless [$value, {@_}], $class;
2086 $this->[1]={@_} if @_;
2087 my %i=%{$this->[1]};
2092 sub influences_static {
2093 return ! $_[0][1]->{""};
2096 sub merge_influences {
2101 if (! $anded || (($this || %{$this->[1]}) &&
2102 ($other || %{$other->[1]}))) {
2103 foreach my $influence (keys %{$other->[1]}) {
2104 $this->[1]{$influence} |= $other->[1]{$influence};
2113 package IkiWiki::ErrorReason;
2115 our @ISA = 'IkiWiki::FailReason';
2117 package IkiWiki::PageSpec;
2123 if ($path =~ m!^\./!) {
2124 $from=~s#/?[^/]+$## if defined $from;
2126 $path="$from/$path" if length $from;
2132 sub match_glob ($$;@) {
2137 $glob=derel($glob, $params{location});
2139 my $regexp=IkiWiki::glob2re($glob);
2140 if ($page=~/^$regexp$/i) {
2141 if (! IkiWiki::isinternal($page) || $params{internal}) {
2142 return IkiWiki::SuccessReason->new("$glob matches $page");
2145 return IkiWiki::FailReason->new("$glob matches $page, but the page is an internal page");
2149 return IkiWiki::FailReason->new("$glob does not match $page");
2153 sub match_internal ($$;@) {
2154 return match_glob($_[0], $_[1], @_, internal => 1)
2157 sub match_link ($$;@) {
2162 $link=derel($link, $params{location});
2163 my $from=exists $params{location} ? $params{location} : '';
2165 my $links = $IkiWiki::links{$page};
2166 return IkiWiki::FailReason->new("$page has no links", "" => 1)
2167 unless $links && @{$links};
2168 my $bestlink = IkiWiki::bestlink($from, $link);
2169 foreach my $p (@{$links}) {
2170 if (length $bestlink) {
2171 return IkiWiki::SuccessReason->new("$page links to $link", $page => $IkiWiki::DEPEND_LINKS, "" => 1)
2172 if $bestlink eq IkiWiki::bestlink($page, $p);
2175 return IkiWiki::SuccessReason->new("$page links to page $p matching $link", $page => $IkiWiki::DEPEND_LINKS, "" => 1)
2176 if match_glob($p, $link, %params);
2177 my ($p_rel)=$p=~/^\/?(.*)/;
2179 return IkiWiki::SuccessReason->new("$page links to page $p_rel matching $link", $page => $IkiWiki::DEPEND_LINKS, "" => 1)
2180 if match_glob($p_rel, $link, %params);
2183 return IkiWiki::FailReason->new("$page does not link to $link", "" => 1);
2186 sub match_backlink ($$;@) {
2187 my $ret=match_link($_[1], $_[0], @_);
2188 $ret->influences($_[1] => $IkiWiki::DEPEND_LINKS);
2192 sub match_created_before ($$;@) {
2197 $testpage=derel($testpage, $params{location});
2199 if (exists $IkiWiki::pagectime{$testpage}) {
2200 if ($IkiWiki::pagectime{$page} < $IkiWiki::pagectime{$testpage}) {
2201 return IkiWiki::SuccessReason->new("$page created before $testpage", $testpage => $IkiWiki::DEPEND_PRESENCE);
2204 return IkiWiki::FailReason->new("$page not created before $testpage", $testpage => $IkiWiki::DEPEND_PRESENCE);
2208 return IkiWiki::ErrorReason->new("$testpage does not exist", $testpage => $IkiWiki::DEPEND_PRESENCE);
2212 sub match_created_after ($$;@) {
2217 $testpage=derel($testpage, $params{location});
2219 if (exists $IkiWiki::pagectime{$testpage}) {
2220 if ($IkiWiki::pagectime{$page} > $IkiWiki::pagectime{$testpage}) {
2221 return IkiWiki::SuccessReason->new("$page created after $testpage", $testpage => $IkiWiki::DEPEND_PRESENCE);
2224 return IkiWiki::FailReason->new("$page not created after $testpage", $testpage => $IkiWiki::DEPEND_PRESENCE);
2228 return IkiWiki::ErrorReason->new("$testpage does not exist", $testpage => $IkiWiki::DEPEND_PRESENCE);
2232 sub match_creation_day ($$;@) {
2233 if ((gmtime($IkiWiki::pagectime{shift()}))[3] == shift) {
2234 return IkiWiki::SuccessReason->new('creation_day matched');
2237 return IkiWiki::FailReason->new('creation_day did not match');
2241 sub match_creation_month ($$;@) {
2242 if ((gmtime($IkiWiki::pagectime{shift()}))[4] + 1 == shift) {
2243 return IkiWiki::SuccessReason->new('creation_month matched');
2246 return IkiWiki::FailReason->new('creation_month did not match');
2250 sub match_creation_year ($$;@) {
2251 if ((gmtime($IkiWiki::pagectime{shift()}))[5] + 1900 == shift) {
2252 return IkiWiki::SuccessReason->new('creation_year matched');
2255 return IkiWiki::FailReason->new('creation_year did not match');
2259 sub match_user ($$;@) {
2264 if (! exists $params{user}) {
2265 return IkiWiki::ErrorReason->new("no user specified");
2268 if (defined $params{user} && lc $params{user} eq lc $user) {
2269 return IkiWiki::SuccessReason->new("user is $user");
2271 elsif (! defined $params{user}) {
2272 return IkiWiki::FailReason->new("not logged in");
2275 return IkiWiki::FailReason->new("user is $params{user}, not $user");
2279 sub match_admin ($$;@) {
2284 if (! exists $params{user}) {
2285 return IkiWiki::ErrorReason->new("no user specified");
2288 if (defined $params{user} && IkiWiki::is_admin($params{user})) {
2289 return IkiWiki::SuccessReason->new("user is an admin");
2291 elsif (! defined $params{user}) {
2292 return IkiWiki::FailReason->new("not logged in");
2295 return IkiWiki::FailReason->new("user is not an admin");
2299 sub match_ip ($$;@) {
2304 if (! exists $params{ip}) {
2305 return IkiWiki::ErrorReason->new("no IP specified");
2308 if (defined $params{ip} && lc $params{ip} eq lc $ip) {
2309 return IkiWiki::SuccessReason->new("IP is $ip");
2312 return IkiWiki::FailReason->new("IP is $params{ip}, not $ip");