* Handle fallbacks too in extension aliases
[lhc/web/wiklou.git] / maintenance / cleanupSpam.php
index 01b1f63..eb9bd91 100644 (file)
@@ -1,4 +1,8 @@
 <?php
+/**
+ * @file
+ * @ingroup Maintenance
+ */
 
 require_once( 'commandLine.inc' );
 require_once( "$IP/includes/LinkFilter.php" );
@@ -12,12 +16,10 @@ function cleanupArticle( $id, $domain ) {
 
        print $title->getPrefixedDBkey() . " ...";
        $rev = Revision::newFromTitle( $title );
-       $reverted = false;
        $revId = $rev->getId();
        $currentRevId = $revId;
-       $regex = LinkFilter::makeRegex( $domain );
        
-       while ( $rev && preg_match( $regex, $rev->getText() ) ) {
+       while ( $rev && LinkFilter::matchEntry( $rev->getText() , $domain ) ) {
                # Revision::getPrevious can't be used in this way before MW 1.6 (Revision.php 1.26)
                #$rev = $rev->getPrevious();
                $revId = $title->getPreviousRevisionID( $revId );
@@ -32,7 +34,7 @@ function cleanupArticle( $id, $domain ) {
                // This happens e.g. when a link comes from a template rather than the page itself
                print "False match\n";
        } else {
-               $dbw =& wfGetDB( DB_MASTER );
+               $dbw = wfGetDB( DB_MASTER );
                $dbw->immediateBegin();
                if ( !$rev ) {
                        // Didn't find a non-spammy revision, blank the page
@@ -53,11 +55,14 @@ function cleanupArticle( $id, $domain ) {
 }
 //------------------------------------------------------------------------------
 
+
+
+
 $username = wfMsg( 'spambot_username' );
 $fname = $username;
 $wgUser = User::newFromName( $username );
 // Create the user if necessary
-if ( !$wgUser->getID() ) {
+if ( !$wgUser->getId() ) {
        $wgUser->addToDatabase();
 }
 
@@ -72,17 +77,38 @@ if ( !$like ) {
        exit(1);
 }
 
-$dbr =& wfGetDB( DB_SLAVE );
+$dbr = wfGetDB( DB_SLAVE );
 
-$res = $dbr->select( 'externallinks', array( 'el_from' ), 
-       array( 'el_index LIKE ' . $dbr->addQuotes( $like ) ), $fname );
-$count = $dbr->numRows( $res );
-print "Found $count articles containing $spec\n";
-while ( $row = $dbr->fetchObject( $res ) ) {
-       cleanupArticle( $row->el_from, $spec );
-}
-if ( $count ) {
-       print "Done\n";
+if ( isset($options['all']) ) {
+       // Clean up spam on all wikis
+       $dbr = wfGetDB( DB_SLAVE );
+       print "Finding spam on " . count($wgLocalDatabases) . " wikis\n";
+       $found = false;
+       foreach ( $wgLocalDatabases as $db ) {
+               $count = $dbr->selectField( "`$db`.externallinks", 'COUNT(*)', 
+                       array( 'el_index LIKE ' . $dbr->addQuotes( $like ) ), $fname );
+               if ( $count ) {
+                       $found = true;
+                       passthru( "php cleanupSpam.php $db $spec | sed s/^/$db:  /" );
+               }
+       }
+       if ( $found ) {
+               print "All done\n";
+       } else {
+               print "None found\n";
+       }
+} else {
+       // Clean up spam on this wiki
+       $res = $dbr->select( 'externallinks', array( 'DISTINCT el_from' ), 
+               array( 'el_index LIKE ' . $dbr->addQuotes( $like ) ), $fname );
+       $count = $dbr->numRows( $res );
+       print "Found $count articles containing $spec\n";
+       while ( $row = $dbr->fetchObject( $res ) ) {
+               cleanupArticle( $row->el_from, $spec );
+       }
+       if ( $count ) {
+               print "Done\n";
+       }
 }
 
-?>
+