2006-01-19 17:17:03 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* An aggressive spam cleanup script.
|
2018-04-06 17:52:42 +00:00
|
|
|
* Searches the database for matching pages, and reverts them to
|
|
|
|
* the last non-spammed revision.
|
|
|
|
* If all revisions contain spam, blanks the page
|
2006-01-19 17:17:03 +00:00
|
|
|
*/
|
|
|
|
|
2018-04-06 17:52:42 +00:00
|
|
|
$IP = getenv( 'MW_INSTALL_PATH' );
|
|
|
|
if ( $IP === false ) {
|
|
|
|
$IP = __DIR__ . '/../../..';
|
2006-01-19 17:17:03 +00:00
|
|
|
}
|
2018-04-06 17:52:42 +00:00
|
|
|
require_once "$IP/maintenance/Maintenance.php";
|
2006-01-19 17:17:03 +00:00
|
|
|
|
2018-04-06 17:52:42 +00:00
|
|
|
class Cleanup extends Maintenance {
|
|
|
|
public function __construct() {
|
|
|
|
parent::__construct();
|
|
|
|
$this->requireExtension( 'SpamBlacklist' );
|
|
|
|
$this->addOption( 'dry-run', 'Only do a dry run' );
|
2012-10-08 23:33:43 +00:00
|
|
|
}
|
2006-04-02 03:50:06 +00:00
|
|
|
|
2018-04-06 17:52:42 +00:00
|
|
|
public function execute() {
|
|
|
|
$user = User::newSystemUser( 'Spam cleanup script', [ 'steal' => true ] );
|
2006-01-19 17:17:03 +00:00
|
|
|
|
2018-04-06 17:52:42 +00:00
|
|
|
$sb = BaseBlacklist::getSpamBlacklist();
|
|
|
|
$regexes = $sb->getBlacklists();
|
|
|
|
if ( !$regexes ) {
|
|
|
|
$this->fatalError( "Invalid regex, can't clean up spam" );
|
|
|
|
}
|
|
|
|
$dryRun = $this->hasOption( 'dry-run' );
|
2006-01-19 17:17:03 +00:00
|
|
|
|
2018-04-06 17:52:42 +00:00
|
|
|
$dbr = wfGetDB( DB_REPLICA );
|
|
|
|
$maxID = (int)$dbr->selectField( 'page', 'MAX(page_id)' );
|
|
|
|
$reportingInterval = 100;
|
2006-01-19 17:17:03 +00:00
|
|
|
|
2018-04-06 17:52:42 +00:00
|
|
|
$this->output( "Regexes are " . implode( ', ', array_map( 'count', $regexes ) ) . " bytes\n" );
|
|
|
|
$this->output( "Searching for spam in $maxID pages...\n" );
|
|
|
|
if ( $dryRun ) {
|
|
|
|
$this->output( "Dry run only\n" );
|
|
|
|
}
|
2006-01-19 17:17:03 +00:00
|
|
|
|
2018-04-06 17:52:42 +00:00
|
|
|
for ( $id = 1; $id <= $maxID; $id++ ) {
|
|
|
|
if ( $id % $reportingInterval == 0 ) {
|
|
|
|
printf( "%-8d %-5.2f%%\r", $id, $id / $maxID * 100 );
|
|
|
|
}
|
|
|
|
$revision = Revision::loadFromPageId( $dbr, $id );
|
|
|
|
if ( $revision ) {
|
|
|
|
$text = ContentHandler::getContentText( $revision->getContent() );
|
|
|
|
if ( $text ) {
|
|
|
|
foreach ( $regexes as $regex ) {
|
|
|
|
if ( preg_match( $regex, $text, $matches ) ) {
|
|
|
|
$title = $revision->getTitle();
|
|
|
|
$titleText = $title->getPrefixedText();
|
|
|
|
if ( $dryRun ) {
|
|
|
|
$this->output( "Found spam in [[$titleText]]\n" );
|
|
|
|
} else {
|
|
|
|
$this->output( "Cleaning up links to {$matches[0]} in [[$titleText]]\n" );
|
|
|
|
$match = str_replace( 'http://', '', $matches[0] );
|
|
|
|
$this->cleanupArticle( $revision, $regexes, $match, $user );
|
|
|
|
}
|
|
|
|
}
|
2006-09-18 09:56:57 +00:00
|
|
|
}
|
2006-01-21 23:27:39 +00:00
|
|
|
}
|
2006-01-19 17:17:03 +00:00
|
|
|
}
|
|
|
|
}
|
2018-04-06 17:52:42 +00:00
|
|
|
// Just for satisfaction
|
|
|
|
printf( "%-8d %-5.2f%%\n", $id - 1, ( $id - 1 ) / $maxID * 100 );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Find the latest revision of the article that does not contain spam and revert to it
|
|
|
|
* @param Revision $rev
|
|
|
|
* @param array $regexes
|
|
|
|
* @param array $match
|
|
|
|
* @param User $user
|
|
|
|
*/
|
|
|
|
private function cleanupArticle( Revision $rev, $regexes, $match, User $user ) {
|
|
|
|
$title = $rev->getTitle();
|
|
|
|
while ( $rev ) {
|
|
|
|
$matches = false;
|
|
|
|
foreach ( $regexes as $regex ) {
|
|
|
|
$matches = $matches
|
|
|
|
|| preg_match(
|
|
|
|
$regex,
|
|
|
|
ContentHandler::getContentText( $rev->getContent() )
|
|
|
|
);
|
|
|
|
}
|
|
|
|
if ( !$matches ) {
|
|
|
|
// Didn't find any spam
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
$rev = $rev->getPrevious();
|
|
|
|
}
|
|
|
|
if ( !$rev ) {
|
|
|
|
// Didn't find a non-spammy revision, blank the page
|
|
|
|
$this->output( "All revisions are spam, blanking...\n" );
|
|
|
|
$text = '';
|
|
|
|
$comment = "All revisions matched the spam blacklist ($match), blanking";
|
|
|
|
} else {
|
|
|
|
// Revert to this revision
|
|
|
|
$text = ContentHandler::getContentText( $rev->getContent() );
|
|
|
|
$comment = "Cleaning up links to $match";
|
|
|
|
}
|
|
|
|
$wikiPage = new WikiPage( $title );
|
|
|
|
$wikiPage->doEditContent(
|
|
|
|
ContentHandler::makeContent( $text, $title ), $comment,
|
|
|
|
0, false, $user
|
|
|
|
);
|
2006-01-19 17:17:03 +00:00
|
|
|
}
|
|
|
|
}
|
2018-04-06 17:52:42 +00:00
|
|
|
|
|
|
|
$maintClass = Cleanup::class;
|
|
|
|
require_once RUN_MAINTENANCE_IF_MAIN;
|