summaryrefslogtreecommitdiff
path: root/IkiWiki/Plugin/comments.pm
blob: 4770209c9d556d1bc819c8d32e5c77776f1bbe42 (plain)
  1. #!/usr/bin/perl
  2. # Copyright © 2006-2008 Joey Hess <joey@ikiwiki.info>
  3. # Copyright © 2008 Simon McVittie <http://smcv.pseudorandom.co.uk/>
  4. # Licensed under the GNU GPL, version 2, or any later version published by the
  5. # Free Software Foundation
  6. package IkiWiki::Plugin::comments;
  7. use warnings;
  8. use strict;
  9. use IkiWiki 3.00;
  10. use Encode;
  11. use POSIX qw(strftime);
  12. use constant PREVIEW => "Preview";
  13. use constant POST_COMMENT => "Post comment";
  14. use constant CANCEL => "Cancel";
  15. my $postcomment;
  16. my %commentstate;
  17. sub import {
  18. hook(type => "checkconfig", id => 'comments', call => \&checkconfig);
  19. hook(type => "getsetup", id => 'comments', call => \&getsetup);
  20. hook(type => "preprocess", id => 'comment', call => \&preprocess);
  21. # here for backwards compatability with old comments
  22. hook(type => "preprocess", id => '_comment', call => \&preprocess);
  23. hook(type => "sessioncgi", id => 'comment', call => \&sessioncgi);
  24. hook(type => "htmlize", id => "_comment", call => \&htmlize);
  25. hook(type => "htmlize", id => "_comment_pending",
  26. call => \&htmlize_pending);
  27. hook(type => "pagetemplate", id => "comments", call => \&pagetemplate);
  28. hook(type => "formbuilder_setup", id => "comments",
  29. call => \&formbuilder_setup);
  30. # Load goto to fix up user page links for logged-in commenters
  31. IkiWiki::loadplugin("goto");
  32. IkiWiki::loadplugin("inline");
  33. }
  34. sub getsetup () {
  35. return
  36. plugin => {
  37. safe => 1,
  38. rebuild => 1,
  39. section => "web",
  40. },
  41. comments_pagespec => {
  42. type => 'pagespec',
  43. example => 'blog/* and !*/Discussion',
  44. description => 'PageSpec of pages where comments are allowed',
  45. link => 'ikiwiki/PageSpec',
  46. safe => 1,
  47. rebuild => 1,
  48. },
  49. comments_closed_pagespec => {
  50. type => 'pagespec',
  51. example => 'blog/controversial or blog/flamewar',
  52. description => 'PageSpec of pages where posting new comments is not allowed',
  53. link => 'ikiwiki/PageSpec',
  54. safe => 1,
  55. rebuild => 1,
  56. },
  57. comments_pagename => {
  58. type => 'string',
  59. default => 'comment_',
  60. description => 'Base name for comments, e.g. "comment_" for pages like "sandbox/comment_12"',
  61. safe => 0, # manual page moving required
  62. rebuild => undef,
  63. },
  64. comments_allowdirectives => {
  65. type => 'boolean',
  66. example => 0,
  67. description => 'Interpret directives in comments?',
  68. safe => 1,
  69. rebuild => 0,
  70. },
  71. comments_allowauthor => {
  72. type => 'boolean',
  73. example => 0,
  74. description => 'Allow anonymous commenters to set an author name?',
  75. safe => 1,
  76. rebuild => 0,
  77. },
  78. comments_commit => {
  79. type => 'boolean',
  80. example => 1,
  81. description => 'commit comments to the VCS',
  82. # old uncommitted comments are likely to cause
  83. # confusion if this is changed
  84. safe => 0,
  85. rebuild => 0,
  86. },
  87. }
  88. sub checkconfig () {
  89. $config{comments_commit} = 1
  90. unless defined $config{comments_commit};
  91. $config{comments_pagespec} = ''
  92. unless defined $config{comments_pagespec};
  93. $config{comments_closed_pagespec} = ''
  94. unless defined $config{comments_closed_pagespec};
  95. $config{comments_pagename} = 'comment_'
  96. unless defined $config{comments_pagename};
  97. }
  98. sub htmlize {
  99. my %params = @_;
  100. return $params{content};
  101. }
  102. sub htmlize_pending {
  103. my %params = @_;
  104. return sprintf(gettext("this comment needs %s"),
  105. '<a href="'.
  106. IkiWiki::cgiurl(do => "commentmoderation").'">'.
  107. gettext("moderation").'</a>');
  108. }
  109. # FIXME: copied verbatim from meta
  110. sub safeurl ($) {
  111. my $url=shift;
  112. if (exists $IkiWiki::Plugin::htmlscrubber::{safe_url_regexp} &&
  113. defined $IkiWiki::Plugin::htmlscrubber::safe_url_regexp) {
  114. return $url=~/$IkiWiki::Plugin::htmlscrubber::safe_url_regexp/;
  115. }
  116. else {
  117. return 1;
  118. }
  119. }
  120. sub preprocess {
  121. my %params = @_;
  122. my $page = $params{page};
  123. my $format = $params{format};
  124. if (defined $format && ! exists $IkiWiki::hooks{htmlize}{$format}) {
  125. error(sprintf(gettext("unsupported page format %s"), $format));
  126. }
  127. my $content = $params{content};
  128. if (! defined $content) {
  129. error(gettext("comment must have content"));
  130. }
  131. $content =~ s/\\"/"/g;
  132. $content = IkiWiki::filter($page, $params{destpage}, $content);
  133. if ($config{comments_allowdirectives}) {
  134. $content = IkiWiki::preprocess($page, $params{destpage},
  135. $content);
  136. }
  137. # no need to bother with htmlize if it's just HTML
  138. $content = IkiWiki::htmlize($page, $params{destpage}, $format, $content)
  139. if defined $format;
  140. IkiWiki::run_hooks(sanitize => sub {
  141. $content = shift->(
  142. page => $page,
  143. destpage => $params{destpage},
  144. content => $content,
  145. );
  146. });
  147. # set metadata, possibly overriding [[!meta]] directives from the
  148. # comment itself
  149. my $commentuser;
  150. my $commentip;
  151. my $commentauthor;
  152. my $commentauthorurl;
  153. my $commentopenid;
  154. if (defined $params{username}) {
  155. $commentuser = $params{username};
  156. my $oiduser = eval { IkiWiki::openiduser($commentuser) };
  157. if (defined $oiduser) {
  158. # looks like an OpenID
  159. $commentauthorurl = $commentuser;
  160. $commentauthor = $oiduser;
  161. $commentopenid = $commentuser;
  162. }
  163. else {
  164. $commentauthorurl = IkiWiki::cgiurl(
  165. do => 'goto',
  166. page => IkiWiki::userpage($commentuser)
  167. );
  168. $commentauthor = $commentuser;
  169. }
  170. }
  171. else {
  172. if (defined $params{ip}) {
  173. $commentip = $params{ip};
  174. }
  175. $commentauthor = gettext("Anonymous");
  176. }
  177. $commentstate{$page}{commentuser} = $commentuser;
  178. $commentstate{$page}{commentopenid} = $commentopenid;
  179. $commentstate{$page}{commentip} = $commentip;
  180. $commentstate{$page}{commentauthor} = $commentauthor;
  181. $commentstate{$page}{commentauthorurl} = $commentauthorurl;
  182. if (! defined $pagestate{$page}{meta}{author}) {
  183. $pagestate{$page}{meta}{author} = $commentauthor;
  184. }
  185. if (! defined $pagestate{$page}{meta}{authorurl}) {
  186. $pagestate{$page}{meta}{authorurl} = $commentauthorurl;
  187. }
  188. if ($config{comments_allowauthor}) {
  189. if (defined $params{claimedauthor}) {
  190. $pagestate{$page}{meta}{author} = $params{claimedauthor};
  191. }
  192. if (defined $params{url}) {
  193. my $url=$params{url};
  194. eval q{use URI::Heuristic};
  195. if (! $@) {
  196. $url=URI::Heuristic::uf_uristr($url);
  197. }
  198. if (safeurl($url)) {
  199. $pagestate{$page}{meta}{authorurl} = $url;
  200. }
  201. }
  202. }
  203. else {
  204. $pagestate{$page}{meta}{author} = $commentauthor;
  205. $pagestate{$page}{meta}{authorurl} = $commentauthorurl;
  206. }
  207. if (defined $params{subject}) {
  208. # decode title the same way meta does
  209. eval q{use HTML::Entities};
  210. $pagestate{$page}{meta}{title} = decode_entities($params{subject});
  211. }
  212. if ($params{page} =~ m/\/\Q$config{comments_pagename}\E\d+_/) {
  213. $pagestate{$page}{meta}{permalink} = urlto(IkiWiki::dirname($params{page}), undef, 1).
  214. "#".page_to_id($params{page});
  215. }
  216. eval q{use Date::Parse};
  217. if (! $@) {
  218. my $time = str2time($params{date});
  219. $IkiWiki::pagectime{$page} = $time if defined $time;
  220. }
  221. return $content;
  222. }
  223. sub sessioncgi ($$) {
  224. my $cgi=shift;
  225. my $session=shift;
  226. my $do = $cgi->param('do');
  227. if ($do eq 'comment') {
  228. editcomment($cgi, $session);
  229. }
  230. elsif ($do eq 'commentmoderation') {
  231. commentmoderation($cgi, $session);
  232. }
  233. elsif ($do eq 'commentsignin') {
  234. IkiWiki::cgi_signin($cgi, $session);
  235. exit;
  236. }
  237. }
  238. # Mostly cargo-culted from IkiWiki::plugin::editpage
  239. sub editcomment ($$) {
  240. my $cgi=shift;
  241. my $session=shift;
  242. IkiWiki::decode_cgi_utf8($cgi);
  243. eval q{use CGI::FormBuilder};
  244. error($@) if $@;
  245. my @buttons = (POST_COMMENT, PREVIEW, CANCEL);
  246. my $form = CGI::FormBuilder->new(
  247. fields => [qw{do sid page subject editcontent type author url}],
  248. charset => 'utf-8',
  249. method => 'POST',
  250. required => [qw{editcontent}],
  251. javascript => 0,
  252. params => $cgi,
  253. action => $config{cgiurl},
  254. header => 0,
  255. table => 0,
  256. template => { template('editcomment.tmpl') },
  257. );
  258. IkiWiki::decode_form_utf8($form);
  259. IkiWiki::run_hooks(formbuilder_setup => sub {
  260. shift->(title => "comment", form => $form, cgi => $cgi,
  261. session => $session, buttons => \@buttons);
  262. });
  263. IkiWiki::decode_form_utf8($form);
  264. my $type = $form->param('type');
  265. if (defined $type && length $type && $IkiWiki::hooks{htmlize}{$type}) {
  266. $type = IkiWiki::possibly_foolish_untaint($type);
  267. }
  268. else {
  269. $type = $config{default_pageext};
  270. }
  271. my @page_types;
  272. if (exists $IkiWiki::hooks{htmlize}) {
  273. foreach my $key (grep { !/^_/ } keys %{$IkiWiki::hooks{htmlize}}) {
  274. push @page_types, [$key, $IkiWiki::hooks{htmlize}{$key}{longname} || $key];
  275. }
  276. }
  277. @page_types=sort @page_types;
  278. $form->field(name => 'do', type => 'hidden');
  279. $form->field(name => 'sid', type => 'hidden', value => $session->id,
  280. force => 1);
  281. $form->field(name => 'page', type => 'hidden');
  282. $form->field(name => 'subject', type => 'text', size => 72);
  283. $form->field(name => 'editcontent', type => 'textarea', rows => 10);
  284. $form->field(name => "type", value => $type, force => 1,
  285. type => 'select', options => \@page_types);
  286. $form->tmpl_param(username => $session->param('name'));
  287. if ($config{comments_allowauthor} and
  288. ! defined $session->param('name')) {
  289. $form->tmpl_param(allowauthor => 1);
  290. $form->field(name => 'author', type => 'text', size => '40');
  291. $form->field(name => 'url', type => 'text', size => '40');
  292. }
  293. else {
  294. $form->tmpl_param(allowauthor => 0);
  295. $form->field(name => 'author', type => 'hidden', value => '',
  296. force => 1);
  297. $form->field(name => 'url', type => 'hidden', value => '',
  298. force => 1);
  299. }
  300. if (! defined $session->param('name')) {
  301. # Make signinurl work and return here.
  302. $form->tmpl_param(signinurl => IkiWiki::cgiurl(do => 'commentsignin'));
  303. $session->param(postsignin => $ENV{QUERY_STRING});
  304. IkiWiki::cgi_savesession($session);
  305. }
  306. # The untaint is OK (as in editpage) because we're about to pass
  307. # it to file_pruned anyway
  308. my $page = $form->field('page');
  309. $page = IkiWiki::possibly_foolish_untaint($page);
  310. if (! defined $page || ! length $page ||
  311. IkiWiki::file_pruned($page)) {
  312. error(gettext("bad page name"));
  313. }
  314. my $baseurl = urlto($page, undef, 1);
  315. $form->title(sprintf(gettext("commenting on %s"),
  316. IkiWiki::pagetitle($page)));
  317. $form->tmpl_param('helponformattinglink',
  318. htmllink($page, $page, 'ikiwiki/formatting',
  319. noimageinline => 1,
  320. linktext => 'FormattingHelp'),
  321. allowdirectives => $config{allow_directives});
  322. if ($form->submitted eq CANCEL) {
  323. # bounce back to the page they wanted to comment on, and exit.
  324. # CANCEL need not be considered in future
  325. IkiWiki::redirect($cgi, urlto($page, undef, 1));
  326. exit;
  327. }
  328. if (not exists $pagesources{$page}) {
  329. error(sprintf(gettext(
  330. "page '%s' doesn't exist, so you can't comment"),
  331. $page));
  332. }
  333. if (pagespec_match($page, $config{comments_closed_pagespec},
  334. location => $page)) {
  335. error(sprintf(gettext(
  336. "comments on page '%s' are closed"),
  337. $page));
  338. }
  339. # Set a flag to indicate that we're posting a comment,
  340. # so that postcomment() can tell it should match.
  341. $postcomment=1;
  342. IkiWiki::check_canedit($page, $cgi, $session);
  343. $postcomment=0;
  344. my $content = "[[!comment format=$type\n";
  345. # FIXME: handling of double quotes probably wrong?
  346. if (defined $session->param('name')) {
  347. my $username = $session->param('name');
  348. $username =~ s/"/&quot;/g;
  349. $content .= " username=\"$username\"\n";
  350. }
  351. elsif (defined $session->remote_addr()) {
  352. my $ip = $session->remote_addr();
  353. if ($ip =~ m/^([.0-9]+)$/) {
  354. $content .= " ip=\"$1\"\n";
  355. }
  356. }
  357. if ($config{comments_allowauthor}) {
  358. my $author = $form->field('author');
  359. if (defined $author && length $author) {
  360. $author =~ s/"/&quot;/g;
  361. $content .= " claimedauthor=\"$author\"\n";
  362. }
  363. my $url = $form->field('url');
  364. if (defined $url && length $url) {
  365. $url =~ s/"/&quot;/g;
  366. $content .= " url=\"$url\"\n";
  367. }
  368. }
  369. my $subject = $form->field('subject');
  370. if (defined $subject && length $subject) {
  371. $subject =~ s/"/&quot;/g;
  372. }
  373. else {
  374. $subject = "comment ".(num_comments($page, $config{srcdir}) + 1);
  375. }
  376. $content .= " subject=\"$subject\"\n";
  377. $content .= " date=\"" . decode_utf8(strftime('%Y-%m-%dT%H:%M:%SZ', gmtime)) . "\"\n";
  378. my $editcontent = $form->field('editcontent');
  379. $editcontent="" if ! defined $editcontent;
  380. $editcontent =~ s/\r\n/\n/g;
  381. $editcontent =~ s/\r/\n/g;
  382. $editcontent =~ s/"/\\"/g;
  383. $content .= " content=\"\"\"\n$editcontent\n\"\"\"]]\n";
  384. my $location=unique_comment_location($page, $content, $config{srcdir});
  385. # This is essentially a simplified version of editpage:
  386. # - the user does not control the page that's created, only the parent
  387. # - it's always a create operation, never an edit
  388. # - this means that conflicts should never happen
  389. # - this means that if they do, rocks fall and everyone dies
  390. if ($form->submitted eq PREVIEW) {
  391. my $preview=previewcomment($content, $location, $page, time);
  392. IkiWiki::run_hooks(format => sub {
  393. $preview = shift->(page => $page,
  394. content => $preview);
  395. });
  396. $form->tmpl_param(page_preview => $preview);
  397. }
  398. else {
  399. $form->tmpl_param(page_preview => "");
  400. }
  401. if ($form->submitted eq POST_COMMENT && $form->validate) {
  402. IkiWiki::checksessionexpiry($cgi, $session);
  403. $postcomment=1;
  404. my $ok=IkiWiki::check_content(content => $form->field('editcontent'),
  405. subject => $form->field('subject'),
  406. $config{comments_allowauthor} ? (
  407. author => $form->field('author'),
  408. url => $form->field('url'),
  409. ) : (),
  410. page => $location,
  411. cgi => $cgi,
  412. session => $session,
  413. nonfatal => 1,
  414. );
  415. $postcomment=0;
  416. if (! $ok) {
  417. $location=unique_comment_location($page, $content, $config{srcdir}, "._comment_pending");
  418. writefile("$location._comment_pending", $config{srcdir}, $content);
  419. # Refresh so anything that deals with pending
  420. # comments can be updated.
  421. require IkiWiki::Render;
  422. IkiWiki::refresh();
  423. IkiWiki::saveindex();
  424. IkiWiki::printheader($session);
  425. print IkiWiki::misctemplate(gettext(gettext("comment stored for moderation")),
  426. "<p>".
  427. gettext("Your comment will be posted after moderator review").
  428. "</p>");
  429. exit;
  430. }
  431. # FIXME: could probably do some sort of graceful retry
  432. # on error? Would require significant unwinding though
  433. my $file = "$location._comment";
  434. writefile($file, $config{srcdir}, $content);
  435. my $conflict;
  436. if ($config{rcs} and $config{comments_commit}) {
  437. my $message = gettext("Added a comment");
  438. if (defined $form->field('subject') &&
  439. length $form->field('subject')) {
  440. $message = sprintf(
  441. gettext("Added a comment: %s"),
  442. $form->field('subject'));
  443. }
  444. IkiWiki::rcs_add($file);
  445. IkiWiki::disable_commit_hook();
  446. $conflict = IkiWiki::rcs_commit_staged($message,
  447. $session->param('name'),
  448. $session->remote_addr());
  449. IkiWiki::enable_commit_hook();
  450. IkiWiki::rcs_update();
  451. }
  452. # Now we need a refresh
  453. require IkiWiki::Render;
  454. IkiWiki::refresh();
  455. IkiWiki::saveindex();
  456. # this should never happen, unless a committer deliberately
  457. # breaks it or something
  458. error($conflict) if defined $conflict;
  459. # Jump to the new comment on the page.
  460. # The trailing question mark tries to avoid broken
  461. # caches and get the most recent version of the page.
  462. IkiWiki::redirect($cgi, urlto($page, undef, 1).
  463. "?updated#".page_to_id($location));
  464. }
  465. else {
  466. IkiWiki::showform ($form, \@buttons, $session, $cgi,
  467. forcebaseurl => $baseurl, page => $page);
  468. }
  469. exit;
  470. }
  471. sub commentmoderation ($$) {
  472. my $cgi=shift;
  473. my $session=shift;
  474. IkiWiki::needsignin($cgi, $session);
  475. if (! IkiWiki::is_admin($session->param("name"))) {
  476. error(gettext("you are not logged in as an admin"));
  477. }
  478. IkiWiki::decode_cgi_utf8($cgi);
  479. if (defined $cgi->param('sid')) {
  480. IkiWiki::checksessionexpiry($cgi, $session);
  481. my $rejectalldefer=$cgi->param('rejectalldefer');
  482. my %vars=$cgi->Vars;
  483. my $added=0;
  484. foreach my $id (keys %vars) {
  485. if ($id =~ /(.*)\._comment(?:_pending)?$/) {
  486. my $action=$cgi->param($id);
  487. next if $action eq 'Defer' && ! $rejectalldefer;
  488. # Make sure that the id is of a legal
  489. # pending comment.
  490. my ($f) = $id =~ /$config{wiki_file_regexp}/;
  491. if (! defined $f || ! length $f ||
  492. IkiWiki::file_pruned($f)) {
  493. error("illegal file");
  494. }
  495. my $page=IkiWiki::dirname($f);
  496. my $file="$config{srcdir}/$f";
  497. if (! -e $file) {
  498. # old location
  499. $file="$config{wikistatedir}/comments_pending/".$f;
  500. }
  501. if ($action eq 'Accept') {
  502. my $content=eval { readfile($file) };
  503. next if $@; # file vanished since form was displayed
  504. my $dest=unique_comment_location($page, $content, $config{srcdir})."._comment";
  505. writefile($dest, $config{srcdir}, $content);
  506. if ($config{rcs} and $config{comments_commit}) {
  507. IkiWiki::rcs_add($dest);
  508. }
  509. $added++;
  510. }
  511. require IkiWiki::Render;
  512. IkiWiki::prune($file);
  513. }
  514. }
  515. if ($added) {
  516. my $conflict;
  517. if ($config{rcs} and $config{comments_commit}) {
  518. my $message = gettext("Comment moderation");
  519. IkiWiki::disable_commit_hook();
  520. $conflict=IkiWiki::rcs_commit_staged($message,
  521. $session->param('name'),
  522. $session->remote_addr());
  523. IkiWiki::enable_commit_hook();
  524. IkiWiki::rcs_update();
  525. }
  526. # Now we need a refresh
  527. require IkiWiki::Render;
  528. IkiWiki::refresh();
  529. IkiWiki::saveindex();
  530. error($conflict) if defined $conflict;
  531. }
  532. }
  533. my @comments=map {
  534. my ($id, $dir, $ctime)=@{$_};
  535. my $content=readfile("$dir/$id");
  536. my $preview=previewcomment($content, $id,
  537. $id, $ctime);
  538. {
  539. id => $id,
  540. view => $preview,
  541. }
  542. } sort { $b->[2] <=> $a->[2] } comments_pending();
  543. my $template=template("commentmoderation.tmpl");
  544. $template->param(
  545. sid => $session->id,
  546. comments => \@comments,
  547. );
  548. IkiWiki::printheader($session);
  549. my $out=$template->output;
  550. IkiWiki::run_hooks(format => sub {
  551. $out = shift->(page => "", content => $out);
  552. });
  553. print IkiWiki::misctemplate(gettext("comment moderation"), $out);
  554. exit;
  555. }
  556. sub formbuilder_setup (@) {
  557. my %params=@_;
  558. my $form=$params{form};
  559. if ($form->title eq "preferences" &&
  560. IkiWiki::is_admin($params{session}->param("name"))) {
  561. push @{$params{buttons}}, "Comment Moderation";
  562. if ($form->submitted && $form->submitted eq "Comment Moderation") {
  563. commentmoderation($params{cgi}, $params{session});
  564. }
  565. }
  566. }
  567. sub comments_pending () {
  568. my @ret;
  569. eval q{use File::Find};
  570. error($@) if $@;
  571. eval q{use Cwd};
  572. error($@) if $@;
  573. my $origdir=getcwd();
  574. my $find_comments=sub {
  575. my $dir=shift;
  576. my $extension=shift;
  577. return unless -d $dir;
  578. chdir($dir) || die "chdir $dir: $!";
  579. find({
  580. no_chdir => 1,
  581. wanted => sub {
  582. my $file=decode_utf8($_);
  583. $file=~s/^\.\///;
  584. return if ! length $file || IkiWiki::file_pruned($file)
  585. || -l $_ || -d _ || $file !~ /\Q$extension\E$/;
  586. my ($f) = $file =~ /$config{wiki_file_regexp}/; # untaint
  587. if (defined $f) {
  588. my $ctime=(stat($_))[10];
  589. push @ret, [$f, $dir, $ctime];
  590. }
  591. }
  592. }, ".");
  593. chdir($origdir) || die "chdir $origdir: $!";
  594. };
  595. $find_comments->($config{srcdir}, "._comment_pending");
  596. # old location
  597. $find_comments->("$config{wikistatedir}/comments_pending/",
  598. "._comment");
  599. return @ret;
  600. }
  601. sub previewcomment ($$$) {
  602. my $content=shift;
  603. my $location=shift;
  604. my $page=shift;
  605. my $time=shift;
  606. my $preview = IkiWiki::htmlize($location, $page, '_comment',
  607. IkiWiki::linkify($location, $page,
  608. IkiWiki::preprocess($location, $page,
  609. IkiWiki::filter($location, $page, $content), 0, 1)));
  610. my $template = template("comment.tmpl");
  611. $template->param(content => $preview);
  612. $template->param(ctime => displaytime($time, undef, 1));
  613. $template->param(html5 => $config{html5});
  614. IkiWiki::run_hooks(pagetemplate => sub {
  615. shift->(page => $location,
  616. destpage => $page,
  617. template => $template);
  618. });
  619. $template->param(have_actions => 0);
  620. return $template->output;
  621. }
  622. sub commentsshown ($) {
  623. my $page=shift;
  624. return ! pagespec_match($page, "comment(*)",
  625. location => $page) &&
  626. pagespec_match($page, $config{comments_pagespec},
  627. location => $page);
  628. }
  629. sub commentsopen ($) {
  630. my $page = shift;
  631. return length $config{cgiurl} > 0 &&
  632. (! length $config{comments_closed_pagespec} ||
  633. ! pagespec_match($page, $config{comments_closed_pagespec},
  634. location => $page));
  635. }
  636. sub pagetemplate (@) {
  637. my %params = @_;
  638. my $page = $params{page};
  639. my $template = $params{template};
  640. my $shown = ($template->query(name => 'commentslink') ||
  641. $template->query(name => 'commentsurl') ||
  642. $template->query(name => 'atomcommentsurl') ||
  643. $template->query(name => 'comments')) &&
  644. commentsshown($page);
  645. if ($template->query(name => 'comments')) {
  646. my $comments = undef;
  647. if ($shown) {
  648. $comments = IkiWiki::preprocess_inline(
  649. pages => "comment($page)",
  650. template => 'comment',
  651. show => 0,
  652. reverse => 'yes',
  653. page => $page,
  654. destpage => $params{destpage},
  655. feedfile => 'comments',
  656. emptyfeeds => 'no',
  657. );
  658. }
  659. if (defined $comments && length $comments) {
  660. $template->param(comments => $comments);
  661. }
  662. if ($shown && commentsopen($page)) {
  663. $template->param(addcommenturl => addcommenturl($page));
  664. }
  665. }
  666. if ($shown) {
  667. if ($template->query(name => 'commentsurl')) {
  668. $template->param(commentsurl =>
  669. urlto($page, undef, 1).'#comments');
  670. }
  671. if ($template->query(name => 'atomcommentsurl') && $config{usedirs}) {
  672. # This will 404 until there are some comments, but I
  673. # think that's probably OK...
  674. $template->param(atomcommentsurl =>
  675. urlto($page, undef, 1).'comments.atom');
  676. }
  677. if ($template->query(name => 'commentslink')) {
  678. my $num=num_comments($page, $config{srcdir});
  679. my $link;
  680. if ($num > 0) {
  681. $link = htmllink($page, $params{destpage}, $page,
  682. linktext => sprintf(ngettext("%i comment", "%i comments", $num), $num),
  683. anchor => "comments",
  684. noimageinline => 1
  685. );
  686. }
  687. elsif (commentsopen($page)) {
  688. $link = "<a href=\"".addcommenturl($page)."\">".
  689. #translators: Here "Comment" is a verb;
  690. #translators: the user clicks on it to
  691. #translators: post a comment.
  692. gettext("Comment").
  693. "</a>";
  694. }
  695. $template->param(commentslink => $link)
  696. if defined $link;
  697. }
  698. }
  699. # everything below this point is only relevant to the comments
  700. # themselves
  701. if (!exists $commentstate{$page}) {
  702. return;
  703. }
  704. if ($template->query(name => 'commentid')) {
  705. $template->param(commentid => page_to_id($page));
  706. }
  707. if ($template->query(name => 'commentuser')) {
  708. $template->param(commentuser =>
  709. $commentstate{$page}{commentuser});
  710. }
  711. if ($template->query(name => 'commentopenid')) {
  712. $template->param(commentopenid =>
  713. $commentstate{$page}{commentopenid});
  714. }
  715. if ($template->query(name => 'commentip')) {
  716. $template->param(commentip =>
  717. $commentstate{$page}{commentip});
  718. }
  719. if ($template->query(name => 'commentauthor')) {
  720. $template->param(commentauthor =>
  721. $commentstate{$page}{commentauthor});
  722. }
  723. if ($template->query(name => 'commentauthorurl')) {
  724. $template->param(commentauthorurl =>
  725. $commentstate{$page}{commentauthorurl});
  726. }
  727. if ($template->query(name => 'removeurl') &&
  728. IkiWiki::Plugin::remove->can("check_canremove") &&
  729. length $config{cgiurl}) {
  730. $template->param(removeurl => IkiWiki::cgiurl(do => 'remove',
  731. page => $page));
  732. $template->param(have_actions => 1);
  733. }
  734. }
  735. sub addcommenturl ($) {
  736. my $page=shift;
  737. return IkiWiki::cgiurl(do => 'comment', page => $page);
  738. }
  739. sub num_comments ($$) {
  740. my $page=shift;
  741. my $dir=shift;
  742. my @comments=glob("$dir/$page/$config{comments_pagename}*._comment");
  743. return int @comments;
  744. }
  745. sub unique_comment_location ($$$$) {
  746. my $page=shift;
  747. eval q{use Digest::MD5 'md5_hex'};
  748. error($@) if $@;
  749. my $content_md5=md5_hex(Encode::encode_utf8(shift));
  750. my $dir=shift;
  751. my $ext=shift || "._comment";
  752. my $location;
  753. my $i = num_comments($page, $dir);
  754. do {
  755. $i++;
  756. $location = "$page/$config{comments_pagename}${i}_${content_md5}";
  757. } while (-e "$dir/$location$ext");
  758. return $location;
  759. }
  760. sub page_to_id ($) {
  761. # Converts a comment page name into a unique, legal html id
  762. # attribute value, that can be used as an anchor to link to the
  763. # comment.
  764. my $page=shift;
  765. eval q{use Digest::MD5 'md5_hex'};
  766. error($@) if $@;
  767. return "comment-".md5_hex(Encode::encode_utf8(($page)));
  768. }
  769. package IkiWiki::PageSpec;
  770. sub match_postcomment ($$;@) {
  771. my $page = shift;
  772. my $glob = shift;
  773. if (! $postcomment) {
  774. return IkiWiki::FailReason->new("not posting a comment");
  775. }
  776. return match_glob($page, $glob, @_);
  777. }
  778. sub match_comment ($$;@) {
  779. my $page = shift;
  780. my $glob = shift;
  781. # To see if it's a comment, check the source file type.
  782. # Deal with comments that were just deleted.
  783. my $source=exists $IkiWiki::pagesources{$page} ?
  784. $IkiWiki::pagesources{$page} :
  785. $IkiWiki::delpagesources{$page};
  786. my $type=defined $source ? IkiWiki::pagetype($source) : undef;
  787. if (! defined $type || $type ne "_comment") {
  788. return IkiWiki::FailReason->new("$page is not a comment");
  789. }
  790. return match_glob($page, "$glob/*", internal => 1, @_);
  791. }
  792. sub match_comment_pending ($$;@) {
  793. my $page = shift;
  794. my $glob = shift;
  795. my $source=exists $IkiWiki::pagesources{$page} ?
  796. $IkiWiki::pagesources{$page} :
  797. $IkiWiki::delpagesources{$page};
  798. my $type=defined $source ? IkiWiki::pagetype($source) : undef;
  799. if (! defined $type || $type ne "_comment_pending") {
  800. return IkiWiki::FailReason->new("$page is not a pending comment");
  801. }
  802. return match_glob($page, "$glob/*", internal => 1, @_);
  803. }
  804. 1