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;
12 use POSIX qw(strftime);
14 use constant PREVIEW => "Preview";
15 use constant POST_COMMENT => "Post comment";
16 use constant CANCEL => "Cancel";
22 hook(type => "checkconfig", id => 'comments', call => \&checkconfig);
23 hook(type => "getsetup", id => 'comments', call => \&getsetup);
24 hook(type => "preprocess", id => 'comment', call => \&preprocess);
25 # here for backwards compatability with old comments
26 hook(type => "preprocess", id => '_comment', call => \&preprocess);
27 hook(type => "sessioncgi", id => 'comment', call => \&sessioncgi);
28 hook(type => "htmlize", id => "_comment", call => \&htmlize);
29 hook(type => "htmlize", id => "_comment_pending",
30 call => \&htmlize_pending);
31 hook(type => "pagetemplate", id => "comments", call => \&pagetemplate);
32 hook(type => "formbuilder_setup", id => "comments",
33 call => \&formbuilder_setup);
34 # Load goto to fix up user page links for logged-in commenters
35 IkiWiki::loadplugin("goto");
36 IkiWiki::loadplugin("inline");
46 comments_pagespec => {
48 example => 'blog/* and !*/Discussion',
49 description => 'PageSpec of pages where comments are allowed',
50 link => 'ikiwiki/PageSpec',
54 comments_closed_pagespec => {
56 example => 'blog/controversial or blog/flamewar',
57 description => 'PageSpec of pages where posting new comments is not allowed',
58 link => 'ikiwiki/PageSpec',
62 comments_pagename => {
64 default => 'comment_',
65 description => 'Base name for comments, e.g. "comment_" for pages like "sandbox/comment_12"',
66 safe => 0, # manual page moving required
69 comments_allowdirectives => {
72 description => 'Interpret directives in comments?',
76 comments_allowauthor => {
79 description => 'Allow anonymous commenters to set an author name?',
86 description => 'commit comments to the VCS',
87 # old uncommitted comments are likely to cause
88 # confusion if this is changed
95 $config{comments_commit} = 1
96 unless defined $config{comments_commit};
97 $config{comments_pagespec} = ''
98 unless defined $config{comments_pagespec};
99 $config{comments_closed_pagespec} = ''
100 unless defined $config{comments_closed_pagespec};
101 $config{comments_pagename} = 'comment_'
102 unless defined $config{comments_pagename};
107 return $params{content};
110 sub htmlize_pending {
112 return sprintf(gettext("this comment needs %s"),
114 IkiWiki::cgiurl(do => "commentmoderation").'">'.
115 gettext("moderation").'</a>');
118 # FIXME: copied verbatim from meta
121 if (exists $IkiWiki::Plugin::htmlscrubber::{safe_url_regexp} &&
122 defined $IkiWiki::Plugin::htmlscrubber::safe_url_regexp) {
123 return $url=~/$IkiWiki::Plugin::htmlscrubber::safe_url_regexp/;
132 my $page = $params{page};
134 my $format = $params{format};
135 if (defined $format && ! exists $IkiWiki::hooks{htmlize}{$format}) {
136 error(sprintf(gettext("unsupported page format %s"), $format));
139 my $content = $params{content};
140 if (! defined $content) {
141 error(gettext("comment must have content"));
143 $content =~ s/\\"/"/g;
145 $content = IkiWiki::filter($page, $params{destpage}, $content);
147 if ($config{comments_allowdirectives}) {
148 $content = IkiWiki::preprocess($page, $params{destpage},
152 # no need to bother with htmlize if it's just HTML
153 $content = IkiWiki::htmlize($page, $params{destpage}, $format, $content)
156 IkiWiki::run_hooks(sanitize => sub {
159 destpage => $params{destpage},
164 # set metadata, possibly overriding [[!meta]] directives from the
170 my $commentauthorurl;
172 if (defined $params{username}) {
173 $commentuser = $params{username};
175 my $oiduser = eval { IkiWiki::openiduser($commentuser) };
177 if (defined $oiduser) {
178 # looks like an OpenID
179 $commentauthorurl = $commentuser;
180 $commentauthor = (defined $params{nickname} && length $params{nickname}) ? $params{nickname} : $oiduser;
181 $commentopenid = $commentuser;
184 $commentauthorurl = IkiWiki::cgiurl(
186 page => IkiWiki::userpage($commentuser)
189 $commentauthor = $commentuser;
193 if (defined $params{ip}) {
194 $commentip = $params{ip};
196 $commentauthor = gettext("Anonymous");
199 $commentstate{$page}{commentuser} = $commentuser;
200 $commentstate{$page}{commentopenid} = $commentopenid;
201 $commentstate{$page}{commentip} = $commentip;
202 $commentstate{$page}{commentauthor} = $commentauthor;
203 $commentstate{$page}{commentauthorurl} = $commentauthorurl;
204 if (! defined $pagestate{$page}{meta}{author}) {
205 $pagestate{$page}{meta}{author} = $commentauthor;
207 if (! defined $pagestate{$page}{meta}{authorurl}) {
208 $pagestate{$page}{meta}{authorurl} = $commentauthorurl;
211 if ($config{comments_allowauthor}) {
212 if (defined $params{claimedauthor}) {
213 $pagestate{$page}{meta}{author} = $params{claimedauthor};
216 if (defined $params{url}) {
217 my $url=$params{url};
219 eval q{use URI::Heuristic};
221 $url=URI::Heuristic::uf_uristr($url);
225 $pagestate{$page}{meta}{authorurl} = $url;
230 $pagestate{$page}{meta}{author} = $commentauthor;
231 $pagestate{$page}{meta}{authorurl} = $commentauthorurl;
234 if (defined $params{subject}) {
235 # decode title the same way meta does
236 eval q{use HTML::Entities};
237 $pagestate{$page}{meta}{title} = decode_entities($params{subject});
240 if ($params{page} =~ m/\/\Q$config{comments_pagename}\E\d+_/) {
241 $pagestate{$page}{meta}{permalink} = urlto(IkiWiki::dirname($params{page}), undef, 1).
242 "#".page_to_id($params{page});
245 eval q{use Date::Parse};
247 my $time = str2time($params{date});
248 $IkiWiki::pagectime{$page} = $time if defined $time;
254 sub sessioncgi ($$) {
258 my $do = $cgi->param('do');
259 if ($do eq 'comment') {
260 editcomment($cgi, $session);
262 elsif ($do eq 'commentmoderation') {
263 commentmoderation($cgi, $session);
265 elsif ($do eq 'commentsignin') {
266 IkiWiki::cgi_signin($cgi, $session);
271 # Mostly cargo-culted from IkiWiki::plugin::editpage
272 sub editcomment ($$) {
276 IkiWiki::decode_cgi_utf8($cgi);
278 eval q{use CGI::FormBuilder};
281 my @buttons = (POST_COMMENT, PREVIEW, CANCEL);
282 my $form = CGI::FormBuilder->new(
283 fields => [qw{do sid page subject editcontent type author url}],
286 required => [qw{editcontent}],
289 action => $config{cgiurl},
292 template => { template('editcomment.tmpl') },
295 IkiWiki::decode_form_utf8($form);
296 IkiWiki::run_hooks(formbuilder_setup => sub {
297 shift->(title => "comment", form => $form, cgi => $cgi,
298 session => $session, buttons => \@buttons);
300 IkiWiki::decode_form_utf8($form);
302 my $type = $form->param('type');
303 if (defined $type && length $type && $IkiWiki::hooks{htmlize}{$type}) {
304 $type = IkiWiki::possibly_foolish_untaint($type);
307 $type = $config{default_pageext};
312 if (exists $IkiWiki::hooks{htmlize}) {
313 foreach my $key (grep { !/^_/ } keys %{$IkiWiki::hooks{htmlize}}) {
314 push @page_types, [$key, $IkiWiki::hooks{htmlize}{$key}{longname} || $key];
317 @page_types=sort @page_types;
319 $form->field(name => 'do', type => 'hidden');
320 $form->field(name => 'sid', type => 'hidden', value => $session->id,
322 $form->field(name => 'page', type => 'hidden');
323 $form->field(name => 'subject', type => 'text', size => 72);
324 $form->field(name => 'editcontent', type => 'textarea', rows => 10);
325 $form->field(name => "type", value => $type, force => 1,
326 type => 'select', options => \@page_types);
328 $form->tmpl_param(username => $session->param('name'));
330 if ($config{comments_allowauthor} and
331 ! defined $session->param('name')) {
332 $form->tmpl_param(allowauthor => 1);
333 $form->field(name => 'author', type => 'text', size => '40');
334 $form->field(name => 'url', type => 'text', size => '40');
337 $form->tmpl_param(allowauthor => 0);
338 $form->field(name => 'author', type => 'hidden', value => '',
340 $form->field(name => 'url', type => 'hidden', value => '',
344 if (! defined $session->param('name')) {
345 # Make signinurl work and return here.
346 $form->tmpl_param(signinurl => IkiWiki::cgiurl(do => 'commentsignin'));
347 $session->param(postsignin => $ENV{QUERY_STRING});
348 IkiWiki::cgi_savesession($session);
351 # The untaint is OK (as in editpage) because we're about to pass
352 # it to file_pruned anyway
353 my $page = $form->field('page');
354 $page = IkiWiki::possibly_foolish_untaint($page);
355 if (! defined $page || ! length $page ||
356 IkiWiki::file_pruned($page)) {
357 error(gettext("bad page name"));
360 my $baseurl = urlto($page, undef, 1);
362 $form->title(sprintf(gettext("commenting on %s"),
363 IkiWiki::pagetitle($page)));
365 $form->tmpl_param('helponformattinglink',
366 htmllink($page, $page, 'ikiwiki/formatting',
368 linktext => 'FormattingHelp'),
369 allowdirectives => $config{allow_directives});
371 if ($form->submitted eq CANCEL) {
372 # bounce back to the page they wanted to comment on, and exit.
373 # CANCEL need not be considered in future
374 IkiWiki::redirect($cgi, urlto($page, undef, 1));
378 if (not exists $pagesources{$page}) {
379 error(sprintf(gettext(
380 "page '%s' doesn't exist, so you can't comment"),
384 if (pagespec_match($page, $config{comments_closed_pagespec},
385 location => $page)) {
386 error(sprintf(gettext(
387 "comments on page '%s' are closed"),
391 # Set a flag to indicate that we're posting a comment,
392 # so that postcomment() can tell it should match.
394 IkiWiki::check_canedit($page, $cgi, $session);
397 my $content = "[[!comment format=$type\n";
399 if (defined $session->param('name')) {
400 my $username = $session->param('name');
401 $username =~ s/"/"/g;
402 $content .= " username=\"$username\"\n";
404 if (defined $session->param('nickname')) {
405 my $nickname = $session->param('nickname');
406 $nickname =~ s/"/"/g;
407 $content .= " nickname=\"$nickname\"\n";
409 elsif (defined $session->remote_addr()) {
410 my $ip = $session->remote_addr();
411 if ($ip =~ m/^([.0-9]+)$/) {
412 $content .= " ip=\"$1\"\n";
416 if ($config{comments_allowauthor}) {
417 my $author = $form->field('author');
418 if (defined $author && length $author) {
419 $author =~ s/"/"/g;
420 $content .= " claimedauthor=\"$author\"\n";
422 my $url = $form->field('url');
423 if (defined $url && length $url) {
424 $url =~ s/"/"/g;
425 $content .= " url=\"$url\"\n";
429 my $subject = $form->field('subject');
430 if (defined $subject && length $subject) {
431 $subject =~ s/"/"/g;
434 $subject = "comment ".(num_comments($page, $config{srcdir}) + 1);
436 $content .= " subject=\"$subject\"\n";
438 $content .= " date=\"" . decode_utf8(strftime('%Y-%m-%dT%H:%M:%SZ', gmtime)) . "\"\n";
440 my $editcontent = $form->field('editcontent');
441 $editcontent="" if ! defined $editcontent;
442 $editcontent =~ s/\r\n/\n/g;
443 $editcontent =~ s/\r/\n/g;
444 $editcontent =~ s/"/\\"/g;
445 $content .= " content=\"\"\"\n$editcontent\n\"\"\"]]\n";
447 my $location=unique_comment_location($page, $content, $config{srcdir});
449 # This is essentially a simplified version of editpage:
450 # - the user does not control the page that's created, only the parent
451 # - it's always a create operation, never an edit
452 # - this means that conflicts should never happen
453 # - this means that if they do, rocks fall and everyone dies
455 if ($form->submitted eq PREVIEW) {
456 my $preview=previewcomment($content, $location, $page, time);
457 IkiWiki::run_hooks(format => sub {
458 $preview = shift->(page => $page,
459 content => $preview);
461 $form->tmpl_param(page_preview => $preview);
464 $form->tmpl_param(page_preview => "");
467 if ($form->submitted eq POST_COMMENT && $form->validate) {
468 IkiWiki::checksessionexpiry($cgi, $session);
471 my $ok=IkiWiki::check_content(content => $form->field('editcontent'),
472 subject => $form->field('subject'),
473 $config{comments_allowauthor} ? (
474 author => $form->field('author'),
475 url => $form->field('url'),
485 $location=unique_comment_location($page, $content, $config{srcdir}, "._comment_pending");
486 writefile("$location._comment_pending", $config{srcdir}, $content);
488 # Refresh so anything that deals with pending
489 # comments can be updated.
490 require IkiWiki::Render;
492 IkiWiki::saveindex();
494 IkiWiki::printheader($session);
495 print IkiWiki::misctemplate(gettext(gettext("comment stored for moderation")),
497 gettext("Your comment will be posted after moderator review").
502 # FIXME: could probably do some sort of graceful retry
503 # on error? Would require significant unwinding though
504 my $file = "$location._comment";
505 writefile($file, $config{srcdir}, $content);
509 if ($config{rcs} and $config{comments_commit}) {
510 my $message = gettext("Added a comment");
511 if (defined $form->field('subject') &&
512 length $form->field('subject')) {
514 gettext("Added a comment: %s"),
515 $form->field('subject'));
518 IkiWiki::rcs_add($file);
519 IkiWiki::disable_commit_hook();
520 $conflict = IkiWiki::rcs_commit_staged(
524 IkiWiki::enable_commit_hook();
525 IkiWiki::rcs_update();
528 # Now we need a refresh
529 require IkiWiki::Render;
531 IkiWiki::saveindex();
533 # this should never happen, unless a committer deliberately
534 # breaks it or something
535 error($conflict) if defined $conflict;
537 # Jump to the new comment on the page.
538 # The trailing question mark tries to avoid broken
539 # caches and get the most recent version of the page.
540 IkiWiki::redirect($cgi, urlto($page, undef, 1).
541 "?updated#".page_to_id($location));
545 IkiWiki::showform ($form, \@buttons, $session, $cgi,
546 forcebaseurl => $baseurl, page => $page);
552 sub commentmoderation ($$) {
556 IkiWiki::needsignin($cgi, $session);
557 if (! IkiWiki::is_admin($session->param("name"))) {
558 error(gettext("you are not logged in as an admin"));
561 IkiWiki::decode_cgi_utf8($cgi);
563 if (defined $cgi->param('sid')) {
564 IkiWiki::checksessionexpiry($cgi, $session);
566 my $rejectalldefer=$cgi->param('rejectalldefer');
570 foreach my $id (keys %vars) {
571 if ($id =~ /(.*)\._comment(?:_pending)?$/) {
572 $id=decode_utf8($id);
573 my $action=$cgi->param($id);
574 next if $action eq 'Defer' && ! $rejectalldefer;
576 # Make sure that the id is of a legal
578 my ($f) = $id =~ /$config{wiki_file_regexp}/;
579 if (! defined $f || ! length $f ||
580 IkiWiki::file_pruned($f)) {
581 error("illegal file");
584 my $page=IkiWiki::dirname($f);
585 my $file="$config{srcdir}/$f";
588 $file="$config{wikistatedir}/comments_pending/".$f;
591 if ($action eq 'Accept') {
592 my $content=eval { readfile($file) };
593 next if $@; # file vanished since form was displayed
594 my $dest=unique_comment_location($page, $content, $config{srcdir})."._comment";
595 writefile($dest, $config{srcdir}, $content);
596 if ($config{rcs} and $config{comments_commit}) {
597 IkiWiki::rcs_add($dest);
602 require IkiWiki::Render;
603 IkiWiki::prune($file);
609 if ($config{rcs} and $config{comments_commit}) {
610 my $message = gettext("Comment moderation");
611 IkiWiki::disable_commit_hook();
612 $conflict=IkiWiki::rcs_commit_staged(
616 IkiWiki::enable_commit_hook();
617 IkiWiki::rcs_update();
620 # Now we need a refresh
621 require IkiWiki::Render;
623 IkiWiki::saveindex();
625 error($conflict) if defined $conflict;
630 my ($id, $dir, $ctime)=@{$_};
631 my $content=readfile("$dir/$id");
632 my $preview=previewcomment($content, $id,
638 } sort { $b->[2] <=> $a->[2] } comments_pending();
640 my $template=template("commentmoderation.tmpl");
643 comments => \@comments,
645 IkiWiki::printheader($session);
646 my $out=$template->output;
647 IkiWiki::run_hooks(format => sub {
648 $out = shift->(page => "", content => $out);
650 print IkiWiki::misctemplate(gettext("comment moderation"), $out);
654 sub formbuilder_setup (@) {
657 my $form=$params{form};
658 if ($form->title eq "preferences" &&
659 IkiWiki::is_admin($params{session}->param("name"))) {
660 push @{$params{buttons}}, "Comment Moderation";
661 if ($form->submitted && $form->submitted eq "Comment Moderation") {
662 commentmoderation($params{cgi}, $params{session});
667 sub comments_pending () {
670 eval q{use File::Find};
674 my $origdir=getcwd();
676 my $find_comments=sub {
679 return unless -d $dir;
681 chdir($dir) || die "chdir $dir: $!";
686 my $file=decode_utf8($_);
688 return if ! length $file || IkiWiki::file_pruned($file)
689 || -l $_ || -d _ || $file !~ /\Q$extension\E$/;
690 my ($f) = $file =~ /$config{wiki_file_regexp}/; # untaint
692 my $ctime=(stat($_))[10];
693 push @ret, [$f, $dir, $ctime];
698 chdir($origdir) || die "chdir $origdir: $!";
701 $find_comments->($config{srcdir}, "._comment_pending");
703 $find_comments->("$config{wikistatedir}/comments_pending/",
709 sub previewcomment ($$$) {
715 my $preview = IkiWiki::htmlize($location, $page, '_comment',
716 IkiWiki::linkify($location, $page,
717 IkiWiki::preprocess($location, $page,
718 IkiWiki::filter($location, $page, $content), 0, 1)));
720 my $template = template("comment.tmpl");
721 $template->param(content => $preview);
722 $template->param(ctime => displaytime($time, undef, 1));
723 $template->param(html5 => $config{html5});
725 IkiWiki::run_hooks(pagetemplate => sub {
726 shift->(page => $location,
728 template => $template);
731 $template->param(have_actions => 0);
733 return $template->output;
736 sub commentsshown ($) {
739 return ! pagespec_match($page, "comment(*)",
740 location => $page) &&
741 pagespec_match($page, $config{comments_pagespec},
745 sub commentsopen ($) {
748 return length $config{cgiurl} > 0 &&
749 (! length $config{comments_closed_pagespec} ||
750 ! pagespec_match($page, $config{comments_closed_pagespec},
754 sub pagetemplate (@) {
757 my $page = $params{page};
758 my $template = $params{template};
759 my $shown = ($template->query(name => 'commentslink') ||
760 $template->query(name => 'commentsurl') ||
761 $template->query(name => 'atomcommentsurl') ||
762 $template->query(name => 'comments')) &&
763 commentsshown($page);
765 if ($template->query(name => 'comments')) {
766 my $comments = undef;
768 $comments = IkiWiki::preprocess_inline(
769 pages => "comment($page)",
770 template => 'comment',
774 destpage => $params{destpage},
775 feedfile => 'comments',
780 if (defined $comments && length $comments) {
781 $template->param(comments => $comments);
784 if ($shown && commentsopen($page)) {
785 $template->param(addcommenturl => addcommenturl($page));
790 if ($template->query(name => 'commentsurl')) {
791 $template->param(commentsurl =>
792 urlto($page, undef, 1).'#comments');
795 if ($template->query(name => 'atomcommentsurl') && $config{usedirs}) {
796 # This will 404 until there are some comments, but I
797 # think that's probably OK...
798 $template->param(atomcommentsurl =>
799 urlto($page, undef, 1).'comments.atom');
802 if ($template->query(name => 'commentslink')) {
803 my $num=num_comments($page, $config{srcdir});
806 $link = htmllink($page, $params{destpage}, $page,
807 linktext => sprintf(ngettext("%i comment", "%i comments", $num), $num),
808 anchor => "comments",
812 elsif (commentsopen($page)) {
813 $link = "<a href=\"".addcommenturl($page)."\">".
814 #translators: Here "Comment" is a verb;
815 #translators: the user clicks on it to
816 #translators: post a comment.
820 $template->param(commentslink => $link)
825 # everything below this point is only relevant to the comments
827 if (!exists $commentstate{$page}) {
831 if ($template->query(name => 'commentid')) {
832 $template->param(commentid => page_to_id($page));
835 if ($template->query(name => 'commentuser')) {
836 $template->param(commentuser =>
837 $commentstate{$page}{commentuser});
840 if ($template->query(name => 'commentopenid')) {
841 $template->param(commentopenid =>
842 $commentstate{$page}{commentopenid});
845 if ($template->query(name => 'commentip')) {
846 $template->param(commentip =>
847 $commentstate{$page}{commentip});
850 if ($template->query(name => 'commentauthor')) {
851 $template->param(commentauthor =>
852 $commentstate{$page}{commentauthor});
855 if ($template->query(name => 'commentauthorurl')) {
856 $template->param(commentauthorurl =>
857 $commentstate{$page}{commentauthorurl});
860 if ($template->query(name => 'removeurl') &&
861 IkiWiki::Plugin::remove->can("check_canremove") &&
862 length $config{cgiurl}) {
863 $template->param(removeurl => IkiWiki::cgiurl(do => 'remove',
865 $template->param(have_actions => 1);
869 sub addcommenturl ($) {
872 return IkiWiki::cgiurl(do => 'comment', page => $page);
875 sub num_comments ($$) {
879 my @comments=glob("$dir/$page/$config{comments_pagename}*._comment");
880 return int @comments;
883 sub unique_comment_location ($$$$) {
885 eval q{use Digest::MD5 'md5_hex'};
887 my $content_md5=md5_hex(Encode::encode_utf8(shift));
889 my $ext=shift || "._comment";
892 my $i = num_comments($page, $dir);
895 $location = "$page/$config{comments_pagename}${i}_${content_md5}";
896 } while (-e "$dir/$location$ext");
902 # Converts a comment page name into a unique, legal html id
903 # attribute value, that can be used as an anchor to link to the
907 eval q{use Digest::MD5 'md5_hex'};
910 return "comment-".md5_hex(Encode::encode_utf8(($page)));
913 package IkiWiki::PageSpec;
915 sub match_postcomment ($$;@) {
919 if (! $postcomment) {
920 return IkiWiki::FailReason->new("not posting a comment");
922 return match_glob($page, $glob, @_);
925 sub match_comment ($$;@) {
929 # To see if it's a comment, check the source file type.
930 # Deal with comments that were just deleted.
931 my $source=exists $IkiWiki::pagesources{$page} ?
932 $IkiWiki::pagesources{$page} :
933 $IkiWiki::delpagesources{$page};
934 my $type=defined $source ? IkiWiki::pagetype($source) : undef;
935 if (! defined $type || $type ne "_comment") {
936 return IkiWiki::FailReason->new("$page is not a comment");
939 return match_glob($page, "$glob/*", internal => 1, @_);
942 sub match_comment_pending ($$;@) {
946 my $source=exists $IkiWiki::pagesources{$page} ?
947 $IkiWiki::pagesources{$page} :
948 $IkiWiki::delpagesources{$page};
949 my $type=defined $source ? IkiWiki::pagetype($source) : undef;
950 if (! defined $type || $type ne "_comment_pending") {
951 return IkiWiki::FailReason->new("$page is not a pending comment");
954 return match_glob($page, "$glob/*", internal => 1, @_);