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 ngettext 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 my $cgiurl=$config{cgiurl
};
945 if (exists $params{cgiurl
}) {
946 $cgiurl=$params{cgiurl
};
947 delete $params{cgiurl
};
950 join("&", map $_."=".uri_escape_utf8
($params{$_}), keys %params);
956 return "$config{url}/" if ! defined $page;
958 $page=htmlpage
($page);
960 $page=~s/[^\/]+\//..\//g
;
965 # Work around very innefficient behavior in File::Spec if abs2rel
966 # is passed two relative paths. It's much faster if paths are
967 # absolute! (Debian bug #376658; fixed in debian unstable now)
972 my $ret=File
::Spec
->abs2rel($path, $base);
973 $ret=~s/^// if defined $ret;
977 sub displaytime
($;$) {
978 # Plugins can override this function to mark up the time to
980 return '<span class="date">'.formattime
(@_).'</span>';
983 sub formattime
($;$) {
984 # Plugins can override this function to format the time.
987 if (! defined $format) {
988 $format=$config{timeformat
};
991 # strftime doesn't know about encodings, so make sure
992 # its output is properly treated as utf8
993 return decode_utf8
(POSIX
::strftime
($format, localtime($time)));
996 sub beautify_urlpath
($) {
999 # Ensure url is not an empty link, and if necessary,
1000 # add ./ to avoid colon confusion.
1001 if ($url !~ /^\// && $url !~ /^\
.\
.?\
//) {
1005 if ($config{usedirs
}) {
1006 $url =~ s!/index.$config{htmlext}$!/!;
1018 return beautify_urlpath
(baseurl
($from)."index.$config{htmlext}");
1021 if (! $destsources{$to}) {
1026 return $config{url
}.beautify_urlpath
("/".$to);
1029 my $link = abs2rel
($to, dirname
(htmlpage
($from)));
1031 return beautify_urlpath
($link);
1034 sub htmllink
($$$;@
) {
1035 my $lpage=shift; # the page doing the linking
1036 my $page=shift; # the page that will contain the link (different for inline)
1043 if (! $opts{forcesubpage
}) {
1044 $bestlink=bestlink
($lpage, $link);
1047 $bestlink="$lpage/".lc($link);
1051 if (defined $opts{linktext
}) {
1052 $linktext=$opts{linktext
};
1055 $linktext=pagetitle
(basename
($link));
1058 return "<span class=\"selflink\">$linktext</span>"
1059 if length $bestlink && $page eq $bestlink &&
1060 ! defined $opts{anchor
};
1062 if (! $destsources{$bestlink}) {
1063 $bestlink=htmlpage
($bestlink);
1065 if (! $destsources{$bestlink}) {
1066 return $linktext unless length $config{cgiurl
};
1067 return "<span class=\"createlink\"><a href=\"".
1073 "\" rel=\"nofollow\">?</a>$linktext</span>"
1077 $bestlink=abs2rel
($bestlink, dirname
(htmlpage
($page)));
1078 $bestlink=beautify_urlpath
($bestlink);
1080 if (! $opts{noimageinline
} && isinlinableimage
($bestlink)) {
1081 return "<img src=\"$bestlink\" alt=\"$linktext\" />";
1084 if (defined $opts{anchor
}) {
1085 $bestlink.="#".$opts{anchor
};
1089 foreach my $attr (qw{rel
class title
}) {
1090 if (defined $opts{$attr}) {
1091 push @attrs, " $attr=\"$opts{$attr}\"";
1095 return "<a href=\"$bestlink\"@attrs>$linktext</a>";
1100 return length $config{userdir
} ?
"$config{userdir}/$user" : $user;
1103 sub openiduser
($) {
1106 if ($user =~ m!^https?://! &&
1107 eval q{use Net::OpenID::VerifiedIdentity; 1} && !$@
) {
1110 if (Net
::OpenID
::VerifiedIdentity
->can("DisplayOfURL")) {
1111 $display = Net
::OpenID
::VerifiedIdentity
::DisplayOfURL
($user);
1114 # backcompat with old version
1115 my $oid=Net
::OpenID
::VerifiedIdentity
->new(identity
=> $user);
1116 $display=$oid->display;
1119 # Convert "user.somehost.com" to "user [somehost.com]"
1120 # (also "user.somehost.co.uk")
1121 if ($display !~ /\[/) {
1122 $display=~s/^([-a-zA-Z0-9]+?)\.([-.a-zA-Z0-9]+\.[a-z]+)$/$1 [$2]/;
1124 # Convert "http://somehost.com/user" to "user [somehost.com]".
1125 # (also "https://somehost.com/user/")
1126 if ($display !~ /\[/) {
1127 $display=~s/^https?:\/\/(.+)\
/([^\/]+)\
/?$/$2 [$1]/;
1129 $display=~s!^https?://!!; # make sure this is removed
1130 eval q{use CGI 'escapeHTML'};
1132 return escapeHTML
($display);
1137 sub htmlize
($$$$) {
1143 my $oneline = $content !~ /\n/;
1145 if (exists $hooks{htmlize
}{$type}) {
1146 $content=$hooks{htmlize
}{$type}{call
}->(
1148 content
=> $content,
1152 error
("htmlization of $type not supported");
1155 run_hooks
(sanitize
=> sub {
1158 destpage
=> $destpage,
1159 content
=> $content,
1164 # hack to get rid of enclosing junk added by markdown
1165 # and other htmlizers
1166 $content=~s/^<p>//i;
1167 $content=~s/<\/p>$//i
;
1179 run_hooks
(linkify
=> sub {
1182 destpage
=> $destpage,
1183 content
=> $content,
1191 our $preprocess_preview=0;
1192 sub preprocess
($$$;$$) {
1193 my $page=shift; # the page the data comes from
1194 my $destpage=shift; # the page the data will appear in (different for inline)
1199 # Using local because it needs to be set within any nested calls
1201 local $preprocess_preview=$preview if defined $preview;
1208 $params="" if ! defined $params;
1210 if (length $escape) {
1211 return "[[$prefix$command $params]]";
1213 elsif (exists $hooks{preprocess
}{$command}) {
1214 return "" if $scan && ! $hooks{preprocess
}{$command}{scan
};
1215 # Note: preserve order of params, some plugins may
1216 # consider it significant.
1218 while ($params =~ m
{
1219 (?
:([-\w
]+)=)?
# 1: named parameter key?
1221 """(.*?)""" # 2: triple-quoted value
1223 "([^"]+)" # 3: single-quoted value
1225 (\S+) # 4: unquoted value
1227 (?:\s+|$) # delimiter to next param
1237 elsif (defined $3) {
1240 elsif (defined $4) {
1245 push @params, $key, $val;
1248 push @params, $val, '';
1251 if ($preprocessing{$page}++ > 3) {
1252 # Avoid loops of preprocessed pages preprocessing
1253 # other pages that preprocess them, etc.
1254 return "[[!$command <span
class=\"error
\">".
1255 sprintf(gettext("preprocessing
loop detected on
%s at depth
%i"),
1256 $page, $preprocessing{$page}).
1262 $hooks{preprocess}{$command}{call}->(
1265 destpage => $destpage,
1266 preview => $preprocess_preview,
1272 $ret="[[!$command <span
class=\"error
\">".
1273 gettext("Error
").": $error"."</span
>]]";
1277 # use void context during scan pass
1279 $hooks{preprocess}{$command}{call}->(
1282 destpage => $destpage,
1283 preview => $preprocess_preview,
1288 $preprocessing{$page}--;
1292 return "[[$prefix$command $params]]";
1297 if ($config{prefix_directives}) {
1300 \[\[(!) # directive open; 2: prefix
1301 ([-\w]+) # 3: command
1302 ( # 4: the parameters..
1303 \s+ # Must have space if parameters present
1305 (?:[-\w]+=)? # named parameter key?
1307 """.*?
""" # triple-quoted value
1309 "[^"]+" # single-quoted value
1311 [^"\s\]]+ # unquoted value
1313 \s* # whitespace or end
1316 *)? # 0 or more parameters
1317 \]\] # directive closed
1323 \[\[(!?) # directive open; 2: optional prefix
1324 ([-\w]+) # 3: command
1326 ( # 4: the parameters..
1328 (?:[-\w]+=)? # named parameter key?
1330 """.*?
""" # triple-quoted value
1332 "[^"]+" # single-quoted value
1334 [^"\s\]]+ # unquoted value
1336 \s* # whitespace or end
1339 *) # 0 or more parameters
1340 \]\] # directive closed
1344 $content =~ s{$regex}{$handle->($1, $2, $3, $4)}eg;
1353 run_hooks(filter => sub {
1354 $content=shift->(page => $page, destpage => $destpage,
1355 content => $content);
1362 return "<a href
=\"$config{url
}\">$config{wikiname
}</a
>";
1365 sub check_canedit ($$$;$) {
1372 run_hooks(canedit => sub {
1373 return if defined $canedit;
1374 my $ret=shift->($page, $q, $session);
1379 elsif (ref $ret eq 'CODE') {
1380 $ret->() unless $nonfatal;
1383 elsif (defined $ret) {
1384 error($ret) unless $nonfatal;
1389 return defined $canedit ? $canedit : 1;
1392 sub check_content (@) {
1395 return 1 if ! exists $hooks{checkcontent}; # optimisation
1397 if (exists $pagesources{$params{page}}) {
1399 my %old=map { $_ => 1 }
1400 split("\n", readfile(srcfile($pagesources{$params{page}})));
1401 foreach my $line (split("\n", $params{content})) {
1402 push @diff, $line if ! exists $old{$line};
1404 $params{diff}=join("\n", @diff);
1408 run_hooks(checkcontent => sub {
1409 return if defined $ok;
1410 my $ret=shift->(%params);
1415 elsif (ref $ret eq 'CODE') {
1416 $ret->() unless $params{nonfatal};
1419 elsif (defined $ret) {
1420 error($ret) unless $params{nonfatal};
1426 return defined $ok ? $ok : 1;
1432 # Take an exclusive lock on the wiki to prevent multiple concurrent
1433 # run issues. The lock will be dropped on program exit.
1434 if (! -d $config{wikistatedir}) {
1435 mkdir($config{wikistatedir});
1437 open($wikilock, '>', "$config{wikistatedir
}/lockfile
") ||
1438 error ("cannot
write to
$config{wikistatedir
}/lockfile
: $!");
1439 if (! flock($wikilock, 2)) { # LOCK_EX
1440 error("failed to get
lock");
1446 POSIX::close($ENV{IKIWIKI_CGILOCK_FD}) if exists $ENV{IKIWIKI_CGILOCK_FD};
1447 return close($wikilock) if $wikilock;
1453 sub commit_hook_enabled () {
1454 open($commitlock, '+>', "$config{wikistatedir
}/commitlock
") ||
1455 error("cannot
write to
$config{wikistatedir
}/commitlock
: $!");
1456 if (! flock($commitlock, 1 | 4)) { # LOCK_SH | LOCK_NB to test
1457 close($commitlock) || error("failed closing commitlock
: $!");
1460 close($commitlock) || error("failed closing commitlock
: $!");
1464 sub disable_commit_hook () {
1465 open($commitlock, '>', "$config{wikistatedir
}/commitlock
") ||
1466 error("cannot
write to
$config{wikistatedir
}/commitlock
: $!");
1467 if (! flock($commitlock, 2)) { # LOCK_EX
1468 error("failed to get commit
lock");
1473 sub enable_commit_hook () {
1474 return close($commitlock) if $commitlock;
1479 %oldrenderedfiles=%pagectime=();
1480 if (! $config{rebuild}) {
1481 %pagesources=%pagemtime=%oldlinks=%links=%depends=
1482 %destsources=%renderedfiles=%pagecase=%pagestate=
1486 if (! open ($in, "<", "$config{wikistatedir
}/indexdb
")) {
1487 if (-e "$config{wikistatedir
}/index") {
1488 system("ikiwiki
-transition
", "indexdb
", $config{srcdir});
1489 open ($in, "<", "$config{wikistatedir
}/indexdb
") || return;
1496 my $index=Storable::fd_retrieve($in);
1497 if (! defined $index) {
1502 if (exists $index->{version} && ! ref $index->{version}) {
1503 $pages=$index->{page};
1504 %wikistate=%{$index->{state}};
1511 foreach my $src (keys %$pages) {
1512 my $d=$pages->{$src};
1513 my $page=pagename($src);
1514 $pagectime{$page}=$d->{ctime};
1515 if (! $config{rebuild}) {
1516 $pagesources{$page}=$src;
1517 $pagemtime{$page}=$d->{mtime};
1518 $renderedfiles{$page}=$d->{dest};
1519 if (exists $d->{links} && ref $d->{links}) {
1520 $links{$page}=$d->{links};
1521 $oldlinks{$page}=[@{$d->{links}}];
1523 if (ref $d->{depends_simple} eq 'ARRAY') {
1525 $depends_simple{$page}={
1526 map { $_ => 1 } @{$d->{depends_simple}}
1529 elsif (exists $d->{depends_simple}) {
1530 $depends_simple{$page}=$d->{depends_simple};
1532 if (exists $d->{dependslist}) {
1535 map { $_ => $DEPEND_CONTENT }
1536 @{$d->{dependslist}}
1539 elsif (exists $d->{depends} && ! ref $d->{depends}) {
1541 $depends{$page}={$d->{depends} => $DEPEND_CONTENT };
1543 elsif (exists $d->{depends}) {
1544 $depends{$page}=$d->{depends};
1546 if (exists $d->{state}) {
1547 $pagestate{$page}=$d->{state};
1550 $oldrenderedfiles{$page}=[@{$d->{dest}}];
1552 foreach my $page (keys %pagesources) {
1553 $pagecase{lc $page}=$page;
1555 foreach my $page (keys %renderedfiles) {
1556 $destsources{$_}=$page foreach @{$renderedfiles{$page}};
1562 run_hooks(savestate => sub { shift->() });
1565 foreach my $type (keys %hooks) {
1566 $hookids{$_}=1 foreach keys %{$hooks{$type}};
1568 my @hookids=keys %hookids;
1570 if (! -d $config{wikistatedir}) {
1571 mkdir($config{wikistatedir});
1573 my $newfile="$config{wikistatedir
}/indexdb
.new
";
1574 my $cleanup = sub { unlink($newfile) };
1575 open (my $out, '>', $newfile) || error("cannot
write to
$newfile: $!", $cleanup);
1578 foreach my $page (keys %pagemtime) {
1579 next unless $pagemtime{$page};
1580 my $src=$pagesources{$page};
1582 $index{page}{$src}={
1583 ctime => $pagectime{$page},
1584 mtime => $pagemtime{$page},
1585 dest => $renderedfiles{$page},
1586 links => $links{$page},
1589 if (exists $depends{$page}) {
1590 $index{page}{$src}{depends} = $depends{$page};
1593 if (exists $depends_simple{$page}) {
1594 $index{page}{$src}{depends_simple} = $depends_simple{$page};
1597 if (exists $pagestate{$page}) {
1598 foreach my $id (@hookids) {
1599 foreach my $key (keys %{$pagestate{$page}{$id}}) {
1600 $index{page}{$src}{state}{$id}{$key}=$pagestate{$page}{$id}{$key};
1607 foreach my $id (@hookids) {
1608 foreach my $key (keys %{$wikistate{$id}}) {
1609 $index{state}{$id}{$key}=$wikistate{$id}{$key};
1613 $index{version}="3";
1614 my $ret=Storable::nstore_fd(\%index, $out);
1615 return if ! defined $ret || ! $ret;
1616 close $out || error("failed saving to
$newfile: $!", $cleanup);
1617 rename($newfile, "$config{wikistatedir
}/indexdb
") ||
1618 error("failed renaming
$newfile to
$config{wikistatedir
}/indexdb
", $cleanup);
1623 sub template_file ($) {
1626 foreach my $dir ($config{templatedir}, @{$config{templatedirs}},
1627 "$installdir/share/ikiwiki
/templates
") {
1628 return "$dir/$template" if -e "$dir/$template";
1633 sub template_params (@) {
1634 my $filename=template_file(shift);
1636 if (! defined $filename) {
1637 return if wantarray;
1643 my $text_ref = shift;
1644 ${$text_ref} = decode_utf8(${$text_ref});
1646 filename => $filename,
1647 loop_context_vars => 1,
1648 die_on_bad_params => 0,
1651 return wantarray ? @ret : {@ret};
1654 sub template ($;@) {
1655 require HTML::Template;
1656 return HTML::Template->new(template_params(@_));
1659 sub misctemplate ($$;@) {
1663 my $template=template("misc
.tmpl
");
1666 indexlink => indexlink(),
1667 wikiname => $config{wikiname},
1668 pagebody => $pagebody,
1669 baseurl => baseurl(),
1672 run_hooks(pagetemplate => sub {
1673 shift->(page => "", destpage => "", template => $template);
1675 return $template->output;
1681 if (! exists $param{type} || ! ref $param{call} || ! exists $param{id}) {
1682 error 'hook requires type, call, and id parameters';
1685 return if $param{no_override} && exists $hooks{$param{type}}{$param{id}};
1687 $hooks{$param{type}}{$param{id}}=\%param;
1691 sub run_hooks ($$) {
1692 # Calls the given sub for each hook of the given type,
1693 # passing it the hook function to call.
1697 if (exists $hooks{$type}) {
1698 my (@first, @middle, @last);
1699 foreach my $id (keys %{$hooks{$type}}) {
1700 if ($hooks{$type}{$id}{first}) {
1703 elsif ($hooks{$type}{$id}{last}) {
1710 foreach my $id (@first, @middle, @last) {
1711 $sub->($hooks{$type}{$id}{call});
1719 $hooks{rcs}{rcs_update}{call}->(@_);
1722 sub rcs_prepedit ($) {
1723 $hooks{rcs}{rcs_prepedit}{call}->(@_);
1726 sub rcs_commit ($$$;$$) {
1727 $hooks{rcs}{rcs_commit}{call}->(@_);
1730 sub rcs_commit_staged ($$$) {
1731 $hooks{rcs}{rcs_commit_staged}{call}->(@_);
1735 $hooks{rcs}{rcs_add}{call}->(@_);
1738 sub rcs_remove ($) {
1739 $hooks{rcs}{rcs_remove}{call}->(@_);
1742 sub rcs_rename ($$) {
1743 $hooks{rcs}{rcs_rename}{call}->(@_);
1746 sub rcs_recentchanges ($) {
1747 $hooks{rcs}{rcs_recentchanges}{call}->(@_);
1751 $hooks{rcs}{rcs_diff}{call}->(@_);
1754 sub rcs_getctime ($) {
1755 $hooks{rcs}{rcs_getctime}{call}->(@_);
1758 sub rcs_receive () {
1759 $hooks{rcs}{rcs_receive}{call}->();
1762 sub add_depends ($$;$) {
1765 my $deptype=shift || $DEPEND_CONTENT;
1767 # Is the pagespec a simple page name?
1768 if ($pagespec =~ /$config{wiki_file_regexp}/ &&
1769 $pagespec !~ /[\s*?()!]/) {
1770 $depends_simple{$page}{lc $pagespec} |= $deptype;
1774 # Add explicit dependencies for influences.
1775 my $sub=pagespec_translate($pagespec);
1777 foreach my $p (keys %pagesources) {
1778 my $r=$sub->($p, location => $page);
1779 my $i=$r->influences;
1780 foreach my $k (keys %$i) {
1781 $depends_simple{$page}{lc $k} |= $i->{$k};
1783 last if $r->influences_static;
1786 $depends{$page}{$pagespec} |= $deptype;
1792 foreach my $type (@_) {
1793 if ($type eq 'presence') {
1794 $deptype |= $DEPEND_PRESENCE;
1796 elsif ($type eq 'links') {
1797 $deptype |= $DEPEND_LINKS;
1799 elsif ($type eq 'content') {
1800 $deptype |= $DEPEND_CONTENT;
1806 sub file_pruned ($;$) {
1810 $file=File::Spec->canonpath($file);
1811 my $base=File::Spec->canonpath(shift);
1812 return if $file eq $base;
1813 $file =~ s#^\Q$base\E/+##;
1816 my $regexp='('.join('|', @{$config{wiki_file_prune_regexps}}).')';
1817 return $file =~ m/$regexp/;
1820 sub define_gettext () {
1821 # If translation is needed, redefine the gettext function to do it.
1822 # Otherwise, it becomes a quick no-op.
1825 if ((exists $ENV{LANG} && length $ENV{LANG}) ||
1826 (exists $ENV{LC_ALL} && length $ENV{LC_ALL}) ||
1827 (exists $ENV{LC_MESSAGES} && length $ENV{LC_MESSAGES})) {
1829 $gettext_obj=eval q{
1830 use Locale::gettext q{textdomain};
1831 Locale
::gettext
->domain('ikiwiki')
1836 no warnings
'redefine';
1838 $getobj->() if $getobj;
1840 $gettext_obj->get(shift);
1847 $getobj->() if $getobj;
1849 $gettext_obj->nget(@_);
1852 return ($_[2] == 1 ?
$_[0] : $_[1])
1870 return (defined $val && (lc($val) eq gettext
("yes") || lc($val) eq "yes" || $val eq "1"));
1874 # Injects a new function into the symbol table to replace an
1875 # exported function.
1878 # This is deep ugly perl foo, beware.
1881 if (! defined $params{parent
}) {
1882 $params{parent
}='::';
1883 $params{old
}=\
&{$params{name
}};
1884 $params{name
}=~s/.*:://;
1886 my $parent=$params{parent
};
1887 foreach my $ns (grep /^\w+::/, keys %{$parent}) {
1888 $ns = $params{parent
} . $ns;
1889 inject
(%params, parent
=> $ns) unless $ns eq '::main::';
1890 *{$ns . $params{name
}} = $params{call
}
1891 if exists ${$ns}{$params{name
}} &&
1892 \
&{${$ns}{$params{name
}}} == $params{old
};
1902 push @
{$links{$page}}, $link
1903 unless grep { $_ eq $link } @
{$links{$page}};
1906 sub pagespec_translate
($) {
1909 # Convert spec to perl code.
1913 \s
* # ignore whitespace
1914 ( # 1: match a single word
1921 \w
+\
([^\
)]*\
) # command(params)
1923 [^\s
()]+ # any other text
1925 \s
* # ignore whitespace
1928 if (lc $word eq 'and') {
1931 elsif (lc $word eq 'or') {
1934 elsif ($word eq "(" || $word eq ")" || $word eq "!") {
1937 elsif ($word =~ /^(\w+)\((.*)\)$/) {
1938 if (exists $IkiWiki::PageSpec
::{"match_$1"}) {
1940 $code.="IkiWiki::PageSpec::match_$1(\$page, \$data[$#data], \@_)";
1943 push @data, qq{unknown function
in pagespec
"$word"};
1944 $code.="IkiWiki::ErrorReason->new(\$data[$#data])";
1949 $code.=" IkiWiki::PageSpec::match_glob(\$page, \$data[$#data], \@_)";
1953 if (! length $code) {
1954 $code="IkiWiki::FailReason->new('empty pagespec')";
1958 return eval 'sub { my $page=shift; '.$code.' }';
1961 sub pagespec_match
($$;@
) {
1966 # Backwards compatability with old calling convention.
1968 unshift @params, 'location';
1971 my $sub=pagespec_translate
($spec);
1972 return IkiWiki
::ErrorReason
->new("syntax error in pagespec \"$spec\"")
1973 if $@
|| ! defined $sub;
1974 return $sub->($page, @params);
1977 sub pagespec_match_list
($$;@
) {
1982 # Backwards compatability with old calling convention.
1984 print STDERR
"warning: a plugin (".caller().") is using pagespec_match_list in an obsolete way, and needs to be updated\n";
1985 $params{list
}=$page;
1986 $page=$params{location
}; # ugh!
1989 my $sub=pagespec_translate
($pagespec);
1990 error
"syntax error in pagespec \"$pagespec\""
1991 if $@
|| ! defined $sub;
1994 if (exists $params{list
}) {
1995 @candidates=exists $params{filter
}
1996 ?
grep { ! $params{filter
}->($_) } @
{$params{list
}}
2000 @candidates=exists $params{filter
}
2001 ?
grep { ! $params{filter
}->($_) } keys %pagesources
2002 : keys %pagesources;
2005 if (defined $params{sort}) {
2007 if ($params{sort} eq 'title') {
2008 $f=sub { pagetitle
(basename
($a)) cmp pagetitle
(basename
($b)) };
2010 elsif ($params{sort} eq 'title_natural') {
2011 eval q{use Sort::Naturally};
2013 error
(gettext
("Sort::Naturally needed for title_natural sort"));
2015 $f=sub { Sort
::Naturally
::ncmp
(pagetitle
(basename
($a)), pagetitle
(basename
($b))) };
2017 elsif ($params{sort} eq 'mtime') {
2018 $f=sub { $pagemtime{$b} <=> $pagemtime{$a} };
2020 elsif ($params{sort} eq 'age') {
2021 $f=sub { $pagectime{$b} <=> $pagectime{$a} };
2024 error
sprintf(gettext
("unknown sort type %s"), $params{sort});
2026 @candidates = sort { &$f } @candidates;
2029 @candidates=reverse(@candidates) if $params{reverse};
2031 $depends{$page}{$pagespec} |= ($params{deptype
} || $DEPEND_CONTENT);
2033 # clear params, remainder is passed to pagespec
2034 my $num=$params{num
};
2035 delete @params{qw{num deptype
reverse sort filter list
}};
2040 my $accum=IkiWiki
::SuccessReason
->new();
2041 foreach my $p (@candidates) {
2042 my $r=$sub->($p, %params, location
=> $page);
2043 error
(sprintf(gettext
("cannot match pages: %s"), $r))
2044 if $r->isa("IkiWiki::ErrorReason");
2048 last if defined $num && ++$count == $num;
2052 # Add simple dependencies for accumulated influences.
2053 my $i=$accum->influences;
2054 foreach my $k (keys %$i) {
2055 $depends_simple{$page}{lc $k} |= $i->{$k};
2061 sub pagespec_valid
($) {
2064 my $sub=pagespec_translate
($spec);
2069 my $re=quotemeta(shift);
2075 package IkiWiki
::FailReason
;
2078 '""' => sub { $_[0][0] },
2080 '!' => sub { bless $_[0], 'IkiWiki::SuccessReason'},
2081 '&' => sub { $_[0]->merge_influences($_[1], 1); $_[0] },
2082 '|' => sub { $_[1]->merge_influences($_[0]); $_[1] },
2086 our @ISA = 'IkiWiki::SuccessReason';
2088 package IkiWiki
::SuccessReason
;
2091 '""' => sub { $_[0][0] },
2093 '!' => sub { bless $_[0], 'IkiWiki::FailReason'},
2094 '&' => sub { $_[1]->merge_influences($_[0], 1); $_[1] },
2095 '|' => sub { $_[0]->merge_influences($_[1]); $_[0] },
2102 return bless [$value, {@_}], $class;
2107 $this->[1]={@_} if @_;
2108 my %i=%{$this->[1]};
2113 sub influences_static
{
2114 return ! $_[0][1]->{""};
2117 sub merge_influences
{
2122 if (! $anded || (($this || %{$this->[1]}) &&
2123 ($other || %{$other->[1]}))) {
2124 foreach my $influence (keys %{$other->[1]}) {
2125 $this->[1]{$influence} |= $other->[1]{$influence};
2134 package IkiWiki
::ErrorReason
;
2136 our @ISA = 'IkiWiki::FailReason';
2138 package IkiWiki
::PageSpec
;
2144 if ($path =~ m!^\./!) {
2145 $from=~s
#/?[^/]+$## if defined $from;
2147 $path="$from/$path" if length $from;
2153 sub match_glob
($$;@
) {
2158 $glob=derel
($glob, $params{location
});
2160 my $regexp=IkiWiki
::glob2re
($glob);
2161 if ($page=~/^$regexp$/i) {
2162 if (! IkiWiki
::isinternal
($page) || $params{internal
}) {
2163 return IkiWiki
::SuccessReason
->new("$glob matches $page");
2166 return IkiWiki
::FailReason
->new("$glob matches $page, but the page is an internal page");
2170 return IkiWiki
::FailReason
->new("$glob does not match $page");
2174 sub match_internal
($$;@
) {
2175 return match_glob
($_[0], $_[1], @_, internal
=> 1)
2178 sub match_link
($$;@
) {
2183 $link=derel
($link, $params{location
});
2184 my $from=exists $params{location
} ?
$params{location
} : '';
2186 my $links = $IkiWiki::links
{$page};
2187 return IkiWiki
::FailReason
->new("$page has no links", "" => 1)
2188 unless $links && @
{$links};
2189 my $bestlink = IkiWiki
::bestlink
($from, $link);
2190 foreach my $p (@
{$links}) {
2191 if (length $bestlink) {
2192 return IkiWiki
::SuccessReason
->new("$page links to $link", $page => $IkiWiki::DEPEND_LINKS
, "" => 1)
2193 if $bestlink eq IkiWiki
::bestlink
($page, $p);
2196 return IkiWiki
::SuccessReason
->new("$page links to page $p matching $link", $page => $IkiWiki::DEPEND_LINKS
, "" => 1)
2197 if match_glob
($p, $link, %params);
2198 my ($p_rel)=$p=~/^\/?
(.*)/;
2200 return IkiWiki
::SuccessReason
->new("$page links to page $p_rel matching $link", $page => $IkiWiki::DEPEND_LINKS
, "" => 1)
2201 if match_glob
($p_rel, $link, %params);
2204 return IkiWiki
::FailReason
->new("$page does not link to $link", "" => 1);
2207 sub match_backlink
($$;@
) {
2208 my $ret=match_link
($_[1], $_[0], @_);
2209 $ret->influences($_[1] => $IkiWiki::DEPEND_LINKS
);
2213 sub match_created_before
($$;@
) {
2218 $testpage=derel
($testpage, $params{location
});
2220 if (exists $IkiWiki::pagectime
{$testpage}) {
2221 if ($IkiWiki::pagectime
{$page} < $IkiWiki::pagectime
{$testpage}) {
2222 return IkiWiki
::SuccessReason
->new("$page created before $testpage", $testpage => $IkiWiki::DEPEND_PRESENCE
);
2225 return IkiWiki
::FailReason
->new("$page not created before $testpage", $testpage => $IkiWiki::DEPEND_PRESENCE
);
2229 return IkiWiki
::ErrorReason
->new("$testpage does not exist", $testpage => $IkiWiki::DEPEND_PRESENCE
);
2233 sub match_created_after
($$;@
) {
2238 $testpage=derel
($testpage, $params{location
});
2240 if (exists $IkiWiki::pagectime
{$testpage}) {
2241 if ($IkiWiki::pagectime
{$page} > $IkiWiki::pagectime
{$testpage}) {
2242 return IkiWiki
::SuccessReason
->new("$page created after $testpage", $testpage => $IkiWiki::DEPEND_PRESENCE
);
2245 return IkiWiki
::FailReason
->new("$page not created after $testpage", $testpage => $IkiWiki::DEPEND_PRESENCE
);
2249 return IkiWiki
::ErrorReason
->new("$testpage does not exist", $testpage => $IkiWiki::DEPEND_PRESENCE
);
2253 sub match_creation_day
($$;@
) {
2254 if ((gmtime($IkiWiki::pagectime
{shift()}))[3] == shift) {
2255 return IkiWiki
::SuccessReason
->new('creation_day matched');
2258 return IkiWiki
::FailReason
->new('creation_day did not match');
2262 sub match_creation_month
($$;@
) {
2263 if ((gmtime($IkiWiki::pagectime
{shift()}))[4] + 1 == shift) {
2264 return IkiWiki
::SuccessReason
->new('creation_month matched');
2267 return IkiWiki
::FailReason
->new('creation_month did not match');
2271 sub match_creation_year
($$;@
) {
2272 if ((gmtime($IkiWiki::pagectime
{shift()}))[5] + 1900 == shift) {
2273 return IkiWiki
::SuccessReason
->new('creation_year matched');
2276 return IkiWiki
::FailReason
->new('creation_year did not match');
2280 sub match_user
($$;@
) {
2285 my $regexp=IkiWiki
::glob2re
($user);
2287 if (! exists $params{user
}) {
2288 return IkiWiki
::ErrorReason
->new("no user specified");
2291 if (defined $params{user
} && $params{user
}=~/^$regexp$/i) {
2292 return IkiWiki
::SuccessReason
->new("user is $user");
2294 elsif (! defined $params{user
}) {
2295 return IkiWiki
::FailReason
->new("not logged in");
2298 return IkiWiki
::FailReason
->new("user is $params{user}, not $user");
2302 sub match_admin
($$;@
) {
2307 if (! exists $params{user
}) {
2308 return IkiWiki
::ErrorReason
->new("no user specified");
2311 if (defined $params{user
} && IkiWiki
::is_admin
($params{user
})) {
2312 return IkiWiki
::SuccessReason
->new("user is an admin");
2314 elsif (! defined $params{user
}) {
2315 return IkiWiki
::FailReason
->new("not logged in");
2318 return IkiWiki
::FailReason
->new("user is not an admin");
2322 sub match_ip
($$;@
) {
2327 if (! exists $params{ip
}) {
2328 return IkiWiki
::ErrorReason
->new("no IP specified");
2331 if (defined $params{ip
} && lc $params{ip
} eq lc $ip) {
2332 return IkiWiki
::SuccessReason
->new("IP is $ip");
2335 return IkiWiki
::FailReason
->new("IP is $params{ip}, not $ip");