Use local context to get messages
[lhc/web/wiklou.git] / maintenance / cleanupSpam.php
index 2befecb..b11a8f3 100644 (file)
@@ -17,6 +17,7 @@
  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  * http://www.gnu.org/copyleft/gpl.html
  *
+ * @file
  * @ingroup Maintenance
  */
 
@@ -31,10 +32,13 @@ class CleanupSpam extends Maintenance {
        }
 
        public function execute() {
-               global $wgLocalDatabases;
+               global $wgLocalDatabases, $wgUser;
 
                $username = wfMsg( 'spambot_username' );
                $wgUser = User::newFromName( $username );
+               if ( !$wgUser ) {
+                       $this->error( "Invalid username", true );
+               }
                // Create the user if necessary
                if ( !$wgUser->getId() ) {
                        $wgUser->addToDatabase();
@@ -44,7 +48,7 @@ class CleanupSpam extends Maintenance {
                if ( !$like ) {
                        $this->error( "Not a valid hostname specification: $spec", true );
                }
-       
+
                if ( $this->hasOption( 'all' ) ) {
                        // Clean up spam on all wikis
                        $this->output( "Finding spam on " . count( $wgLocalDatabases ) . " wikis\n" );
@@ -87,12 +91,12 @@ class CleanupSpam extends Maintenance {
                        $this->error( "Internal error: no page for ID $id" );
                        return;
                }
-       
+
                $this->output( $title->getPrefixedDBkey() . " ..." );
                $rev = Revision::newFromTitle( $title );
                $revId = $rev->getId();
                $currentRevId = $revId;
-       
+
                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();
@@ -114,20 +118,17 @@ class CleanupSpam extends Maintenance {
                                // Didn't find a non-spammy revision, blank the page
                                $this->output( "blanking\n" );
                                $article = new Article( $title );
-                               $article->updateArticle( '', wfMsg( 'spam_blanking', $domain ),
-                                       false, false );
-       
+                               $article->doEdit( '', wfMsg( 'spam_blanking', $domain ) );
                        } else {
                                // Revert to this revision
                                $this->output( "reverting\n" );
                                $article = new Article( $title );
-                               $article->updateArticle( $rev->getText(), wfMsg( 'spam_reverting', $domain ), false, false );
+                               $article->doEdit( $rev->getText(), wfMsg( 'spam_reverting', $domain ), EDIT_UPDATE );
                        }
                        $dbw->commit();
-                       wfDoUpdates();
                }
        }
 }
 
 $maintClass = "CleanupSpam";
-require_once( DO_MAINTENANCE );
+require_once( RUN_MAINTENANCE_IF_MAIN );