24require_once __DIR__ .
'/Maintenance.php';
34 parent::__construct();
36 $this->
addOption(
'all',
'Check all wikis in $wgLocalDatabases' );
37 $this->
addOption(
'delete',
'Delete pages containing only spam instead of blanking them' );
40 'Hostname that was spamming, single * wildcard in the beginning allowed'
50 $this->
fatalError(
"Invalid username specified in 'spambot_username' message: $username" );
53 $wgUser->addGroup(
'bot' );
58 $this->
fatalError(
"Not a valid hostname specification: $spec" );
68 $count =
$dbr->selectField(
'externallinks',
'COUNT(*)',
69 [
'el_index' .
$dbr->buildLike( $like ) ], __METHOD__ );
73 [
'--wiki', $wikiID, $spec ] );
74 passthru(
"$cmd | sed 's/^/$wikiID: /'" );
78 $this->
output(
"All done\n" );
80 $this->
output(
"None found\n" );
86 $res =
$dbr->select(
'externallinks', [
'DISTINCT el_from' ],
87 [
'el_index' .
$dbr->buildLike( $like ) ], __METHOD__ );
89 $this->
output(
"Found $count articles containing $spec\n" );
90 foreach (
$res as $row ) {
100 $title = Title::newFromID( $id );
102 $this->
error(
"Internal error: no page for ID $id" );
107 $this->
output( $title->getPrefixedDBkey() .
" ..." );
108 $rev = Revision::newFromTitle( $title );
109 $currentRevId =
$rev->getId();
111 while (
$rev && (
$rev->isDeleted( Revision::DELETED_TEXT )
117 if (
$rev &&
$rev->getId() == $currentRevId ) {
120 $this->
output(
"False match\n" );
124 $page = WikiPage::factory( $title );
127 $content =
$rev->getContent( Revision::RAW );
129 $this->
output(
"reverting\n" );
130 $page->doEditContent(
132 wfMessage(
'spam_reverting', $domain )->inContentLanguage()->
text(),
136 } elseif ( $this->
hasOption(
'delete' ) ) {
138 $this->
output(
"deleting\n" );
139 $page->doDeleteArticle(
140 wfMessage(
'spam_deleting', $domain )->inContentLanguage()->
text()
144 $handler = ContentHandler::getForTitle( $title );
145 $content =
$handler->makeEmptyContent();
147 $this->
output(
"blanking\n" );
148 $page->doEditContent(
150 wfMessage(
'spam_blanking', $domain )->inContentLanguage()->
text(),
$wgLocalDatabases
Other wikis on this site, can be administered from a single developer account.
wfShellWikiCmd( $script, array $parameters=[], array $options=[])
Generate a shell-escaped command line string to run a MediaWiki cli script.
Maintenance script to cleanup all spam from a given hostname.
cleanupArticle( $id, $domain)
__construct()
Default constructor.
execute()
Do the actual work.
static makeLikeArray( $filterEntry, $protocol='http://')
Make an array to be used for calls to Database::buildLike(), which will match the specified string.
static matchEntry(Content $content, $filterEntry)
Check whether $content contains a link to $filterEntry.
Abstract maintenance class for quickly writing and churning out maintenance scripts with minimal effo...
addArg( $arg, $description, $required=true)
Add some args that are needed.
beginTransaction(IDatabase $dbw, $fname)
Begin a transcation on a DB.
commitTransaction(IDatabase $dbw, $fname)
Commit the transcation on a DB handle and wait for replica DBs to catch up.
getDB( $db, $groups=[], $wiki=false)
Returns a database to be used by current maintenance script.
hasOption( $name)
Checks to see if a particular param exists.
getArg( $argId=0, $default=null)
Get an argument.
addDescription( $text)
Set the description text.
addOption( $name, $description, $required=false, $withArg=false, $shortName=false, $multiOccurrence=false)
Add a parameter to the script.
fatalError( $msg, $exitCode=1)
Output a message and terminate the current script.
static newSystemUser( $name, $options=[])
Static factory method for creation of a "system" user from username.
design txt This is a brief overview of the new design More thorough and up to date information is available on the documentation wiki at etc Handles the details of getting and saving to the user table of the and dealing with sessions and cookies OutputPage Encapsulates the entire HTML page that will be sent in response to any server request It is used by calling its functions to add in any and then calling output() to send it all. It could be easily changed to send incrementally if that becomes useful
design txt This is a brief overview of the new design More thorough and up to date information is available on the documentation wiki at etc Handles the details of getting and saving to the user table of the and dealing with sessions and cookies OutputPage Encapsulates the entire HTML page that will be sent in response to any server request It is used by calling its functions to add text
do that in ParserLimitReportFormat instead use this to modify the parameters of the image all existing parser cache entries will be invalid To avoid you ll need to handle that somehow(e.g. with the RejectParserCacheValue hook) because MediaWiki won 't do it for you. & $defaults error
either a unescaped string or a HtmlArmor object after in associative array form externallinks including delete and has completed for all link tables whether this was an auto creation default is conds Array Extra conditions for the No matching items in log is displayed if loglist is empty msgKey Array If you want a nice box with a set this to the key of the message First element is the message additional optional elements are parameters for the key that are processed with wfMessage() -> params() ->parseAsBlock() - offset Set to overwrite offset parameter in $wgRequest set to '' to unset offset - wrap String Wrap the message in html(usually something like "<div ...>$1</div>"). - flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException':Called before an exception(or PHP error) is logged. This is meant for integration with external error aggregation services
this hook is for auditing only or null if authentication failed before getting that far $username
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that probably a stub it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output modifiable modifiable after all normalizations have been except for the $wgMaxImageArea check set to true or false to override the $wgMaxImageArea check result gives extension the possibility to transform it themselves $handler
presenting them properly to the user as errors is done by the caller return true use this to change the list i e etc $rev
require_once RUN_MAINTENANCE_IF_MAIN