2005-07-05 03:16:56 +00:00
|
|
|
<?php
|
|
|
|
|
/**
|
|
|
|
|
* Copyright (C) 2005 Brion Vibber <brion@pobox.com>
|
|
|
|
|
* http://www.mediawiki.org/
|
2005-08-02 13:35:19 +00:00
|
|
|
*
|
2005-07-05 03:16:56 +00:00
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
2005-08-02 13:35:19 +00:00
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
2005-07-05 03:16:56 +00:00
|
|
|
* (at your option) any later version.
|
2005-08-02 13:35:19 +00:00
|
|
|
*
|
2005-07-05 03:16:56 +00:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU General Public License for more details.
|
2005-08-02 13:35:19 +00:00
|
|
|
*
|
2005-07-05 03:16:56 +00:00
|
|
|
* 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.
|
|
|
|
|
* http://www.gnu.org/copyleft/gpl.html
|
|
|
|
|
*
|
|
|
|
|
* @package MediaWiki
|
|
|
|
|
* @subpackage Maintenance
|
|
|
|
|
*/
|
|
|
|
|
|
2005-07-22 23:31:11 +00:00
|
|
|
$optionsWithArgs = array( 'report' );
|
2005-07-05 03:16:56 +00:00
|
|
|
|
|
|
|
|
require_once( 'commandLine.inc' );
|
|
|
|
|
require_once( 'SpecialImport.php' );
|
|
|
|
|
|
|
|
|
|
class BackupReader {
|
|
|
|
|
var $reportingInterval = 100;
|
|
|
|
|
var $reporting = true;
|
|
|
|
|
var $pageCount = 0;
|
|
|
|
|
var $revCount = 0;
|
|
|
|
|
var $dryRun = false;
|
2005-08-02 13:35:19 +00:00
|
|
|
|
2005-07-05 03:16:56 +00:00
|
|
|
function BackupReader() {
|
|
|
|
|
$this->stderr = fopen( "php://stderr", "wt" );
|
|
|
|
|
}
|
2005-08-02 13:35:19 +00:00
|
|
|
|
2005-07-05 03:16:56 +00:00
|
|
|
function reportPage( $page ) {
|
|
|
|
|
$this->pageCount++;
|
|
|
|
|
}
|
2005-08-02 13:35:19 +00:00
|
|
|
|
2005-07-05 03:16:56 +00:00
|
|
|
function handleRevision( $rev ) {
|
|
|
|
|
$title = $rev->getTitle();
|
2005-08-02 13:35:19 +00:00
|
|
|
if (!$title) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
2005-07-05 03:16:56 +00:00
|
|
|
$display = $title->getPrefixedText();
|
|
|
|
|
$timestamp = $rev->getTimestamp();
|
|
|
|
|
#echo "$display $timestamp\n";
|
2005-08-02 13:35:19 +00:00
|
|
|
|
2005-07-05 03:16:56 +00:00
|
|
|
$this->revCount++;
|
|
|
|
|
$this->report();
|
2005-08-02 13:35:19 +00:00
|
|
|
|
2005-07-05 03:16:56 +00:00
|
|
|
if( !$this->dryRun ) {
|
|
|
|
|
call_user_func( $this->importCallback, $rev );
|
|
|
|
|
}
|
|
|
|
|
}
|
2005-08-02 13:35:19 +00:00
|
|
|
|
2005-07-05 03:16:56 +00:00
|
|
|
function report( $final = false ) {
|
|
|
|
|
if( $final xor ( $this->pageCount % $this->reportingInterval == 0 ) ) {
|
|
|
|
|
$this->showReport();
|
|
|
|
|
}
|
|
|
|
|
}
|
2005-08-02 13:35:19 +00:00
|
|
|
|
2005-07-05 03:16:56 +00:00
|
|
|
function showReport() {
|
|
|
|
|
if( $this->reporting ) {
|
|
|
|
|
$delta = wfTime() - $this->startTime;
|
|
|
|
|
if( $delta ) {
|
|
|
|
|
$rate = $this->pageCount / $delta;
|
|
|
|
|
$revrate = $this->revCount / $delta;
|
|
|
|
|
} else {
|
|
|
|
|
$rate = '-';
|
|
|
|
|
$revrate = '-';
|
|
|
|
|
}
|
|
|
|
|
$this->progress( "$this->pageCount ($rate pages/sec $revrate revs/sec)" );
|
|
|
|
|
}
|
|
|
|
|
}
|
2005-08-02 13:35:19 +00:00
|
|
|
|
2005-07-05 03:16:56 +00:00
|
|
|
function progress( $string ) {
|
|
|
|
|
fwrite( $this->stderr, $string . "\n" );
|
|
|
|
|
}
|
2005-08-02 13:35:19 +00:00
|
|
|
|
2005-07-05 03:16:56 +00:00
|
|
|
function importFromFile( $filename ) {
|
|
|
|
|
if( preg_match( '/\.gz$/', $filename ) ) {
|
|
|
|
|
$filename = 'compress.zlib://' . $filename;
|
|
|
|
|
}
|
|
|
|
|
$file = fopen( $filename, 'rt' );
|
2005-09-17 11:10:15 +00:00
|
|
|
return $this->importFromHandle( $file );
|
2005-07-05 03:16:56 +00:00
|
|
|
}
|
2005-08-02 13:35:19 +00:00
|
|
|
|
2005-07-05 03:16:56 +00:00
|
|
|
function importFromStdin() {
|
|
|
|
|
$file = fopen( 'php://stdin', 'rt' );
|
2005-09-17 11:10:15 +00:00
|
|
|
return $this->importFromHandle( $file );
|
2005-07-05 03:16:56 +00:00
|
|
|
}
|
2005-08-02 13:35:19 +00:00
|
|
|
|
2005-07-05 03:16:56 +00:00
|
|
|
function importFromHandle( $handle ) {
|
|
|
|
|
$this->startTime = wfTime();
|
2005-08-02 13:35:19 +00:00
|
|
|
|
2005-07-05 03:16:56 +00:00
|
|
|
$source = new ImportStreamSource( $handle );
|
|
|
|
|
$importer = new WikiImporter( $source );
|
2005-08-02 13:35:19 +00:00
|
|
|
|
2005-07-05 03:16:56 +00:00
|
|
|
$importer->setPageCallback( array( &$this, 'reportPage' ) );
|
|
|
|
|
$this->importCallback = $importer->setRevisionCallback(
|
|
|
|
|
array( &$this, 'handleRevision' ) );
|
2005-08-02 13:35:19 +00:00
|
|
|
|
2005-09-17 11:10:15 +00:00
|
|
|
return $importer->doImport();
|
2005-07-05 03:16:56 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$reader = new BackupReader();
|
|
|
|
|
if( isset( $options['quiet'] ) ) {
|
|
|
|
|
$reader->reporting = false;
|
|
|
|
|
}
|
|
|
|
|
if( isset( $options['report'] ) ) {
|
2005-08-16 23:36:16 +00:00
|
|
|
$reader->reportingInterval = intval( $options['report'] );
|
2005-07-05 03:16:56 +00:00
|
|
|
}
|
|
|
|
|
if( isset( $options['dry-run'] ) ) {
|
|
|
|
|
$reader->dryRun = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if( isset( $args[0] ) ) {
|
2005-09-17 11:10:15 +00:00
|
|
|
$result = $reader->importFromFile( $args[0] );
|
2005-07-05 03:16:56 +00:00
|
|
|
} else {
|
2005-09-17 11:10:15 +00:00
|
|
|
$result = $reader->importFromStdin();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if( WikiError::isError( $result ) ) {
|
|
|
|
|
echo $result->getMessage() . "\n";
|
|
|
|
|
} else {
|
|
|
|
|
echo "Done!\n";
|
2005-07-05 03:16:56 +00:00
|
|
|
}
|
|
|
|
|
|
2005-07-22 23:31:11 +00:00
|
|
|
?>
|