summaryrefslogtreecommitdiff
path: root/IkiWiki/Render.pm
blob: 7d1e8ee53fb98884b7a2e8a45157f9b0b83bb0af (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("$config{srcdir}/$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{rss} && $inlinepages{$page}) {
  181. $template->param(rssurl => rsspage(basename($page)));
  182. }
  183. $template->param(
  184. title => $title,
  185. wikiname => $config{wikiname},
  186. parentlinks => [parentlinks($page)],
  187. content => $content,
  188. backlinks => [backlinks($page)],
  189. discussionlink => htmllink($page, "Discussion", 1, 1),
  190. mtime => scalar(gmtime($mtime)),
  191. styleurl => styleurl($page),
  192. );
  193. return $template->output;
  194. } #}}}
  195. sub date_822 ($) { #{{{
  196. my $time=shift;
  197. eval q{use POSIX};
  198. return POSIX::strftime("%a, %d %b %Y %H:%M:%S %z", localtime($time));
  199. } #}}}
  200. sub absolute_urls ($$) { #{{{
  201. # sucky sub because rss sucks
  202. my $content=shift;
  203. my $url=shift;
  204. $url=~s/[^\/]+$//;
  205. $content=~s/<a\s+href="(?!http:\/\/)([^"]+)"/<a href="$url$1"/ig;
  206. $content=~s/<img\s+src="(?!http:\/\/)([^"]+)"/<img src="$url$1"/ig;
  207. return $content;
  208. } #}}}
  209. sub genrss ($$$) { #{{{
  210. my $content=shift;
  211. my $page=shift;
  212. my $mtime=shift;
  213. my $url="$config{url}/".htmlpage($page);
  214. my $template=HTML::Template->new(blind_cache => 1,
  215. filename => "$config{templatedir}/rsspage.tmpl");
  216. my @items;
  217. my $isblog=0;
  218. my $gen_blog=sub {
  219. my $parentpage=shift;
  220. my %params=@_;
  221. if (! exists $params{show}) {
  222. $params{show}=10;
  223. }
  224. if (! exists $params{pages}) {
  225. return "";
  226. }
  227. $isblog=1;
  228. foreach my $page (blog_list($params{pages}, $params{show})) {
  229. next if $page eq $parentpage;
  230. push @items, {
  231. itemtitle => pagetitle(basename($page)),
  232. itemurl => "$config{url}/$renderedfiles{$page}",
  233. itempubdate => date_822($pagectime{$page}),
  234. itemcontent => absolute_urls(get_inline_content($parentpage, $page), $url),
  235. } if exists $renderedfiles{$page};
  236. }
  237. return "";
  238. };
  239. $content = postprocess($page, $content, inline => $gen_blog);
  240. $template->param(
  241. title => $config{wikiname},
  242. pageurl => $url,
  243. items => \@items,
  244. );
  245. return $template->output;
  246. } #}}}
  247. sub check_overwrite ($$) { #{{{
  248. # Important security check. Make sure to call this before saving
  249. # any files to the source directory.
  250. my $dest=shift;
  251. my $src=shift;
  252. if (! exists $renderedfiles{$src} && -e $dest && ! $config{rebuild}) {
  253. error("$dest already exists and was rendered from ".
  254. join(" ",(grep { $renderedfiles{$_} eq $dest } keys
  255. %renderedfiles)).
  256. ", before, so not rendering from $src");
  257. }
  258. } #}}}
  259. sub mtime ($) { #{{{
  260. my $file=shift;
  261. return (stat($file))[9];
  262. } #}}}
  263. sub findlinks ($$) { #{{{
  264. my $content=shift;
  265. my $page=shift;
  266. my @links;
  267. while ($content =~ /(?<!\\)$config{wiki_link_regexp}/g) {
  268. push @links, titlepage($2);
  269. }
  270. # Discussion links are a special case since they're not in the text
  271. # of the page, but on its template.
  272. return @links, "$page/discussion";
  273. } #}}}
  274. sub render ($) { #{{{
  275. my $file=shift;
  276. my $type=pagetype($file);
  277. my $content=readfile("$config{srcdir}/$file");
  278. if ($type ne 'unknown') {
  279. my $page=pagename($file);
  280. $links{$page}=[findlinks($content, $page)];
  281. delete $inlinepages{$page};
  282. $content=linkify($content, $page);
  283. $content=htmlize($type, $content);
  284. check_overwrite("$config{destdir}/".htmlpage($page), $page);
  285. writefile("$config{destdir}/".htmlpage($page),
  286. genpage($content, $page, mtime("$config{srcdir}/$file")));
  287. $oldpagemtime{$page}=time;
  288. $renderedfiles{$page}=htmlpage($page);
  289. # TODO: should really add this to renderedfiles and call
  290. # check_overwrite, as above, but currently renderedfiles
  291. # only supports listing one file per page.
  292. if ($config{rss} && exists $inlinepages{$page}) {
  293. writefile("$config{destdir}/".rsspage($page),
  294. genrss($content, $page, mtime("$config{srcdir}/$file")));
  295. }
  296. }
  297. else {
  298. $links{$file}=[];
  299. check_overwrite("$config{destdir}/$file", $file);
  300. writefile("$config{destdir}/$file", $content);
  301. $oldpagemtime{$file}=time;
  302. $renderedfiles{$file}=$file;
  303. }
  304. } #}}}
  305. sub prune ($) { #{{{
  306. my $file=shift;
  307. unlink($file);
  308. my $dir=dirname($file);
  309. while (rmdir($dir)) {
  310. $dir=dirname($dir);
  311. }
  312. } #}}}
  313. sub refresh () { #{{{
  314. # find existing pages
  315. my %exists;
  316. my @files;
  317. eval q{use File::Find};
  318. find({
  319. no_chdir => 1,
  320. wanted => sub {
  321. if (/$config{wiki_file_prune_regexp}/) {
  322. no warnings 'once';
  323. $File::Find::prune=1;
  324. use warnings "all";
  325. }
  326. elsif (! -d $_ && ! -l $_) {
  327. my ($f)=/$config{wiki_file_regexp}/; # untaint
  328. if (! defined $f) {
  329. warn("skipping bad filename $_\n");
  330. }
  331. else {
  332. $f=~s/^\Q$config{srcdir}\E\/?//;
  333. push @files, $f;
  334. $exists{pagename($f)}=1;
  335. }
  336. }
  337. },
  338. }, $config{srcdir});
  339. my %rendered;
  340. # check for added or removed pages
  341. my @add;
  342. foreach my $file (@files) {
  343. my $page=pagename($file);
  344. if (! $oldpagemtime{$page}) {
  345. debug("new page $page") unless exists $pagectime{$page};
  346. push @add, $file;
  347. $links{$page}=[];
  348. $pagesources{$page}=$file;
  349. $pagectime{$page}=mtime("$config{srcdir}/$file")
  350. unless exists $pagectime{$page};
  351. }
  352. }
  353. my @del;
  354. foreach my $page (keys %oldpagemtime) {
  355. if (! $exists{$page}) {
  356. debug("removing old page $page");
  357. push @del, $pagesources{$page};
  358. prune($config{destdir}."/".$renderedfiles{$page});
  359. delete $renderedfiles{$page};
  360. $oldpagemtime{$page}=0;
  361. delete $pagesources{$page};
  362. }
  363. }
  364. # render any updated files
  365. foreach my $file (@files) {
  366. my $page=pagename($file);
  367. if (! exists $oldpagemtime{$page} ||
  368. mtime("$config{srcdir}/$file") > $oldpagemtime{$page}) {
  369. debug("rendering changed file $file");
  370. render($file);
  371. $rendered{$file}=1;
  372. }
  373. }
  374. # if any files were added or removed, check to see if each page
  375. # needs an update due to linking to them or inlining them.
  376. # TODO: inefficient; pages may get rendered above and again here;
  377. # problem is the bestlink may have changed and we won't know until
  378. # now
  379. if (@add || @del) {
  380. FILE: foreach my $file (@files) {
  381. my $page=pagename($file);
  382. foreach my $f (@add, @del) {
  383. my $p=pagename($f);
  384. foreach my $link (@{$links{$page}}) {
  385. if (bestlink($page, $link) eq $p) {
  386. debug("rendering $file, which links to $p");
  387. render($file);
  388. $rendered{$file}=1;
  389. next FILE;
  390. }
  391. }
  392. }
  393. }
  394. }
  395. # Handle backlinks; if a page has added/removed links, update the
  396. # pages it links to. Also handle inlining here.
  397. # TODO: inefficient; pages may get rendered above and again here;
  398. # problem is the backlinks could be wrong in the first pass render
  399. # above
  400. if (%rendered || @del) {
  401. foreach my $f (@files) {
  402. my $p=pagename($f);
  403. if (exists $inlinepages{$p}) {
  404. foreach my $file (keys %rendered, @del) {
  405. my $page=pagename($file);
  406. if (globlist_match($page, $inlinepages{$p})) {
  407. debug("rendering $f, which inlines $page");
  408. render($f);
  409. last;
  410. }
  411. }
  412. }
  413. }
  414. my %linkchanged;
  415. foreach my $file (keys %rendered, @del) {
  416. my $page=pagename($file);
  417. if (exists $links{$page}) {
  418. foreach my $link (map { bestlink($page, $_) } @{$links{$page}}) {
  419. if (length $link &&
  420. ! exists $oldlinks{$page} ||
  421. ! grep { $_ eq $link } @{$oldlinks{$page}}) {
  422. $linkchanged{$link}=1;
  423. }
  424. }
  425. }
  426. if (exists $oldlinks{$page}) {
  427. foreach my $link (map { bestlink($page, $_) } @{$oldlinks{$page}}) {
  428. if (length $link &&
  429. ! exists $links{$page} ||
  430. ! grep { $_ eq $link } @{$links{$page}}) {
  431. $linkchanged{$link}=1;
  432. }
  433. }
  434. }
  435. }
  436. foreach my $link (keys %linkchanged) {
  437. my $linkfile=$pagesources{$link};
  438. if (defined $linkfile) {
  439. debug("rendering $linkfile, to update its backlinks");
  440. render($linkfile);
  441. }
  442. }
  443. }
  444. } #}}}
  445. 1