MediaWiki-Bot-Plugin-Admin
view release on metacpan or search on metacpan
lib/MediaWiki/Bot/Plugin/Admin.pm view on Meta::CPAN
$res = $self->{api}->api($hash);
if (!$res) {
return $self->_handle_api_error();
}
return $res;
}
sub unblock {
my $self = shift;
my $user = shift;
my $summary = shift;
my $res;
my $edittoken;
if ($self->{unblocktoken}) {
$edittoken = $self->{unblocktoken};
}
else {
$res = $self->{api}->api({
action => 'query',
titles => 'Main_Page',
prop => 'info|revisions',
intoken => 'unblock',
});
my $data = [ %{ $res->{query}->{pages} } ]->[1];
$edittoken = $data->{unblocktoken};
$self->{unblocktoken} = $edittoken;
}
my $hash = {
action => 'unblock',
user => $user,
token => $edittoken,
reason => $summary,
};
$res = $self->{api}->api($hash);
return $self->_handle_api_error() unless $res;
return $res;
}
sub unprotect { # A convenience function
my $self = shift;
my $page = shift;
my $reason = shift;
return $self->protect($page, $reason, 'all', 'all');
}
sub protect {
my $self = shift;
my $page = shift;
my $reason = shift;
my $editlvl = defined($_[0]) ? shift : 'sysop';
my $movelvl = defined($_[0]) ? shift : 'sysop';
my $time = shift || 'infinite';
my $cascade = shift;
$editlvl = 'all' if $editlvl eq '';
$movelvl = 'all' if $movelvl eq '';
if ($cascade and ($editlvl ne 'sysop' or $movelvl ne 'sysop')) {
carp "Can't set cascading unless both editlvl and movelvl are sysop." if $self->{debug};
}
my $res = $self->{api}->api({
action => 'query',
titles => $page,
prop => 'info|revisions',
intoken => 'protect'
});
my $data = [ %{ $res->{query}->{pages} } ]->[1];
my $edittoken = $data->{protecttoken};
$res = $self->{api}->api({
action => 'protect',
title => $page,
token => $edittoken,
reason => $reason,
protections => "edit=$editlvl|move=$movelvl",
expiry => $time,
cascade => $cascade,
});
return $self->_handle_api_error() unless $res;
return $res;
}
sub transwiki_import {
my $self = shift;
my $prefix = $_[0]->{prefix} || 'w';
my $page = $_[0]->{page};
my $namespace = $_[0]->{ns} || 0;
my $history = defined($_[0]->{history}) ? $_[0]->{history} : 1;
my $templates = defined($_[0]->{templates}) ? $_[0]->{templates} : 0;
my $res = $self->{api}->api({
action => 'query',
prop => 'info',
titles => 'Main Page',
intoken => 'import',
});
return $self->_handle_api_error() unless $res;
my $data = [ %{ $res->{query}->{pages} } ]->[1];
my $importtoken = $data->{importtoken};
$res = $self->{api}->api({
action => 'import',
token => $importtoken,
interwikisource => $prefix,
interwikipage => $page,
fullhistory => $history,
namespace => $namespace,
templates => $templates,
});
return $self->_handle_api_error() unless $res;
return $res;
}
sub xml_import {
my $self = shift;
my $filename = shift or die 'No filename given';
my $success = $self->{api}->edit({
action => 'import',
xml => [ $filename ],
});
return $self->_handle_api_error() unless $success;
return $success;
}
sub set_usergroups {
my $self = shift;
my $user = shift;
my $rights = shift;
my $summary = shift;
$user =~ s/^User://;
lib/MediaWiki/Bot/Plugin/Admin.pm view on Meta::CPAN
=head2 delete($page[,$summary])
Deletes the page with the specified summary. If you omit $summary,
a generic one will be used.
my @pages = ('Junk page 1', 'Junk page 2', 'Junk page 3');
foreach my $page (@pages) {
$bot->delete($page, 'Deleting junk pages');
}
=head2 undelete($page[,$summary])
Undeletes $page with $summary. If you omit $summary, a generic one
will be used.
$bot->undelete($page);
=head2 delete_archived_image($archivename, $summary)
Deletes the specified revision of the image with the specified summary.
A generic summary will be used if you omit $summary.
# Get the archivename somehow (from iiprop)
$bot->delete_archived_image('20080606222744!Albert_Einstein_Head.jpg', 'test');
=head2 block($options_hashref)
Blocks the user with the specified options. All options optional except
user and length. Anononly, autoblock, blockac, blockemail and blocktalk
are true/false. Defaults to a generic summary, with all options disabled.
$bot->block({
user => 'Vandal account 2',
length => 'indefinite',
summary => '[[Project:Vandalism|Vandalism]]',
anononly => 1,
autoblock => 1,
});
For backwards compatibility, you can still use this deprecated method call:
$bot->block('Vandal account', 'infinite', 'Vandalism-only account', 1, 1, 1, 0, 1);
=head2 unblock($user[,$summary])
Unblocks the user with the specified summary.
$bot->unblock('Jimbo Wales', 'Blocked in error');
=head2 unprotect($page, $reason)
Unprotects a page. You can also set parameters for protect() such that
the page is unprotected.
my @obsolete_protections = ('Main Page', 'Project:Community Portal', 'Template:Tlx');
foreach my $page (@obsolete_protections) {
$bot->unprotect($page, 'Removing old obsolete page protection');
}
=head2 protect($page, $reason, $editlvl, $movelvl, $time, $cascade)
Protects (or unprotects) the page. $editlvl and $movelvl may be 'all',
'autoconfirmed', or 'sysop'. $cascade is true/false.
=head2 transwiki_import($options_hashref)
Do a I<transwiki> import of a page specified in the hashref.
=over 4
=item *
prefix must be a valid interwiki on the wiki you're importing to. It
specifies where to import from.
=item *
page is the title to import from the remote wiki, including namespace
=item *
ns is the namespace I<number> to import I<to>. For example, some wikis
have a "Transwiki" namespace to import into where cleanup happens before
pages are moved into the main namespace. This defaults to 0.
=item *
history specifies whether or not to include the full page history. Defaults
to 1. In general, you should import the full history, but on very large page
histories, this may not be possible. In such cases, try disabling this, or
do an L<XML import|/xml_import>.
=item *
templates specifies whether or not to include templates. Defaults to 0;
=back
=head2 xml_import
$bot->xml_import($filename);
Import an XML file to the wiki. Specify the filename of an XML dump.
=head2 set_usergroups
Sets the user's group membership to the given list. You cannot change membership in
*, user, or autoconfirmed, so you don't need to list them. There may also be other
limits on which groups you can set/unset on a given wiki with a given account which
may result in an error. In an error condition, it is undefined whether any group
membership changes are made.
The list returned is the user's new group membership.
$bot->set_usergroups('Mike.lifeguard', ['sysop'], "He deserves it");
=head2 add_usergroups
Add the user to the specified usergroups:
$bot->add_usergroups('Mike.lifeguard', ['sysop', 'editor'], "for fun");
Returns the list of added usergroups, not the full group membership list like set_usergroups does.
=head2 remove_usergroups
Revoke the user's membership in the listed groups:
( run in 1.786 second using v1.01-cache-2.11-cpan-5b529ec07f3 )