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;
13 use constant PREVIEW => "Preview";
14 use constant POST_COMMENT => "Post comment";
15 use constant CANCEL => "Cancel";
21 hook(type => "checkconfig", id => 'comments', call => \&checkconfig);
22 hook(type => "getsetup", id => 'comments', call => \&getsetup);
23 hook(type => "preprocess", id => 'comment', call => \&preprocess,
25 hook(type => "preprocess", id => 'commentmoderation', call => \&preprocess_moderation);
26 # here for backwards compatability with old comments
27 hook(type => "preprocess", id => '_comment', call => \&preprocess);
28 hook(type => "sessioncgi", id => 'comment', call => \&sessioncgi);
29 hook(type => "htmlize", id => "_comment", call => \&htmlize);
30 hook(type => "htmlize", id => "_comment_pending",
31 call => \&htmlize_pending);
32 hook(type => "pagetemplate", id => "comments", call => \&pagetemplate);
33 hook(type => "formbuilder_setup", id => "comments",
34 call => \&formbuilder_setup);
35 # Load goto to fix up user page links for logged-in commenters
36 IkiWiki::loadplugin("goto");
37 IkiWiki::loadplugin("inline");
47 comments_pagespec => {
49 example => 'blog/* and !*/Discussion',
50 description => 'PageSpec of pages where comments are allowed',
51 link => 'ikiwiki/PageSpec',
55 comments_closed_pagespec => {
57 example => 'blog/controversial or blog/flamewar',
58 description => 'PageSpec of pages where posting new comments is not allowed',
59 link => 'ikiwiki/PageSpec',
63 comments_pagename => {
65 default => 'comment_',
66 description => 'Base name for comments, e.g. "comment_" for pages like "sandbox/comment_12"',
67 safe => 0, # manual page moving required
70 comments_allowdirectives => {
73 description => 'Interpret directives in comments?',
77 comments_allowauthor => {
80 description => 'Allow anonymous commenters to set an author name?',
87 description => 'commit comments to the VCS',
88 # old uncommitted comments are likely to cause
89 # confusion if this is changed
96 $config{comments_commit} = 1
97 unless defined $config{comments_commit};
98 $config{comments_pagespec} = ''
99 unless defined $config{comments_pagespec};
100 $config{comments_closed_pagespec} = ''
101 unless defined $config{comments_closed_pagespec};
102 $config{comments_pagename} = 'comment_'
103 unless defined $config{comments_pagename};
108 return $params{content};
111 sub htmlize_pending {
113 return sprintf(gettext("this comment needs %s"),
115 IkiWiki::cgiurl(do => "commentmoderation").'">'.
116 gettext("moderation").'</a>');
119 # FIXME: copied verbatim from meta
122 if (exists $IkiWiki::Plugin::htmlscrubber::{safe_url_regexp} &&
123 defined $IkiWiki::Plugin::htmlscrubber::safe_url_regexp) {
124 return $url=~/$IkiWiki::Plugin::htmlscrubber::safe_url_regexp/;
133 my $page = $params{page};
135 my $format = $params{format};
136 if (defined $format && ! exists $IkiWiki::hooks{htmlize}{$format}) {
137 error(sprintf(gettext("unsupported page format %s"), $format));
140 my $content = $params{content};
141 if (! defined $content) {
142 error(gettext("comment must have content"));
144 $content =~ s/\\"/"/g;
146 if (defined wantarray) {
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},
165 IkiWiki::preprocess($page, $params{destpage}, $content, 1);
168 # set metadata, possibly overriding [[!meta]] directives from the
174 my $commentauthorurl;
176 if (defined $params{username}) {
177 $commentuser = $params{username};
179 my $oiduser = eval { IkiWiki::openiduser($commentuser) };
181 if (defined $oiduser) {
182 # looks like an OpenID
183 $commentauthorurl = $commentuser;
184 $commentauthor = (defined $params{nickname} && length $params{nickname}) ? $params{nickname} : $oiduser;
185 $commentopenid = $commentuser;
188 $commentauthorurl = IkiWiki::cgiurl(
190 page => IkiWiki::userpage($commentuser)
193 $commentauthor = $commentuser;
197 if (defined $params{ip}) {
198 $commentip = $params{ip};
200 $commentauthor = gettext("Anonymous");
203 $commentstate{$page}{commentuser} = $commentuser;
204 $commentstate{$page}{commentopenid} = $commentopenid;
205 $commentstate{$page}{commentip} = $commentip;
206 $commentstate{$page}{commentauthor} = $commentauthor;
207 $commentstate{$page}{commentauthorurl} = $commentauthorurl;
208 $commentstate{$page}{commentauthoravatar} = $params{avatar};
209 if (! defined $pagestate{$page}{meta}{author}) {
210 $pagestate{$page}{meta}{author} = $commentauthor;
212 if (! defined $pagestate{$page}{meta}{authorurl}) {
213 $pagestate{$page}{meta}{authorurl} = $commentauthorurl;
216 if ($config{comments_allowauthor}) {
217 if (defined $params{claimedauthor}) {
218 $pagestate{$page}{meta}{author} = $params{claimedauthor};
221 if (defined $params{url}) {
222 my $url=$params{url};
224 eval q{use URI::Heuristic};
226 $url=URI::Heuristic::uf_uristr($url);
230 $pagestate{$page}{meta}{authorurl} = $url;
235 $pagestate{$page}{meta}{author} = $commentauthor;
236 $pagestate{$page}{meta}{authorurl} = $commentauthorurl;
239 if (defined $params{subject}) {
240 # decode title the same way meta does
241 eval q{use HTML::Entities};
242 $pagestate{$page}{meta}{title} = decode_entities($params{subject});
245 if ($params{page} =~ m/\/\Q$config{comments_pagename}\E\d+_/) {
246 $pagestate{$page}{meta}{permalink} = urlto(IkiWiki::dirname($params{page})).
247 "#".page_to_id($params{page});
250 eval q{use Date::Parse};
252 my $time = str2time($params{date});
253 $IkiWiki::pagectime{$page} = $time if defined $time;
259 sub preprocess_moderation {
262 $params{desc}=gettext("Comment Moderation")
263 unless defined $params{desc};
265 if (length $config{cgiurl}) {
267 IkiWiki::cgiurl(do => 'commentmoderation').
268 '">'.$params{desc}.'</a>';
271 return $params{desc};
275 sub sessioncgi ($$) {
279 my $do = $cgi->param('do');
280 if ($do eq 'comment') {
281 editcomment($cgi, $session);
283 elsif ($do eq 'commentmoderation') {
284 commentmoderation($cgi, $session);
286 elsif ($do eq 'commentsignin') {
287 IkiWiki::cgi_signin($cgi, $session);
292 # Mostly cargo-culted from IkiWiki::plugin::editpage
293 sub editcomment ($$) {
297 IkiWiki::decode_cgi_utf8($cgi);
299 eval q{use CGI::FormBuilder};
302 my @buttons = (POST_COMMENT, PREVIEW, CANCEL);
303 my $form = CGI::FormBuilder->new(
304 fields => [qw{do sid page subject editcontent type author
308 required => [qw{editcontent}],
311 action => IkiWiki::cgiurl(),
314 template => { template('editcomment.tmpl') },
317 IkiWiki::decode_form_utf8($form);
318 IkiWiki::run_hooks(formbuilder_setup => sub {
319 shift->(title => "comment", form => $form, cgi => $cgi,
320 session => $session, buttons => \@buttons);
322 IkiWiki::decode_form_utf8($form);
324 my $type = $form->param('type');
325 if (defined $type && length $type && $IkiWiki::hooks{htmlize}{$type}) {
326 $type = IkiWiki::possibly_foolish_untaint($type);
329 $type = $config{default_pageext};
334 if (exists $IkiWiki::hooks{htmlize}) {
335 foreach my $key (grep { !/^_/ } keys %{$IkiWiki::hooks{htmlize}}) {
336 push @page_types, [$key, $IkiWiki::hooks{htmlize}{$key}{longname} || $key];
339 @page_types=sort @page_types;
341 $form->field(name => 'do', type => 'hidden');
342 $form->field(name => 'sid', type => 'hidden', value => $session->id,
344 $form->field(name => 'page', type => 'hidden');
345 $form->field(name => 'subject', type => 'text', size => 72);
346 $form->field(name => 'editcontent', type => 'textarea', rows => 10);
347 $form->field(name => "type", value => $type, force => 1,
348 type => 'select', options => \@page_types);
350 my $username=$session->param('name');
351 $form->tmpl_param(username => $username);
352 if (defined $username && IkiWiki::Plugin::notifyemail->can("subscribe")) {
353 $form->field(name => "subscribe",
354 options => [gettext("email replies to me")]);
357 $form->field(name => "subscribe", type => 'hidden');
360 if ($config{comments_allowauthor} and
361 ! defined $session->param('name')) {
362 $form->tmpl_param(allowauthor => 1);
363 $form->field(name => 'author', type => 'text', size => '40');
364 $form->field(name => 'url', type => 'text', size => '40');
367 $form->tmpl_param(allowauthor => 0);
368 $form->field(name => 'author', type => 'hidden', value => '',
370 $form->field(name => 'url', type => 'hidden', value => '',
374 if (! defined $session->param('name')) {
375 # Make signinurl work and return here.
376 $form->tmpl_param(signinurl => IkiWiki::cgiurl(do => 'commentsignin'));
377 $session->param(postsignin => $ENV{QUERY_STRING});
378 IkiWiki::cgi_savesession($session);
381 # The untaint is OK (as in editpage) because we're about to pass
382 # it to file_pruned and wiki_file_regexp anyway.
383 my ($page) = $form->field('page')=~/$config{wiki_file_regexp}/;
384 $page = IkiWiki::possibly_foolish_untaint($page);
385 if (! defined $page || ! length $page ||
386 IkiWiki::file_pruned($page)) {
387 error(gettext("bad page name"));
390 $form->title(sprintf(gettext("commenting on %s"),
391 IkiWiki::pagetitle(IkiWiki::basename($page))));
393 $form->tmpl_param('helponformattinglink',
394 htmllink($page, $page, 'ikiwiki/formatting',
396 linktext => 'FormattingHelp'),
397 allowdirectives => $config{allow_directives});
399 if ($form->submitted eq CANCEL) {
400 # bounce back to the page they wanted to comment on, and exit.
401 IkiWiki::redirect($cgi, urlto($page));
405 if (not exists $pagesources{$page}) {
406 error(sprintf(gettext(
407 "page '%s' doesn't exist, so you can't comment"),
411 if (pagespec_match($page, $config{comments_closed_pagespec},
412 location => $page)) {
413 error(sprintf(gettext(
414 "comments on page '%s' are closed"),
418 # Set a flag to indicate that we're posting a comment,
419 # so that postcomment() can tell it should match.
421 IkiWiki::check_canedit($page, $cgi, $session);
424 my $content = "[[!comment format=$type\n";
426 if (defined $session->param('name')) {
427 my $username = $session->param('name');
428 $username =~ s/"/"/g;
429 $content .= " username=\"$username\"\n";
431 if (defined $session->param('nickname')) {
432 my $nickname = $session->param('nickname');
433 $nickname =~ s/"/"/g;
434 $content .= " nickname=\"$nickname\"\n";
436 elsif (defined $session->remote_addr()) {
437 my $ip = $session->remote_addr();
438 if ($ip =~ m/^([.0-9]+)$/) {
439 $content .= " ip=\"$1\"\n";
443 if ($config{comments_allowauthor}) {
444 my $author = $form->field('author');
445 if (defined $author && length $author) {
446 $author =~ s/"/"/g;
447 $content .= " claimedauthor=\"$author\"\n";
449 my $url = $form->field('url');
450 if (defined $url && length $url) {
451 $url =~ s/"/"/g;
452 $content .= " url=\"$url\"\n";
456 my $avatar=getavatar($session->param('name'));
457 if (defined $avatar && length $avatar) {
458 $avatar =~ s/"/"/g;
459 $content .= " avatar=\"$avatar\"\n";
462 my $subject = $form->field('subject');
463 if (defined $subject && length $subject) {
464 $subject =~ s/"/"/g;
467 $subject = "comment ".(num_comments($page, $config{srcdir}) + 1);
469 $content .= " subject=\"$subject\"\n";
471 $content .= " date=\"" . strftime_utf8('%Y-%m-%dT%H:%M:%SZ', gmtime) . "\"\n";
473 my $editcontent = $form->field('editcontent');
474 $editcontent="" if ! defined $editcontent;
475 $editcontent =~ s/\r\n/\n/g;
476 $editcontent =~ s/\r/\n/g;
477 $editcontent =~ s/"/\\"/g;
478 $content .= " content=\"\"\"\n$editcontent\n\"\"\"]]\n";
480 my $location=unique_comment_location($page, $content, $config{srcdir});
482 # This is essentially a simplified version of editpage:
483 # - the user does not control the page that's created, only the parent
484 # - it's always a create operation, never an edit
485 # - this means that conflicts should never happen
486 # - this means that if they do, rocks fall and everyone dies
488 if ($form->submitted eq PREVIEW) {
489 my $preview=previewcomment($content, $location, $page, time);
490 IkiWiki::run_hooks(format => sub {
491 $preview = shift->(page => $page,
492 content => $preview);
494 $form->tmpl_param(page_preview => $preview);
497 $form->tmpl_param(page_preview => "");
500 if ($form->submitted eq POST_COMMENT && $form->validate) {
501 IkiWiki::checksessionexpiry($cgi, $session);
503 if (defined $username && length $form->field("subscribe") &&
504 IkiWiki::Plugin::notifyemail->can("subscribe")) {
505 IkiWiki::Plugin::notifyemail::subscribe($username,
510 my $ok=IkiWiki::check_content(content => $form->field('editcontent'),
511 subject => $form->field('subject'),
512 $config{comments_allowauthor} ? (
513 author => $form->field('author'),
514 url => $form->field('url'),
524 $location=unique_comment_location($page, $content, $config{srcdir}, "._comment_pending");
525 writefile("$location._comment_pending", $config{srcdir}, $content);
527 # Refresh so anything that deals with pending
528 # comments can be updated.
529 require IkiWiki::Render;
531 IkiWiki::saveindex();
533 IkiWiki::printheader($session);
534 print IkiWiki::cgitemplate($cgi, gettext(gettext("comment stored for moderation")),
536 gettext("Your comment will be posted after moderator review").
541 # FIXME: could probably do some sort of graceful retry
542 # on error? Would require significant unwinding though
543 my $file = "$location._comment";
544 writefile($file, $config{srcdir}, $content);
548 if ($config{rcs} and $config{comments_commit}) {
549 my $message = gettext("Added a comment");
550 if (defined $form->field('subject') &&
551 length $form->field('subject')) {
553 gettext("Added a comment: %s"),
554 $form->field('subject'));
557 IkiWiki::rcs_add($file);
558 IkiWiki::disable_commit_hook();
559 $conflict = IkiWiki::rcs_commit_staged(
563 IkiWiki::enable_commit_hook();
564 IkiWiki::rcs_update();
567 # Now we need a refresh
568 require IkiWiki::Render;
570 IkiWiki::saveindex();
572 # this should never happen, unless a committer deliberately
573 # breaks it or something
574 error($conflict) if defined $conflict;
576 # Jump to the new comment on the page.
577 # The trailing question mark tries to avoid broken
578 # caches and get the most recent version of the page.
579 IkiWiki::redirect($cgi, urlto($page).
580 "?updated#".page_to_id($location));
584 IkiWiki::showform($form, \@buttons, $session, $cgi,
595 eval q{use Libravatar::URL};
597 my $oiduser = eval { IkiWiki::openiduser($user) };
598 my $https=defined $config{url} && $config{url}=~/^https:/;
600 if (defined $oiduser) {
602 $avatar = libravatar_url(openid => $user, https => $https);
605 if (! defined $avatar &&
606 (my $email = IkiWiki::userinfo_get($user, 'email'))) {
608 $avatar = libravatar_url(email => $email, https => $https);
616 sub commentmoderation ($$) {
620 IkiWiki::needsignin($cgi, $session);
621 if (! IkiWiki::is_admin($session->param("name"))) {
622 error(gettext("you are not logged in as an admin"));
625 IkiWiki::decode_cgi_utf8($cgi);
627 if (defined $cgi->param('sid')) {
628 IkiWiki::checksessionexpiry($cgi, $session);
630 my $rejectalldefer=$cgi->param('rejectalldefer');
634 foreach my $id (keys %vars) {
635 if ($id =~ /(.*)\._comment(?:_pending)?$/) {
636 $id=decode_utf8($id);
637 my $action=$cgi->param($id);
638 next if $action eq 'Defer' && ! $rejectalldefer;
640 # Make sure that the id is of a legal
642 my ($f) = $id =~ /$config{wiki_file_regexp}/;
643 if (! defined $f || ! length $f ||
644 IkiWiki::file_pruned($f)) {
645 error("illegal file");
648 my $page=IkiWiki::dirname($f);
649 my $file="$config{srcdir}/$f";
652 $file="$config{wikistatedir}/comments_pending/".$f;
655 if ($action eq 'Accept') {
656 my $content=eval { readfile($file) };
657 next if $@; # file vanished since form was displayed
658 my $dest=unique_comment_location($page, $content, $config{srcdir})."._comment";
659 writefile($dest, $config{srcdir}, $content);
660 if ($config{rcs} and $config{comments_commit}) {
661 IkiWiki::rcs_add($dest);
666 require IkiWiki::Render;
667 IkiWiki::prune($file);
673 if ($config{rcs} and $config{comments_commit}) {
674 my $message = gettext("Comment moderation");
675 IkiWiki::disable_commit_hook();
676 $conflict=IkiWiki::rcs_commit_staged(
680 IkiWiki::enable_commit_hook();
681 IkiWiki::rcs_update();
684 # Now we need a refresh
685 require IkiWiki::Render;
687 IkiWiki::saveindex();
689 error($conflict) if defined $conflict;
694 my ($id, $dir, $ctime)=@{$_};
695 my $content=readfile("$dir/$id");
696 my $preview=previewcomment($content, $id,
702 } sort { $b->[2] <=> $a->[2] } comments_pending();
704 my $template=template("commentmoderation.tmpl");
707 comments => \@comments,
708 cgiurl => IkiWiki::cgiurl(),
710 IkiWiki::printheader($session);
711 my $out=$template->output;
712 IkiWiki::run_hooks(format => sub {
713 $out = shift->(page => "", content => $out);
715 print IkiWiki::cgitemplate($cgi, gettext("comment moderation"), $out);
719 sub formbuilder_setup (@) {
722 my $form=$params{form};
723 if ($form->title eq "preferences" &&
724 IkiWiki::is_admin($params{session}->param("name"))) {
725 push @{$params{buttons}}, "Comment Moderation";
726 if ($form->submitted && $form->submitted eq "Comment Moderation") {
727 commentmoderation($params{cgi}, $params{session});
732 sub comments_pending () {
735 eval q{use File::Find};
739 my $origdir=getcwd();
741 my $find_comments=sub {
744 return unless -d $dir;
746 chdir($dir) || die "chdir $dir: $!";
751 my $file=decode_utf8($_);
753 return if ! length $file || IkiWiki::file_pruned($file)
754 || -l $_ || -d _ || $file !~ /\Q$extension\E$/;
755 my ($f) = $file =~ /$config{wiki_file_regexp}/; # untaint
757 my $ctime=(stat($_))[10];
758 push @ret, [$f, $dir, $ctime];
763 chdir($origdir) || die "chdir $origdir: $!";
766 $find_comments->($config{srcdir}, "._comment_pending");
768 $find_comments->("$config{wikistatedir}/comments_pending/",
774 sub previewcomment ($$$) {
780 # Previewing a comment should implicitly enable comment posting mode.
781 my $oldpostcomment=$postcomment;
784 my $preview = IkiWiki::htmlize($location, $page, '_comment',
785 IkiWiki::linkify($location, $page,
786 IkiWiki::preprocess($location, $page,
787 IkiWiki::filter($location, $page, $content), 0, 1)));
789 my $template = template("comment.tmpl");
790 $template->param(content => $preview);
791 $template->param(ctime => displaytime($time, undef, 1));
792 $template->param(html5 => $config{html5});
794 IkiWiki::run_hooks(pagetemplate => sub {
795 shift->(page => $location,
797 template => $template);
800 $template->param(have_actions => 0);
802 $postcomment=$oldpostcomment;
804 return $template->output;
807 sub commentsshown ($) {
810 return pagespec_match($page, $config{comments_pagespec},
814 sub commentsopen ($) {
817 return length $config{cgiurl} > 0 &&
818 (! length $config{comments_closed_pagespec} ||
819 ! pagespec_match($page, $config{comments_closed_pagespec},
823 sub pagetemplate (@) {
826 my $page = $params{page};
827 my $template = $params{template};
828 my $shown = ($template->query(name => 'commentslink') ||
829 $template->query(name => 'commentsurl') ||
830 $template->query(name => 'atomcommentsurl') ||
831 $template->query(name => 'comments')) &&
832 commentsshown($page);
834 if ($template->query(name => 'comments')) {
835 my $comments = undef;
837 $comments = IkiWiki::preprocess_inline(
838 pages => "comment($page) and !comment($page/*)",
839 template => 'comment',
843 destpage => $params{destpage},
844 feedfile => 'comments',
849 if (defined $comments && length $comments) {
850 $template->param(comments => $comments);
853 if ($shown && commentsopen($page)) {
854 $template->param(addcommenturl => addcommenturl($page));
859 if ($template->query(name => 'commentsurl')) {
860 $template->param(commentsurl =>
861 urlto($page).'#comments');
864 if ($template->query(name => 'atomcommentsurl') && $config{usedirs}) {
865 # This will 404 until there are some comments, but I
866 # think that's probably OK...
867 $template->param(atomcommentsurl =>
868 urlto($page).'comments.atom');
871 if ($template->query(name => 'commentslink')) {
872 my $num=num_comments($page, $config{srcdir});
875 $link = htmllink($page, $params{destpage}, $page,
876 linktext => sprintf(ngettext("%i comment", "%i comments", $num), $num),
877 anchor => "comments",
881 elsif (commentsopen($page)) {
882 $link = "<a href=\"".addcommenturl($page)."\">".
883 #translators: Here "Comment" is a verb;
884 #translators: the user clicks on it to
885 #translators: post a comment.
889 $template->param(commentslink => $link)
894 # everything below this point is only relevant to the comments
896 if (!exists $commentstate{$page}) {
900 if ($template->query(name => 'commentid')) {
901 $template->param(commentid => page_to_id($page));
904 if ($template->query(name => 'commentuser')) {
905 $template->param(commentuser =>
906 $commentstate{$page}{commentuser});
909 if ($template->query(name => 'commentopenid')) {
910 $template->param(commentopenid =>
911 $commentstate{$page}{commentopenid});
914 if ($template->query(name => 'commentip')) {
915 $template->param(commentip =>
916 $commentstate{$page}{commentip});
919 if ($template->query(name => 'commentauthor')) {
920 $template->param(commentauthor =>
921 $commentstate{$page}{commentauthor});
924 if ($template->query(name => 'commentauthorurl')) {
925 $template->param(commentauthorurl =>
926 $commentstate{$page}{commentauthorurl});
929 if ($template->query(name => 'commentauthoravatar')) {
930 $template->param(commentauthoravatar =>
931 $commentstate{$page}{commentauthoravatar});
934 if ($template->query(name => 'removeurl') &&
935 IkiWiki::Plugin::remove->can("check_canremove") &&
936 length $config{cgiurl}) {
937 $template->param(removeurl => IkiWiki::cgiurl(do => 'remove',
939 $template->param(have_actions => 1);
943 sub addcommenturl ($) {
946 return IkiWiki::cgiurl(do => 'comment', page => $page);
949 sub num_comments ($$) {
953 my @comments=glob("$dir/$page/$config{comments_pagename}*._comment");
954 return int @comments;
957 sub unique_comment_location ($$$$) {
959 eval q{use Digest::MD5 'md5_hex'};
961 my $content_md5=md5_hex(Encode::encode_utf8(shift));
963 my $ext=shift || "._comment";
966 my $i = num_comments($page, $dir);
969 $location = "$page/$config{comments_pagename}${i}_${content_md5}";
970 } while (-e "$dir/$location$ext");
976 # Converts a comment page name into a unique, legal html id
977 # attribute value, that can be used as an anchor to link to the
981 eval q{use Digest::MD5 'md5_hex'};
984 return "comment-".md5_hex(Encode::encode_utf8(($page)));
987 package IkiWiki::PageSpec;
989 sub match_postcomment ($$;@) {
993 if (! $postcomment) {
994 return IkiWiki::FailReason->new("not posting a comment");
996 return match_glob($page, $glob, @_);
999 sub match_comment ($$;@) {
1003 if (! $postcomment) {
1004 # To see if it's a comment, check the source file type.
1005 # Deal with comments that were just deleted.
1006 my $source=exists $IkiWiki::pagesources{$page} ?
1007 $IkiWiki::pagesources{$page} :
1008 $IkiWiki::delpagesources{$page};
1009 my $type=defined $source ? IkiWiki::pagetype($source) : undef;
1010 if (! defined $type || $type ne "_comment") {
1011 return IkiWiki::FailReason->new("$page is not a comment");
1015 return match_glob($page, "$glob/*", internal => 1, @_);
1018 sub match_comment_pending ($$;@) {
1022 my $source=exists $IkiWiki::pagesources{$page} ?
1023 $IkiWiki::pagesources{$page} :
1024 $IkiWiki::delpagesources{$page};
1025 my $type=defined $source ? IkiWiki::pagetype($source) : undef;
1026 if (! defined $type || $type ne "_comment_pending") {
1027 return IkiWiki::FailReason->new("$page is not a pending comment");
1030 return match_glob($page, "$glob/*", internal => 1, @_);