2008-07-22 04:44:37 +02:00
|
|
|
#!/usr/bin/perl
|
|
|
|
package IkiWiki::Plugin::rename;
|
|
|
|
|
|
|
|
use warnings;
|
|
|
|
use strict;
|
2008-12-23 22:34:19 +01:00
|
|
|
use IkiWiki 3.00;
|
2008-07-22 04:44:37 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub import {
|
2008-08-03 23:20:21 +02:00
|
|
|
hook(type => "getsetup", id => "rename", call => \&getsetup);
|
2008-07-22 04:44:37 +02:00
|
|
|
hook(type => "formbuilder_setup", id => "rename", call => \&formbuilder_setup);
|
|
|
|
hook(type => "formbuilder", id => "rename", call => \&formbuilder);
|
|
|
|
hook(type => "sessioncgi", id => "rename", call => \&sessioncgi);
|
2009-03-27 20:27:38 +01:00
|
|
|
hook(type => "rename", id => "rename", call => \&rename_subpages);
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2008-08-03 23:20:21 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub getsetup () {
|
2008-08-03 23:20:21 +02:00
|
|
|
return
|
|
|
|
plugin => {
|
|
|
|
safe => 1,
|
|
|
|
rebuild => 0,
|
|
|
|
},
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2008-07-22 04:44:37 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub check_canrename ($$$$$$) {
|
2008-07-22 20:00:23 +02:00
|
|
|
my $src=shift;
|
|
|
|
my $srcfile=shift;
|
|
|
|
my $dest=shift;
|
|
|
|
my $destfile=shift;
|
|
|
|
my $q=shift;
|
|
|
|
my $session=shift;
|
2008-09-23 23:41:05 +02:00
|
|
|
|
2008-09-27 19:34:46 +02:00
|
|
|
my $attachment=! defined pagetype($pagesources{$src});
|
2008-07-22 20:00:23 +02:00
|
|
|
|
|
|
|
# Must be a known source file.
|
|
|
|
if (! exists $pagesources{$src}) {
|
|
|
|
error(sprintf(gettext("%s does not exist"),
|
|
|
|
htmllink("", "", $src, noimageinline => 1)));
|
|
|
|
}
|
|
|
|
|
|
|
|
# Must exist on disk, and be a regular file.
|
|
|
|
if (! -e "$config{srcdir}/$srcfile") {
|
|
|
|
error(sprintf(gettext("%s is not in the srcdir, so it cannot be renamed"), $srcfile));
|
|
|
|
}
|
|
|
|
elsif (-l "$config{srcdir}/$srcfile" && ! -f _) {
|
|
|
|
error(sprintf(gettext("%s is not a file"), $srcfile));
|
|
|
|
}
|
|
|
|
|
|
|
|
# Must be editable.
|
|
|
|
IkiWiki::check_canedit($src, $q, $session);
|
|
|
|
if ($attachment) {
|
2008-09-23 23:41:05 +02:00
|
|
|
if (IkiWiki::Plugin::attachment->can("check_canattach")) {
|
|
|
|
IkiWiki::Plugin::attachment::check_canattach($session, $src, $srcfile);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
error("renaming of attachments is not allowed");
|
|
|
|
}
|
2008-07-22 20:00:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
# Dest checks can be omitted by passing undef.
|
|
|
|
if (defined $dest) {
|
2008-08-07 22:09:41 +02:00
|
|
|
if ($srcfile eq $destfile) {
|
2008-07-22 20:00:23 +02:00
|
|
|
error(gettext("no change to the file name was specified"));
|
|
|
|
}
|
|
|
|
|
2008-07-22 23:38:31 +02:00
|
|
|
# Must be a legal filename, and not absolute.
|
|
|
|
if (IkiWiki::file_pruned($destfile, $config{srcdir}) ||
|
|
|
|
$destfile=~/^\//) {
|
2008-07-22 20:00:23 +02:00
|
|
|
error(sprintf(gettext("illegal name")));
|
|
|
|
}
|
|
|
|
|
|
|
|
# Must not be a known source file.
|
2008-08-07 22:09:41 +02:00
|
|
|
if ($src ne $dest && exists $pagesources{$dest}) {
|
2008-07-22 20:00:23 +02:00
|
|
|
error(sprintf(gettext("%s already exists"),
|
|
|
|
htmllink("", "", $dest, noimageinline => 1)));
|
|
|
|
}
|
|
|
|
|
|
|
|
# Must not exist on disk already.
|
|
|
|
if (-l "$config{srcdir}/$destfile" || -e _) {
|
|
|
|
error(sprintf(gettext("%s already exists on disk"), $destfile));
|
|
|
|
}
|
|
|
|
|
|
|
|
# Must be editable.
|
|
|
|
IkiWiki::check_canedit($dest, $q, $session);
|
|
|
|
if ($attachment) {
|
2008-07-22 22:14:33 +02:00
|
|
|
# Note that $srcfile is used here, not $destfile,
|
|
|
|
# because it wants the current file, to check it.
|
|
|
|
IkiWiki::Plugin::attachment::check_canattach($session, $dest, $srcfile);
|
2008-07-22 20:00:23 +02:00
|
|
|
}
|
|
|
|
}
|
2009-01-01 16:48:43 +01:00
|
|
|
|
|
|
|
my $canrename;
|
|
|
|
IkiWiki::run_hooks(canrename => sub {
|
|
|
|
return if defined $canrename;
|
2009-01-26 23:02:31 +01:00
|
|
|
my $ret=shift->(cgi => $q, session => $session,
|
|
|
|
src => $src, srcfile => $srcfile,
|
|
|
|
dest => $dest, destfile => $destfile);
|
2009-01-01 16:48:43 +01:00
|
|
|
if (defined $ret) {
|
|
|
|
if ($ret eq "") {
|
|
|
|
$canrename=1;
|
|
|
|
}
|
|
|
|
elsif (ref $ret eq 'CODE') {
|
|
|
|
$ret->();
|
|
|
|
$canrename=0;
|
|
|
|
}
|
|
|
|
elsif (defined $ret) {
|
|
|
|
error($ret);
|
|
|
|
$canrename=0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2008-07-22 20:00:23 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub rename_form ($$$) {
|
2008-07-22 04:44:37 +02:00
|
|
|
my $q=shift;
|
|
|
|
my $session=shift;
|
|
|
|
my $page=shift;
|
|
|
|
|
|
|
|
eval q{use CGI::FormBuilder};
|
|
|
|
error($@) if $@;
|
|
|
|
my $f = CGI::FormBuilder->new(
|
|
|
|
name => "rename",
|
2008-09-27 20:14:36 +02:00
|
|
|
title => sprintf(gettext("rename %s"), pagetitle($page)),
|
2008-07-22 04:44:37 +02:00
|
|
|
header => 0,
|
|
|
|
charset => "utf-8",
|
|
|
|
method => 'POST',
|
|
|
|
javascript => 0,
|
|
|
|
params => $q,
|
|
|
|
action => $config{cgiurl},
|
|
|
|
stylesheet => IkiWiki::baseurl()."style.css",
|
|
|
|
fields => [qw{do page new_name attachment}],
|
|
|
|
);
|
|
|
|
|
|
|
|
$f->field(name => "do", type => "hidden", value => "rename", force => 1);
|
|
|
|
$f->field(name => "page", type => "hidden", value => $page, force => 1);
|
2008-12-17 19:56:10 +01:00
|
|
|
$f->field(name => "new_name", value => pagetitle($page, 1), size => 60);
|
2008-08-07 22:09:41 +02:00
|
|
|
if (!$q->param("attachment")) {
|
|
|
|
# insert the standard extensions
|
|
|
|
my @page_types;
|
|
|
|
if (exists $IkiWiki::hooks{htmlize}) {
|
2009-05-21 21:50:25 +02:00
|
|
|
foreach my $key (grep { !/^_/ } keys %{$IkiWiki::hooks{htmlize}}) {
|
|
|
|
push @page_types, [$key, $IkiWiki::hooks{htmlize}{$key}{longname} || $key];
|
|
|
|
}
|
2008-08-07 22:09:41 +02:00
|
|
|
}
|
2009-05-21 21:50:25 +02:00
|
|
|
@page_types=sort @page_types;
|
2008-08-07 22:09:41 +02:00
|
|
|
|
|
|
|
# make sure the current extension is in the list
|
|
|
|
my ($ext) = $pagesources{$page}=~/\.([^.]+)$/;
|
|
|
|
if (! $IkiWiki::hooks{htmlize}{$ext}) {
|
2009-05-21 21:50:25 +02:00
|
|
|
unshift(@page_types, [$ext, $ext]);
|
2008-08-07 22:09:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
$f->field(name => "type", type => 'select',
|
|
|
|
options => \@page_types,
|
|
|
|
value => $ext, force => 1);
|
2008-09-23 22:56:57 +02:00
|
|
|
|
2008-09-24 01:21:05 +02:00
|
|
|
foreach my $p (keys %pagesources) {
|
|
|
|
if ($pagesources{$p}=~m/^\Q$page\E\//) {
|
|
|
|
$f->field(name => "subpages",
|
|
|
|
label => "",
|
|
|
|
type => "checkbox",
|
|
|
|
options => [ [ 1 => gettext("Also rename SubPages and attachments") ] ],
|
|
|
|
value => 1,
|
|
|
|
force => 1);
|
|
|
|
last;
|
|
|
|
}
|
|
|
|
}
|
2008-08-07 22:09:41 +02:00
|
|
|
}
|
2008-07-22 04:44:37 +02:00
|
|
|
$f->field(name => "attachment", type => "hidden");
|
|
|
|
|
|
|
|
return $f, ["Rename", "Cancel"];
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2008-07-22 04:44:37 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub rename_start ($$$$) {
|
2008-07-22 04:44:37 +02:00
|
|
|
my $q=shift;
|
|
|
|
my $session=shift;
|
|
|
|
my $attachment=shift;
|
|
|
|
my $page=shift;
|
|
|
|
|
2008-07-22 20:00:23 +02:00
|
|
|
check_canrename($page, $pagesources{$page}, undef, undef,
|
2008-09-23 23:41:05 +02:00
|
|
|
$q, $session);
|
2008-07-22 20:00:23 +02:00
|
|
|
|
2008-07-22 04:44:37 +02:00
|
|
|
# Save current form state to allow returning to it later
|
|
|
|
# without losing any edits.
|
|
|
|
# (But don't save what button was submitted, to avoid
|
|
|
|
# looping back to here.)
|
|
|
|
# Note: "_submit" is CGI::FormBuilder internals.
|
|
|
|
$q->param(-name => "_submit", -value => "");
|
|
|
|
$session->param(postrename => scalar $q->Vars);
|
|
|
|
IkiWiki::cgi_savesession($session);
|
|
|
|
|
|
|
|
if (defined $attachment) {
|
2008-09-24 01:31:34 +02:00
|
|
|
$q->param(-name => "attachment", -value => $attachment);
|
2008-07-22 04:44:37 +02:00
|
|
|
}
|
2008-09-24 01:31:34 +02:00
|
|
|
my ($f, $buttons)=rename_form($q, $session, $page);
|
2008-07-22 04:44:37 +02:00
|
|
|
IkiWiki::showform($f, $buttons, $session, $q);
|
|
|
|
exit 0;
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2008-07-22 04:44:37 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub postrename ($;$$$) {
|
2008-07-22 04:44:37 +02:00
|
|
|
my $session=shift;
|
2008-07-24 01:20:11 +02:00
|
|
|
my $src=shift;
|
2008-07-23 00:17:11 +02:00
|
|
|
my $dest=shift;
|
|
|
|
my $attachment=shift;
|
2008-07-22 04:44:37 +02:00
|
|
|
|
2008-07-23 00:17:11 +02:00
|
|
|
# Load saved form state and return to edit page.
|
2008-07-22 04:44:37 +02:00
|
|
|
my $postrename=CGI->new($session->param("postrename"));
|
|
|
|
$session->clear("postrename");
|
|
|
|
IkiWiki::cgi_savesession($session);
|
2008-07-23 00:17:11 +02:00
|
|
|
|
2008-07-24 01:20:11 +02:00
|
|
|
if (defined $dest) {
|
|
|
|
if (! $attachment) {
|
|
|
|
# They renamed the page they were editing. This requires
|
|
|
|
# fixups to the edit form state.
|
|
|
|
# Tweak the edit form to be editing the new page.
|
|
|
|
$postrename->param("page", $dest);
|
|
|
|
}
|
|
|
|
|
|
|
|
# Update edit form content to fix any links present
|
|
|
|
# on it.
|
|
|
|
$postrename->param("editcontent",
|
2009-01-27 00:00:00 +01:00
|
|
|
renamepage_hook($dest, $src, $dest,
|
2008-07-24 01:20:11 +02:00
|
|
|
$postrename->param("editcontent")));
|
2008-07-23 00:17:11 +02:00
|
|
|
|
2008-07-24 01:20:11 +02:00
|
|
|
# Get a new edit token; old was likely invalidated.
|
|
|
|
$postrename->param("rcsinfo",
|
|
|
|
IkiWiki::rcs_prepedit($pagesources{$dest}));
|
|
|
|
}
|
2008-07-24 01:12:05 +02:00
|
|
|
|
2008-07-23 00:17:11 +02:00
|
|
|
IkiWiki::cgi_editpage($postrename, $session);
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2008-07-22 04:44:37 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub formbuilder (@) {
|
2008-07-22 04:44:37 +02:00
|
|
|
my %params=@_;
|
|
|
|
my $form=$params{form};
|
|
|
|
|
2008-10-02 18:53:53 +02:00
|
|
|
if (defined $form->field("do") && ($form->field("do") eq "edit" ||
|
|
|
|
$form->field("do") eq "create")) {
|
2008-07-22 04:44:37 +02:00
|
|
|
my $q=$params{cgi};
|
|
|
|
my $session=$params{session};
|
|
|
|
|
2008-10-02 18:53:53 +02:00
|
|
|
if ($form->submitted eq "Rename" && $form->field("do") eq "edit") {
|
2008-07-22 04:44:37 +02:00
|
|
|
rename_start($q, $session, 0, $form->field("page"));
|
|
|
|
}
|
|
|
|
elsif ($form->submitted eq "Rename Attachment") {
|
|
|
|
my @selected=$q->param("attachment_select");
|
|
|
|
if (@selected > 1) {
|
|
|
|
error(gettext("Only one attachment can be renamed at a time."));
|
|
|
|
}
|
|
|
|
elsif (! @selected) {
|
|
|
|
error(gettext("Please select the attachment to rename."))
|
|
|
|
}
|
|
|
|
rename_start($q, $session, 1, $selected[0]);
|
|
|
|
}
|
|
|
|
}
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2008-07-22 04:44:37 +02:00
|
|
|
|
2008-07-23 02:30:54 +02:00
|
|
|
my $renamesummary;
|
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub formbuilder_setup (@) {
|
2008-07-23 02:30:54 +02:00
|
|
|
my %params=@_;
|
|
|
|
my $form=$params{form};
|
|
|
|
my $q=$params{cgi};
|
|
|
|
|
2008-10-02 18:53:53 +02:00
|
|
|
if (defined $form->field("do") && ($form->field("do") eq "edit" ||
|
|
|
|
$form->field("do") eq "create")) {
|
2008-07-23 02:30:54 +02:00
|
|
|
# Rename button for the page, and also for attachments.
|
2008-10-02 18:53:53 +02:00
|
|
|
push @{$params{buttons}}, "Rename" if $form->field("do") eq "edit";
|
2008-07-23 02:30:54 +02:00
|
|
|
$form->tmpl_param("field-rename" => '<input name="_submit" type="submit" value="Rename Attachment" />');
|
|
|
|
|
|
|
|
if (defined $renamesummary) {
|
|
|
|
$form->tmpl_param(message => $renamesummary);
|
|
|
|
}
|
|
|
|
}
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2008-07-23 02:30:54 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub sessioncgi ($$) {
|
2008-07-22 04:44:37 +02:00
|
|
|
my $q=shift;
|
|
|
|
|
|
|
|
if ($q->param("do") eq 'rename') {
|
|
|
|
my $session=shift;
|
|
|
|
my ($form, $buttons)=rename_form($q, $session, $q->param("page"));
|
|
|
|
IkiWiki::decode_form_utf8($form);
|
|
|
|
|
|
|
|
if ($form->submitted eq 'Cancel') {
|
|
|
|
postrename($session);
|
|
|
|
}
|
|
|
|
elsif ($form->submitted eq 'Rename' && $form->validate) {
|
2008-09-24 01:21:05 +02:00
|
|
|
# Queue of rename actions to perfom.
|
|
|
|
my @torename;
|
|
|
|
|
2008-07-22 20:00:23 +02:00
|
|
|
# These untaints are safe because of the checks
|
2008-09-24 01:21:05 +02:00
|
|
|
# performed in check_canrename later.
|
2008-07-22 20:00:23 +02:00
|
|
|
my $src=$q->param("page");
|
|
|
|
my $srcfile=IkiWiki::possibly_foolish_untaint($pagesources{$src});
|
2008-09-27 20:14:36 +02:00
|
|
|
my $dest=IkiWiki::possibly_foolish_untaint(titlepage($q->param("new_name")));
|
2008-07-22 20:00:23 +02:00
|
|
|
my $destfile=$dest;
|
|
|
|
if (! $q->param("attachment")) {
|
2008-08-07 22:09:41 +02:00
|
|
|
my $type=$q->param('type');
|
|
|
|
if (defined $type && length $type && $IkiWiki::hooks{htmlize}{$type}) {
|
|
|
|
$type=IkiWiki::possibly_foolish_untaint($type);
|
2008-09-23 20:57:13 +02:00
|
|
|
}
|
|
|
|
else {
|
2008-08-07 22:09:41 +02:00
|
|
|
my ($ext)=$srcfile=~/\.([^.]+)$/;
|
|
|
|
$type=$ext;
|
|
|
|
}
|
|
|
|
|
2008-09-30 00:52:42 +02:00
|
|
|
$destfile=newpagefile($dest, $type);
|
2008-07-22 04:44:37 +02:00
|
|
|
}
|
2008-09-24 01:21:05 +02:00
|
|
|
push @torename, {
|
|
|
|
src => $src,
|
|
|
|
srcfile => $srcfile,
|
|
|
|
dest => $dest,
|
|
|
|
destfile => $destfile,
|
|
|
|
required => 1,
|
|
|
|
};
|
|
|
|
|
2009-03-08 11:44:00 +01:00
|
|
|
@torename=rename_hook(
|
|
|
|
torename => \@torename,
|
|
|
|
done => {},
|
|
|
|
cgi => $q,
|
|
|
|
session => $session,
|
|
|
|
);
|
2009-03-08 15:47:50 +01:00
|
|
|
|
2008-07-22 04:44:37 +02:00
|
|
|
require IkiWiki::Render;
|
2008-09-23 23:04:01 +02:00
|
|
|
IkiWiki::disable_commit_hook() if $config{rcs};
|
2008-09-24 01:21:05 +02:00
|
|
|
my %origpagesources=%pagesources;
|
2008-09-23 23:04:01 +02:00
|
|
|
|
2008-09-24 01:21:05 +02:00
|
|
|
# First file renaming.
|
|
|
|
foreach my $rename (@torename) {
|
|
|
|
if ($rename->{required}) {
|
|
|
|
do_rename($rename, $q, $session);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
eval {do_rename($rename, $q, $session)};
|
|
|
|
if ($@) {
|
|
|
|
$rename->{error}=$@;
|
|
|
|
next;
|
|
|
|
}
|
|
|
|
}
|
2008-09-23 23:04:01 +02:00
|
|
|
|
2008-09-24 01:21:05 +02:00
|
|
|
# Temporarily tweak pagesources to point to
|
|
|
|
# the renamed file, in case fixlinks needs
|
|
|
|
# to edit it.
|
|
|
|
$pagesources{$rename->{src}}=$rename->{destfile};
|
2008-09-23 23:26:46 +02:00
|
|
|
}
|
2008-09-24 01:21:05 +02:00
|
|
|
IkiWiki::rcs_commit_staged(
|
|
|
|
sprintf(gettext("rename %s to %s"), $srcfile, $destfile),
|
|
|
|
$session->param("name"), $ENV{REMOTE_ADDR}) if $config{rcs};
|
|
|
|
|
2008-12-30 22:55:04 +01:00
|
|
|
# Then link fixups.
|
2008-09-24 01:21:05 +02:00
|
|
|
foreach my $rename (@torename) {
|
|
|
|
next if $rename->{src} eq $rename->{dest};
|
|
|
|
next if $rename->{error};
|
|
|
|
foreach my $p (fixlinks($rename, $session)) {
|
|
|
|
# map old page names to new
|
|
|
|
foreach my $r (@torename) {
|
|
|
|
next if $rename->{error};
|
|
|
|
if ($r->{src} eq $p) {
|
|
|
|
$p=$r->{dest};
|
|
|
|
last;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
push @{$rename->{fixedlinks}}, $p;
|
|
|
|
}
|
2008-07-24 01:12:05 +02:00
|
|
|
}
|
2008-09-23 23:04:01 +02:00
|
|
|
|
2008-09-24 01:21:05 +02:00
|
|
|
# Then refresh.
|
|
|
|
%pagesources=%origpagesources;
|
2008-07-24 01:12:05 +02:00
|
|
|
if ($config{rcs}) {
|
|
|
|
IkiWiki::enable_commit_hook();
|
|
|
|
IkiWiki::rcs_update();
|
|
|
|
}
|
2008-07-22 04:44:37 +02:00
|
|
|
IkiWiki::refresh();
|
|
|
|
IkiWiki::saveindex();
|
|
|
|
|
2008-09-24 01:21:05 +02:00
|
|
|
# Find pages with remaining, broken links.
|
|
|
|
foreach my $rename (@torename) {
|
|
|
|
next if $rename->{src} eq $rename->{dest};
|
|
|
|
|
2008-08-07 22:17:50 +02:00
|
|
|
foreach my $page (keys %links) {
|
|
|
|
my $broken=0;
|
|
|
|
foreach my $link (@{$links{$page}}) {
|
|
|
|
my $bestlink=bestlink($page, $link);
|
2008-09-24 01:21:05 +02:00
|
|
|
if ($bestlink eq $rename->{src}) {
|
|
|
|
push @{$rename->{brokenlinks}}, $page;
|
2008-08-07 22:17:50 +02:00
|
|
|
last;
|
|
|
|
}
|
2008-07-23 02:30:54 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-09-24 01:21:05 +02:00
|
|
|
# Generate a summary, that will be shown at the top
|
2008-07-23 02:30:54 +02:00
|
|
|
# of the edit template.
|
2008-09-24 01:21:05 +02:00
|
|
|
$renamesummary="";
|
|
|
|
foreach my $rename (@torename) {
|
|
|
|
my $template=template("renamesummary.tmpl");
|
|
|
|
$template->param(src => $rename->{srcfile});
|
|
|
|
$template->param(dest => $rename->{destfile});
|
|
|
|
$template->param(error => $rename->{error});
|
|
|
|
if ($rename->{src} ne $rename->{dest}) {
|
|
|
|
$template->param(brokenlinks_checked => 1);
|
2009-01-06 23:28:26 +01:00
|
|
|
$template->param(brokenlinks => linklist($rename->{dest}, $rename->{brokenlinks}));
|
|
|
|
$template->param(fixedlinks => linklist($rename->{dest}, $rename->{fixedlinks}));
|
2008-09-24 01:21:05 +02:00
|
|
|
}
|
|
|
|
$renamesummary.=$template->output;
|
2008-08-07 22:17:50 +02:00
|
|
|
}
|
2008-07-23 02:30:54 +02:00
|
|
|
|
2008-07-24 01:20:11 +02:00
|
|
|
postrename($session, $src, $dest, $q->param("attachment"));
|
2008-07-22 04:44:37 +02:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
IkiWiki::showform($form, $buttons, $session, $q);
|
|
|
|
}
|
|
|
|
|
|
|
|
exit 0;
|
|
|
|
}
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2009-03-08 12:52:49 +01:00
|
|
|
|
|
|
|
# Add subpages to the list of pages to be renamed, if needed.
|
2009-03-27 20:27:38 +01:00
|
|
|
sub rename_subpages (@) {
|
2009-03-08 12:52:49 +01:00
|
|
|
my %params = @_;
|
|
|
|
|
|
|
|
my %torename = %{$params{torename}};
|
|
|
|
my $q = $params{cgi};
|
|
|
|
my $src = $torename{src};
|
|
|
|
my $srcfile = $torename{src};
|
|
|
|
my $dest = $torename{dest};
|
|
|
|
my $destfile = $torename{dest};
|
|
|
|
|
|
|
|
return () unless ($q->param("subpages") && $src ne $dest);
|
|
|
|
|
|
|
|
my @ret;
|
|
|
|
foreach my $p (keys %pagesources) {
|
|
|
|
next unless $pagesources{$p}=~m/^\Q$src\E\//;
|
|
|
|
# If indexpages is enabled, the srcfile should not be confused
|
|
|
|
# with a subpage.
|
|
|
|
next if $pagesources{$p} eq $srcfile;
|
|
|
|
|
|
|
|
my $d=$pagesources{$p};
|
|
|
|
$d=~s/^\Q$src\E\//$dest\//;
|
|
|
|
push @ret, {
|
|
|
|
src => $p,
|
|
|
|
srcfile => $pagesources{$p},
|
|
|
|
dest => pagename($d),
|
|
|
|
destfile => $d,
|
|
|
|
required => 0,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
return @ret;
|
|
|
|
}
|
|
|
|
|
2009-01-06 23:28:26 +01:00
|
|
|
sub linklist {
|
|
|
|
# generates a list of links in a form suitable for FormBuilder
|
|
|
|
my $dest=shift;
|
|
|
|
my $list=shift;
|
|
|
|
# converts a list of pages into a list of links
|
|
|
|
# in a form suitable for FormBuilder.
|
|
|
|
|
|
|
|
[map {
|
|
|
|
{
|
|
|
|
page => htmllink($dest, $dest, $_,
|
|
|
|
noimageinline => 1,
|
2009-01-06 23:29:12 +01:00
|
|
|
linktext => pagetitle($_),
|
2009-01-06 23:28:26 +01:00
|
|
|
)
|
|
|
|
}
|
|
|
|
} @{$list}]
|
|
|
|
}
|
2008-07-24 01:12:05 +02:00
|
|
|
|
2009-01-27 00:00:00 +01:00
|
|
|
sub renamepage_hook ($$$$) {
|
2008-07-24 01:12:05 +02:00
|
|
|
my ($page, $src, $dest, $content)=@_;
|
|
|
|
|
2009-01-27 00:00:00 +01:00
|
|
|
IkiWiki::run_hooks(renamepage => sub {
|
2008-07-24 01:12:05 +02:00
|
|
|
$content=shift->(
|
|
|
|
page => $page,
|
|
|
|
oldpage => $src,
|
|
|
|
newpage => $dest,
|
|
|
|
content => $content,
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
return $content;
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2009-03-08 11:44:00 +01:00
|
|
|
|
2009-07-20 07:11:22 +02:00
|
|
|
sub rename_hook {
|
2009-03-08 11:44:00 +01:00
|
|
|
my %params = @_;
|
|
|
|
|
|
|
|
my @torename=@{$params{torename}};
|
|
|
|
my %done=%{$params{done}};
|
|
|
|
my $q=$params{cgi};
|
|
|
|
my $session=$params{session};
|
|
|
|
|
2009-03-27 20:23:36 +01:00
|
|
|
return () unless @torename;
|
|
|
|
|
2009-03-08 11:44:00 +01:00
|
|
|
my @nextset;
|
2009-03-27 20:23:36 +01:00
|
|
|
foreach my $torename (@torename) {
|
|
|
|
unless (exists $done{$torename->{src}} && $done{$torename->{src}}) {
|
|
|
|
IkiWiki::run_hooks(rename => sub {
|
|
|
|
push @nextset, shift->(
|
|
|
|
torename => $torename,
|
|
|
|
cgi => $q,
|
|
|
|
session => $session,
|
|
|
|
);
|
|
|
|
});
|
|
|
|
$done{$torename->{src}}=1;
|
2009-03-08 11:44:00 +01:00
|
|
|
}
|
|
|
|
}
|
2009-03-27 20:27:38 +01:00
|
|
|
|
2009-03-27 20:23:36 +01:00
|
|
|
push @torename, rename_hook(
|
|
|
|
torename => \@nextset,
|
|
|
|
done => \%done,
|
|
|
|
cgi => $q,
|
|
|
|
session => $session,
|
|
|
|
);
|
|
|
|
|
|
|
|
# dedup
|
|
|
|
my %seen;
|
|
|
|
return grep { ! $seen{$_->{src}}++ } @torename;
|
2009-03-08 11:44:00 +01:00
|
|
|
}
|
2009-03-27 20:21:21 +01:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub do_rename ($$$) {
|
2008-09-24 01:21:05 +02:00
|
|
|
my $rename=shift;
|
|
|
|
my $q=shift;
|
2008-09-23 23:04:01 +02:00
|
|
|
my $session=shift;
|
2008-09-24 01:21:05 +02:00
|
|
|
|
|
|
|
# First, check if this rename is allowed.
|
|
|
|
check_canrename($rename->{src},
|
|
|
|
$rename->{srcfile},
|
|
|
|
$rename->{dest},
|
|
|
|
$rename->{destfile},
|
|
|
|
$q, $session);
|
|
|
|
|
|
|
|
# Ensure that the dest directory exists and is ok.
|
|
|
|
IkiWiki::prep_writefile($rename->{destfile}, $config{srcdir});
|
|
|
|
|
2008-09-23 23:04:01 +02:00
|
|
|
if ($config{rcs}) {
|
2008-09-24 01:21:05 +02:00
|
|
|
IkiWiki::rcs_rename($rename->{srcfile}, $rename->{destfile});
|
2008-09-23 23:04:01 +02:00
|
|
|
}
|
|
|
|
else {
|
2009-03-27 20:28:35 +01:00
|
|
|
if (! rename($config{srcdir}."/".$rename->{srcfile},
|
2008-09-24 01:21:05 +02:00
|
|
|
$config{srcdir}."/".$rename->{destfile})) {
|
2008-09-23 23:04:01 +02:00
|
|
|
error("rename: $!");
|
|
|
|
}
|
|
|
|
}
|
2008-09-24 01:21:05 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2008-07-22 04:44:37 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub fixlinks ($$$) {
|
2008-09-24 01:21:05 +02:00
|
|
|
my $rename=shift;
|
2008-09-23 23:26:46 +02:00
|
|
|
my $session=shift;
|
|
|
|
|
|
|
|
my @fixedlinks;
|
|
|
|
|
|
|
|
foreach my $page (keys %links) {
|
|
|
|
my $needfix=0;
|
|
|
|
foreach my $link (@{$links{$page}}) {
|
|
|
|
my $bestlink=bestlink($page, $link);
|
2008-09-24 01:21:05 +02:00
|
|
|
if ($bestlink eq $rename->{src}) {
|
2008-09-23 23:26:46 +02:00
|
|
|
$needfix=1;
|
|
|
|
last;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ($needfix) {
|
|
|
|
my $file=$pagesources{$page};
|
|
|
|
my $oldcontent=readfile($config{srcdir}."/".$file);
|
2009-01-27 00:00:00 +01:00
|
|
|
my $content=renamepage_hook($page, $rename->{src}, $rename->{dest}, $oldcontent);
|
2008-09-23 23:26:46 +02:00
|
|
|
if ($oldcontent ne $content) {
|
|
|
|
my $token=IkiWiki::rcs_prepedit($file);
|
|
|
|
eval { writefile($file, $config{srcdir}, $content) };
|
|
|
|
next if $@;
|
|
|
|
my $conflict=IkiWiki::rcs_commit(
|
|
|
|
$file,
|
2008-09-24 01:21:05 +02:00
|
|
|
sprintf(gettext("update for rename of %s to %s"), $rename->{srcfile}, $rename->{destfile}),
|
2008-09-23 23:26:46 +02:00
|
|
|
$token,
|
|
|
|
$session->param("name"),
|
|
|
|
$ENV{REMOTE_ADDR}
|
|
|
|
);
|
|
|
|
push @fixedlinks, $page if ! defined $conflict;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return @fixedlinks;
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2008-09-23 23:26:46 +02:00
|
|
|
|
2008-07-22 04:44:37 +02:00
|
|
|
1
|