11 my $backlinks_calculated=0;
13 sub calculate_backlinks () { #{{{
14 return if $backlinks_calculated;
16 foreach my $page (keys %links) {
17 foreach my $link (@{$links{$page}}) {
18 my $bestlink=bestlink($page, $link);
19 if (length $bestlink && $bestlink ne $page) {
20 $backlinks{$bestlink}{$page}=1;
24 $backlinks_calculated=1;
27 sub backlinks ($) { #{{{
30 calculate_backlinks();
33 foreach my $p (keys %{$backlinks{$page}}) {
34 my $href=urlto($p, $page);
36 # Trim common dir prefixes from both pages.
38 my $page_trimmed=$page;
40 1 while (($dir)=$page_trimmed=~m!^([^/]+/)!) &&
42 $p_trimmed=~s/^\Q$dir\E// &&
43 $page_trimmed=~s/^\Q$dir\E//;
45 push @links, { url => $href, page => pagetitle($p_trimmed) };
50 sub parentlinks ($) { #{{{
56 my $title=$config{wikiname};
58 foreach my $dir (split("/", $page)) {
59 next if $dir eq 'index';
60 push @ret, { url => urlto($path, $page), page => $title };
62 $title=pagetitle($dir);
67 sub genpage ($$) { #{{{
72 run_hooks(templatefile => sub {
73 return if defined $templatefile;
74 my $file=shift->(page => $page);
75 if (defined $file && defined template_file($file)) {
79 my $template=template(defined $templatefile ? $templatefile : 'page.tmpl', blind_cache => 1);
82 if (length $config{cgiurl}) {
83 $template->param(editurl => cgiurl(do => "edit", page => $page));
84 $template->param(prefsurl => cgiurl(do => "prefs"));
88 if (length $config{historyurl}) {
89 my $u=$config{historyurl};
90 $u=~s/\[\[file\]\]/$pagesources{$page}/g;
91 $template->param(historyurl => $u);
94 if ($config{discussion}) {
95 my $discussionlink=gettext("discussion");
96 if ($page !~ /.*\/\Q$discussionlink\E$/ &&
97 (length $config{cgiurl} ||
98 exists $links{$page."/".$discussionlink})) {
99 $template->param(discussionlink => htmllink($page, $page, gettext("Discussion"), noimageinline => 1, forcesubpage => 1));
105 $template->param(have_actions => 1);
108 my @backlinks=sort { $a->{page} cmp $b->{page} } backlinks($page);
109 my ($backlinks, $more_backlinks);
110 if (@backlinks <= $config{numbacklinks} || ! $config{numbacklinks}) {
111 $backlinks=\@backlinks;
115 $backlinks=[@backlinks[0..$config{numbacklinks}-1]];
116 $more_backlinks=[@backlinks[$config{numbacklinks}..$#backlinks]];
120 title => $page eq 'index'
122 : pagetitle(basename($page)),
123 wikiname => $config{wikiname},
124 parentlinks => [parentlinks($page)],
126 backlinks => $backlinks,
127 more_backlinks => $more_backlinks,
128 mtime => displaytime($pagemtime{$page}),
129 ctime => displaytime($pagectime{$page}),
130 baseurl => baseurl($page),
133 run_hooks(pagetemplate => sub {
134 shift->(page => $page, destpage => $page, template => $template);
137 $content=$template->output;
139 run_hooks(format => sub {
152 my $type=pagetype($file);
154 my $srcfile=srcfile($file);
155 my $content=readfile($srcfile);
156 my $page=pagename($file);
157 will_render($page, htmlpage($page), 1);
159 if ($config{discussion}) {
160 # Discussion links are a special case since they're
161 # not in the text of the page, but on its template.
162 $links{$page}=[ $page."/".gettext("discussion") ];
168 run_hooks(scan => sub {
175 # Preprocess in scan-only mode.
176 preprocess($page, $page, $content, 1);
179 will_render($file, $file, 1);
183 sub fast_file_copy (@) { #{{{
191 my ($len, $buf, $written);
192 while ($len = sysread $srcfd, $buf, $blksize) {
193 if (! defined $len) {
194 next if $! =~ /^Interrupted/;
195 error("failed to read $srcfile: $!", $cleanup);
199 defined($written = syswrite $destfd, $buf, $len, $offset)
200 or error("failed to write $destfile: $!", $cleanup);
207 sub render ($) { #{{{
210 my $type=pagetype($file);
211 my $srcfile=srcfile($file);
213 my $page=pagename($file);
214 delete $depends{$page};
215 will_render($page, htmlpage($page), 1);
216 return if $type=~/^_/;
218 my $content=htmlize($page, $page, $type,
219 linkify($page, $page,
220 preprocess($page, $page,
222 readfile($srcfile)))));
224 my $output=htmlpage($page);
225 writefile($output, $config{destdir}, genpage($page, $content));
228 delete $depends{$file};
229 will_render($file, $file, 1);
231 if ($config{hardlink}) {
232 # only hardlink if owned by same user
233 my @stat=stat($srcfile);
234 if ($stat[4] == $>) {
235 prep_writefile($file, $config{destdir});
236 unlink($config{destdir}."/".$file);
237 if (link($srcfile, $config{destdir}."/".$file)) {
241 # if hardlink fails, fall back to copying
244 my $srcfd=readfile($srcfile, 1, 1);
245 writefile($file, $config{destdir}, undef, 1, sub {
246 fast_file_copy($srcfile, $file, $srcfd, @_);
255 my $dir=dirname($file);
256 while (rmdir($dir)) {
261 sub refresh () { #{{{
262 # security check, avoid following symlinks in the srcdir path
263 my $test=$config{srcdir};
264 while (length $test) {
266 error("symlink found in srcdir path ($test)");
268 unless ($test=~s/\/+$//) {
269 $test=dirname($test);
273 run_hooks(refresh => sub { shift->() });
275 # find existing pages
278 eval q{use File::Find};
284 if (file_pruned($_, $config{srcdir})) {
285 $File::Find::prune=1;
287 elsif (! -l $_ && ! -d _) {
288 my ($f)=/$config{wiki_file_regexp}/; # untaint
290 warn(sprintf(gettext("skipping bad filename %s"), $_)."\n");
293 $f=~s/^\Q$config{srcdir}\E\/?//;
295 $exists{pagename($f)}=1;
300 foreach my $dir (@{$config{underlaydirs}}, $config{underlaydir}) {
305 if (file_pruned($_, $dir)) {
306 $File::Find::prune=1;
308 elsif (! -l $_ && ! -d _) {
309 my ($f)=/$config{wiki_file_regexp}/; # untaint
311 warn(sprintf(gettext("skipping bad filename %s"), $_)."\n");
314 $f=~s/^\Q$dir\E\/?//;
316 # override attacks; see
318 if (! -l "$config{srcdir}/$f" &&
320 my $page=pagename($f);
321 if (! $exists{$page}) {
332 my (%rendered, @add, @del, @internal);
333 # check for added or removed pages
334 foreach my $file (@files) {
335 my $page=pagename($file);
336 $pagesources{$page}=$file;
337 if (! $pagemtime{$page}) {
338 if (isinternal($page)) {
339 push @internal, $file;
343 if ($config{getctime} && -e "$config{srcdir}/$file") {
345 my $time=rcs_getctime("$config{srcdir}/$file");
346 $pagectime{$page}=$time;
353 $pagecase{lc $page}=$page;
354 if (! exists $pagectime{$page}) {
355 $pagectime{$page}=(srcfile_stat($file))[10];
359 foreach my $page (keys %pagemtime) {
360 if (! $exists{$page}) {
361 if (isinternal($page)) {
362 push @internal, $pagesources{$page};
365 debug(sprintf(gettext("removing old page %s"), $page));
366 push @del, $pagesources{$page};
369 $renderedfiles{$page}=[];
371 prune($config{destdir}."/".$_)
372 foreach @{$oldrenderedfiles{$page}};
373 delete $pagesources{$page};
374 foreach (keys %destsources) {
375 if ($destsources{$_} eq $page) {
376 delete $destsources{$_};
382 # find changed and new files
384 foreach my $file (@files) {
385 my $page=pagename($file);
386 my ($srcfile, @stat)=srcfile_stat($file);
387 if (! exists $pagemtime{$page} ||
388 $stat[9] > $pagemtime{$page} ||
389 $forcerebuild{$page}) {
390 $pagemtime{$page}=$stat[9];
391 if (isinternal($page)) {
392 push @internal, $file;
393 # Preprocess internal page in scan-only mode.
394 preprocess($page, $page, readfile($srcfile), 1);
397 push @needsbuild, $file;
401 run_hooks(needsbuild => sub { shift->(\@needsbuild) });
403 # scan and render files
404 foreach my $file (@needsbuild) {
405 debug(sprintf(gettext("scanning %s"), $file));
408 calculate_backlinks();
409 foreach my $file (@needsbuild) {
410 debug(sprintf(gettext("rendering %s"), $file));
414 foreach my $file (@internal) {
415 # internal pages are not rendered
416 my $page=pagename($file);
417 delete $depends{$page};
418 foreach my $old (@{$renderedfiles{$page}}) {
419 delete $destsources{$old};
421 $renderedfiles{$page}=[];
424 # rebuild pages that link to added or removed pages
426 foreach my $f (@add, @del) {
428 foreach my $page (keys %{$backlinks{$p}}) {
429 my $file=$pagesources{$page};
430 next if $rendered{$file};
431 debug(sprintf(gettext("rendering %s, which links to %s"), $file, $p));
438 if (%rendered || @del || @internal) {
439 my @changed=(keys %rendered, @del);
441 # rebuild dependant pages
442 foreach my $f (@files) {
443 next if $rendered{$f};
445 if (exists $depends{$p}) {
446 # only consider internal files
447 # if the page explicitly depends on such files
448 foreach my $file (@changed, $depends{$p}=~/internal\(/ ? @internal : ()) {
450 my $page=pagename($file);
451 if (pagespec_match($page, $depends{$p}, location => $p)) {
452 debug(sprintf(gettext("rendering %s, which depends on %s"), $f, $page));
461 # handle backlinks; if a page has added/removed links,
462 # update the pages it links to
464 foreach my $file (@changed) {
465 my $page=pagename($file);
467 if (exists $links{$page}) {
468 foreach my $link (map { bestlink($page, $_) } @{$links{$page}}) {
470 (! exists $oldlinks{$page} ||
471 ! grep { bestlink($page, $_) eq $link } @{$oldlinks{$page}})) {
472 $linkchanged{$link}=1;
476 if (exists $oldlinks{$page}) {
477 foreach my $link (map { bestlink($page, $_) } @{$oldlinks{$page}}) {
479 (! exists $links{$page} ||
480 ! grep { bestlink($page, $_) eq $link } @{$links{$page}})) {
481 $linkchanged{$link}=1;
487 foreach my $link (keys %linkchanged) {
488 my $linkfile=$pagesources{$link};
489 if (defined $linkfile) {
490 next if $rendered{$linkfile};
491 debug(sprintf(gettext("rendering %s, to update its backlinks"), $linkfile));
493 $rendered{$linkfile}=1;
498 # remove no longer rendered files
499 foreach my $src (keys %rendered) {
500 my $page=pagename($src);
501 foreach my $file (@{$oldrenderedfiles{$page}}) {
502 if (! grep { $_ eq $file } @{$renderedfiles{$page}}) {
503 debug(sprintf(gettext("removing %s, no longer rendered by %s"), $file, $page));
504 prune($config{destdir}."/".$file);
510 run_hooks(delete => sub { shift->(@del) });
513 run_hooks(change => sub { shift->(keys %rendered) });
517 sub commandline_render () { #{{{
522 my $srcfile=possibly_foolish_untaint($config{render});
524 $file=~s/\Q$config{srcdir}\E\/?//;
526 my $type=pagetype($file);
527 die sprintf(gettext("ikiwiki: cannot render %s"), $srcfile)."\n" unless defined $type;
528 my $content=readfile($srcfile);
529 my $page=pagename($file);
530 $pagesources{$page}=$file;
531 $content=filter($page, $page, $content);
532 $content=preprocess($page, $page, $content);
533 $content=linkify($page, $page, $content);
534 $content=htmlize($page, $page, $type, $content);
535 $pagemtime{$page}=(stat($srcfile))[9];
537 print genpage($page, $content);