2 package IkiWiki::Plugin::remove;
9 hook(type => "getsetup", id => "remove", call => \&getsetup);
10 hook(type => "formbuilder_setup", id => "remove", call => \&formbuilder_setup);
11 hook(type => "formbuilder", id => "remove", call => \&formbuilder);
12 hook(type => "sessioncgi", id => "remove", call => \&sessioncgi);
25 sub check_canremove ($$$) {
30 # Must be a known source file.
31 if (! exists $pagesources{$page}) {
32 error(sprintf(gettext("%s does not exist"),
33 htmllink("", "", $page, noimageinline => 1)));
36 # Must exist on disk, and be a regular file.
37 my $file=$pagesources{$page};
38 if (! -e "$config{srcdir}/$file") {
39 error(sprintf(gettext("%s is not in the srcdir, so it cannot be deleted"), $file));
41 elsif (-l "$config{srcdir}/$file" && ! -f _) {
42 error(sprintf(gettext("%s is not a file"), $file));
45 # If a user can't upload an attachment, don't let them delete it.
46 # This is sorta overkill, but better safe than sorry.
47 if (! defined pagetype($pagesources{$page})) {
48 if (IkiWiki::Plugin::attachment->can("check_canattach")) {
49 IkiWiki::Plugin::attachment::check_canattach($session, $page, "$config{srcdir}/$file");
52 error("removal of attachments is not allowed");
57 IkiWiki::run_hooks(canremove => sub {
58 return if defined $canremove;
59 my $ret=shift->(page => $page, cgi => $q, session => $session);
64 elsif (ref $ret eq 'CODE') {
68 elsif (defined $ret) {
74 return defined $canremove ? $canremove : 1;
77 sub formbuilder_setup (@) {
79 my $form=$params{form};
82 if (defined $form->field("do") && ($form->field("do") eq "edit" ||
83 $form->field("do") eq "create")) {
84 # Removal button for the page, and also for attachments.
85 push @{$params{buttons}}, "Remove" if $form->field("do") eq "edit";
86 $form->tmpl_param("field-remove" => '<input name="_submit" type="submit" value="Remove Attachments" />');
90 sub confirmation_form ($$) {
94 eval q{use CGI::FormBuilder};
96 my $f = CGI::FormBuilder->new(
103 action => IkiWiki::cgiurl(),
105 fields => [qw{do page}],
108 $f->field(name => "sid", type => "hidden", value => $session->id,
110 $f->field(name => "do", type => "hidden", value => "remove", force => 1);
112 return $f, ["Remove", "Cancel"];
115 sub removal_confirm ($$@) {
118 my $attachment=shift;
121 # Special case for unsaved attachments.
122 foreach my $page (@pages) {
123 if ($attachment && IkiWiki::Plugin::attachment->can("is_held_attachment")) {
124 my $f=IkiWiki::Plugin::attachment::is_held_attachment($page);
126 require IkiWiki::Render;
131 @pages=grep { exists $pagesources{$_} } @pages;
132 return unless @pages;
134 foreach my $page (@pages) {
135 IkiWiki::check_canedit($page, $q, $session);
136 check_canremove($page, $q, $session);
139 # Save current form state to allow returning to it later
140 # without losing any edits.
141 # (But don't save what button was submitted, to avoid
142 # looping back to here.)
143 # Note: "_submit" is CGI::FormBuilder internals.
144 $q->param(-name => "_submit", -value => "");
145 $session->param(postremove => scalar $q->Vars);
146 IkiWiki::cgi_savesession($session);
148 my ($f, $buttons)=confirmation_form($q, $session);
149 $f->title(sprintf(gettext("confirm removal of %s"),
150 join(", ", map { pagetitle($_) } @pages)));
151 $f->field(name => "page", type => "hidden", value => \@pages, force => 1);
152 if (defined $attachment) {
153 $f->field(name => "attachment", type => "hidden",
154 value => $attachment, force => 1);
157 IkiWiki::showform($f, $buttons, $session, $q);
164 # Load saved form state and return to edit form.
165 my $postremove=CGI->new($session->param("postremove"));
166 $session->clear("postremove");
167 IkiWiki::cgi_savesession($session);
168 IkiWiki::cgi($postremove, $session);
171 sub formbuilder (@) {
173 my $form=$params{form};
175 if (defined $form->field("do") && ($form->field("do") eq "edit" ||
176 $form->field("do") eq "create")) {
178 my $session=$params{session};
180 if ($form->submitted eq "Remove" && $form->field("do") eq "edit") {
181 removal_confirm($q, $session, 0, $form->field("page"));
183 elsif ($form->submitted eq "Remove Attachments") {
184 my @selected=map { Encode::decode_utf8($_) } $q->param("attachment_select");
186 error(gettext("Please select the attachments to remove."));
188 removal_confirm($q, $session, 1, @selected);
193 sub sessioncgi ($$) {
196 if ($q->param("do") eq 'remove') {
198 my ($form, $buttons)=confirmation_form($q, $session);
199 IkiWiki::decode_form_utf8($form);
201 if ($form->submitted eq 'Cancel') {
202 postremove($session);
204 elsif ($form->submitted eq 'Remove' && $form->validate) {
205 IkiWiki::checksessionexpiry($q, $session, $q->param('sid'));
207 my @pages=$form->field("page");
209 # Validate removal by checking that the page exists,
210 # and that the user is allowed to edit(/remove) it.
212 foreach my $page (@pages) {
213 IkiWiki::check_canedit($page, $q, $session);
214 check_canremove($page, $q, $session);
216 # This untaint is safe because of the
217 # checks performed above, which verify the
218 # page is a normal file, etc.
219 push @files, IkiWiki::possibly_foolish_untaint($pagesources{$page});
222 # Do removal, and update the wiki.
223 require IkiWiki::Render;
225 IkiWiki::disable_commit_hook();
226 foreach my $file (@files) {
227 IkiWiki::rcs_remove($file);
229 IkiWiki::rcs_commit_staged(
230 message => gettext("removed"),
233 IkiWiki::enable_commit_hook();
234 IkiWiki::rcs_update();
237 foreach my $file (@files) {
238 IkiWiki::prune("$config{srcdir}/$file");
242 IkiWiki::saveindex();
244 if ($q->param("attachment")) {
245 # Attachments were deleted, so redirect
246 # back to the edit form.
247 postremove($session);
250 # The page is gone, so redirect to parent
252 my $parent=IkiWiki::dirname($pages[0]);
253 if (! exists $pagesources{$parent}) {
256 IkiWiki::redirect($q, urlto($parent));
260 removal_confirm($q, $session, 0, $form->field("page"));