7 use open qw{:utf8 :std};
9 use vars qw{%config %links %oldlinks %oldpagemtime %pagectime
10 %renderedfiles %pagesources %depends %hooks};
12 sub defaultconfig () { #{{{
13 wiki_file_prune_regexp => qr{((^|/).svn/|\.\.|^\.|\/\.|\.html?$|\.rss$)},
14 wiki_link_regexp => qr/\[\[(?:([^\]\|]+)\|)?([^\s\]]+)\]\]/,
15 wiki_processor_regexp => qr/\[\[(\w+)\s+([^\]]*)\]\]/,
16 wiki_file_regexp => qr/(^[-[:alnum:]_.:\/+]+$)/,
19 default_pageext => ".mdwn",
40 templatedir => "/usr/share/ikiwiki/templates",
41 underlaydir => "/usr/share/ikiwiki/basewiki",
45 plugin => [qw{mdwn inline htmlscrubber}],
49 sub checkconfig () { #{{{
50 if ($config{cgi} && ! length $config{url}) {
51 error("Must specify url to wiki with --url when using --cgi\n");
53 if ($config{rss} && ! length $config{url}) {
54 error("Must specify url to wiki with --url when using --rss\n");
57 $config{wikistatedir}="$config{srcdir}/.ikiwiki"
58 unless exists $config{wikistatedir};
61 eval qq{require IkiWiki::Rcs::$config{rcs}};
63 error("Failed to load RCS module IkiWiki::Rcs::$config{rcs}: $@");
67 require IkiWiki::Rcs::Stub;
70 foreach my $plugin (@{$config{plugin}}) {
71 my $mod="IkiWiki::Plugin::".possibly_foolish_untaint($plugin);
74 error("Failed to load plugin $mod: $@");
78 if (exists $hooks{checkconfig}) {
79 foreach my $id (keys %{$hooks{checkconfig}}) {
80 $hooks{checkconfig}{$id}{call}->();
87 print "Content-type: text/html\n\n";
88 print misctemplate("Error", "<p>Error: @_</p>");
94 return unless $config{verbose};
103 sub possibly_foolish_untaint ($) { #{{{
105 my ($untainted)=$tainted=~/(.*)/;
109 sub basename ($) { #{{{
116 sub dirname ($) { #{{{
123 sub pagetype ($) { #{{{
126 if ($page =~ /\.(.*)$/) {
127 return $1 if exists $hooks{htmlize}{$1};
132 sub pagename ($) { #{{{
135 my $type=pagetype($file);
137 $page=~s/\Q.$type\E*$// if defined $type;
141 sub htmlpage ($) { #{{{
144 return $page.".html";
147 sub srcfile ($) { #{{{
150 return "$config{srcdir}/$file" if -e "$config{srcdir}/$file";
151 return "$config{underlaydir}/$file" if -e "$config{underlaydir}/$file";
152 error("internal error: $file cannot be found");
155 sub readfile ($;$) { #{{{
160 error("cannot read a symlink ($file)");
164 open (IN, $file) || error("failed to read $file: $!");
165 binmode(IN) if ($binary);
171 sub writefile ($$$;$) { #{{{
172 my $file=shift; # can include subdirs
173 my $destdir=shift; # directory to put file in
178 while (length $test) {
179 if (-l "$destdir/$test") {
180 error("cannot write to a symlink ($test)");
182 $test=dirname($test);
185 my $dir=dirname("$destdir/$file");
188 foreach my $s (split(m!/+!, $dir)) {
191 mkdir($d) || error("failed to create directory $d: $!");
196 open (OUT, ">$destdir/$file") || error("failed to write $destdir/$file: $!");
197 binmode(OUT) if ($binary);
202 sub bestlink ($$) { #{{{
203 # Given a page and the text of a link on the page, determine which
204 # existing page that link best points to. Prefers pages under a
205 # subdirectory with the same name as the source page, failing that
206 # goes down the directory tree to the base looking for matching
214 $l.="/" if length $l;
217 if (exists $links{$l}) {
218 #debug("for $page, \"$link\", use $l");
221 } while $cwd=~s!/?[^/]+$!!;
223 #print STDERR "warning: page $page, broken link: $link\n";
227 sub isinlinableimage ($) { #{{{
230 $file=~/\.(png|gif|jpg|jpeg)$/i;
233 sub pagetitle ($) { #{{{
235 $page=~s/__(\d+)__/&#$1;/g;
240 sub titlepage ($) { #{{{
243 $title=~s/([^-[:alnum:]_:+\/.])/"__".ord($1)."__"/eg;
247 sub cgiurl (@) { #{{{
250 return $config{cgiurl}."?".join("&", map "$_=$params{$_}", keys %params);
253 sub styleurl (;$) { #{{{
256 return "$config{url}/style.css" if ! defined $page;
259 $page=~s/[^\/]+\//..\//g;
260 return $page."style.css";
263 sub htmllink ($$$;$$$) { #{{{
264 my $lpage=shift; # the page doing the linking
265 my $page=shift; # the page that will contain the link (different for inline)
267 my $noimageinline=shift; # don't turn links into inline html images
268 my $forcesubpage=shift; # force a link to a subpage
269 my $linktext=shift; # set to force the link text to something
272 if (! $forcesubpage) {
273 $bestlink=bestlink($lpage, $link);
276 $bestlink="$lpage/".lc($link);
279 $linktext=pagetitle(basename($link)) unless defined $linktext;
281 return $linktext if length $bestlink && $page eq $bestlink;
283 # TODO BUG: %renderedfiles may not have it, if the linked to page
284 # was also added and isn't yet rendered! Note that this bug is
285 # masked by the bug that makes all new files be rendered twice.
286 if (! grep { $_ eq $bestlink } values %renderedfiles) {
287 $bestlink=htmlpage($bestlink);
289 if (! grep { $_ eq $bestlink } values %renderedfiles) {
290 return "<span><a href=\"".
291 cgiurl(do => "create", page => $link, from => $page).
292 "\">?</a>$linktext</span>"
296 $bestlink=File::Spec->abs2rel($bestlink, dirname($page));
298 if (! $noimageinline && isinlinableimage($bestlink)) {
299 return "<img src=\"$bestlink\" alt=\"$linktext\" />";
301 return "<a href=\"$bestlink\">$linktext</a>";
304 sub indexlink () { #{{{
305 return "<a href=\"$config{url}\">$config{wikiname}</a>";
308 sub lockwiki () { #{{{
309 # Take an exclusive lock on the wiki to prevent multiple concurrent
310 # run issues. The lock will be dropped on program exit.
311 if (! -d $config{wikistatedir}) {
312 mkdir($config{wikistatedir});
314 open(WIKILOCK, ">$config{wikistatedir}/lockfile") ||
315 error ("cannot write to $config{wikistatedir}/lockfile: $!");
316 if (! flock(WIKILOCK, 2 | 4)) {
317 debug("wiki seems to be locked, waiting for lock");
318 my $wait=600; # arbitrary, but don't hang forever to
319 # prevent process pileup
321 return if flock(WIKILOCK, 2 | 4);
324 error("wiki is locked; waited $wait seconds without lock being freed (possible stuck process or stale lock?)");
328 sub unlockwiki () { #{{{
332 sub loadindex () { #{{{
333 open (IN, "$config{wikistatedir}/index") || return;
335 $_=possibly_foolish_untaint($_);
339 foreach my $i (split(/ /, $_)) {
340 my ($item, $val)=split(/=/, $i, 2);
341 push @{$items{$item}}, $val;
344 next unless exists $items{src}; # skip bad lines for now
346 my $page=pagename($items{src}[0]);
347 if (! $config{rebuild}) {
348 $pagesources{$page}=$items{src}[0];
349 $oldpagemtime{$page}=$items{mtime}[0];
350 $oldlinks{$page}=[@{$items{link}}];
351 $links{$page}=[@{$items{link}}];
352 $depends{$page}=join(" ", @{$items{depends}})
353 if exists $items{depends};
354 $renderedfiles{$page}=$items{dest}[0];
356 $pagectime{$page}=$items{ctime}[0];
361 sub saveindex () { #{{{
362 if (! -d $config{wikistatedir}) {
363 mkdir($config{wikistatedir});
365 open (OUT, ">$config{wikistatedir}/index") ||
366 error("cannot write to $config{wikistatedir}/index: $!");
367 foreach my $page (keys %oldpagemtime) {
368 next unless $oldpagemtime{$page};
369 my $line="mtime=$oldpagemtime{$page} ".
370 "ctime=$pagectime{$page} ".
371 "src=$pagesources{$page} ".
372 "dest=$renderedfiles{$page}";
373 $line.=" link=$_" foreach @{$links{$page}};
374 if (exists $depends{$page}) {
375 $line.=" depends=$_" foreach split " ", $depends{$page};
377 print OUT $line."\n";
382 sub template_params (@) { #{{{
385 require HTML::Template;
386 return filter => sub {
387 my $text_ref = shift;
388 $$text_ref=&Encode::decode_utf8($$text_ref);
390 filename => "$config{templatedir}/$filename", @_;
393 sub template ($;@) { #{{{
394 HTML::Template->new(template_params(@_));
397 sub misctemplate ($$) { #{{{
401 my $template=template("misc.tmpl");
404 indexlink => indexlink(),
405 wikiname => $config{wikiname},
406 pagebody => $pagebody,
407 styleurl => styleurl(),
408 baseurl => "$config{url}/",
410 return $template->output;
413 sub glob_match ($$) { #{{{
417 if ($glob =~ /^link\((.+)\)$/) {
418 my $rev = $links{$page} or return undef;
419 foreach my $p (@$rev) {
420 return 1 if lc $p eq $1;
423 } elsif ($glob =~ /^backlink\((.+)\)$/) {
424 my $rev = $links{$1} or return undef;
425 foreach my $p (@$rev) {
426 return 1 if lc $p eq $page;
430 # turn glob into safe regexp
431 $glob=quotemeta($glob);
436 return $page=~/^$glob$/i;
440 sub globlist_match ($$) { #{{{
442 my @globlist=split(" ", shift);
444 # check any negated globs first
445 foreach my $glob (@globlist) {
446 return 0 if $glob=~/^!(.*)/ && glob_match($page, $1);
449 foreach my $glob (@globlist) {
450 return 1 if glob_match($page, $glob);
459 if (! exists $param{type} || ! ref $param{call} || ! exists $param{id}) {
460 error "hook requires type, call, and id parameters";
463 $hooks{$param{type}}{$param{id}}=\%param;