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 hook(type => "sessioncgi", id => 'comment', call => \&sessioncgi);
26 hook(type => "htmlize", id => "_comment", call => \&htmlize);
27 hook(type => "pagetemplate", id => "comments", call => \&pagetemplate);
28 hook(type => "cgi", id => "comments", call => \&linkcgi);
29 IkiWiki::loadplugin("inline");
38 comments_pagespec => {
40 example => 'blog/* and !*/Discussion',
41 description => 'PageSpec of pages where comments are allowed',
42 link => 'ikiwiki/PageSpec',
46 comments_closed_pagespec => {
48 example => 'blog/controversial or blog/flamewar',
49 description => 'PageSpec of pages where posting new comments is not allowed',
50 link => 'ikiwiki/PageSpec',
54 comments_pagename => {
56 default => 'comment_',
57 description => 'Base name for comments, e.g. "comment_" for pages like "sandbox/comment_12"',
58 safe => 0, # manual page moving required
61 comments_allowdirectives => {
64 description => 'Interpret directives in comments?',
68 comments_allowauthor => {
71 description => 'Allow anonymous commenters to set an author name?',
78 description => 'commit comments to the VCS',
79 # old uncommitted comments are likely to cause
80 # confusion if this is changed
87 $config{comments_commit} = 1
88 unless defined $config{comments_commit};
89 $config{comments_pagespec} = ''
90 unless defined $config{comments_pagespec};
91 $config{comments_closed_pagespec} = ''
92 unless defined $config{comments_closed_pagespec};
93 $config{comments_pagename} = 'comment_'
94 unless defined $config{comments_pagename};
99 return $params{content};
102 # FIXME: copied verbatim from meta
105 if (exists $IkiWiki::Plugin::htmlscrubber::{safe_url_regexp} &&
106 defined $IkiWiki::Plugin::htmlscrubber::safe_url_regexp) {
107 return $url=~/$IkiWiki::Plugin::htmlscrubber::safe_url_regexp/;
116 my $page = $params{page};
118 my $format = $params{format};
119 if (defined $format && ! exists $IkiWiki::hooks{htmlize}{$format}) {
120 error(sprintf(gettext("unsupported page format %s"), $format));
123 my $content = $params{content};
124 if (! defined $content) {
125 error(gettext("comment must have content"));
127 $content =~ s/\\"/"/g;
129 $content = IkiWiki::filter($page, $params{destpage}, $content);
131 if ($config{comments_allowdirectives}) {
132 $content = IkiWiki::preprocess($page, $params{destpage},
136 # no need to bother with htmlize if it's just HTML
137 $content = IkiWiki::htmlize($page, $params{destpage}, $format,
138 $content) if defined $format;
140 IkiWiki::run_hooks(sanitize => sub {
143 destpage => $params{destpage},
148 # set metadata, possibly overriding [[!meta]] directives from the
154 my $commentauthorurl;
156 if (defined $params{username}) {
157 $commentuser = $params{username};
159 my $oiduser = eval { IkiWiki::openiduser($commentuser) };
161 if (defined $oiduser) {
162 # looks like an OpenID
163 $commentauthorurl = $commentuser;
164 $commentauthor = $oiduser;
165 $commentopenid = $commentuser;
168 $commentauthorurl = IkiWiki::cgiurl(
170 page => (length $config{userdir}
171 ? "$config{userdir}/$commentuser"
174 $commentauthor = $commentuser;
178 if (defined $params{ip}) {
179 $commentip = $params{ip};
181 $commentauthor = gettext("Anonymous");
184 $commentstate{$page}{commentuser} = $commentuser;
185 $commentstate{$page}{commentopenid} = $commentopenid;
186 $commentstate{$page}{commentip} = $commentip;
187 $commentstate{$page}{commentauthor} = $commentauthor;
188 $commentstate{$page}{commentauthorurl} = $commentauthorurl;
189 if (! defined $pagestate{$page}{meta}{author}) {
190 $pagestate{$page}{meta}{author} = $commentauthor;
192 if (! defined $pagestate{$page}{meta}{authorurl}) {
193 $pagestate{$page}{meta}{authorurl} = $commentauthorurl;
196 if ($config{comments_allowauthor}) {
197 if (defined $params{claimedauthor}) {
198 $pagestate{$page}{meta}{author} = $params{claimedauthor};
201 if (defined $params{url}) {
202 my $url=$params{url};
204 eval q{use URI::Heuristic};
206 $url=URI::Heuristic::uf_uristr($url);
210 $pagestate{$page}{meta}{authorurl} = $url;
215 $pagestate{$page}{meta}{author} = $commentauthor;
216 $pagestate{$page}{meta}{authorurl} = $commentauthorurl;
219 if (defined $params{subject}) {
220 $pagestate{$page}{meta}{title} = $params{subject};
223 if ($params{page} =~ m/\/(\Q$config{comments_pagename}\E\d+)$/) {
224 $pagestate{$page}{meta}{permalink} = urlto(IkiWiki::dirname($params{page}), undef, 1).
228 eval q{use Date::Parse};
230 my $time = str2time($params{date});
231 $IkiWiki::pagectime{$page} = $time if defined $time;
237 # This is exactly the same as recentchanges_link :-(
240 if (defined $cgi->param('do') && $cgi->param('do') eq "commenter") {
242 my $page=decode_utf8($cgi->param("page"));
243 if (! defined $page) {
244 error("missing page parameter");
247 IkiWiki::loadindex();
249 my $link=bestlink("", $page);
250 if (! length $link) {
251 print "Content-type: text/html\n\n";
252 print IkiWiki::misctemplate(gettext(gettext("missing page")),
254 sprintf(gettext("The page %s does not exist."),
255 htmllink("", "", $page)).
259 IkiWiki::redirect($cgi, urlto($link, undef, 1));
266 # Mostly cargo-culted from IkiWiki::plugin::editpage
267 sub sessioncgi ($$) {
271 my $do = $cgi->param('do');
272 return unless $do eq 'comment';
274 IkiWiki::decode_cgi_utf8($cgi);
276 eval q{use CGI::FormBuilder};
279 my @buttons = (POST_COMMENT, PREVIEW, CANCEL);
280 my $form = CGI::FormBuilder->new(
281 fields => [qw{do sid page subject editcontent type author url}],
284 required => [qw{editcontent}],
287 action => $config{cgiurl},
290 template => scalar IkiWiki::template_params('editcomment.tmpl'),
293 IkiWiki::decode_form_utf8($form);
294 IkiWiki::run_hooks(formbuilder_setup => sub {
295 shift->(title => "comment", form => $form, cgi => $cgi,
296 session => $session, buttons => \@buttons);
298 IkiWiki::decode_form_utf8($form);
300 my $type = $form->param('type');
301 if (defined $type && length $type && $IkiWiki::hooks{htmlize}{$type}) {
302 $type = IkiWiki::possibly_foolish_untaint($type);
305 $type = $config{default_pageext};
308 if (exists $IkiWiki::hooks{htmlize}) {
309 @page_types = grep { ! /^_/ } keys %{$IkiWiki::hooks{htmlize}};
312 $form->field(name => 'do', type => 'hidden');
313 $form->field(name => 'sid', type => 'hidden', value => $session->id,
315 $form->field(name => 'page', type => 'hidden');
316 $form->field(name => 'subject', type => 'text', size => 72);
317 $form->field(name => 'editcontent', type => 'textarea', rows => 10);
318 $form->field(name => "type", value => $type, force => 1,
319 type => 'select', options => \@page_types);
321 $form->tmpl_param(username => $session->param('name'));
323 if ($config{comments_allowauthor} and
324 ! defined $session->param('name')) {
325 $form->tmpl_param(allowauthor => 1);
326 $form->field(name => 'author', type => 'text', size => '40');
327 $form->field(name => 'url', type => 'text', size => '40');
330 $form->tmpl_param(allowauthor => 0);
331 $form->field(name => 'author', type => 'hidden', value => '',
333 $form->field(name => 'url', type => 'hidden', value => '',
337 # The untaint is OK (as in editpage) because we're about to pass
338 # it to file_pruned anyway
339 my $page = $form->field('page');
340 $page = IkiWiki::possibly_foolish_untaint($page);
341 if (! defined $page || ! length $page ||
342 IkiWiki::file_pruned($page, $config{srcdir})) {
343 error(gettext("bad page name"));
346 # FIXME: is this right? Or should we be using the candidate subpage
347 # (whatever that might mean) as the base URL?
348 my $baseurl = urlto($page, undef, 1);
350 $form->title(sprintf(gettext("commenting on %s"),
351 IkiWiki::pagetitle($page)));
353 $form->tmpl_param('helponformattinglink',
354 htmllink($page, $page, 'ikiwiki/formatting',
356 linktext => 'FormattingHelp'),
357 allowdirectives => $config{allow_directives});
359 if ($form->submitted eq CANCEL) {
360 # bounce back to the page they wanted to comment on, and exit.
361 # CANCEL need not be considered in future
362 IkiWiki::redirect($cgi, urlto($page, undef, 1));
366 if (not exists $pagesources{$page}) {
367 error(sprintf(gettext(
368 "page '%s' doesn't exist, so you can't comment"),
372 if (pagespec_match($page, $config{comments_closed_pagespec},
373 location => $page)) {
374 error(sprintf(gettext(
375 "comments on page '%s' are closed"),
379 # Set a flag to indicate that we're posting a comment,
380 # so that postcomment() can tell it should match.
382 IkiWiki::check_canedit($page, $cgi, $session);
385 # FIXME: rather a simplistic way to make the comments...
391 $location = "$page/$config{comments_pagename}$i";
392 } while (-e "$config{srcdir}/$location._comment");
394 my $content = "[[!_comment format=$type\n";
396 # FIXME: handling of double quotes probably wrong?
397 if (defined $session->param('name')) {
398 my $username = $session->param('name');
399 $username =~ s/"/"/g;
400 $content .= " username=\"$username\"\n";
402 elsif (defined $ENV{REMOTE_ADDR}) {
403 my $ip = $ENV{REMOTE_ADDR};
404 if ($ip =~ m/^([.0-9]+)$/) {
405 $content .= " ip=\"$1\"\n";
409 if ($config{comments_allowauthor}) {
410 my $author = $form->field('author');
411 if (length $author) {
412 $author =~ s/"/"/g;
413 $content .= " claimedauthor=\"$author\"\n";
415 my $url = $form->field('url');
417 $url =~ s/"/"/g;
418 $content .= " url=\"$url\"\n";
422 my $subject = $form->field('subject');
423 if (length $subject) {
424 $subject =~ s/"/"/g;
425 $content .= " subject=\"$subject\"\n";
428 $content .= " date=\"" . decode_utf8(strftime('%Y-%m-%dT%H:%M:%SZ', gmtime)) . "\"\n";
430 my $editcontent = $form->field('editcontent') || '';
431 $editcontent =~ s/\r\n/\n/g;
432 $editcontent =~ s/\r/\n/g;
433 $editcontent =~ s/"/\\"/g;
434 $content .= " content=\"\"\"\n$editcontent\n\"\"\"]]\n";
436 # This is essentially a simplified version of editpage:
437 # - the user does not control the page that's created, only the parent
438 # - it's always a create operation, never an edit
439 # - this means that conflicts should never happen
440 # - this means that if they do, rocks fall and everyone dies
442 if ($form->submitted eq PREVIEW) {
443 my $preview = IkiWiki::htmlize($location, $page, '_comment',
444 IkiWiki::linkify($location, $page,
445 IkiWiki::preprocess($location, $page,
446 IkiWiki::filter($location,
449 IkiWiki::run_hooks(format => sub {
450 $preview = shift->(page => $page,
451 content => $preview);
454 my $template = template("comment.tmpl");
455 $template->param(content => $preview);
456 $template->param(title => $form->field('subject'));
457 $template->param(ctime => displaytime(time));
459 IkiWiki::run_hooks(pagetemplate => sub {
460 shift->(page => $location,
462 template => $template);
465 $form->tmpl_param(page_preview => $template->output);
468 $form->tmpl_param(page_preview => "");
471 if ($form->submitted eq POST_COMMENT && $form->validate) {
472 my $file = "$location._comment";
474 IkiWiki::checksessionexpiry($cgi, $session);
476 # FIXME: could probably do some sort of graceful retry
477 # on error? Would require significant unwinding though
478 writefile($file, $config{srcdir}, $content);
482 if ($config{rcs} and $config{comments_commit}) {
483 my $message = gettext("Added a comment");
484 if (defined $form->field('subject') &&
485 length $form->field('subject')) {
487 gettext("Added a comment: %s"),
488 $form->field('subject'));
491 IkiWiki::rcs_add($file);
492 IkiWiki::disable_commit_hook();
493 $conflict = IkiWiki::rcs_commit_staged($message,
494 $session->param('name'), $ENV{REMOTE_ADDR});
495 IkiWiki::enable_commit_hook();
496 IkiWiki::rcs_update();
499 # Now we need a refresh
500 require IkiWiki::Render;
502 IkiWiki::saveindex();
504 # this should never happen, unless a committer deliberately
505 # breaks it or something
506 error($conflict) if defined $conflict;
508 # Jump to the new comment on the page.
509 # The trailing question mark tries to avoid broken
510 # caches and get the most recent version of the page.
511 IkiWiki::redirect($cgi, urlto($page, undef, 1)."#$location?updated");
515 IkiWiki::showform ($form, \@buttons, $session, $cgi,
516 forcebaseurl => $baseurl);
522 sub commentsshown ($) {
525 return ! pagespec_match($page, "*/$config{comments_pagename}*",
526 location => $page) &&
527 pagespec_match($page, $config{comments_pagespec},
531 sub commentsopen ($) {
534 return length $config{cgiurl} > 0 &&
535 (! length $config{comments_closed_pagespec} ||
536 ! pagespec_match($page, $config{comments_closed_pagespec},
540 sub pagetemplate (@) {
543 my $page = $params{page};
544 my $template = $params{template};
545 my $shown = ($template->query(name => 'commentslink') ||
546 $template->query(name => 'commentsurl') ||
547 $template->query(name => 'atomcommentsurl') ||
548 $template->query(name => 'comments')) &&
549 commentsshown($page);
551 if ($template->query(name => 'comments')) {
552 my $comments = undef;
554 $comments = IkiWiki::preprocess_inline(
555 pages => "internal($page/$config{comments_pagename}*)",
556 template => 'comment',
560 destpage => $params{destpage},
561 feedfile => 'comments',
566 if (defined $comments && length $comments) {
567 $template->param(comments => $comments);
570 if ($shown && commentsopen($page)) {
571 my $addcommenturl = IkiWiki::cgiurl(do => 'comment',
573 $template->param(addcommenturl => $addcommenturl);
577 if ($template->query(name => 'commentsurl')) {
579 $template->param(commentsurl =>
580 urlto($page, undef, 1).'#comments');
584 if ($template->query(name => 'atomcommentsurl') && $config{usedirs}) {
586 # This will 404 until there are some comments, but I
587 # think that's probably OK...
588 $template->param(atomcommentsurl =>
589 urlto($page, undef, 1).'comments.atom');
593 if ($template->query(name => 'commentslink')) {
594 # XXX Would be nice to say how many comments there are in
595 # the link. But, to update the number, blog pages
596 # would have to update whenever comments of any inlines
597 # page are added, which is not currently done.
599 $template->param(commentslink =>
600 htmllink($page, $params{destpage}, $page,
601 linktext => gettext("Comments"),
602 anchor => "comments",
603 noimageinline => 1));
607 if ($template->query(name => 'commentuser')) {
608 $template->param(commentuser =>
609 $commentstate{$page}{commentuser});
612 if ($template->query(name => 'commentopenid')) {
613 $template->param(commentopenid =>
614 $commentstate{$page}{commentopenid});
617 if ($template->query(name => 'commentip')) {
618 $template->param(commentip =>
619 $commentstate{$page}{commentip});
622 if ($template->query(name => 'commentauthor')) {
623 $template->param(commentauthor =>
624 $commentstate{$page}{commentauthor});
627 if ($template->query(name => 'commentauthorurl')) {
628 $template->param(commentauthorurl =>
629 $commentstate{$page}{commentauthorurl});
633 package IkiWiki::PageSpec;
635 sub match_postcomment ($$;@) {
639 if (! $postcomment) {
640 return IkiWiki::FailReason->new("not posting a comment");
642 return match_glob($page, $glob);