Update for r32350
[lhc/web/wiklou.git] / maintenance / importDump.php
index bd0326e..c1071f6 100644 (file)
@@ -31,6 +31,8 @@ class BackupReader {
        var $pageCount = 0;
        var $revCount  = 0;
        var $dryRun    = false;
+       var $debug     = false;
+       var $uploads   = false;
 
        function BackupReader() {
                $this->stderr = fopen( "php://stderr", "wt" );
@@ -57,6 +59,21 @@ class BackupReader {
                        call_user_func( $this->importCallback, $rev );
                }
        }
+       
+       function handleUpload( $revision ) {
+               if( $this->uploads ) {
+                       $this->uploadCount++;
+                       //$this->report();
+                       $this->progress( "upload: " . $revision->getFilename() );
+                       
+                       if( !$this->dryRun ) {
+                               // bluuuh hack
+                               //call_user_func( $this->uploadCallback, $revision );
+                               $dbw = wfGetDB( DB_MASTER );
+                               return $dbw->deadlockLoop( array( $revision, 'importUpload' ) );
+                       }
+               }
+       }
 
        function report( $final = false ) {
                if( $final xor ( $this->pageCount % $this->reportingInterval == 0 ) ) {
@@ -101,9 +118,12 @@ class BackupReader {
                $source = new ImportStreamSource( $handle );
                $importer = new WikiImporter( $source );
 
+               $importer->setDebug( $this->debug );
                $importer->setPageCallback( array( &$this, 'reportPage' ) );
                $this->importCallback =  $importer->setRevisionCallback(
                        array( &$this, 'handleRevision' ) );
+               $this->uploadCallback = $importer->setUploadCallback(
+                       array( &$this, 'handleUpload' ) );
 
                return $importer->doImport();
        }
@@ -123,6 +143,12 @@ if( isset( $options['report'] ) ) {
 if( isset( $options['dry-run'] ) ) {
        $reader->dryRun = true;
 }
+if( isset( $options['debug'] ) ) {
+       $reader->debug = true;
+}
+if( isset( $options['uploads'] ) ) {
+       $reader->uploads = true; // experimental!
+}
 
 if( isset( $args[0] ) ) {
        $result = $reader->importFromFile( $args[0] );
@@ -138,4 +164,4 @@ if( WikiError::isError( $result ) ) {
        echo "the recentchanges page.\n";
 }
 
-?>
+