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 constant PREVIEW => "Preview";
13 use constant POST_COMMENT => "Post comment";
14 use constant CANCEL => "Cancel";
17 hook(type => "getsetup", id => 'comments', call => \&getsetup);
18 hook(type => "preprocess", id => 'comments', call => \&preprocess);
19 hook(type => "sessioncgi", id => 'comment', call => \&sessioncgi);
20 hook(type => "htmlize", id => "_comment", call => \&htmlize);
21 hook(type => "pagetemplate", id => "comments", call => \&pagetemplate);
22 IkiWiki::loadplugin("inline");
23 IkiWiki::loadplugin("mdwn");
27 eval q{use IkiWiki::Plugin::mdwn};
29 return IkiWiki::Plugin::mdwn::htmlize(@_)
32 sub getsetup () { #{{{
40 # Somewhat based on IkiWiki::Plugin::inline blog posting support
41 sub preprocess (@) { #{{{
44 unless (length $config{cgiurl}) {
45 error(gettext("[[!comments plugin requires CGI enabled]]"));
48 my $page = $params{page};
49 $pagestate{$page}{comments}{comments} = defined $params{closed}
50 ? (not IkiWiki::yesno($params{closed}))
52 $pagestate{$page}{comments}{allowdirectives} = IkiWiki::yesno($params{allowdirectives});
53 $pagestate{$page}{comments}{commit} = defined $params{commit}
54 ? IkiWiki::yesno($params{commit})
57 my $formtemplate = IkiWiki::template("comments_embed.tmpl",
59 $formtemplate->param(cgiurl => $config{cgiurl});
60 $formtemplate->param(page => $params{page});
62 if (not $pagestate{$page}{comments}{comments}) {
63 $formtemplate->param("disabled" =>
64 gettext('comments are closed'));
66 elsif ($params{preview}) {
67 $formtemplate->param("disabled" =>
68 gettext('not available during Preview'));
71 debug("page $params{page} => destpage $params{destpage}");
73 unless (defined $params{inline} && !IkiWiki::yesno($params{inline})) {
75 eval q{use IkiWiki::Plugin::inline};
78 pages => "internal($params{page}/_comment_*)",
79 template => "comments_display",
82 # special stuff passed through
83 page => $params{page},
84 destpage => $params{destpage},
85 preview => $params{preview},
87 push @args, atom => $params{atom} if defined $params{atom};
88 push @args, rss => $params{rss} if defined $params{rss};
89 push @args, feeds => $params{feeds} if defined $params{feeds};
90 push @args, feedshow => $params{feedshow} if defined $params{feedshow};
91 push @args, timeformat => $params{timeformat} if defined $params{timeformat};
92 push @args, feedonly => $params{feedonly} if defined $params{feedonly};
93 $posts = IkiWiki::preprocess_inline(@args);
94 $formtemplate->param("comments" => $posts);
97 return $formtemplate->output;
100 # FIXME: logic taken from editpage, should be common code?
101 sub getcgiuser ($) { # {{{
103 my $user = $session->param('name');
104 $user = $ENV{REMOTE_ADDR} unless defined $user;
105 debug("getcgiuser() -> $user");
109 # FIXME: logic adapted from recentchanges, should be common code?
110 # returns (author URL, pretty-printed version)
111 sub linkuser ($) { # {{{
113 my $oiduser = eval { IkiWiki::openiduser($user) };
115 if (defined $oiduser) {
116 return ($user, $oiduser);
119 my $page = bestlink('', (length $config{userdir}
120 ? "$config{userdir}/"
122 return (urlto($page, undef, 1), $user);
126 # Mostly cargo-culted from IkiWiki::plugin::editpage
127 sub sessioncgi ($$) { #{{{
131 my $do = $cgi->param('do');
132 return unless $do eq 'comment';
134 IkiWiki::decode_cgi_utf8($cgi);
136 eval q{use CGI::FormBuilder};
139 my @buttons = (POST_COMMENT, PREVIEW, CANCEL);
140 my $form = CGI::FormBuilder->new(
141 fields => [qw{do sid page subject body}],
144 required => [qw{body}],
147 action => $config{cgiurl},
150 template => scalar IkiWiki::template_params('comments_form.tmpl'),
151 # wtf does this do in editpage?
152 wikiname => $config{wikiname},
155 IkiWiki::decode_form_utf8($form);
156 IkiWiki::run_hooks(formbuilder_setup => sub {
157 shift->(title => "comment", form => $form, cgi => $cgi,
158 session => $session, buttons => \@buttons);
160 IkiWiki::decode_form_utf8($form);
162 $form->field(name => 'do', type => 'hidden');
163 $form->field(name => 'sid', type => 'hidden', value => $session->id,
165 $form->field(name => 'page', type => 'hidden');
166 $form->field(name => 'subject', type => 'text', size => 72);
167 $form->field(name => 'body', type => 'textarea', rows => 5,
170 # The untaint is OK (as in editpage) because we're about to pass
171 # it to file_pruned anyway
172 my $page = $form->field('page');
173 $page = IkiWiki::possibly_foolish_untaint($page);
174 if (!defined $page || !length $page ||
175 IkiWiki::file_pruned($page, $config{srcdir})) {
176 error(gettext("bad page name"));
179 my $allow_directives = $pagestate{$page}{comments}{allowdirectives};
180 my $commit_comments = defined $pagestate{$page}{comments}{commit}
181 ? $pagestate{$page}{comments}{commit}
184 # FIXME: is this right? Or should we be using the candidate subpage
185 # (whatever that might mean) as the base URL?
186 my $baseurl = urlto($page, undef, 1);
188 $form->title(sprintf(gettext("commenting on %s"),
189 IkiWiki::pagetitle($page)));
191 $form->tmpl_param('helponformattinglink',
192 htmllink($page, $page, 'ikiwiki/formatting',
194 linktext => 'FormattingHelp'),
195 allowdirectives => $allow_directives);
197 if (not exists $pagesources{$page}) {
198 error(sprintf(gettext(
199 "page '%s' doesn't exist, so you can't comment"),
202 if (not $pagestate{$page}{comments}{comments}) {
203 error(sprintf(gettext(
204 "comments are not enabled on page '%s'"),
208 if ($form->submitted eq CANCEL) {
209 # bounce back to the page they wanted to comment on, and exit.
210 # CANCEL need not be considered in future
211 IkiWiki::redirect($cgi, urlto($page, undef, 1));
215 IkiWiki::check_canedit($page . "[postcomment]", $cgi, $session);
217 my ($authorurl, $author) = linkuser(getcgiuser($session));
219 my $body = $form->field('body') || '';
220 $body =~ s/\r\n/\n/g;
222 $body .= "\n" if $body !~ /\n$/;
224 unless ($allow_directives) {
225 # don't allow new-style directives at all
226 $body =~ s/(^|[^\\])\[\[!/$1[[!/g;
228 # don't allow [[ unless it begins an old-style
229 # wikilink, if prefix_directives is off
230 $body =~ s/(^|[^\\])\[\[(?![^\n\s\]+]\]\])/$1[[!/g
231 unless $config{prefix_directives};
234 IkiWiki::run_hooks(sanitize => sub {
235 # $fake is a possible location for this comment. We don't
236 # know yet what the comment number *actually* is.
237 my $fake = "$page/_comment_1";
245 # In this template, the [[!meta]] directives should stay at the end,
246 # so that they will override anything the user specifies. (For
247 # instance, [[!meta author="I can fake the author"]]...)
248 my $content_tmpl = template('comments_comment.tmpl');
249 $content_tmpl->param(author => $author);
250 $content_tmpl->param(authorurl => $authorurl);
251 $content_tmpl->param(subject => $form->field('subject'));
252 $content_tmpl->param(body => $body);
254 my $content = $content_tmpl->output;
256 # This is essentially a simplified version of editpage:
257 # - the user does not control the page that's created, only the parent
258 # - it's always a create operation, never an edit
259 # - this means that conflicts should never happen
260 # - this means that if they do, rocks fall and everyone dies
262 if ($form->submitted eq PREVIEW) {
263 # $fake is a possible location for this comment. We don't
264 # know yet what the comment number *actually* is.
265 my $fake = "$page/_comment_1";
266 my $preview = IkiWiki::htmlize($fake, $page, 'mdwn',
267 IkiWiki::linkify($page, $page,
268 IkiWiki::preprocess($page, $page,
269 IkiWiki::filter($fake, $page,
272 IkiWiki::run_hooks(format => sub {
273 $preview = shift->(page => $page,
274 content => $preview);
277 my $template = template("comments_display.tmpl");
278 $template->param(content => $preview);
279 $template->param(title => $form->field('subject'));
280 $template->param(ctime => displaytime(time));
281 $template->param(author => $author);
282 $template->param(authorurl => $authorurl);
284 $form->tmpl_param(page_preview => $template->output);
287 $form->tmpl_param(page_preview => "");
290 if ($form->submitted eq POST_COMMENT && $form->validate) {
291 # Let's get posting. We don't check_canedit here because
292 # that somewhat defeats the point of this plugin.
294 IkiWiki::checksessionexpiry($session, $cgi->param('sid'));
296 # FIXME: check that the wiki is locked right now, because
297 # if it's not, there are mad race conditions!
299 # FIXME: rather a simplistic way to make the comments...
304 $file = "$page/_comment_${i}._comment";
305 } while (-e "$config{srcdir}/$file");
307 # FIXME: could probably do some sort of graceful retry
308 # if I could be bothered
309 writefile($file, $config{srcdir}, $content);
313 if ($config{rcs} and $commit_comments) {
314 my $message = gettext("Added a comment");
315 if (defined $form->field('subject') &&
316 length $form->field('subject')) {
317 $message .= ": ".$form->field('subject');
320 IkiWiki::rcs_add($file);
321 IkiWiki::disable_commit_hook();
322 $conflict = IkiWiki::rcs_commit_staged($message,
323 $session->param('name'), $ENV{REMOTE_ADDR});
324 IkiWiki::enable_commit_hook();
325 IkiWiki::rcs_update();
328 # Now we need a refresh
329 require IkiWiki::Render;
331 IkiWiki::saveindex();
333 # this should never happen, unless a committer deliberately
334 # breaks it or something
335 error($conflict) if defined $conflict;
337 # Bounce back to where we were, but defeat broken caches
338 my $anticache = "?updated=$page/_comment_$i";
339 IkiWiki::redirect($cgi, urlto($page, undef, 1).$anticache);
342 IkiWiki::showform ($form, \@buttons, $session, $cgi,
343 forcebaseurl => $baseurl);
349 sub pagetemplate (@) { #{{{
352 my $page = $params{page};
353 my $template = $params{template};
355 if ($template->query(name => 'comments')) {
356 my $comments = undef;
358 if (defined $comments && length $comments) {
359 $template->param(name => $comments);
364 package IkiWiki::PageSpec;
366 sub match_postcomment ($$;@) {
370 unless ($page =~ s/\[postcomment\]$//) {
371 return IkiWiki::FailReason->new("not posting a comment");
373 return match_glob($page, $glob);