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 %hooks %forcerebuild
17 $gettext_obj %loaded_plugins};
19 use Exporter q{import};
20 our @EXPORT = qw(hook debug error template htmlpage add_depends pagespec_match
21 bestlink htmllink readfile writefile pagetype srcfile pagename
22 displaytime will_render gettext urlto targetpage
23 add_underlay pagetitle titlepage linkpage newpagefile
25 %config %links %pagestate %wikistate %renderedfiles
26 %pagesources %destsources);
27 our $VERSION = 2.00; # plugin interface version, next is ikiwiki version
28 our $version='unknown'; # VERSION_AUTOREPLACE done by Makefile, DNE
29 my $installdir=''; # INSTALLDIR_AUTOREPLACE done by Makefile, DNE
34 memoize("pagespec_translate");
35 memoize("file_pruned");
37 sub getsetup () { #{{{
41 description => "name of the wiki",
48 example => 'me@example.com',
49 description => "contact email for wiki",
56 description => "users who are wiki admins",
63 description => "users who are banned from the wiki",
70 example => "$ENV{HOME}/wiki",
71 description => "where the source of the wiki is located",
78 example => "/var/www/wiki",
79 description => "where to build the wiki",
86 example => "http://example.com/wiki",
87 description => "base url to the wiki",
94 example => "http://example.com/wiki/ikiwiki.cgi",
95 description => "url to the ikiwiki.cgi",
102 example => "/var/www/wiki/ikiwiki.cgi",
103 description => "cgi wrapper to generate",
110 description => "mode for cgi_wrapper (can safely be made suid)",
117 description => "rcs backend to use",
118 safe => 0, # don't allow overriding
123 default => [qw{mdwn link inline htmlscrubber passwordauth
124 openid signinedit lockedit conditional
125 recentchanges parentlinks editpage}],
126 description => "plugins to enable by default",
133 description => "plugins to add to the default configuration",
140 description => "plugins to disable",
146 default => "$installdir/share/ikiwiki/templates",
147 description => "location of template files",
154 default => "$installdir/share/ikiwiki/basewiki",
155 description => "base wiki source location",
163 description => "wrappers to generate",
170 description => "additional underlays to use",
177 description => "display verbose messages when building?",
184 description => "log to syslog?",
191 description => "create output files named page/index.html?",
192 safe => 0, # changing requires manual transition
195 prefix_directives => {
198 description => "use '!'-prefixed preprocessor directives?",
199 safe => 0, # changing requires manual transition
205 description => "use page/index.mdwn source files",
212 description => "enable Discussion pages?",
219 description => "only send cookies over SSL connections?",
227 description => "extension to use for new pages",
228 safe => 0, # not sanitized
234 description => "extension to use for html files",
235 safe => 0, # not sanitized
241 description => "strftime format string to display date",
249 example => "en_US.UTF-8",
250 description => "UTF-8 locale to use",
259 description => "put user pages below specified page",
266 description => "how many backlinks to show before hiding excess (0 to show all)",
273 description => "attempt to hardlink source files? (optimisation for large files)",
275 safe => 0, # paranoia
282 description => "force ikiwiki to use a particular umask",
284 safe => 0, # paranoia
290 example => "$ENV{HOME}/.ikiwiki/",
291 description => "extra library and plugin directory",
293 safe => 0, # directory
299 description => "environment variables",
300 safe => 0, # paranoia
307 description => "regexp of source files to ignore",
312 wiki_file_prune_regexps => {
314 default => [qr/(^|\/)\.\.(\/|$)/, qr/^\./, qr/\/\./,
315 qr/\.x?html?$/, qr/\.ikiwiki-new$/,
316 qr/(^|\/).svn\//, qr/.arch-ids\//, qr/{arch}\//,
319 description => "regexps of source files to ignore",
325 description => "specifies the characters that are allowed in source filenames",
326 default => "-[:alnum:]+/.:_",
330 wiki_file_regexp => {
332 description => "regexp of legal source files",
336 web_commit_regexp => {
338 default => qr/^web commit (by (.*?(?=: |$))|from (\d+\.\d+\.\d+\.\d+)):?(.*)/,
339 description => "regexp to parse web commits from logs",
346 description => "run as a cgi",
350 cgi_disable_uploads => {
353 description => "whether CGI should accept file uploads",
360 description => "run as a post-commit hook",
367 description => "running in rebuild mode",
374 description => "running in setup mode",
381 description => "running in refresh mode",
388 description => "running in receive test mode",
395 description => "running in getctime mode",
402 description => "running in w3mmode",
409 description => "path to setup file",
413 allow_symlinks_before_srcdir => {
416 description => "allow symlinks in the path leading to the srcdir (potentially insecure)",
422 sub defaultconfig () { #{{{
425 foreach my $key (keys %s) {
426 push @ret, $key, $s{$key}->{default};
432 sub checkconfig () { #{{{
433 # locale stuff; avoid LC_ALL since it overrides everything
434 if (defined $ENV{LC_ALL}) {
435 $ENV{LANG} = $ENV{LC_ALL};
438 if (defined $config{locale}) {
439 if (POSIX::setlocale(&POSIX::LC_ALL, $config{locale})) {
440 $ENV{LANG}=$config{locale};
445 if (! defined $config{wiki_file_regexp}) {
446 $config{wiki_file_regexp}=qr/(^[$config{wiki_file_chars}]+$)/;
449 if (ref $config{ENV} eq 'HASH') {
450 foreach my $val (keys %{$config{ENV}}) {
451 $ENV{$val}=$config{ENV}{$val};
455 if ($config{w3mmode}) {
456 eval q{use Cwd q{abs_path}};
458 $config{srcdir}=possibly_foolish_untaint(abs_path($config{srcdir}));
459 $config{destdir}=possibly_foolish_untaint(abs_path($config{destdir}));
460 $config{cgiurl}="file:///\$LIB/ikiwiki-w3m.cgi/".$config{cgiurl}
461 unless $config{cgiurl} =~ m!file:///!;
462 $config{url}="file://".$config{destdir};
465 if ($config{cgi} && ! length $config{url}) {
466 error(gettext("Must specify url to wiki with --url when using --cgi"));
469 $config{wikistatedir}="$config{srcdir}/.ikiwiki"
470 unless exists $config{wikistatedir};
472 if (defined $config{umask}) {
473 umask(possibly_foolish_untaint($config{umask}));
476 run_hooks(checkconfig => sub { shift->() });
481 sub listplugins () { #{{{
484 foreach my $dir (@INC, $config{libdir}) {
485 next unless defined $dir && length $dir;
486 foreach my $file (glob("$dir/IkiWiki/Plugin/*.pm")) {
487 my ($plugin)=$file=~/.*\/(.*)\.pm$/;
491 foreach my $dir ($config{libdir}, "$installdir/lib/ikiwiki") {
492 next unless defined $dir && length $dir;
493 foreach my $file (glob("$dir/plugins/*")) {
494 $ret{basename($file)}=1 if -x $file;
501 sub loadplugins () { #{{{
502 if (defined $config{libdir} && length $config{libdir}) {
503 unshift @INC, possibly_foolish_untaint($config{libdir});
506 foreach my $plugin (@{$config{default_plugins}}, @{$config{add_plugins}}) {
511 if (exists $IkiWiki::hooks{rcs}) {
512 error(gettext("cannot use multiple rcs plugins"));
514 loadplugin($config{rcs});
516 if (! exists $IkiWiki::hooks{rcs}) {
520 run_hooks(getopt => sub { shift->() });
521 if (grep /^-/, @ARGV) {
522 print STDERR "Unknown option: $_\n"
523 foreach grep /^-/, @ARGV;
530 sub loadplugin ($) { #{{{
533 return if grep { $_ eq $plugin} @{$config{disable_plugins}};
535 foreach my $dir (defined $config{libdir} ? possibly_foolish_untaint($config{libdir}) : undef,
536 "$installdir/lib/ikiwiki") {
537 if (defined $dir && -x "$dir/plugins/$plugin") {
538 eval { require IkiWiki::Plugin::external };
541 error(sprintf(gettext("failed to load external plugin needed for %s plugin: %s"), $plugin, $reason));
543 import IkiWiki::Plugin::external "$dir/plugins/$plugin";
544 $loaded_plugins{$plugin}=1;
549 my $mod="IkiWiki::Plugin::".possibly_foolish_untaint($plugin);
552 error("Failed to load plugin $mod: $@");
554 $loaded_plugins{$plugin}=1;
558 sub error ($;$) { #{{{
561 log_message('err' => $message) if $config{syslog};
562 if (defined $cleaner) {
569 return unless $config{verbose};
570 return log_message(debug => @_);
574 sub log_message ($$) { #{{{
577 if ($config{syslog}) {
580 Sys::Syslog::setlogsock('unix');
581 Sys::Syslog::openlog('ikiwiki', '', 'user');
585 Sys::Syslog::syslog($type, "[$config{wikiname}] %s", join(" ", @_));
588 elsif (! $config{cgi}) {
592 return print STDERR "@_\n";
596 sub possibly_foolish_untaint ($) { #{{{
598 my ($untainted)=$tainted=~/(.*)/s;
602 sub basename ($) { #{{{
609 sub dirname ($) { #{{{
616 sub pagetype ($) { #{{{
619 if ($page =~ /\.([^.]+)$/) {
620 return $1 if exists $hooks{htmlize}{$1};
625 sub isinternal ($) { #{{{
627 return exists $pagesources{$page} &&
628 $pagesources{$page} =~ /\._([^.]+)$/;
631 sub pagename ($) { #{{{
634 my $type=pagetype($file);
636 $page=~s/\Q.$type\E*$// if defined $type && !$hooks{htmlize}{$type}{keepextension};
637 if ($config{indexpages} && $page=~/(.*)\/index$/) {
643 sub newpagefile ($$) { #{{{
647 if (! $config{indexpages} || $page eq 'index') {
648 return $page.".".$type;
651 return $page."/index.".$type;
655 sub targetpage ($$) { #{{{
660 run_hooks(targetpage => sub {
667 if (defined $targetpage && (length($targetpage) > 0)) {
670 elsif (! $config{usedirs} || $page eq 'index') {
671 return $page.".".$ext;
674 return $page."/index.".$ext;
678 sub htmlpage ($) { #{{{
681 return targetpage($page, $config{htmlext});
684 sub srcfile_stat { #{{{
688 return "$config{srcdir}/$file", stat(_) if -e "$config{srcdir}/$file";
689 foreach my $dir (@{$config{underlaydirs}}, $config{underlaydir}) {
690 return "$dir/$file", stat(_) if -e "$dir/$file";
692 error("internal error: $file cannot be found in $config{srcdir} or underlay") unless $nothrow;
696 sub srcfile ($;$) { #{{{
697 return (srcfile_stat(@_))[0];
700 sub add_underlay ($) { #{{{
704 $dir="$config{underlaydir}/../$dir";
707 if (! grep { $_ eq $dir } @{$config{underlaydirs}}) {
708 unshift @{$config{underlaydirs}}, $dir;
714 sub readfile ($;$$) { #{{{
720 error("cannot read a symlink ($file)");
724 open (my $in, "<", $file) || error("failed to read $file: $!");
725 binmode($in) if ($binary);
726 return \*$in if $wantfd;
728 close $in || error("failed to read $file: $!");
732 sub prep_writefile ($$) { #{{{
737 while (length $test) {
738 if (-l "$destdir/$test") {
739 error("cannot write to a symlink ($test)");
741 $test=dirname($test);
744 my $dir=dirname("$destdir/$file");
747 foreach my $s (split(m!/+!, $dir)) {
750 mkdir($d) || error("failed to create directory $d: $!");
758 sub writefile ($$$;$$) { #{{{
759 my $file=shift; # can include subdirs
760 my $destdir=shift; # directory to put file in
765 prep_writefile($file, $destdir);
767 my $newfile="$destdir/$file.ikiwiki-new";
769 error("cannot write to a symlink ($newfile)");
772 my $cleanup = sub { unlink($newfile) };
773 open (my $out, '>', $newfile) || error("failed to write $newfile: $!", $cleanup);
774 binmode($out) if ($binary);
776 $writer->(\*$out, $cleanup);
779 print $out $content or error("failed writing to $newfile: $!", $cleanup);
781 close $out || error("failed saving $newfile: $!", $cleanup);
782 rename($newfile, "$destdir/$file") ||
783 error("failed renaming $newfile to $destdir/$file: $!", $cleanup);
789 sub will_render ($$;$) { #{{{
794 # Important security check.
795 if (-e "$config{destdir}/$dest" && ! $config{rebuild} &&
796 ! grep { $_ eq $dest } (@{$renderedfiles{$page}}, @{$oldrenderedfiles{$page}}, @{$wikistate{editpage}{previews}})) {
797 error("$config{destdir}/$dest independently created, not overwriting with version from $page");
800 if (! $clear || $cleared{$page}) {
801 $renderedfiles{$page}=[$dest, grep { $_ ne $dest } @{$renderedfiles{$page}}];
804 foreach my $old (@{$renderedfiles{$page}}) {
805 delete $destsources{$old};
807 $renderedfiles{$page}=[$dest];
810 $destsources{$dest}=$page;
815 sub bestlink ($$) { #{{{
820 if ($link=~s/^\/+//) {
828 $l.="/" if length $l;
831 if (exists $links{$l}) {
834 elsif (exists $pagecase{lc $l}) {
835 return $pagecase{lc $l};
837 } while $cwd=~s{/?[^/]+$}{};
839 if (length $config{userdir}) {
840 my $l = "$config{userdir}/".lc($link);
841 if (exists $links{$l}) {
844 elsif (exists $pagecase{lc $l}) {
845 return $pagecase{lc $l};
849 #print STDERR "warning: page $page, broken link: $link\n";
853 sub isinlinableimage ($) { #{{{
856 return $file =~ /\.(png|gif|jpg|jpeg)$/i;
859 sub pagetitle ($;$) { #{{{
864 $page=~s/(__(\d+)__|_)/$1 eq '_' ? ' ' : chr($2)/eg;
867 $page=~s/(__(\d+)__|_)/$1 eq '_' ? ' ' : "&#$2;"/eg;
873 sub titlepage ($) { #{{{
875 # support use w/o %config set
876 my $chars = defined $config{wiki_file_chars} ? $config{wiki_file_chars} : "-[:alnum:]+/.:_";
877 $title=~s/([^$chars]|_)/$1 eq ' ' ? '_' : "__".ord($1)."__"/eg;
881 sub linkpage ($) { #{{{
883 my $chars = defined $config{wiki_file_chars} ? $config{wiki_file_chars} : "-[:alnum:]+/.:_";
884 $link=~s/([^$chars])/$1 eq ' ' ? '_' : "__".ord($1)."__"/eg;
888 sub cgiurl (@) { #{{{
891 return $config{cgiurl}."?".
892 join("&", map $_."=".uri_escape_utf8($params{$_}), keys %params);
895 sub baseurl (;$) { #{{{
898 return "$config{url}/" if ! defined $page;
900 $page=htmlpage($page);
902 $page=~s/[^\/]+\//..\//g;
906 sub abs2rel ($$) { #{{{
907 # Work around very innefficient behavior in File::Spec if abs2rel
908 # is passed two relative paths. It's much faster if paths are
909 # absolute! (Debian bug #376658; fixed in debian unstable now)
914 my $ret=File::Spec->abs2rel($path, $base);
915 $ret=~s/^// if defined $ret;
919 sub displaytime ($;$) { #{{{
920 # Plugins can override this function to mark up the time to
922 return '<span class="date">'.formattime(@_).'</span>';
925 sub formattime ($;$) { #{{{
926 # Plugins can override this function to format the time.
929 if (! defined $format) {
930 $format=$config{timeformat};
933 # strftime doesn't know about encodings, so make sure
934 # its output is properly treated as utf8
935 return decode_utf8(POSIX::strftime($format, localtime($time)));
938 sub beautify_urlpath ($) { #{{{
941 if ($config{usedirs}) {
942 $url =~ s!/index.$config{htmlext}$!/!;
945 run_hooks(tweakurlpath => sub {
946 $url=shift->(url => $url);
949 # Ensure url is not an empty link, and
950 # if it's relative, make that explicit to avoid colon confusion.
958 sub urlto ($$;$) { #{{{
964 return beautify_urlpath(baseurl($from)."index.$config{htmlext}");
967 if (! $destsources{$to}) {
972 return $config{url}.beautify_urlpath("/".$to);
975 my $link = abs2rel($to, dirname(htmlpage($from)));
977 return beautify_urlpath($link);
980 sub htmllink ($$$;@) { #{{{
981 my $lpage=shift; # the page doing the linking
982 my $page=shift; # the page that will contain the link (different for inline)
989 if (! $opts{forcesubpage}) {
990 $bestlink=bestlink($lpage, $link);
993 $bestlink="$lpage/".lc($link);
997 if (defined $opts{linktext}) {
998 $linktext=$opts{linktext};
1001 $linktext=pagetitle(basename($link));
1004 return "<span class=\"selflink\">$linktext</span>"
1005 if length $bestlink && $page eq $bestlink &&
1006 ! defined $opts{anchor};
1008 if (! $destsources{$bestlink}) {
1009 $bestlink=htmlpage($bestlink);
1011 if (! $destsources{$bestlink}) {
1012 return $linktext unless length $config{cgiurl};
1013 return "<span class=\"createlink\"><a href=\"".
1019 "\" rel=\"nofollow\">?</a>$linktext</span>"
1023 $bestlink=abs2rel($bestlink, dirname(htmlpage($page)));
1024 $bestlink=beautify_urlpath($bestlink);
1026 if (! $opts{noimageinline} && isinlinableimage($bestlink)) {
1027 return "<img src=\"$bestlink\" alt=\"$linktext\" />";
1030 if (defined $opts{anchor}) {
1031 $bestlink.="#".$opts{anchor};
1035 if (defined $opts{rel}) {
1036 push @attrs, ' rel="'.$opts{rel}.'"';
1038 if (defined $opts{class}) {
1039 push @attrs, ' class="'.$opts{class}.'"';
1042 return "<a href=\"$bestlink\"@attrs>$linktext</a>";
1045 sub userlink ($) { #{{{
1048 my $oiduser=eval { openiduser($user) };
1049 if (defined $oiduser) {
1050 return "<a href=\"$user\">$oiduser</a>";
1053 eval q{use CGI 'escapeHTML'};
1056 return htmllink("", "", escapeHTML(
1057 length $config{userdir} ? $config{userdir}."/".$user : $user
1058 ), noimageinline => 1);
1062 sub htmlize ($$$$) { #{{{
1068 my $oneline = $content !~ /\n/;
1070 if (exists $hooks{htmlize}{$type}) {
1071 $content=$hooks{htmlize}{$type}{call}->(
1073 content => $content,
1077 error("htmlization of $type not supported");
1080 run_hooks(sanitize => sub {
1083 destpage => $destpage,
1084 content => $content,
1089 # hack to get rid of enclosing junk added by markdown
1090 # and other htmlizers
1091 $content=~s/^<p>//i;
1092 $content=~s/<\/p>$//i;
1099 sub linkify ($$$) { #{{{
1104 run_hooks(linkify => sub {
1107 destpage => $destpage,
1108 content => $content,
1116 our $preprocess_preview=0;
1117 sub preprocess ($$$;$$) { #{{{
1118 my $page=shift; # the page the data comes from
1119 my $destpage=shift; # the page the data will appear in (different for inline)
1124 # Using local because it needs to be set within any nested calls
1126 local $preprocess_preview=$preview if defined $preview;
1133 $params="" if ! defined $params;
1135 if (length $escape) {
1136 return "[[$prefix$command $params]]";
1138 elsif (exists $hooks{preprocess}{$command}) {
1139 return "" if $scan && ! $hooks{preprocess}{$command}{scan};
1140 # Note: preserve order of params, some plugins may
1141 # consider it significant.
1143 while ($params =~ m{
1144 (?:([-\w]+)=)? # 1: named parameter key?
1146 """(.*?)""" # 2: triple-quoted value
1148 "([^"]+)" # 3: single-quoted value
1150 (\S+) # 4: unquoted value
1152 (?:\s+|$) # delimiter to next param
1162 elsif (defined $3) {
1165 elsif (defined $4) {
1170 push @params, $key, $val;
1173 push @params, $val, '';
1176 if ($preprocessing{$page}++ > 3) {
1177 # Avoid loops of preprocessed pages preprocessing
1178 # other pages that preprocess them, etc.
1179 return "[[!$command <span class=\"error\">".
1180 sprintf(gettext("preprocessing loop detected on %s at depth %i"),
1181 $page, $preprocessing{$page}).
1187 $hooks{preprocess}{$command}{call}->(
1190 destpage => $destpage,
1191 preview => $preprocess_preview,
1196 $ret="[[!$command <span class=\"error\">".
1197 gettext("Error").": $@"."</span>]]";
1201 # use void context during scan pass
1203 $hooks{preprocess}{$command}{call}->(
1206 destpage => $destpage,
1207 preview => $preprocess_preview,
1212 $preprocessing{$page}--;
1216 return "[[$prefix$command $params]]";
1221 if ($config{prefix_directives}) {
1224 \[\[(!) # directive open; 2: prefix
1225 ([-\w]+) # 3: command
1226 ( # 4: the parameters..
1227 \s+ # Must have space if parameters present
1229 (?:[-\w]+=)? # named parameter key?
1231 """.*?""" # triple-quoted value
1233 "[^"]+" # single-quoted value
1235 [^\s\]]+ # unquoted value
1237 \s* # whitespace or end
1240 *)? # 0 or more parameters
1241 \]\] # directive closed
1247 \[\[(!?) # directive open; 2: optional prefix
1248 ([-\w]+) # 3: command
1250 ( # 4: the parameters..
1252 (?:[-\w]+=)? # named parameter key?
1254 """.*?""" # triple-quoted value
1256 "[^"]+" # single-quoted value
1258 [^\s\]]+ # unquoted value
1260 \s* # whitespace or end
1263 *) # 0 or more parameters
1264 \]\] # directive closed
1268 $content =~ s{$regex}{$handle->($1, $2, $3, $4)}eg;
1272 sub filter ($$$) { #{{{
1277 run_hooks(filter => sub {
1278 $content=shift->(page => $page, destpage => $destpage,
1279 content => $content);
1285 sub indexlink () { #{{{
1286 return "<a href=\"$config{url}\">$config{wikiname}</a>";
1291 sub lockwiki (;$) { #{{{
1292 my $wait=@_ ? shift : 1;
1293 # Take an exclusive lock on the wiki to prevent multiple concurrent
1294 # run issues. The lock will be dropped on program exit.
1295 if (! -d $config{wikistatedir}) {
1296 mkdir($config{wikistatedir});
1298 open($wikilock, '>', "$config{wikistatedir}/lockfile") ||
1299 error ("cannot write to $config{wikistatedir}/lockfile: $!");
1300 if (! flock($wikilock, 2 | 4)) { # LOCK_EX | LOCK_NB
1302 debug("wiki seems to be locked, waiting for lock");
1303 my $wait=600; # arbitrary, but don't hang forever to
1304 # prevent process pileup
1306 return if flock($wikilock, 2 | 4);
1309 error("wiki is locked; waited $wait seconds without lock being freed (possible stuck process or stale lock?)");
1318 sub unlockwiki () { #{{{
1319 return close($wikilock) if $wikilock;
1325 sub commit_hook_enabled () { #{{{
1326 open($commitlock, '+>', "$config{wikistatedir}/commitlock") ||
1327 error("cannot write to $config{wikistatedir}/commitlock: $!");
1328 if (! flock($commitlock, 1 | 4)) { # LOCK_SH | LOCK_NB to test
1329 close($commitlock) || error("failed closing commitlock: $!");
1332 close($commitlock) || error("failed closing commitlock: $!");
1336 sub disable_commit_hook () { #{{{
1337 open($commitlock, '>', "$config{wikistatedir}/commitlock") ||
1338 error("cannot write to $config{wikistatedir}/commitlock: $!");
1339 if (! flock($commitlock, 2)) { # LOCK_EX
1340 error("failed to get commit lock");
1345 sub enable_commit_hook () { #{{{
1346 return close($commitlock) if $commitlock;
1350 sub loadindex () { #{{{
1351 %oldrenderedfiles=%pagectime=();
1352 if (! $config{rebuild}) {
1353 %pagesources=%pagemtime=%oldlinks=%links=%depends=
1354 %destsources=%renderedfiles=%pagecase=%pagestate=();
1357 if (! open ($in, "<", "$config{wikistatedir}/indexdb")) {
1358 if (-e "$config{wikistatedir}/index") {
1359 system("ikiwiki-transition", "indexdb", $config{srcdir});
1360 open ($in, "<", "$config{wikistatedir}/indexdb") || return;
1367 my $index=Storable::fd_retrieve($in);
1368 if (! defined $index) {
1373 if (exists $index->{version} && ! ref $index->{version}) {
1374 $pages=$index->{page};
1375 %wikistate=%{$index->{state}};
1382 foreach my $src (keys %$pages) {
1383 my $d=$pages->{$src};
1384 my $page=pagename($src);
1385 $pagectime{$page}=$d->{ctime};
1386 if (! $config{rebuild}) {
1387 $pagesources{$page}=$src;
1388 $pagemtime{$page}=$d->{mtime};
1389 $renderedfiles{$page}=$d->{dest};
1390 if (exists $d->{links} && ref $d->{links}) {
1391 $links{$page}=$d->{links};
1392 $oldlinks{$page}=[@{$d->{links}}];
1394 if (exists $d->{depends}) {
1395 $depends{$page}=$d->{depends};
1397 if (exists $d->{state}) {
1398 $pagestate{$page}=$d->{state};
1401 $oldrenderedfiles{$page}=[@{$d->{dest}}];
1403 foreach my $page (keys %pagesources) {
1404 $pagecase{lc $page}=$page;
1406 foreach my $page (keys %renderedfiles) {
1407 $destsources{$_}=$page foreach @{$renderedfiles{$page}};
1412 sub saveindex () { #{{{
1413 run_hooks(savestate => sub { shift->() });
1416 foreach my $type (keys %hooks) {
1417 $hookids{$_}=1 foreach keys %{$hooks{$type}};
1419 my @hookids=keys %hookids;
1421 if (! -d $config{wikistatedir}) {
1422 mkdir($config{wikistatedir});
1424 my $newfile="$config{wikistatedir}/indexdb.new";
1425 my $cleanup = sub { unlink($newfile) };
1426 open (my $out, '>', $newfile) || error("cannot write to $newfile: $!", $cleanup);
1429 foreach my $page (keys %pagemtime) {
1430 next unless $pagemtime{$page};
1431 my $src=$pagesources{$page};
1433 $index{page}{$src}={
1434 ctime => $pagectime{$page},
1435 mtime => $pagemtime{$page},
1436 dest => $renderedfiles{$page},
1437 links => $links{$page},
1440 if (exists $depends{$page}) {
1441 $index{page}{$src}{depends} = $depends{$page};
1444 if (exists $pagestate{$page}) {
1445 foreach my $id (@hookids) {
1446 foreach my $key (keys %{$pagestate{$page}{$id}}) {
1447 $index{page}{$src}{state}{$id}{$key}=$pagestate{$page}{$id}{$key};
1454 foreach my $id (@hookids) {
1455 foreach my $key (keys %{$wikistate{$id}}) {
1456 $index{state}{$id}{$key}=$wikistate{$id}{$key};
1460 $index{version}="3";
1461 my $ret=Storable::nstore_fd(\%index, $out);
1462 return if ! defined $ret || ! $ret;
1463 close $out || error("failed saving to $newfile: $!", $cleanup);
1464 rename($newfile, "$config{wikistatedir}/indexdb") ||
1465 error("failed renaming $newfile to $config{wikistatedir}/indexdb", $cleanup);
1470 sub template_file ($) { #{{{
1473 foreach my $dir ($config{templatedir}, "$installdir/share/ikiwiki/templates") {
1474 return "$dir/$template" if -e "$dir/$template";
1479 sub template_params (@) { #{{{
1480 my $filename=template_file(shift);
1482 if (! defined $filename) {
1483 return if wantarray;
1489 my $text_ref = shift;
1490 ${$text_ref} = decode_utf8(${$text_ref});
1492 filename => $filename,
1493 loop_context_vars => 1,
1494 die_on_bad_params => 0,
1497 return wantarray ? @ret : {@ret};
1500 sub template ($;@) { #{{{
1501 require HTML::Template;
1502 return HTML::Template->new(template_params(@_));
1505 sub misctemplate ($$;@) { #{{{
1509 my $template=template("misc.tmpl");
1512 indexlink => indexlink(),
1513 wikiname => $config{wikiname},
1514 pagebody => $pagebody,
1515 baseurl => baseurl(),
1518 run_hooks(pagetemplate => sub {
1519 shift->(page => "", destpage => "", template => $template);
1521 return $template->output;
1524 sub hook (@) { # {{{
1527 if (! exists $param{type} || ! ref $param{call} || ! exists $param{id}) {
1528 error 'hook requires type, call, and id parameters';
1531 return if $param{no_override} && exists $hooks{$param{type}}{$param{id}};
1533 $hooks{$param{type}}{$param{id}}=\%param;
1537 sub run_hooks ($$) { # {{{
1538 # Calls the given sub for each hook of the given type,
1539 # passing it the hook function to call.
1543 if (exists $hooks{$type}) {
1545 foreach my $id (keys %{$hooks{$type}}) {
1546 if ($hooks{$type}{$id}{last}) {
1547 push @deferred, $id;
1550 $sub->($hooks{$type}{$id}{call});
1552 foreach my $id (@deferred) {
1553 $sub->($hooks{$type}{$id}{call});
1560 sub rcs_update () { #{{{
1561 $hooks{rcs}{rcs_update}{call}->(@_);
1564 sub rcs_prepedit ($) { #{{{
1565 $hooks{rcs}{rcs_prepedit}{call}->(@_);
1568 sub rcs_commit ($$$;$$) { #{{{
1569 $hooks{rcs}{rcs_commit}{call}->(@_);
1572 sub rcs_commit_staged ($$$) { #{{{
1573 $hooks{rcs}{rcs_commit_staged}{call}->(@_);
1576 sub rcs_add ($) { #{{{
1577 $hooks{rcs}{rcs_add}{call}->(@_);
1580 sub rcs_remove ($) { #{{{
1581 $hooks{rcs}{rcs_remove}{call}->(@_);
1584 sub rcs_rename ($$) { #{{{
1585 $hooks{rcs}{rcs_rename}{call}->(@_);
1588 sub rcs_recentchanges ($) { #{{{
1589 $hooks{rcs}{rcs_recentchanges}{call}->(@_);
1592 sub rcs_diff ($) { #{{{
1593 $hooks{rcs}{rcs_diff}{call}->(@_);
1596 sub rcs_getctime ($) { #{{{
1597 $hooks{rcs}{rcs_getctime}{call}->(@_);
1600 sub rcs_receive () { #{{{
1601 $hooks{rcs}{rcs_receive}{call}->();
1604 sub globlist_to_pagespec ($) { #{{{
1605 my @globlist=split(' ', shift);
1608 foreach my $glob (@globlist) {
1609 if ($glob=~/^!(.*)/) {
1617 my $spec=join(' or ', @spec);
1619 my $skip=join(' and ', @skip);
1621 $spec="$skip and ($spec)";
1630 sub is_globlist ($) { #{{{
1632 return ( $s =~ /[^\s]+\s+([^\s]+)/ && $1 ne "and" && $1 ne "or" );
1635 sub safequote ($) { #{{{
1641 sub add_depends ($$) { #{{{
1645 return unless pagespec_valid($pagespec);
1647 if (! exists $depends{$page}) {
1648 $depends{$page}=$pagespec;
1651 $depends{$page}=pagespec_merge($depends{$page}, $pagespec);
1657 sub file_pruned ($$) { #{{{
1659 my $file=File::Spec->canonpath(shift);
1660 my $base=File::Spec->canonpath(shift);
1661 $file =~ s#^\Q$base\E/+##;
1663 my $regexp='('.join('|', @{$config{wiki_file_prune_regexps}}).')';
1664 return $file =~ m/$regexp/ && $file ne $base;
1668 # Only use gettext in the rare cases it's needed.
1669 if ((exists $ENV{LANG} && length $ENV{LANG}) ||
1670 (exists $ENV{LC_ALL} && length $ENV{LC_ALL}) ||
1671 (exists $ENV{LC_MESSAGES} && length $ENV{LC_MESSAGES})) {
1672 if (! $gettext_obj) {
1673 $gettext_obj=eval q{
1674 use Locale::gettext q{textdomain};
1675 Locale::gettext->domain('ikiwiki')
1683 return $gettext_obj->get(shift);
1690 sub yesno ($) { #{{{
1693 return (defined $val && lc($val) eq gettext("yes"));
1697 # Injects a new function into the symbol table to replace an
1698 # exported function.
1701 # This is deep ugly perl foo, beware.
1704 if (! defined $params{parent}) {
1705 $params{parent}='::';
1706 $params{old}=\&{$params{name}};
1707 $params{name}=~s/.*:://;
1709 my $parent=$params{parent};
1710 foreach my $ns (grep /^\w+::/, keys %{$parent}) {
1711 $ns = $params{parent} . $ns;
1712 inject(%params, parent => $ns) unless $ns eq '::main::';
1713 *{$ns . $params{name}} = $params{call}
1714 if exists ${$ns}{$params{name}} &&
1715 \&{${$ns}{$params{name}}} == $params{old};
1721 sub pagespec_merge ($$) { #{{{
1725 return $a if $a eq $b;
1727 # Support for old-style GlobLists.
1728 if (is_globlist($a)) {
1729 $a=globlist_to_pagespec($a);
1731 if (is_globlist($b)) {
1732 $b=globlist_to_pagespec($b);
1735 return "($a) or ($b)";
1738 sub pagespec_translate ($) { #{{{
1741 # Support for old-style GlobLists.
1742 if (is_globlist($spec)) {
1743 $spec=globlist_to_pagespec($spec);
1746 # Convert spec to perl code.
1749 \s* # ignore whitespace
1750 ( # 1: match a single word
1757 \w+\([^\)]*\) # command(params)
1759 [^\s()]+ # any other text
1761 \s* # ignore whitespace
1764 if (lc $word eq 'and') {
1767 elsif (lc $word eq 'or') {
1770 elsif ($word eq "(" || $word eq ")" || $word eq "!") {
1773 elsif ($word =~ /^(\w+)\((.*)\)$/) {
1774 if (exists $IkiWiki::PageSpec::{"match_$1"}) {
1775 $code.="IkiWiki::PageSpec::match_$1(\$page, ".safequote($2).", \@_)";
1782 $code.=" IkiWiki::PageSpec::match_glob(\$page, ".safequote($word).", \@_)";
1786 if (! length $code) {
1791 return eval 'sub { my $page=shift; '.$code.' }';
1794 sub pagespec_match ($$;@) { #{{{
1799 # Backwards compatability with old calling convention.
1801 unshift @params, 'location';
1804 my $sub=pagespec_translate($spec);
1805 return IkiWiki::FailReason->new("syntax error in pagespec \"$spec\"") if $@;
1806 return $sub->($page, @params);
1809 sub pagespec_valid ($) { #{{{
1812 my $sub=pagespec_translate($spec);
1816 sub glob2re ($) { #{{{
1817 my $re=quotemeta(shift);
1823 package IkiWiki::FailReason;
1826 '""' => sub { ${$_[0]} },
1828 '!' => sub { bless $_[0], 'IkiWiki::SuccessReason'},
1835 return bless \$value, $class;
1838 package IkiWiki::SuccessReason;
1841 '""' => sub { ${$_[0]} },
1843 '!' => sub { bless $_[0], 'IkiWiki::FailReason'},
1850 return bless \$value, $class;
1853 package IkiWiki::PageSpec;
1855 sub match_glob ($$;@) { #{{{
1860 my $from=exists $params{location} ? $params{location} : '';
1863 if ($glob =~ m!^\./!) {
1864 $from=~s#/?[^/]+$##;
1866 $glob="$from/$glob" if length $from;
1869 my $regexp=IkiWiki::glob2re($glob);
1870 if ($page=~/^$regexp$/i) {
1871 if (! IkiWiki::isinternal($page) || $params{internal}) {
1872 return IkiWiki::SuccessReason->new("$glob matches $page");
1875 return IkiWiki::FailReason->new("$glob matches $page, but the page is an internal page");
1879 return IkiWiki::FailReason->new("$glob does not match $page");
1883 sub match_internal ($$;@) { #{{{
1884 return match_glob($_[0], $_[1], @_, internal => 1)
1887 sub match_link ($$;@) { #{{{
1892 my $from=exists $params{location} ? $params{location} : '';
1895 if ($link =~ m!^\.! && defined $from) {
1896 $from=~s#/?[^/]+$##;
1898 $link="$from/$link" if length $from;
1901 my $links = $IkiWiki::links{$page};
1902 return IkiWiki::FailReason->new("$page has no links") unless $links && @{$links};
1903 my $bestlink = IkiWiki::bestlink($from, $link);
1904 foreach my $p (@{$links}) {
1905 if (length $bestlink) {
1906 return IkiWiki::SuccessReason->new("$page links to $link")
1907 if $bestlink eq IkiWiki::bestlink($page, $p);
1910 return IkiWiki::SuccessReason->new("$page links to page $p matching $link")
1911 if match_glob($p, $link, %params);
1914 return IkiWiki::FailReason->new("$page does not link to $link");
1917 sub match_backlink ($$;@) { #{{{
1918 return match_link($_[1], $_[0], @_);
1921 sub match_created_before ($$;@) { #{{{
1925 if (exists $IkiWiki::pagectime{$testpage}) {
1926 if ($IkiWiki::pagectime{$page} < $IkiWiki::pagectime{$testpage}) {
1927 return IkiWiki::SuccessReason->new("$page created before $testpage");
1930 return IkiWiki::FailReason->new("$page not created before $testpage");
1934 return IkiWiki::FailReason->new("$testpage has no ctime");
1938 sub match_created_after ($$;@) { #{{{
1942 if (exists $IkiWiki::pagectime{$testpage}) {
1943 if ($IkiWiki::pagectime{$page} > $IkiWiki::pagectime{$testpage}) {
1944 return IkiWiki::SuccessReason->new("$page created after $testpage");
1947 return IkiWiki::FailReason->new("$page not created after $testpage");
1951 return IkiWiki::FailReason->new("$testpage has no ctime");
1955 sub match_creation_day ($$;@) { #{{{
1956 if ((gmtime($IkiWiki::pagectime{shift()}))[3] == shift) {
1957 return IkiWiki::SuccessReason->new('creation_day matched');
1960 return IkiWiki::FailReason->new('creation_day did not match');
1964 sub match_creation_month ($$;@) { #{{{
1965 if ((gmtime($IkiWiki::pagectime{shift()}))[4] + 1 == shift) {
1966 return IkiWiki::SuccessReason->new('creation_month matched');
1969 return IkiWiki::FailReason->new('creation_month did not match');
1973 sub match_creation_year ($$;@) { #{{{
1974 if ((gmtime($IkiWiki::pagectime{shift()}))[5] + 1900 == shift) {
1975 return IkiWiki::SuccessReason->new('creation_year matched');
1978 return IkiWiki::FailReason->new('creation_year did not match');
1982 sub match_user ($$;@) { #{{{
1987 if (! exists $params{user}) {
1988 return IkiWiki::FailReason->new("no user specified");
1991 if (defined $params{user} && lc $params{user} eq lc $user) {
1992 return IkiWiki::SuccessReason->new("user is $user");
1994 elsif (! defined $params{user}) {
1995 return IkiWiki::FailReason->new("not logged in");
1998 return IkiWiki::FailReason->new("user is $params{user}, not $user");
2002 sub match_admin ($$;@) { #{{{
2007 if (! exists $params{user}) {
2008 return IkiWiki::FailReason->new("no user specified");
2011 if (defined $params{user} && IkiWiki::is_admin($params{user})) {
2012 return IkiWiki::SuccessReason->new("user is an admin");
2014 elsif (! defined $params{user}) {
2015 return IkiWiki::FailReason->new("not logged in");
2018 return IkiWiki::FailReason->new("user is not an admin");
2022 sub match_ip ($$;@) { #{{{
2027 if (! exists $params{ip}) {
2028 return IkiWiki::FailReason->new("no IP specified");
2031 if (defined $params{ip} && lc $params{ip} eq lc $ip) {
2032 return IkiWiki::SuccessReason->new("IP is $ip");
2035 return IkiWiki::FailReason->new("IP is $params{ip}, not $ip");