8 use open qw{:utf8 :std};
10 use vars qw{%config %links %oldlinks %oldpagemtime %pagectime %pagecase
11 %renderedfiles %oldrenderedfiles %pagesources %depends %hooks
14 use Exporter q{import};
15 our @EXPORT = qw(hook debug error template htmlpage add_depends pagespec_match
16 bestlink htmllink readfile writefile pagetype srcfile pagename
17 displaytime will_render
18 %config %links %renderedfiles %pagesources);
19 our $VERSION = 1.01; # plugin interface version
24 memoize("pagespec_translate");
25 memoize("file_pruned");
27 my $installdir=''; # INSTALLDIR_AUTOREPLACE done by Makefile, DNE
28 our $version='unknown'; # VERSION_AUTOREPLACE done by Makefile, DNE
30 sub defaultconfig () { #{{{
31 wiki_file_prune_regexps => [qr/\.\./, qr/^\./, qr/\/\./, qr/\.x?html?$/,
32 qr/(^|\/).svn\//, qr/.arch-ids\//, qr/{arch}\//],
33 wiki_link_regexp => qr/\[\[(?:([^\]\|]+)\|)?([^\s\]]+)\]\]/,
34 wiki_file_regexp => qr/(^[-[:alnum:]_.:\/+]+$)/,
35 web_commit_regexp => qr/^web commit (by (.*?(?=: |$))|from (\d+\.\d+\.\d+\.\d+)):?(.*)/,
39 default_pageext => "mdwn",
62 templatedir => "$installdir/share/ikiwiki/templates",
63 underlaydir => "$installdir/share/ikiwiki/basewiki",
67 plugin => [qw{mdwn inline htmlscrubber passwordauth}],
75 sub checkconfig () { #{{{
76 # locale stuff; avoid LC_ALL since it overrides everything
77 if (defined $ENV{LC_ALL}) {
78 $ENV{LANG} = $ENV{LC_ALL};
81 if (defined $config{locale}) {
84 $ENV{LANG} = $config{locale}
85 if POSIX::setlocale(&POSIX::LC_TIME, $config{locale});
88 if ($config{w3mmode}) {
89 eval q{use Cwd q{abs_path}};
91 $config{srcdir}=possibly_foolish_untaint(abs_path($config{srcdir}));
92 $config{destdir}=possibly_foolish_untaint(abs_path($config{destdir}));
93 $config{cgiurl}="file:///\$LIB/ikiwiki-w3m.cgi/".$config{cgiurl}
94 unless $config{cgiurl} =~ m!file:///!;
95 $config{url}="file://".$config{destdir};
98 if ($config{cgi} && ! length $config{url}) {
99 error("Must specify url to wiki with --url when using --cgi\n");
102 $config{wikistatedir}="$config{srcdir}/.ikiwiki"
103 unless exists $config{wikistatedir};
106 eval qq{require IkiWiki::Rcs::$config{rcs}};
108 error("Failed to load RCS module IkiWiki::Rcs::$config{rcs}: $@");
112 require IkiWiki::Rcs::Stub;
115 run_hooks(checkconfig => sub { shift->() });
118 sub loadplugins () { #{{{
119 loadplugin($_) foreach @{$config{plugin}};
121 run_hooks(getopt => sub { shift->() });
122 if (grep /^-/, @ARGV) {
123 print STDERR "Unknown option: $_\n"
124 foreach grep /^-/, @ARGV;
129 sub loadplugin ($) { #{{{
132 my $mod="IkiWiki::Plugin::".possibly_foolish_untaint($plugin);
135 error("Failed to load plugin $mod: $@");
141 print "Content-type: text/html\n\n";
142 print misctemplate("Error", "<p>Error: @_</p>");
144 log_message(error => @_);
149 return unless $config{verbose};
150 log_message(debug => @_);
154 sub log_message ($$) { #{{{
157 if ($config{syslog}) {
160 Sys::Syslog::setlogsock('unix');
161 Sys::Syslog::openlog('ikiwiki', '', 'user');
165 Sys::Syslog::syslog($type, join(" ", @_));
168 elsif (! $config{cgi}) {
176 sub possibly_foolish_untaint ($) { #{{{
178 my ($untainted)=$tainted=~/(.*)/;
182 sub basename ($) { #{{{
189 sub dirname ($) { #{{{
196 sub pagetype ($) { #{{{
199 if ($page =~ /\.([^.]+)$/) {
200 return $1 if exists $hooks{htmlize}{$1};
205 sub pagename ($) { #{{{
208 my $type=pagetype($file);
210 $page=~s/\Q.$type\E*$// if defined $type;
214 sub htmlpage ($) { #{{{
217 return $page.".html";
220 sub srcfile ($) { #{{{
223 return "$config{srcdir}/$file" if -e "$config{srcdir}/$file";
224 return "$config{underlaydir}/$file" if -e "$config{underlaydir}/$file";
225 error("internal error: $file cannot be found");
228 sub readfile ($;$) { #{{{
233 error("cannot read a symlink ($file)");
237 open (IN, $file) || error("failed to read $file: $!");
238 binmode(IN) if ($binary);
244 sub writefile ($$$;$) { #{{{
245 my $file=shift; # can include subdirs
246 my $destdir=shift; # directory to put file in
251 while (length $test) {
252 if (-l "$destdir/$test") {
253 error("cannot write to a symlink ($test)");
255 $test=dirname($test);
258 my $dir=dirname("$destdir/$file");
261 foreach my $s (split(m!/+!, $dir)) {
264 mkdir($d) || error("failed to create directory $d: $!");
269 open (OUT, ">$destdir/$file") || error("failed to write $destdir/$file: $!");
270 binmode(OUT) if ($binary);
276 sub will_render ($$;$) { #{{{
281 # Important security check.
282 if (-e "$config{destdir}/$dest" && ! $config{rebuild} &&
283 ! grep { $_ eq $dest } (@{$renderedfiles{$page}}, @{$oldrenderedfiles{$page}})) {
284 error("$config{destdir}/$dest independently created, not overwriting with version from $page");
287 if (! $clear || $cleared{$page}) {
288 $renderedfiles{$page}=[$dest, grep { $_ ne $dest } @{$renderedfiles{$page}}];
291 $renderedfiles{$page}=[$dest];
296 sub bestlink ($$) { #{{{
301 if ($link=~s/^\/+//) {
308 $l.="/" if length $l;
311 if (exists $links{$l}) {
314 elsif (exists $pagecase{lc $l}) {
315 return $pagecase{lc $l};
317 } while $cwd=~s!/?[^/]+$!!;
319 #print STDERR "warning: page $page, broken link: $link\n";
323 sub isinlinableimage ($) { #{{{
326 $file=~/\.(png|gif|jpg|jpeg)$/i;
329 sub pagetitle ($;$) { #{{{
334 $page=~s/__(\d+)__/chr($1)/eg;
337 $page=~s/__(\d+)__/&#$1;/g;
344 sub titlepage ($) { #{{{
347 $title=~s/([^-[:alnum:]_:+\/.])/"__".ord($1)."__"/eg;
351 sub cgiurl (@) { #{{{
354 return $config{cgiurl}."?".join("&", map "$_=$params{$_}", keys %params);
357 sub baseurl (;$) { #{{{
360 return "$config{url}/" if ! defined $page;
363 $page=~s/[^\/]+\//..\//g;
367 sub abs2rel ($$) { #{{{
368 # Work around very innefficient behavior in File::Spec if abs2rel
369 # is passed two relative paths. It's much faster if paths are
370 # absolute! (Debian bug #376658; fixed in debian unstable now)
375 my $ret=File::Spec->abs2rel($path, $base);
376 $ret=~s/^// if defined $ret;
380 sub displaytime ($) { #{{{
385 # strftime doesn't know about encodings, so make sure
386 # its output is properly treated as utf8
387 return decode_utf8(POSIX::strftime(
388 $config{timeformat}, localtime($time)));
391 sub htmllink ($$$;$$$) { #{{{
392 my $lpage=shift; # the page doing the linking
393 my $page=shift; # the page that will contain the link (different for inline)
395 my $noimageinline=shift; # don't turn links into inline html images
396 my $forcesubpage=shift; # force a link to a subpage
397 my $linktext=shift; # set to force the link text to something
400 if (! $forcesubpage) {
401 $bestlink=bestlink($lpage, $link);
404 $bestlink="$lpage/".lc($link);
407 $linktext=pagetitle(basename($link)) unless defined $linktext;
409 return "<span class=\"selflink\">$linktext</span>"
410 if length $bestlink && $page eq $bestlink;
412 if (! grep { $_ eq $bestlink } map { @{$_} } values %renderedfiles) {
413 $bestlink=htmlpage($bestlink);
415 if (! grep { $_ eq $bestlink } map { @{$_} } values %renderedfiles) {
416 return $linktext unless length $config{cgiurl};
417 return "<span><a href=\"".
418 cgiurl(do => "create", page => lc($link), from => $page).
419 "\">?</a>$linktext</span>"
422 $bestlink=abs2rel($bestlink, dirname($page));
424 if (! $noimageinline && isinlinableimage($bestlink)) {
425 return "<img src=\"$bestlink\" alt=\"$linktext\" />";
427 return "<a href=\"$bestlink\">$linktext</a>";
430 sub htmlize ($$$) { #{{{
435 if (exists $hooks{htmlize}{$type}) {
436 $content=$hooks{htmlize}{$type}{call}->(
442 error("htmlization of $type not supported");
445 run_hooks(sanitize => sub {
455 sub linkify ($$$) { #{{{
456 my $lpage=shift; # the page containing the links
457 my $page=shift; # the page the link will end up on (different for inline)
460 $content =~ s{(\\?)$config{wiki_link_regexp}}{
461 $2 ? ( $1 ? "[[$2|$3]]" : htmllink($lpage, $page, titlepage($3), 0, 0, pagetitle($2)))
462 : ( $1 ? "[[$3]]" : htmllink($lpage, $page, titlepage($3)))
469 sub preprocess ($$$;$) { #{{{
470 my $page=shift; # the page the data comes from
471 my $destpage=shift; # the page the data will appear in (different for inline)
479 if (length $escape) {
480 return "[[$command $params]]";
482 elsif (exists $hooks{preprocess}{$command}) {
483 return "" if $scan && ! $hooks{preprocess}{$command}{scan};
484 # Note: preserve order of params, some plugins may
485 # consider it significant.
487 while ($params =~ /(?:(\w+)=)?(?:"""(.*?)"""|"([^"]+)"|(\S+))(?:\s+|$)/sg) {
504 push @params, $key, $val;
507 push @params, $val, '';
510 if ($preprocessing{$page}++ > 3) {
511 # Avoid loops of preprocessed pages preprocessing
512 # other pages that preprocess them, etc.
513 return "[[$command preprocessing loop detected on $page at depth $preprocessing{$page}]]";
515 my $ret=$hooks{preprocess}{$command}{call}->(
518 destpage => $destpage,
520 $preprocessing{$page}--;
524 return "[[$command $params]]";
528 $content =~ s{(\\?)\[\[(\w+)\s+((?:(?:\w+=)?(?:""".*?"""|"[^"]+"|[^\s\]]+)\s*)*)\]\]}{$handle->($1, $2, $3)}seg;
532 sub filter ($$) { #{{{
536 run_hooks(filter => sub {
537 $content=shift->(page => $page, content => $content);
543 sub indexlink () { #{{{
544 return "<a href=\"$config{url}\">$config{wikiname}</a>";
547 sub lockwiki () { #{{{
548 # Take an exclusive lock on the wiki to prevent multiple concurrent
549 # run issues. The lock will be dropped on program exit.
550 if (! -d $config{wikistatedir}) {
551 mkdir($config{wikistatedir});
553 open(WIKILOCK, ">$config{wikistatedir}/lockfile") ||
554 error ("cannot write to $config{wikistatedir}/lockfile: $!");
555 if (! flock(WIKILOCK, 2 | 4)) {
556 debug("wiki seems to be locked, waiting for lock");
557 my $wait=600; # arbitrary, but don't hang forever to
558 # prevent process pileup
560 return if flock(WIKILOCK, 2 | 4);
563 error("wiki is locked; waited $wait seconds without lock being freed (possible stuck process or stale lock?)");
567 sub unlockwiki () { #{{{
571 sub loadindex () { #{{{
572 open (IN, "$config{wikistatedir}/index") || return;
574 $_=possibly_foolish_untaint($_);
579 foreach my $i (split(/ /, $_)) {
580 my ($item, $val)=split(/=/, $i, 2);
581 push @{$items{$item}}, decode_entities($val);
584 next unless exists $items{src}; # skip bad lines for now
586 my $page=pagename($items{src}[0]);
587 if (! $config{rebuild}) {
588 $pagesources{$page}=$items{src}[0];
589 $oldpagemtime{$page}=$items{mtime}[0];
590 $oldlinks{$page}=[@{$items{link}}];
591 $links{$page}=[@{$items{link}}];
592 $depends{$page}=$items{depends}[0] if exists $items{depends};
593 $renderedfiles{$page}=[@{$items{dest}}];
594 $oldrenderedfiles{$page}=[@{$items{dest}}];
595 $pagecase{lc $page}=$page;
597 $pagectime{$page}=$items{ctime}[0];
602 sub saveindex () { #{{{
603 run_hooks(savestate => sub { shift->() });
605 if (! -d $config{wikistatedir}) {
606 mkdir($config{wikistatedir});
608 open (OUT, ">$config{wikistatedir}/index") ||
609 error("cannot write to $config{wikistatedir}/index: $!");
610 foreach my $page (keys %oldpagemtime) {
611 next unless $oldpagemtime{$page};
612 my $line="mtime=$oldpagemtime{$page} ".
613 "ctime=$pagectime{$page} ".
614 "src=$pagesources{$page}";
615 $line.=" dest=$_" foreach @{$renderedfiles{$page}};
617 $line.=" link=$_" foreach grep { ++$count{$_} == 1 } @{$links{$page}};
618 if (exists $depends{$page}) {
619 $line.=" depends=".encode_entities($depends{$page}, " \t\n");
621 print OUT $line."\n";
626 sub template_params (@) { #{{{
629 require HTML::Template;
630 return filter => sub {
631 my $text_ref = shift;
632 $$text_ref=&Encode::decode_utf8($$text_ref);
634 filename => "$config{templatedir}/$filename",
635 loop_context_vars => 1,
636 die_on_bad_params => 0,
640 sub template ($;@) { #{{{
641 HTML::Template->new(template_params(@_));
644 sub misctemplate ($$;@) { #{{{
648 my $template=template("misc.tmpl");
651 indexlink => indexlink(),
652 wikiname => $config{wikiname},
653 pagebody => $pagebody,
654 baseurl => baseurl(),
657 run_hooks(pagetemplate => sub {
658 shift->(page => "", destpage => "", template => $template);
660 return $template->output;
666 if (! exists $param{type} || ! ref $param{call} || ! exists $param{id}) {
667 error "hook requires type, call, and id parameters";
670 return if $param{no_override} && exists $hooks{$param{type}}{$param{id}};
672 $hooks{$param{type}}{$param{id}}=\%param;
675 sub run_hooks ($$) { # {{{
676 # Calls the given sub for each hook of the given type,
677 # passing it the hook function to call.
681 if (exists $hooks{$type}) {
683 foreach my $id (keys %{$hooks{$type}}) {
684 if ($hooks{$type}{$id}{last}) {
688 $sub->($hooks{$type}{$id}{call});
690 foreach my $id (@deferred) {
691 $sub->($hooks{$type}{$id}{call});
696 sub globlist_to_pagespec ($) { #{{{
697 my @globlist=split(' ', shift);
700 foreach my $glob (@globlist) {
701 if ($glob=~/^!(.*)/) {
709 my $spec=join(" or ", @spec);
711 my $skip=join(" and ", @skip);
713 $spec="$skip and ($spec)";
722 sub is_globlist ($) { #{{{
724 $s=~/[^\s]+\s+([^\s]+)/ && $1 ne "and" && $1 ne "or";
727 sub safequote ($) { #{{{
733 sub pagespec_merge ($$) { #{{{
737 return $a if $a eq $b;
739 # Support for old-style GlobLists.
740 if (is_globlist($a)) {
741 $a=globlist_to_pagespec($a);
743 if (is_globlist($b)) {
744 $b=globlist_to_pagespec($b);
747 return "($a) or ($b)";
750 sub pagespec_translate ($) { #{{{
751 # This assumes that $page is in scope in the function
752 # that evalulates the translated pagespec code.
755 # Support for old-style GlobLists.
756 if (is_globlist($spec)) {
757 $spec=globlist_to_pagespec($spec);
760 # Convert spec to perl code.
762 while ($spec=~m/\s*(\!|\(|\)|\w+\([^\)]+\)|[^\s()]+)\s*/ig) {
764 if (lc $word eq "and") {
767 elsif (lc $word eq "or") {
770 elsif ($word eq "(" || $word eq ")" || $word eq "!") {
773 elsif ($word =~ /^(link|backlink|created_before|created_after|creation_month|creation_year|creation_day)\((.+)\)$/) {
774 $code.=" match_$1(\$page, ".safequote($2).")";
777 $code.=" match_glob(\$page, ".safequote($word).")";
784 sub add_depends ($$) { #{{{
788 if (! exists $depends{$page}) {
789 $depends{$page}=$pagespec;
792 $depends{$page}=pagespec_merge($depends{$page}, $pagespec);
796 sub file_pruned ($$) { #{{{
798 my $file=File::Spec->canonpath(shift);
799 my $base=File::Spec->canonpath(shift);
800 $file=~s#^\Q$base\E/*##;
802 my $regexp='('.join('|', @{$config{wiki_file_prune_regexps}}).')';
806 sub pagespec_match ($$) { #{{{
810 return eval pagespec_translate($spec);
813 sub match_glob ($$) { #{{{
817 # turn glob into safe regexp
818 $glob=quotemeta($glob);
822 return $page=~/^$glob$/i;
825 sub match_link ($$) { #{{{
829 my $links = $links{$page} or return undef;
830 foreach my $p (@$links) {
831 return 1 if lc $p eq $link;
836 sub match_backlink ($$) { #{{{
837 match_link(pop, pop);
840 sub match_created_before ($$) { #{{{
844 if (exists $pagectime{$testpage}) {
845 return $pagectime{$page} < $pagectime{$testpage};
852 sub match_created_after ($$) { #{{{
856 if (exists $pagectime{$testpage}) {
857 return $pagectime{$page} > $pagectime{$testpage};
864 sub match_creation_day ($$) { #{{{
865 return ((gmtime($pagectime{shift()}))[3] == shift);
868 sub match_creation_month ($$) { #{{{
869 return ((gmtime($pagectime{shift()}))[4] + 1 == shift);
872 sub match_creation_year ($$) { #{{{
873 return ((gmtime($pagectime{shift()}))[5] + 1900 == shift);