summaryrefslogtreecommitdiff
path: root/IkiWiki/Plugin/comments.pm
blob: 3cafcbe9c6860dbfb95087da454bf364617f1292 (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 $ENV{REMOTE_ADDR}) {
  352. my $ip = $ENV{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 =~ s/\r\n/\n/g;
  380. $editcontent =~ s/\r/\n/g;
  381. $editcontent =~ s/"/\\"/g;
  382. $content .= " content=\"\"\"\n$editcontent\n\"\"\"]]\n";
  383. my $location=unique_comment_location($page, $content, $config{srcdir});
  384. # This is essentially a simplified version of editpage:
  385. # - the user does not control the page that's created, only the parent
  386. # - it's always a create operation, never an edit
  387. # - this means that conflicts should never happen
  388. # - this means that if they do, rocks fall and everyone dies
  389. if ($form->submitted eq PREVIEW) {
  390. my $preview=previewcomment($content, $location, $page, time);
  391. IkiWiki::run_hooks(format => sub {
  392. $preview = shift->(page => $page,
  393. content => $preview);
  394. });
  395. $form->tmpl_param(page_preview => $preview);
  396. }
  397. else {
  398. $form->tmpl_param(page_preview => "");
  399. }
  400. if ($form->submitted eq POST_COMMENT && $form->validate) {
  401. IkiWiki::checksessionexpiry($cgi, $session);
  402. $postcomment=1;
  403. my $ok=IkiWiki::check_content(content => $form->field('editcontent'),
  404. subject => $form->field('subject'),
  405. $config{comments_allowauthor} ? (
  406. author => $form->field('author'),
  407. url => $form->field('url'),
  408. ) : (),
  409. page => $location,
  410. cgi => $cgi,
  411. session => $session,
  412. nonfatal => 1,
  413. );
  414. $postcomment=0;
  415. if (! $ok) {
  416. $location=unique_comment_location($page, $content, $config{srcdir}, "._comment_pending");
  417. writefile("$location._comment_pending", $config{srcdir}, $content);
  418. # Refresh so anything that deals with pending
  419. # comments can be updated.
  420. require IkiWiki::Render;
  421. IkiWiki::refresh();
  422. IkiWiki::saveindex();
  423. IkiWiki::printheader($session);
  424. print IkiWiki::misctemplate(gettext(gettext("comment stored for moderation")),
  425. "<p>".
  426. gettext("Your comment will be posted after moderator review").
  427. "</p>");
  428. exit;
  429. }
  430. # FIXME: could probably do some sort of graceful retry
  431. # on error? Would require significant unwinding though
  432. my $file = "$location._comment";
  433. writefile($file, $config{srcdir}, $content);
  434. my $conflict;
  435. if ($config{rcs} and $config{comments_commit}) {
  436. my $message = gettext("Added a comment");
  437. if (defined $form->field('subject') &&
  438. length $form->field('subject')) {
  439. $message = sprintf(
  440. gettext("Added a comment: %s"),
  441. $form->field('subject'));
  442. }
  443. IkiWiki::rcs_add($file);
  444. IkiWiki::disable_commit_hook();
  445. $conflict = IkiWiki::rcs_commit_staged($message,
  446. $session->param('name'), $ENV{REMOTE_ADDR});
  447. IkiWiki::enable_commit_hook();
  448. IkiWiki::rcs_update();
  449. }
  450. # Now we need a refresh
  451. require IkiWiki::Render;
  452. IkiWiki::refresh();
  453. IkiWiki::saveindex();
  454. # this should never happen, unless a committer deliberately
  455. # breaks it or something
  456. error($conflict) if defined $conflict;
  457. # Jump to the new comment on the page.
  458. # The trailing question mark tries to avoid broken
  459. # caches and get the most recent version of the page.
  460. IkiWiki::redirect($cgi, urlto($page, undef, 1).
  461. "?updated#".page_to_id($location));
  462. }
  463. else {
  464. IkiWiki::showform ($form, \@buttons, $session, $cgi,
  465. forcebaseurl => $baseurl);
  466. }
  467. exit;
  468. }
  469. sub commentmoderation ($$) {
  470. my $cgi=shift;
  471. my $session=shift;
  472. IkiWiki::needsignin($cgi, $session);
  473. if (! IkiWiki::is_admin($session->param("name"))) {
  474. error(gettext("you are not logged in as an admin"));
  475. }
  476. IkiWiki::decode_cgi_utf8($cgi);
  477. if (defined $cgi->param('sid')) {
  478. IkiWiki::checksessionexpiry($cgi, $session);
  479. my $rejectalldefer=$cgi->param('rejectalldefer');
  480. my %vars=$cgi->Vars;
  481. my $added=0;
  482. foreach my $id (keys %vars) {
  483. if ($id =~ /(.*)\._comment(?:_pending)?$/) {
  484. my $action=$cgi->param($id);
  485. next if $action eq 'Defer' && ! $rejectalldefer;
  486. # Make sure that the id is of a legal
  487. # pending comment.
  488. my ($f) = $id =~ /$config{wiki_file_regexp}/;
  489. if (! defined $f || ! length $f ||
  490. IkiWiki::file_pruned($f)) {
  491. error("illegal file");
  492. }
  493. my $page=IkiWiki::dirname($f);
  494. my $file="$config{srcdir}/$f";
  495. if (! -e $file) {
  496. # old location
  497. $file="$config{wikistatedir}/comments_pending/".$f;
  498. }
  499. if ($action eq 'Accept') {
  500. my $content=eval { readfile($file) };
  501. next if $@; # file vanished since form was displayed
  502. my $dest=unique_comment_location($page, $content, $config{srcdir})."._comment";
  503. writefile($dest, $config{srcdir}, $content);
  504. if ($config{rcs} and $config{comments_commit}) {
  505. IkiWiki::rcs_add($dest);
  506. }
  507. $added++;
  508. }
  509. require IkiWiki::Render;
  510. IkiWiki::prune($file);
  511. }
  512. }
  513. if ($added) {
  514. my $conflict;
  515. if ($config{rcs} and $config{comments_commit}) {
  516. my $message = gettext("Comment moderation");
  517. IkiWiki::disable_commit_hook();
  518. $conflict=IkiWiki::rcs_commit_staged($message,
  519. $session->param('name'), $ENV{REMOTE_ADDR});
  520. IkiWiki::enable_commit_hook();
  521. IkiWiki::rcs_update();
  522. }
  523. # Now we need a refresh
  524. require IkiWiki::Render;
  525. IkiWiki::refresh();
  526. IkiWiki::saveindex();
  527. error($conflict) if defined $conflict;
  528. }
  529. }
  530. my @comments=map {
  531. my ($id, $dir, $ctime)=@{$_};
  532. my $content=readfile("$dir/$id");
  533. my $preview=previewcomment($content, $id,
  534. $id, $ctime);
  535. {
  536. id => $id,
  537. view => $preview,
  538. }
  539. } sort { $b->[2] <=> $a->[2] } comments_pending();
  540. my $template=template("commentmoderation.tmpl");
  541. $template->param(
  542. sid => $session->id,
  543. comments => \@comments,
  544. );
  545. IkiWiki::printheader($session);
  546. my $out=$template->output;
  547. IkiWiki::run_hooks(format => sub {
  548. $out = shift->(page => "", content => $out);
  549. });
  550. print IkiWiki::misctemplate(gettext("comment moderation"), $out);
  551. exit;
  552. }
  553. sub formbuilder_setup (@) {
  554. my %params=@_;
  555. my $form=$params{form};
  556. if ($form->title eq "preferences" &&
  557. IkiWiki::is_admin($params{session}->param("name"))) {
  558. push @{$params{buttons}}, "Comment Moderation";
  559. if ($form->submitted && $form->submitted eq "Comment Moderation") {
  560. commentmoderation($params{cgi}, $params{session});
  561. }
  562. }
  563. }
  564. sub comments_pending () {
  565. my @ret;
  566. eval q{use File::Find};
  567. error($@) if $@;
  568. my $find_comments=sub {
  569. my $dir=shift;
  570. my $extension=shift;
  571. return unless -d $dir;
  572. find({
  573. no_chdir => 1,
  574. wanted => sub {
  575. my $file=decode_utf8($_);
  576. $file=~s/^\Q$dir\E\/?//;
  577. return if ! length $file || IkiWiki::file_pruned($file)
  578. || -l $_ || -d _ || $file !~ /\Q$extension\E$/;
  579. my ($f) = $file =~ /$config{wiki_file_regexp}/; # untaint
  580. if (defined $f) {
  581. my $ctime=(stat($_))[10];
  582. push @ret, [$f, $dir, $ctime];
  583. }
  584. }
  585. }, $dir);
  586. };
  587. $find_comments->($config{srcdir}, "._comment_pending");
  588. # old location
  589. $find_comments->("$config{wikistatedir}/comments_pending/",
  590. "._comment");
  591. return @ret;
  592. }
  593. sub previewcomment ($$$) {
  594. my $content=shift;
  595. my $location=shift;
  596. my $page=shift;
  597. my $time=shift;
  598. my $preview = IkiWiki::htmlize($location, $page, '_comment',
  599. IkiWiki::linkify($location, $page,
  600. IkiWiki::preprocess($location, $page,
  601. IkiWiki::filter($location, $page, $content), 0, 1)));
  602. my $template = template("comment.tmpl");
  603. $template->param(content => $preview);
  604. $template->param(ctime => displaytime($time, undef, 1));
  605. $template->param(html5 => $config{html5});
  606. IkiWiki::run_hooks(pagetemplate => sub {
  607. shift->(page => $location,
  608. destpage => $page,
  609. template => $template);
  610. });
  611. $template->param(have_actions => 0);
  612. return $template->output;
  613. }
  614. sub commentsshown ($) {
  615. my $page=shift;
  616. return ! pagespec_match($page, "comment(*)",
  617. location => $page) &&
  618. pagespec_match($page, $config{comments_pagespec},
  619. location => $page);
  620. }
  621. sub commentsopen ($) {
  622. my $page = shift;
  623. return length $config{cgiurl} > 0 &&
  624. (! length $config{comments_closed_pagespec} ||
  625. ! pagespec_match($page, $config{comments_closed_pagespec},
  626. location => $page));
  627. }
  628. sub pagetemplate (@) {
  629. my %params = @_;
  630. my $page = $params{page};
  631. my $template = $params{template};
  632. my $shown = ($template->query(name => 'commentslink') ||
  633. $template->query(name => 'commentsurl') ||
  634. $template->query(name => 'atomcommentsurl') ||
  635. $template->query(name => 'comments')) &&
  636. commentsshown($page);
  637. if ($template->query(name => 'comments')) {
  638. my $comments = undef;
  639. if ($shown) {
  640. $comments = IkiWiki::preprocess_inline(
  641. pages => "comment($page)",
  642. template => 'comment',
  643. show => 0,
  644. reverse => 'yes',
  645. page => $page,
  646. destpage => $params{destpage},
  647. feedfile => 'comments',
  648. emptyfeeds => 'no',
  649. );
  650. }
  651. if (defined $comments && length $comments) {
  652. $template->param(comments => $comments);
  653. }
  654. if ($shown && commentsopen($page)) {
  655. $template->param(addcommenturl => addcommenturl($page));
  656. }
  657. }
  658. if ($shown) {
  659. if ($template->query(name => 'commentsurl')) {
  660. $template->param(commentsurl =>
  661. urlto($page, undef, 1).'#comments');
  662. }
  663. if ($template->query(name => 'atomcommentsurl') && $config{usedirs}) {
  664. # This will 404 until there are some comments, but I
  665. # think that's probably OK...
  666. $template->param(atomcommentsurl =>
  667. urlto($page, undef, 1).'comments.atom');
  668. }
  669. if ($template->query(name => 'commentslink')) {
  670. my $num=num_comments($page, $config{srcdir});
  671. my $link;
  672. if ($num > 0) {
  673. $link = htmllink($page, $params{destpage}, $page,
  674. linktext => sprintf(ngettext("%i comment", "%i comments", $num), $num),
  675. anchor => "comments",
  676. noimageinline => 1
  677. );
  678. }
  679. elsif (commentsopen($page)) {
  680. $link = "<a href=\"".addcommenturl($page)."\">".
  681. #translators: Here "Comment" is a verb;
  682. #translators: the user clicks on it to
  683. #translators: post a comment.
  684. gettext("Comment").
  685. "</a>";
  686. }
  687. $template->param(commentslink => $link)
  688. if defined $link;
  689. }
  690. }
  691. # everything below this point is only relevant to the comments
  692. # themselves
  693. if (!exists $commentstate{$page}) {
  694. return;
  695. }
  696. if ($template->query(name => 'commentid')) {
  697. $template->param(commentid => page_to_id($page));
  698. }
  699. if ($template->query(name => 'commentuser')) {
  700. $template->param(commentuser =>
  701. $commentstate{$page}{commentuser});
  702. }
  703. if ($template->query(name => 'commentopenid')) {
  704. $template->param(commentopenid =>
  705. $commentstate{$page}{commentopenid});
  706. }
  707. if ($template->query(name => 'commentip')) {
  708. $template->param(commentip =>
  709. $commentstate{$page}{commentip});
  710. }
  711. if ($template->query(name => 'commentauthor')) {
  712. $template->param(commentauthor =>
  713. $commentstate{$page}{commentauthor});
  714. }
  715. if ($template->query(name => 'commentauthorurl')) {
  716. $template->param(commentauthorurl =>
  717. $commentstate{$page}{commentauthorurl});
  718. }
  719. if ($template->query(name => 'removeurl') &&
  720. IkiWiki::Plugin::remove->can("check_canremove") &&
  721. length $config{cgiurl}) {
  722. $template->param(removeurl => IkiWiki::cgiurl(do => 'remove',
  723. page => $page));
  724. $template->param(have_actions => 1);
  725. }
  726. }
  727. sub addcommenturl ($) {
  728. my $page=shift;
  729. return IkiWiki::cgiurl(do => 'comment', page => $page);
  730. }
  731. sub num_comments ($$) {
  732. my $page=shift;
  733. my $dir=shift;
  734. my @comments=glob("$dir/$page/$config{comments_pagename}*._comment");
  735. return @comments;
  736. }
  737. sub unique_comment_location ($$$$) {
  738. my $page=shift;
  739. eval q{use Digest::MD5 'md5_hex'};
  740. error($@) if $@;
  741. my $content_md5=md5_hex(Encode::encode_utf8(shift));
  742. my $dir=shift;
  743. my $ext=shift || "._comment";
  744. my $location;
  745. my $i = num_comments($page, $dir);
  746. do {
  747. $i++;
  748. $location = "$page/$config{comments_pagename}${i}_${content_md5}";
  749. } while (-e "$dir/$location$ext");
  750. return $location;
  751. }
  752. sub page_to_id ($) {
  753. # Converts a comment page name into a unique, legal html id
  754. # attribute value, that can be used as an anchor to link to the
  755. # comment.
  756. my $page=shift;
  757. eval q{use Digest::MD5 'md5_hex'};
  758. error($@) if $@;
  759. return "comment-".md5_hex(Encode::encode_utf8(($page)));
  760. }
  761. package IkiWiki::PageSpec;
  762. sub match_postcomment ($$;@) {
  763. my $page = shift;
  764. my $glob = shift;
  765. if (! $postcomment) {
  766. return IkiWiki::FailReason->new("not posting a comment");
  767. }
  768. return match_glob($page, $glob, @_);
  769. }
  770. sub match_comment ($$;@) {
  771. my $page = shift;
  772. my $glob = shift;
  773. if (! IkiWiki::isinternal($page)) {
  774. return IkiWiki::FailReason->new("$page is not a comment");
  775. }
  776. my $type=IkiWiki::pagetype($IkiWiki::pagesources{$page});
  777. if (defined $type && $type ne "_comment") {
  778. return IkiWiki::FailReason->new("$page is not a comment");
  779. }
  780. return match_glob($page, "$glob/*", internal => 1, @_);
  781. }
  782. sub match_comment_pending ($$;@) {
  783. my $page = shift;
  784. my $glob = shift;
  785. if (! IkiWiki::isinternal($page)) {
  786. return IkiWiki::FailReason->new("$page is not a pending comment");
  787. }
  788. my $type=IkiWiki::pagetype($IkiWiki::pagesources{$page});
  789. if (defined $type && $type ne "_comment_pending") {
  790. return IkiWiki::FailReason->new("$page is not a pending comment");
  791. }
  792. return match_glob($page, "$glob/*", internal => 1, @_);
  793. }
  794. 1