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::smcvpostcomment;
11 use IkiWiki::Plugin::inline;
12 use IkiWiki::Plugin::mdwn;
15 use constant PLUGIN => "smcvpostcomment";
16 use constant PREVIEW => "Preview";
17 use constant POST_COMMENT => "Post comment";
18 use constant CANCEL => "Cancel";
21 hook(type => "getsetup", id => PLUGIN, call => \&getsetup);
22 hook(type => "preprocess", id => PLUGIN, call => \&preprocess);
23 hook(type => "sessioncgi", id => PLUGIN, call => \&sessioncgi);
24 hook(type => "htmlize", id => "_".PLUGIN,
25 call => \&IkiWiki::Plugin::mdwn::htmlize);
26 IkiWiki::loadplugin("inline");
29 sub getsetup () { #{{{
37 # Somewhat based on IkiWiki::Plugin::inline blog posting support
38 sub preprocess (@) { #{{{
41 unless (length $config{cgiurl}) {
42 error(sprintf (gettext("[[!%s plugin requires CGI enabled]]"),
46 my $formtemplate = IkiWiki::template(PLUGIN . "_embed.tmpl",
48 $formtemplate->param(cgiurl => $config{cgiurl});
49 $formtemplate->param(page => $params{page});
51 if ($params{preview}) {
52 $formtemplate->param("disabled" =>
53 gettext('not available during Preview'));
56 debug("page $params{page} => destpage $params{destpage}");
58 # I'm reasonably sure that this counts as abuse of [[!inline]]
59 return $formtemplate->output . "\n" .
60 IkiWiki::preprocess_inline(
61 pages => "internal($params{page}/_comment_*)",
62 template => PLUGIN . "_display",
65 page => $params{page},
66 destpage => $params{destpage},
67 preview => $params{preview});
70 # FIXME: logic taken from editpage, should be common code?
71 sub getcgiuser ($) { # {{{
73 my $user = $session->param('name');
74 $user = $ENV{REMOTE_ADDR} unless defined $user;
75 debug("getcgiuser() -> $user");
79 # FIXME: logic adapted from recentchanges, should be common code?
80 sub linkuser ($) { # {{{
82 my $oiduser = eval { IkiWiki::openiduser($user) };
84 if (defined $oiduser) {
85 return ($user, $oiduser);
88 my $page = bestlink('', (length $config{userdir}
91 return (urlto($page, undef, 1), $user);
95 # FIXME: taken from IkiWiki::Plugin::editpage, should be common?
96 sub checksessionexpiry ($$) { # {{{
100 if (defined $session->param("name")) {
101 if (! defined $sid || $sid ne $session->id) {
102 error(gettext("Your login session has expired."));
107 # Mostly cargo-culted from IkiWiki::plugin::editpage
108 sub sessioncgi ($$) { #{{{
112 my $do = $cgi->param('do');
113 return unless $do eq PLUGIN;
115 # These are theoretically configurable, but currently hard-coded
116 my $allow_directives = 0;
117 my $commit_comments = 1;
119 IkiWiki::decode_cgi_utf8($cgi);
121 eval q{use CGI::FormBuilder};
124 my @buttons = (POST_COMMENT, PREVIEW, CANCEL);
125 my $form = CGI::FormBuilder->new(
126 fields => [qw{do sid page subject body}],
129 required => [qw{body}],
132 action => $config{cgiurl},
135 template => scalar IkiWiki::template_params(PLUGIN . '_form.tmpl'),
136 # wtf does this do in editpage?
137 wikiname => $config{wikiname},
140 IkiWiki::decode_form_utf8($form);
141 IkiWiki::run_hooks(formbuilder_setup => sub {
142 shift->(title => PLUGIN, form => $form, cgi => $cgi,
143 session => $session, buttons => \@buttons);
145 IkiWiki::decode_form_utf8($form);
147 $form->field(name => 'do', type => 'hidden');
148 $form->field(name => 'sid', type => 'hidden', value => $session->id,
150 $form->field(name => 'page', type => 'hidden');
151 $form->field(name => 'subject', type => 'text', size => 72);
152 $form->field(name => 'body', type => 'textarea', rows => 5,
155 # The untaint is OK (as in editpage) because we're about to pass
156 # it to file_pruned anyway
157 my $page = $form->field('page');
158 $page = IkiWiki::possibly_foolish_untaint($page);
159 if (!defined $page || !length $page ||
160 IkiWiki::file_pruned($page, $config{srcdir})) {
161 error(gettext("bad page name"));
164 # FIXME: is this right? Or should we be using the candidate subpage
165 # (whatever that might mean) as the base URL?
166 my $baseurl = urlto($page, undef, 1);
168 $form->title(sprintf(gettext("commenting on %s"),
169 IkiWiki::pagetitle($page)));
171 $form->tmpl_param('helponformattinglink',
172 htmllink($page, $page, 'ikiwiki/formatting',
174 linktext => 'FormattingHelp'),
175 allowhtml => $allow_html,
176 allowdirectives => $allow_directives);
178 if (not exists $pagesources{$page}) {
179 error(sprintf(gettext(
180 "page '%s' doesn't exist, so you can't comment"),
184 if ($form->submitted eq CANCEL) {
185 # bounce back to the page they wanted to comment on, and exit.
186 # CANCEL need not be considered in future
187 IkiWiki::redirect($cgi, urlto($page, undef, 1));
191 IkiWiki::check_canedit($page . "[" . PLUGIN . "]", $cgi, $session);
193 my ($authorurl, $author) = linkuser(getcgiuser($session));
195 my $body = $form->field('body') || '';
196 $body =~ s/\r\n/\n/g;
198 $body = "\n" if $body !~ /\n$/;
200 unless ($allow_directives) {
201 # don't allow new-style directives at all
202 $body =~ s/(^|[^\\])\[\[!/$1\\[[!/g;
204 # don't allow [[ unless it begins an old-style
205 # wikilink, if prefix_directives is off
206 $body =~ s/(^|[^\\])\[\[(?![^\n\s\]+]\]\])/$1\\[[!/g
207 unless $config{prefix_directives};
210 unless ($allow_html) {
211 $body =~ s/&(\w|#)/&$1/g;
216 # In this template, the [[!meta]] directives should stay at the end,
217 # so that they will override anything the user specifies. (For
218 # instance, [[!meta author="I can fake the author"]]...)
219 my $content_tmpl = template(PLUGIN . '_comment.tmpl');
220 $content_tmpl->param(author => $author);
221 $content_tmpl->param(authorurl => $authorurl);
222 $content_tmpl->param(subject => $form->field('subject'));
223 $content_tmpl->param(body => $body);
225 my $content = $content_tmpl->output;
227 # This is essentially a simplified version of editpage:
228 # - the user does not control the page that's created, only the parent
229 # - it's always a create operation, never an edit
230 # - this means that conflicts should never happen
231 # - this means that if they do, rocks fall and everyone dies
233 if ($form->submitted eq PREVIEW) {
234 # $fake is a location that has the same number of slashes
235 # as the eventual location of this comment.
236 my $fake = "$page/_" . PLUGIN . "hypothetical";
237 my $preview = IkiWiki::htmlize($fake, $page, 'mdwn',
238 IkiWiki::linkify($page, $page,
239 IkiWiki::preprocess($page, $page,
240 IkiWiki::filter($fake, $page,
243 IkiWiki::run_hooks(format => sub {
244 $preview = shift->(page => $page,
245 content => $preview);
248 my $template = template(PLUGIN . "_display.tmpl");
249 $template->param(content => $preview);
250 $template->param(title => $form->field('subject'));
251 $template->param(ctime => displaytime(time));
252 $template->param(author => $author);
253 $template->param(authorurl => $authorurl);
255 $form->tmpl_param(page_preview => $template->output);
258 $form->tmpl_param(page_preview => "");
261 if ($form->submitted eq POST_COMMENT && $form->validate) {
262 # Let's get posting. We don't check_canedit here because
263 # that somewhat defeats the point of this plugin.
265 checksessionexpiry($session, $cgi->param('sid'));
267 # FIXME: check that the wiki is locked right now, because
268 # if it's not, there are mad race conditions!
270 # FIXME: rather a simplistic way to make the comments...
275 $file = "$page/_comment_${i}._" . PLUGIN;
276 } while (-e "$config{srcdir}/$file");
278 # FIXME: could probably do some sort of graceful retry
279 # if I could be bothered
280 writefile($file, $config{srcdir}, $content);
284 if ($config{rcs} and $commit_comments) {
285 my $message = gettext("Added a comment");
286 if (defined $form->field('subject') &&
287 length $form->field('subject')) {
288 $message .= ": ".$form->field('subject');
291 IkiWiki::rcs_add($file);
292 IkiWiki::disable_commit_hook();
293 $conflict = IkiWiki::rcs_commit_staged($message,
294 $session->param('name'), $ENV{REMOTE_ADDR});
295 IkiWiki::enable_commit_hook();
296 IkiWiki::rcs_update();
299 # Now we need a refresh
300 require IkiWiki::Render;
302 IkiWiki::saveindex();
304 # this should never happen, unless a committer deliberately
305 # breaks it or something
306 error($conflict) if defined $conflict;
308 # Bounce back to where we were, but defeat broken caches
309 my $anticache = "?updated=$page/_comment_$i";
310 IkiWiki::redirect($cgi, urlto($page, undef, 1).$anticache);
313 IkiWiki::showform ($form, \@buttons, $session, $cgi,
314 forcebaseurl => $baseurl);
320 package IkiWiki::PageSpec;
322 sub match_smcvpostcomment ($$;@) {
326 unless ($page =~ s/\[smcvpostcomment\]$//) {
327 return IkiWiki::FailReason->new("not posting a comment");
329 return match_glob($page, $glob);