* Handle fallbacks too in extension aliases
[lhc/web/wiklou.git] / maintenance / importDump.php
index f4e8d3c..d74e32b 100644 (file)
  *
  * You should have received a copy of the GNU General Public License along
  * with this program; if not, write to the Free Software Foundation, Inc.,
- * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  * http://www.gnu.org/copyleft/gpl.html
  *
- * @package MediaWiki
- * @subpackage Maintenance
+ * @file
+ * @ingroup Maintenance
  */
 
 $optionsWithArgs = array( 'report' );
 
 require_once( 'commandLine.inc' );
-require_once( 'SpecialImport.php' );
 
+/**
+ * @ingroup Maintenance
+ */
 class BackupReader {
        var $reportingInterval = 100;
        var $reporting = true;
        var $pageCount = 0;
        var $revCount  = 0;
        var $dryRun    = false;
+       var $debug     = false;
+       var $uploads   = false;
 
        function BackupReader() {
                $this->stderr = fopen( "php://stderr", "wt" );
@@ -48,8 +52,8 @@ class BackupReader {
                        $this->progress( "Got bogus revision with null title!" );
                        return;
                }
-               $display = $title->getPrefixedText();
-               $timestamp = $rev->getTimestamp();
+               #$timestamp = $rev->getTimestamp();
+               #$display = $title->getPrefixedText();
                #echo "$display $timestamp\n";
 
                $this->revCount++;
@@ -59,6 +63,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 ) ) {
@@ -70,8 +89,8 @@ class BackupReader {
                if( $this->reporting ) {
                        $delta = wfTime() - $this->startTime;
                        if( $delta ) {
-                               $rate = $this->pageCount / $delta;
-                               $revrate = $this->revCount / $delta;
+                               $rate = sprintf("%.2f", $this->pageCount / $delta);
+                               $revrate = sprintf("%.2f", $this->revCount / $delta);
                        } else {
                                $rate = '-';
                                $revrate = '-';
@@ -103,16 +122,19 @@ 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();
        }
 }
 
 if( wfReadOnly() ) {
-       die( "Wiki is in read-only mode; you'll need to disable it for import to work.\n" );
+       wfDie( "Wiki is in read-only mode; you'll need to disable it for import to work.\n" );
 }
 
 $reader = new BackupReader();
@@ -125,6 +147,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] );
@@ -136,6 +164,8 @@ if( WikiError::isError( $result ) ) {
        echo $result->getMessage() . "\n";
 } else {
        echo "Done!\n";
+       echo "You might want to run rebuildrecentchanges.php to regenerate\n";
+       echo "the recentchanges page.\n";
 }
 
-?>
+