summaryrefslogtreecommitdiff
path: root/IkiWiki/Render.pm
blob: 8375cfe7a9d3e984253f417415e12a8927baa51f (plain)
  1. package IkiWiki;
  2. use warnings;
  3. use strict;
  4. use File::Spec;
  5. sub linkify ($$) { #{{{
  6. my $content=shift;
  7. my $page=shift;
  8. $content =~ s{(\\?)$config{wiki_link_regexp}}{
  9. $2 ? ( $1 ? "[[$2|$3]]" : htmllink($page, titlepage($3), 0, 0, pagetitle($2)))
  10. : ( $1 ? "[[$3]]" : htmllink($page, titlepage($3)))
  11. }eg;
  12. return $content;
  13. } #}}}
  14. sub htmlize ($$) { #{{{
  15. my $type=shift;
  16. my $content=shift;
  17. if (! $INC{"/usr/bin/markdown"}) {
  18. no warnings 'once';
  19. $blosxom::version="is a proper perl module too much to ask?";
  20. use warnings 'all';
  21. do "/usr/bin/markdown";
  22. }
  23. if ($type eq '.mdwn') {
  24. return Markdown::Markdown($content);
  25. }
  26. else {
  27. error("htmlization of $type not supported");
  28. }
  29. } #}}}
  30. sub backlinks ($) { #{{{
  31. my $page=shift;
  32. my @links;
  33. foreach my $p (keys %links) {
  34. next if bestlink($page, $p) eq $page;
  35. if (grep { length $_ && bestlink($p, $_) eq $page } @{$links{$p}}) {
  36. my $href=File::Spec->abs2rel(htmlpage($p), dirname($page));
  37. # Trim common dir prefixes from both pages.
  38. my $p_trimmed=$p;
  39. my $page_trimmed=$page;
  40. my $dir;
  41. 1 while (($dir)=$page_trimmed=~m!^([^/]+/)!) &&
  42. defined $dir &&
  43. $p_trimmed=~s/^\Q$dir\E// &&
  44. $page_trimmed=~s/^\Q$dir\E//;
  45. push @links, { url => $href, page => $p_trimmed };
  46. }
  47. }
  48. return sort { $a->{page} cmp $b->{page} } @links;
  49. } #}}}
  50. sub parentlinks ($) { #{{{
  51. my $page=shift;
  52. my @ret;
  53. my $pagelink="";
  54. my $path="";
  55. my $skip=1;
  56. foreach my $dir (reverse split("/", $page)) {
  57. if (! $skip) {
  58. $path.="../";
  59. unshift @ret, { url => "$path$dir.html", page => $dir };
  60. }
  61. else {
  62. $skip=0;
  63. }
  64. }
  65. unshift @ret, { url => length $path ? $path : ".", page => $config{wikiname} };
  66. return @ret;
  67. } #}}}
  68. sub rsspage ($) { #{{{
  69. my $page=shift;
  70. return $page.".rss";
  71. } #}}}
  72. sub postprocess { #{{{
  73. # Takes content to postprocess followed by a list of postprocessor
  74. # commands and subroutine references to run for the commands.
  75. my $page=shift;
  76. my $content=shift;
  77. my %commands=@_;
  78. my $handle=sub {
  79. my $escape=shift;
  80. my $command=shift;
  81. my $params=shift;
  82. if (length $escape) {
  83. "[[$command $params]]";
  84. }
  85. elsif (exists $commands{$command}) {
  86. my %params;
  87. while ($params =~ /(\w+)=\"([^"]+)"(\s+|$)/g) {
  88. $params{$1}=$2;
  89. }
  90. $commands{$command}->($page, %params);
  91. }
  92. else {
  93. "[[bad directive $command]]";
  94. }
  95. };
  96. $content =~ s{(\\?)$config{wiki_processor_regexp}}{$handle->($1, $2, $3)}eg;
  97. return $content;
  98. } #}}}
  99. sub blog_list ($$) { #{{{
  100. my $globlist=shift;
  101. my $maxitems=shift;
  102. my @list;
  103. foreach my $page (keys %pagesources) {
  104. if (globlist_match($page, $globlist)) {
  105. push @list, $page;
  106. }
  107. }
  108. @list=sort { $pagectime{$b} <=> $pagectime{$a} } @list;
  109. return @list if ! $maxitems || @list <= $maxitems;
  110. return @list[0..$maxitems - 1];
  111. } #}}}
  112. sub get_inline_content ($$) { #{{{
  113. my $parentpage=shift;
  114. my $page=shift;
  115. my $file=$pagesources{$page};
  116. my $type=pagetype($file);
  117. if ($type ne 'unknown') {
  118. return htmlize($type, linkify(readfile(srcfile($file)), $parentpage));
  119. }
  120. else {
  121. return "";
  122. }
  123. } #}}}
  124. sub postprocess_html_inline { #{{{
  125. my $parentpage=shift;
  126. my %params=@_;
  127. if (! exists $params{pages}) {
  128. return "";
  129. }
  130. if (! exists $params{archive}) {
  131. $params{archive}="no";
  132. }
  133. if (! exists $params{show} && $params{archive} eq "no") {
  134. $params{show}=10;
  135. }
  136. $inlinepages{$parentpage}=$params{pages};
  137. my $ret="";
  138. if (exists $params{rootpage}) {
  139. my $formtemplate=HTML::Template->new(blind_cache => 1,
  140. filename => "$config{templatedir}/blogpost.tmpl");
  141. $formtemplate->param(cgiurl => $config{cgiurl});
  142. $formtemplate->param(rootpage => $params{rootpage});
  143. my $form=$formtemplate->output;
  144. $ret.=$form;
  145. }
  146. my $template=HTML::Template->new(blind_cache => 1,
  147. filename => (($params{archive} eq "no")
  148. ? "$config{templatedir}/inlinepage.tmpl"
  149. : "$config{templatedir}/inlinepagetitle.tmpl"));
  150. foreach my $page (blog_list($params{pages}, $params{show})) {
  151. next if $page eq $parentpage;
  152. $template->param(pagelink => htmllink($parentpage, $page));
  153. $template->param(content => get_inline_content($parentpage, $page))
  154. if $params{archive} eq "no";
  155. $template->param(ctime => scalar(gmtime($pagectime{$page})));
  156. $ret.=$template->output;
  157. }
  158. return "</p>$ret<p>";
  159. } #}}}
  160. sub genpage ($$$) { #{{{
  161. my $content=shift;
  162. my $page=shift;
  163. my $mtime=shift;
  164. $content = postprocess($page, $content, inline => \&postprocess_html_inline);
  165. my $title=pagetitle(basename($page));
  166. my $template=HTML::Template->new(blind_cache => 1,
  167. filename => "$config{templatedir}/page.tmpl");
  168. if (length $config{cgiurl}) {
  169. $template->param(editurl => cgiurl(do => "edit", page => $page));
  170. $template->param(prefsurl => cgiurl(do => "prefs"));
  171. if ($config{rcs}) {
  172. $template->param(recentchangesurl => cgiurl(do => "recentchanges"));
  173. }
  174. }
  175. if (length $config{historyurl}) {
  176. my $u=$config{historyurl};
  177. $u=~s/\[\[file\]\]/$pagesources{$page}/g;
  178. $template->param(historyurl => $u);
  179. }
  180. if ($config{hyperestraier}) {
  181. $template->param(hyperestraierurl => cgiurl());
  182. }
  183. if ($config{rss} && $inlinepages{$page}) {
  184. $template->param(rssurl => rsspage(basename($page)));
  185. }
  186. $template->param(
  187. title => $title,
  188. wikiname => $config{wikiname},
  189. parentlinks => [parentlinks($page)],
  190. content => $content,
  191. backlinks => [backlinks($page)],
  192. discussionlink => htmllink($page, "Discussion", 1, 1),
  193. mtime => scalar(gmtime($mtime)),
  194. styleurl => styleurl($page),
  195. );
  196. return $template->output;
  197. } #}}}
  198. sub date_822 ($) { #{{{
  199. my $time=shift;
  200. eval q{use POSIX};
  201. return POSIX::strftime("%a, %d %b %Y %H:%M:%S %z", localtime($time));
  202. } #}}}
  203. sub absolute_urls ($$) { #{{{
  204. # sucky sub because rss sucks
  205. my $content=shift;
  206. my $url=shift;
  207. $url=~s/[^\/]+$//;
  208. $content=~s/<a\s+href="(?!http:\/\/)([^"]+)"/<a href="$url$1"/ig;
  209. $content=~s/<img\s+src="(?!http:\/\/)([^"]+)"/<img src="$url$1"/ig;
  210. return $content;
  211. } #}}}
  212. sub genrss ($$$) { #{{{
  213. my $content=shift;
  214. my $page=shift;
  215. my $mtime=shift;
  216. my $url="$config{url}/".htmlpage($page);
  217. my $template=HTML::Template->new(blind_cache => 1,
  218. filename => "$config{templatedir}/rsspage.tmpl");
  219. my @items;
  220. my $isblog=0;
  221. my $gen_blog=sub {
  222. my $parentpage=shift;
  223. my %params=@_;
  224. if (! exists $params{show}) {
  225. $params{show}=10;
  226. }
  227. if (! exists $params{pages}) {
  228. return "";
  229. }
  230. $isblog=1;
  231. foreach my $page (blog_list($params{pages}, $params{show})) {
  232. next if $page eq $parentpage;
  233. push @items, {
  234. itemtitle => pagetitle(basename($page)),
  235. itemurl => "$config{url}/$renderedfiles{$page}",
  236. itempubdate => date_822($pagectime{$page}),
  237. itemcontent => absolute_urls(get_inline_content($parentpage, $page), $url),
  238. } if exists $renderedfiles{$page};
  239. }
  240. return "";
  241. };
  242. $content = postprocess($page, $content, inline => $gen_blog);
  243. $template->param(
  244. title => $config{wikiname},
  245. pageurl => $url,
  246. items => \@items,
  247. );
  248. return $template->output;
  249. } #}}}
  250. sub check_overwrite ($$) { #{{{
  251. # Important security check. Make sure to call this before saving
  252. # any files to the source directory.
  253. my $dest=shift;
  254. my $src=shift;
  255. if (! exists $renderedfiles{$src} && -e $dest && ! $config{rebuild}) {
  256. error("$dest already exists and was rendered from ".
  257. join(" ",(grep { $renderedfiles{$_} eq $dest } keys
  258. %renderedfiles)).
  259. ", before, so not rendering from $src");
  260. }
  261. } #}}}
  262. sub mtime ($) { #{{{
  263. my $file=shift;
  264. return (stat($file))[9];
  265. } #}}}
  266. sub findlinks ($$) { #{{{
  267. my $content=shift;
  268. my $page=shift;
  269. my @links;
  270. while ($content =~ /(?<!\\)$config{wiki_link_regexp}/g) {
  271. push @links, titlepage($2);
  272. }
  273. # Discussion links are a special case since they're not in the text
  274. # of the page, but on its template.
  275. return @links, "$page/discussion";
  276. } #}}}
  277. sub render ($) { #{{{
  278. my $file=shift;
  279. my $type=pagetype($file);
  280. my $srcfile=srcfile($file);
  281. my $content=readfile($srcfile);
  282. if ($type ne 'unknown') {
  283. my $page=pagename($file);
  284. $links{$page}=[findlinks($content, $page)];
  285. delete $inlinepages{$page};
  286. $content=linkify($content, $page);
  287. $content=htmlize($type, $content);
  288. check_overwrite("$config{destdir}/".htmlpage($page), $page);
  289. writefile(htmlpage($page), $config{destdir},
  290. genpage($content, $page, mtime($srcfile)));
  291. $oldpagemtime{$page}=time;
  292. $renderedfiles{$page}=htmlpage($page);
  293. # TODO: should really add this to renderedfiles and call
  294. # check_overwrite, as above, but currently renderedfiles
  295. # only supports listing one file per page.
  296. if ($config{rss} && exists $inlinepages{$page}) {
  297. writefile(rsspage($page), $config{destdir},
  298. genrss($content, $page, mtime($srcfile)));
  299. }
  300. }
  301. else {
  302. $links{$file}=[];
  303. check_overwrite("$config{destdir}/$file", $file);
  304. writefile($file, $config{destdir}, $content);
  305. $oldpagemtime{$file}=time;
  306. $renderedfiles{$file}=$file;
  307. }
  308. } #}}}
  309. sub prune ($) { #{{{
  310. my $file=shift;
  311. unlink($file);
  312. my $dir=dirname($file);
  313. while (rmdir($dir)) {
  314. $dir=dirname($dir);
  315. }
  316. } #}}}
  317. sub estcfg () { #{{{
  318. my $estdir="$config{wikistatedir}/hyperestraier";
  319. my $cgi=basename($config{cgiurl});
  320. $cgi=~s/\..*$//;
  321. open(TEMPLATE, ">$estdir/$cgi.tmpl") ||
  322. error("write $estdir/$cgi.tmpl: $!");
  323. print TEMPLATE misctemplate("search",
  324. "<!--ESTFORM-->\n\n<!--ESTRESULT-->\n\n<!--ESTINFO-->\n\n");
  325. close TEMPLATE;
  326. open(TEMPLATE, ">$estdir/$cgi.conf") ||
  327. error("write $estdir/$cgi.conf: $!");
  328. my $template=HTML::Template->new(
  329. filename => "$config{templatedir}/estseek.conf"
  330. );
  331. eval q{use Cwd 'abs_path'};
  332. $template->param(
  333. index => $estdir,
  334. tmplfile => "$estdir/$cgi.tmpl",
  335. destdir => abs_path($config{destdir}),
  336. url => $config{url},
  337. );
  338. print TEMPLATE $template->output;
  339. close TEMPLATE;
  340. symlink("/usr/lib/estraier/estseek.cgi",
  341. "$estdir/".basename($config{cgiurl})) ||
  342. error("symlink: $!");
  343. } # }}}
  344. sub estcmd ($;@) { #{{{
  345. my @params=split(' ', shift);
  346. push @params, "-cl", "$config{wikistatedir}/hyperestraier";
  347. if (@_) {
  348. push @params, "-";
  349. }
  350. my $pid=open(CHILD, "|-");
  351. if ($pid) {
  352. # parent
  353. foreach (@_) {
  354. print CHILD "$_\n";
  355. }
  356. close(CHILD) || error("estcmd @params exited nonzero: $?");
  357. }
  358. else {
  359. # child
  360. open(STDOUT, "/dev/null"); # shut it up (closing won't work)
  361. exec("estcmd", @params) || error("can't run estcmd");
  362. }
  363. } #}}}
  364. sub refresh () { #{{{
  365. # find existing pages
  366. my %exists;
  367. my @files;
  368. eval q{use File::Find};
  369. find({
  370. no_chdir => 1,
  371. wanted => sub {
  372. if (/$config{wiki_file_prune_regexp}/) {
  373. $File::Find::prune=1;
  374. }
  375. elsif (! -d $_ && ! -l $_) {
  376. my ($f)=/$config{wiki_file_regexp}/; # untaint
  377. if (! defined $f) {
  378. warn("skipping bad filename $_\n");
  379. }
  380. else {
  381. $f=~s/^\Q$config{srcdir}\E\/?//;
  382. push @files, $f;
  383. $exists{pagename($f)}=1;
  384. }
  385. }
  386. },
  387. }, $config{srcdir});
  388. find({
  389. no_chdir => 1,
  390. wanted => sub {
  391. if (/$config{wiki_file_prune_regexp}/) {
  392. $File::Find::prune=1;
  393. }
  394. elsif (! -d $_ && ! -l $_) {
  395. my ($f)=/$config{wiki_file_regexp}/; # untaint
  396. if (! defined $f) {
  397. warn("skipping bad filename $_\n");
  398. }
  399. else {
  400. # Don't add files that are in the
  401. # srcdir.
  402. $f=~s/^\Q$config{underlaydir}\E\/?//;
  403. if (! -e "$config{srcdir}/$f" &&
  404. ! -l "$config{srcdir}/$f") {
  405. push @files, $f;
  406. $exists{pagename($f)}=1;
  407. }
  408. }
  409. }
  410. },
  411. }, $config{underlaydir});
  412. my %rendered;
  413. # check for added or removed pages
  414. my @add;
  415. foreach my $file (@files) {
  416. my $page=pagename($file);
  417. if (! $oldpagemtime{$page}) {
  418. debug("new page $page") unless exists $pagectime{$page};
  419. push @add, $file;
  420. $links{$page}=[];
  421. $pagesources{$page}=$file;
  422. $pagectime{$page}=mtime(srcfile($file))
  423. unless exists $pagectime{$page};
  424. }
  425. }
  426. my @del;
  427. foreach my $page (keys %oldpagemtime) {
  428. if (! $exists{$page}) {
  429. debug("removing old page $page");
  430. push @del, $pagesources{$page};
  431. prune($config{destdir}."/".$renderedfiles{$page});
  432. delete $renderedfiles{$page};
  433. $oldpagemtime{$page}=0;
  434. delete $pagesources{$page};
  435. }
  436. }
  437. # render any updated files
  438. foreach my $file (@files) {
  439. my $page=pagename($file);
  440. if (! exists $oldpagemtime{$page} ||
  441. mtime(srcfile($file)) > $oldpagemtime{$page}) {
  442. debug("rendering changed file $file");
  443. render($file);
  444. $rendered{$file}=1;
  445. }
  446. }
  447. # if any files were added or removed, check to see if each page
  448. # needs an update due to linking to them or inlining them.
  449. # TODO: inefficient; pages may get rendered above and again here;
  450. # problem is the bestlink may have changed and we won't know until
  451. # now
  452. if (@add || @del) {
  453. FILE: foreach my $file (@files) {
  454. my $page=pagename($file);
  455. foreach my $f (@add, @del) {
  456. my $p=pagename($f);
  457. foreach my $link (@{$links{$page}}) {
  458. if (bestlink($page, $link) eq $p) {
  459. debug("rendering $file, which links to $p");
  460. render($file);
  461. $rendered{$file}=1;
  462. next FILE;
  463. }
  464. }
  465. }
  466. }
  467. }
  468. # Handle backlinks; if a page has added/removed links, update the
  469. # pages it links to. Also handle inlining here.
  470. # TODO: inefficient; pages may get rendered above and again here;
  471. # problem is the backlinks could be wrong in the first pass render
  472. # above
  473. if (%rendered || @del) {
  474. foreach my $f (@files) {
  475. my $p=pagename($f);
  476. if (exists $inlinepages{$p}) {
  477. foreach my $file (keys %rendered, @del) {
  478. my $page=pagename($file);
  479. if (globlist_match($page, $inlinepages{$p})) {
  480. debug("rendering $f, which inlines $page");
  481. render($f);
  482. $rendered{$f}=1;
  483. last;
  484. }
  485. }
  486. }
  487. }
  488. my %linkchanged;
  489. foreach my $file (keys %rendered, @del) {
  490. my $page=pagename($file);
  491. if (exists $links{$page}) {
  492. foreach my $link (map { bestlink($page, $_) } @{$links{$page}}) {
  493. if (length $link &&
  494. ! exists $oldlinks{$page} ||
  495. ! grep { $_ eq $link } @{$oldlinks{$page}}) {
  496. $linkchanged{$link}=1;
  497. }
  498. }
  499. }
  500. if (exists $oldlinks{$page}) {
  501. foreach my $link (map { bestlink($page, $_) } @{$oldlinks{$page}}) {
  502. if (length $link &&
  503. ! exists $links{$page} ||
  504. ! grep { $_ eq $link } @{$links{$page}}) {
  505. $linkchanged{$link}=1;
  506. }
  507. }
  508. }
  509. }
  510. foreach my $link (keys %linkchanged) {
  511. my $linkfile=$pagesources{$link};
  512. if (defined $linkfile) {
  513. debug("rendering $linkfile, to update its backlinks");
  514. render($linkfile);
  515. $rendered{$linkfile}=1;
  516. }
  517. }
  518. }
  519. if ($config{hyperestraier} && (%rendered || @del)) {
  520. debug("updating hyperestraier search index");
  521. if (%rendered) {
  522. estcmd("gather -cm -bc -cl -sd",
  523. map { $config{destdir}."/".$renderedfiles{pagename($_)} }
  524. keys %rendered);
  525. }
  526. if (@del) {
  527. estcmd("purge -cl");
  528. }
  529. debug("generating hyperestraier cgi config");
  530. estcfg();
  531. }
  532. } #}}}
  533. 1