User:AnomieBOT/source/tasks/TemplateReplacer10.pm
Appearance
Due to breaking changes in AnomieBOT::API, this task will probably not run anymore. If you really must run it, try getting a version from before 2009-03-23. |
Speedily approved 2008-12-28, Completed 2008-12-29 Wikipedia:Bots/Requests for approval/AnomieBOT 19 |
package tasks::TemplateReplacer10;
=pod
=for warning
Due to breaking changes in AnomieBOT::API, this task will probably not run
anymore. If you really must run it, try getting a version from before
2009-03-23.
=begin metadata
Bot: AnomieBOT
Task: TemplateReplacer10
BRFA: Wikipedia:Bots/Requests for approval/AnomieBOT 19
Status: Completed 2008-12-29
Created: 2008-12-27
Replace {{tl|Zeldaproj}} (and redirects) with {{tlx|WikiProject Video
games|2=tf=Nintendo}}. Also canonicalizes redirects to {{tl|WikiProject Video
games}} on the pages it edits for this reason, since it's editing them anyway.
=end metadata
=cut
use utf8;
use strict;
use AnomieBOT::Task;
use vars qw/@ISA/;
@ISA=qw/AnomieBOT::Task/;
sub new {
my $class=shift;
my $self=$class->SUPER::new();
bless $self, $class;
return $self;
}
=pod
=for info
Speedily approved 2008-12-28, Completed 2008-12-29<br />[[Wikipedia:Bots/Requests for approval/AnomieBOT 19]]
=cut
sub approved {
return -1;
}
sub run {
my ($self, $api)=@_;
my $res;
$api->task('TemplateReplacer10');
$api->read_throttle(0);
$api->edit_throttle(10);
# List of templates to replace in this task
my @templates=('Zeldaproj');
my $tf='Nintendo';
my $req="[[User talk:Anomie#Requesting a bot-related demolition job|request]]";
# Spend a max of 5 minutes on this task before restarting
my $endtime=time()+300;
# Get a list of templates redirecting to our targets
my %templates=();
foreach my $template (@templates){
$templates{"Template:$template"}=1;
$res=$api->query([],
list => 'backlinks',
bltitle => "Template:$template",
blfilterredir => 'redirects',
bllimit => 'max',
);
$templates{$_->{'title'}}=1 foreach (@{$res->{'query'}{'backlinks'}});
}
# Before starting, get the list of alternate names for {{WikiProject Video
# games}}
my %WPVG=('Template:WikiProject Video games'=>1);
$res=$api->query([],
list => 'backlinks',
bltitle => 'Template:WikiProject Video games',
blfilterredir => 'redirects',
bllimit => 'max',
);
$WPVG{$_->{'title'}}=1 foreach (@{$res->{'query'}{'backlinks'}});
delete $WPVG{$_} foreach (values %templates);
# Also, get redirects to WikiProjectBanners and WikiProjectBannerShell, for
# renumbering after the wikiproject banner is removed.
my %WPB=('Template:WikiProjectBanners'=>1,'Template:WikiProjectBannerShell'=>1);
$res=$api->query([],
list => 'backlinks',
bltitle => 'Template:WikiProjectBanners',
blfilterredir => 'redirects',
bllimit => 'max',
);
$WPB{$_->{'title'}}=1 foreach (@{$res->{'query'}{'backlinks'}});
$res=$api->query([],
list => 'backlinks',
bltitle => 'Template:WikiProjectBannerShell',
blfilterredir => 'redirects',
bllimit => 'max',
);
$WPB{$_->{'title'}}=1 foreach (@{$res->{'query'}{'backlinks'}});
foreach my $template (@templates){
# Get the list of pages to check
my %q=(
list => 'embeddedin',
eititle => "Template:$template",
eilimit => 'max',
);
do {
$res=$api->query(%q);
if($res->{'code'} ne 'success'){
$self->warn("Failed to retrieve transclusion list for $template: ".$res->{'error'}."\n");
return 60;
}
if(exists($res->{'query-continue'})){
$q{'eicontinue'}=$res->{'query-continue'}{'embeddedin'}{'eicontinue'};
} else {
delete $q{'eicontinue'};
}
# Process found pages
foreach (@{$res->{'query'}{'embeddedin'}}){
my $title=$_->{'title'};
$self->warn("Checking for $template in $title\n");
# WTF?
if(exists($_->{'missing'})){
$self->warn("$title is missing? WTF?\n");
next;
}
# Ok, check the page
my $tok=$api->edittoken($title);
if($tok->{'code'} eq 'shutoff'){
$self->warn("Task disabled: ".$tok->{'content'}."\n");
return 300;
}
if($tok->{'code'} ne 'success'){
$self->warn("Failed to get edit token for $title: ".$tok->{'error'}."\n");
next;
}
next if exists($tok->{'missing'});
# Get page text
my $intxt=$tok->{'revisions'}[0]{'*'};
# First step is to determine if {{WikiProject Video games}} is
# already on the page.
my $has_WPVG=0;
$self->process_templates($intxt, sub {
$has_WPVG=1 if exists($WPVG{'Template:'.ucfirst($_[0])});
return undef;
});
# Now, we actually perform the replacement
my $append='';
my $summary="Replacing {{$template}} with {{WikiProject Video games}} per $req";
my $minor=1;
my $outtxt=$self->process_templates($intxt, sub {
my $name=shift;
my @params=@{shift()};
shift; # $wikitext
shift; # $data
my $oname=shift;
$name=~s/_/ /g;
if(exists($templates{'Template:'.ucfirst($name)})){
return '' if $has_WPVG;
$oname=~s/\Q$name\E/WikiProject Video games/i;
$name='WikiProject Video games';
@params=grep(/^\s*(?:class|importance|small|nested)\s*=/, @params);
push @params, "tf=$tf";
}
return undef unless exists($WPVG{'Template:'.ucfirst($name)});
# We have the replacement template now, either by finding
# the existing one or by replacing the target template if
# none was already present. Now, find if there is already a
# 'tf' for this task force.
my @tf=grep(/^\s*tf[23]?\s*=\s*$tf\s*$/, @params);
if(!@tf){
if(!grep(/^\s*tf\s*=/, @params)){
push @params, "tf=$tf";
} elsif(!grep(/^\s*tf2\s*=/, @params)){
push @params, "tf2=$tf";
} elsif(!grep(/^\s*tf3\s*=/, @params)){
push @params, "tf3=$tf";
} else {
$append="\n==Template:$template removal issue==\nPer $req, I am going through all pages transcluding {{tl|$template}} to remove it and add a <code>tf=$tf</code> parameter to the {{tl|WikiProject Video games}} template instead. Unfortunately, this page already uses all three of <code>tf</code>, <code>tf2</code>, and <code>tf3</code> in its {{tl|WikiProject Video games}}, so human intervention is required. ~~~~";
$summary="/* Template:$template removal issue */ Human intervention needed to replace {{$template}} with {{WikiProject Video games|tf=$tf}}";
$minor=0;
}
}
# Ok, return the new template code now.
return "{{$oname|".join("|", @params)."}}";
});
$outtxt.=$append;
# Need to edit?
if($outtxt ne $intxt){
# Post-process to fix
# WikiProjectBanners/WikiProjectBannerShell numbering.
$outtxt=$self->process_templates($outtxt, sub {
my $name=shift;
my @params=@{shift()};
shift; # $wikitext
shift; # $data
my $oname=shift;
$name=~s/_/ /g;
return undef unless exists($WPB{'Template:'.ucfirst($name)});
my @p_name=();
my @p_num=();
foreach ($self->process_paramlist(@params)){
if($_->{'name'}=~/^\d+$/){
push @p_num, $_->{'value'} unless $_->{'value'}=~/^\s*$/;
} else {
push @p_name, $_->{'text'};
}
}
for(my $i=0; $i<@p_num; $i++){
push @p_name, ($i+1).'='.$p_num[$i];
}
return "{{$oname|".join("|", @p_name)."}}";
});
$self->warn("$summary in $title\n");
my $r=$api->edit($tok, $outtxt, $summary, $minor, $minor);
if($r->{'code'} ne 'success'){
$self->warn("Write failed on $title: ".$r->{'error'}."\n");
next;
}
} else {
$self->warn("Nothing to do in $title\n");
}
# If we've been at it long enough, let another task have a go.
return 0 if time()>=$endtime;
}
} while(exists($q{'eicontinue'}));
}
# No more pages to check, try again in 10 minutes or so in case of errors.
return 600;
}
1;