2 package IkiWiki::Plugin::rename;
9 hook(type => "getsetup", id => "rename", call => \&getsetup);
10 hook(type => "formbuilder_setup", id => "rename", call => \&formbuilder_setup);
11 hook(type => "formbuilder", id => "rename", call => \&formbuilder);
12 hook(type => "sessioncgi", id => "rename", call => \&sessioncgi);
24 sub check_canrename ($$$$$$) {
32 my $attachment=! defined pagetype($pagesources{$src});
34 # Must be a known source file.
35 if (! exists $pagesources{$src}) {
36 error(sprintf(gettext("%s does not exist"),
37 htmllink("", "", $src, noimageinline => 1)));
40 # Must exist on disk, and be a regular file.
41 if (! -e "$config{srcdir}/$srcfile") {
42 error(sprintf(gettext("%s is not in the srcdir, so it cannot be renamed"), $srcfile));
44 elsif (-l "$config{srcdir}/$srcfile" && ! -f _) {
45 error(sprintf(gettext("%s is not a file"), $srcfile));
49 IkiWiki::check_canedit($src, $q, $session);
51 if (IkiWiki::Plugin::attachment->can("check_canattach")) {
52 IkiWiki::Plugin::attachment::check_canattach($session, $src, $srcfile);
55 error("renaming of attachments is not allowed");
59 # Dest checks can be omitted by passing undef.
61 if ($srcfile eq $destfile) {
62 error(gettext("no change to the file name was specified"));
65 # Must be a legal filename, and not absolute.
66 if (IkiWiki::file_pruned($destfile, $config{srcdir}) ||
68 error(sprintf(gettext("illegal name")));
71 # Must not be a known source file.
72 if ($src ne $dest && exists $pagesources{$dest}) {
73 error(sprintf(gettext("%s already exists"),
74 htmllink("", "", $dest, noimageinline => 1)));
77 # Must not exist on disk already.
78 if (-l "$config{srcdir}/$destfile" || -e _) {
79 error(sprintf(gettext("%s already exists on disk"), $destfile));
83 IkiWiki::check_canedit($dest, $q, $session);
85 # Note that $srcfile is used here, not $destfile,
86 # because it wants the current file, to check it.
87 IkiWiki::Plugin::attachment::check_canattach($session, $dest, $srcfile);
92 sub rename_form ($$$) {
97 eval q{use CGI::FormBuilder};
99 my $f = CGI::FormBuilder->new(
101 title => sprintf(gettext("rename %s"), pagetitle($page)),
107 action => $config{cgiurl},
108 stylesheet => IkiWiki::baseurl()."style.css",
109 fields => [qw{do page new_name attachment}],
112 $f->field(name => "do", type => "hidden", value => "rename", force => 1);
113 $f->field(name => "page", type => "hidden", value => $page, force => 1);
114 $f->field(name => "new_name", value => pagetitle($page, 1), size => 60);
115 if (!$q->param("attachment")) {
116 # insert the standard extensions
118 if (exists $IkiWiki::hooks{htmlize}) {
119 foreach my $key (grep { !/^_/ } keys %{$IkiWiki::hooks{htmlize}}) {
120 push @page_types, [$key, $IkiWiki::hooks{htmlize}{$key}{longname} || $key];
123 @page_types=sort @page_types;
125 # make sure the current extension is in the list
126 my ($ext) = $pagesources{$page}=~/\.([^.]+)$/;
127 if (! $IkiWiki::hooks{htmlize}{$ext}) {
128 unshift(@page_types, [$ext, $ext]);
131 $f->field(name => "type", type => 'select',
132 options => \@page_types,
133 value => $ext, force => 1);
135 foreach my $p (keys %pagesources) {
136 if ($pagesources{$p}=~m/^\Q$page\E\//) {
137 $f->field(name => "subpages",
140 options => [ [ 1 => gettext("Also rename SubPages and attachments") ] ],
147 $f->field(name => "attachment", type => "hidden");
149 return $f, ["Rename", "Cancel"];
152 sub rename_start ($$$$) {
155 my $attachment=shift;
158 check_canrename($page, $pagesources{$page}, undef, undef,
161 # Save current form state to allow returning to it later
162 # without losing any edits.
163 # (But don't save what button was submitted, to avoid
164 # looping back to here.)
165 # Note: "_submit" is CGI::FormBuilder internals.
166 $q->param(-name => "_submit", -value => "");
167 $session->param(postrename => scalar $q->Vars);
168 IkiWiki::cgi_savesession($session);
170 if (defined $attachment) {
171 $q->param(-name => "attachment", -value => $attachment);
173 my ($f, $buttons)=rename_form($q, $session, $page);
174 IkiWiki::showform($f, $buttons, $session, $q);
178 sub postrename ($;$$$) {
182 my $attachment=shift;
184 # Load saved form state and return to edit page.
185 my $postrename=CGI->new($session->param("postrename"));
186 $session->clear("postrename");
187 IkiWiki::cgi_savesession($session);
191 # They renamed the page they were editing. This requires
192 # fixups to the edit form state.
193 # Tweak the edit form to be editing the new page.
194 $postrename->param("page", $dest);
197 # Update edit form content to fix any links present
199 $postrename->param("editcontent",
200 renamepage_hook($dest, $src, $dest,
201 $postrename->param("editcontent")));
203 # Get a new edit token; old was likely invalidated.
204 $postrename->param("rcsinfo",
205 IkiWiki::rcs_prepedit($pagesources{$dest}));
208 IkiWiki::cgi_editpage($postrename, $session);
211 sub formbuilder (@) {
213 my $form=$params{form};
215 if (defined $form->field("do") && ($form->field("do") eq "edit" ||
216 $form->field("do") eq "create")) {
218 my $session=$params{session};
220 if ($form->submitted eq "Rename" && $form->field("do") eq "edit") {
221 rename_start($q, $session, 0, $form->field("page"));
223 elsif ($form->submitted eq "Rename Attachment") {
224 my @selected=$q->param("attachment_select");
226 error(gettext("Only one attachment can be renamed at a time."));
228 elsif (! @selected) {
229 error(gettext("Please select the attachment to rename."))
231 rename_start($q, $session, 1, $selected[0]);
238 sub formbuilder_setup (@) {
240 my $form=$params{form};
243 if (defined $form->field("do") && ($form->field("do") eq "edit" ||
244 $form->field("do") eq "create")) {
245 # Rename button for the page, and also for attachments.
246 push @{$params{buttons}}, "Rename" if $form->field("do") eq "edit";
247 $form->tmpl_param("field-rename" => '<input name="_submit" type="submit" value="Rename Attachment" />');
249 if (defined $renamesummary) {
250 $form->tmpl_param(message => $renamesummary);
255 sub sessioncgi ($$) {
258 if ($q->param("do") eq 'rename') {
260 my ($form, $buttons)=rename_form($q, $session, $q->param("page"));
261 IkiWiki::decode_form_utf8($form);
263 if ($form->submitted eq 'Cancel') {
264 postrename($session);
266 elsif ($form->submitted eq 'Rename' && $form->validate) {
267 # Queue of rename actions to perfom.
270 # These untaints are safe because of the checks
271 # performed in check_canrename later.
272 my $src=$q->param("page");
273 my $srcfile=IkiWiki::possibly_foolish_untaint($pagesources{$src});
274 my $dest=IkiWiki::possibly_foolish_untaint(titlepage($q->param("new_name")));
276 if (! $q->param("attachment")) {
277 my $type=$q->param('type');
278 if (defined $type && length $type && $IkiWiki::hooks{htmlize}{$type}) {
279 $type=IkiWiki::possibly_foolish_untaint($type);
282 my ($ext)=$srcfile=~/\.([^.]+)$/;
286 $destfile=newpagefile($dest, $type);
292 destfile => $destfile,
296 # See if any subpages need to be renamed.
297 if ($q->param("subpages") && $src ne $dest) {
298 foreach my $p (keys %pagesources) {
299 next unless $pagesources{$p}=~m/^\Q$src\E\//;
300 # If indexpages is enabled, the
301 # srcfile should not be confused
303 next if $pagesources{$p} eq $srcfile;
305 my $d=$pagesources{$p};
306 $d=~s/^\Q$src\E\//$dest\//;
309 srcfile => $pagesources{$p},
310 dest => pagename($d),
317 require IkiWiki::Render;
318 IkiWiki::disable_commit_hook() if $config{rcs};
319 my %origpagesources=%pagesources;
321 # First file renaming.
322 foreach my $rename (@torename) {
323 if ($rename->{required}) {
324 do_rename($rename, $q, $session);
327 eval {do_rename($rename, $q, $session)};
334 # Temporarily tweak pagesources to point to
335 # the renamed file, in case fixlinks needs
337 $pagesources{$rename->{src}}=$rename->{destfile};
339 IkiWiki::rcs_commit_staged(
340 sprintf(gettext("rename %s to %s"), $srcfile, $destfile),
341 $session->param("name"), $ENV{REMOTE_ADDR}) if $config{rcs};
344 foreach my $rename (@torename) {
345 next if $rename->{src} eq $rename->{dest};
346 next if $rename->{error};
347 foreach my $p (fixlinks($rename, $session)) {
348 # map old page names to new
349 foreach my $r (@torename) {
350 next if $rename->{error};
351 if ($r->{src} eq $p) {
356 push @{$rename->{fixedlinks}}, $p;
361 %pagesources=%origpagesources;
363 IkiWiki::enable_commit_hook();
364 IkiWiki::rcs_update();
367 IkiWiki::saveindex();
369 # Find pages with remaining, broken links.
370 foreach my $rename (@torename) {
371 next if $rename->{src} eq $rename->{dest};
373 foreach my $page (keys %links) {
375 foreach my $link (@{$links{$page}}) {
376 my $bestlink=bestlink($page, $link);
377 if ($bestlink eq $rename->{src}) {
378 push @{$rename->{brokenlinks}}, $page;
385 # Generate a summary, that will be shown at the top
386 # of the edit template.
388 foreach my $rename (@torename) {
389 my $template=template("renamesummary.tmpl");
390 $template->param(src => $rename->{srcfile});
391 $template->param(dest => $rename->{destfile});
392 $template->param(error => $rename->{error});
393 if ($rename->{src} ne $rename->{dest}) {
394 $template->param(brokenlinks_checked => 1);
395 $template->param(brokenlinks => linklist($rename->{dest}, $rename->{brokenlinks}));
396 $template->param(fixedlinks => linklist($rename->{dest}, $rename->{fixedlinks}));
398 $renamesummary.=$template->output;
401 postrename($session, $src, $dest, $q->param("attachment"));
404 IkiWiki::showform($form, $buttons, $session, $q);
412 # generates a list of links in a form suitable for FormBuilder
415 # converts a list of pages into a list of links
416 # in a form suitable for FormBuilder.
420 page => htmllink($dest, $dest, $_,
422 linktext => pagetitle($_),
428 sub renamepage_hook ($$$$) {
429 my ($page, $src, $dest, $content)=@_;
431 IkiWiki::run_hooks(renamepage => sub {
443 sub do_rename ($$$) {
448 # First, check if this rename is allowed.
449 check_canrename($rename->{src},
455 # Ensure that the dest directory exists and is ok.
456 IkiWiki::prep_writefile($rename->{destfile}, $config{srcdir});
459 IkiWiki::rcs_rename($rename->{srcfile}, $rename->{destfile});
462 if (! rename($config{srcdir}."/".$rename->{srcfile},
463 $config{srcdir}."/".$rename->{destfile})) {
476 foreach my $page (keys %links) {
478 foreach my $link (@{$links{$page}}) {
479 my $bestlink=bestlink($page, $link);
480 if ($bestlink eq $rename->{src}) {
486 my $file=$pagesources{$page};
487 my $oldcontent=readfile($config{srcdir}."/".$file);
488 my $content=renamepage_hook($page, $rename->{src}, $rename->{dest}, $oldcontent);
489 if ($oldcontent ne $content) {
490 my $token=IkiWiki::rcs_prepedit($file);
491 eval { writefile($file, $config{srcdir}, $content) };
493 my $conflict=IkiWiki::rcs_commit(
495 sprintf(gettext("update for rename of %s to %s"), $rename->{srcfile}, $rename->{destfile}),
497 $session->param("name"),
500 push @fixedlinks, $page if ! defined $conflict;