3 * MediaWiki page data importer.
5 * Copyright © 2003,2005 Brion Vibber <brion@pobox.com>
6 * https://www.mediawiki.org/
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, write to the Free Software Foundation, Inc.,
20 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
21 * http://www.gnu.org/copyleft/gpl.html
24 * @ingroup SpecialPage
28 * XML file reader for the page data importer
30 * implements Special:Import
31 * @ingroup SpecialPage
34 private $reader = null;
35 private $mLogItemCallback, $mUploadCallback, $mRevisionCallback, $mPageCallback;
36 private $mSiteInfoCallback, $mTargetNamespace, $mTargetRootPage, $mPageOutCallback;
37 private $mNoticeCallback, $mDebug;
38 private $mImportUploads, $mImageBasePath;
39 private $mNoUpdates = false;
42 * Creates an ImportXMLReader drawing from the source provided
43 * @param ImportStreamSource $source
45 function __construct( ImportStreamSource
$source ) {
46 $this->reader
= new XMLReader();
48 if ( !in_array( 'uploadsource', stream_get_wrappers() ) ) {
49 stream_wrapper_register( 'uploadsource', 'UploadSourceAdapter' );
51 $id = UploadSourceAdapter
::registerSource( $source );
52 if ( defined( 'LIBXML_PARSEHUGE' ) ) {
53 $this->reader
->open( "uploadsource://$id", null, LIBXML_PARSEHUGE
);
55 $this->reader
->open( "uploadsource://$id" );
59 $this->setRevisionCallback( array( $this, "importRevision" ) );
60 $this->setUploadCallback( array( $this, 'importUpload' ) );
61 $this->setLogItemCallback( array( $this, 'importLogItem' ) );
62 $this->setPageOutCallback( array( $this, 'finishImportPage' ) );
66 * @return null|XMLReader
68 public function getReader() {
72 public function throwXmlError( $err ) {
73 $this->debug( "FAILURE: $err" );
74 wfDebug( "WikiImporter XML error: $err\n" );
77 public function debug( $data ) {
78 if ( $this->mDebug
) {
79 wfDebug( "IMPORT: $data\n" );
83 public function warn( $data ) {
84 wfDebug( "IMPORT: $data\n" );
87 public function notice( $msg /*, $param, ...*/ ) {
88 $params = func_get_args();
89 array_shift( $params );
91 if ( is_callable( $this->mNoticeCallback
) ) {
92 call_user_func( $this->mNoticeCallback
, $msg, $params );
93 } else { # No ImportReporter -> CLI
94 echo wfMessage( $msg, $params )->text() . "\n";
102 function setDebug( $debug ) {
103 $this->mDebug
= $debug;
107 * Set 'no updates' mode. In this mode, the link tables will not be updated by the importer
108 * @param bool $noupdates
110 function setNoUpdates( $noupdates ) {
111 $this->mNoUpdates
= $noupdates;
115 * Set a callback that displays notice messages
117 * @param callable $callback
120 public function setNoticeCallback( $callback ) {
121 return wfSetVar( $this->mNoticeCallback
, $callback );
125 * Sets the action to perform as each new page in the stream is reached.
126 * @param callable $callback
129 public function setPageCallback( $callback ) {
130 $previous = $this->mPageCallback
;
131 $this->mPageCallback
= $callback;
136 * Sets the action to perform as each page in the stream is completed.
137 * Callback accepts the page title (as a Title object), a second object
138 * with the original title form (in case it's been overridden into a
139 * local namespace), and a count of revisions.
141 * @param callable $callback
144 public function setPageOutCallback( $callback ) {
145 $previous = $this->mPageOutCallback
;
146 $this->mPageOutCallback
= $callback;
151 * Sets the action to perform as each page revision is reached.
152 * @param callable $callback
155 public function setRevisionCallback( $callback ) {
156 $previous = $this->mRevisionCallback
;
157 $this->mRevisionCallback
= $callback;
162 * Sets the action to perform as each file upload version is reached.
163 * @param callable $callback
166 public function setUploadCallback( $callback ) {
167 $previous = $this->mUploadCallback
;
168 $this->mUploadCallback
= $callback;
173 * Sets the action to perform as each log item reached.
174 * @param callable $callback
177 public function setLogItemCallback( $callback ) {
178 $previous = $this->mLogItemCallback
;
179 $this->mLogItemCallback
= $callback;
184 * Sets the action to perform when site info is encountered
185 * @param callable $callback
188 public function setSiteInfoCallback( $callback ) {
189 $previous = $this->mSiteInfoCallback
;
190 $this->mSiteInfoCallback
= $callback;
195 * Set a target namespace to override the defaults
196 * @param null|int $namespace
199 public function setTargetNamespace( $namespace ) {
200 if ( is_null( $namespace ) ) {
201 // Don't override namespaces
202 $this->mTargetNamespace
= null;
203 } elseif ( $namespace >= 0 ) {
204 // @todo FIXME: Check for validity
205 $this->mTargetNamespace
= intval( $namespace );
212 * Set a target root page under which all pages are imported
213 * @param null|string $rootpage
216 public function setTargetRootPage( $rootpage ) {
217 $status = Status
::newGood();
218 if ( is_null( $rootpage ) ) {
220 $this->mTargetRootPage
= null;
221 } elseif ( $rootpage !== '' ) {
222 $rootpage = rtrim( $rootpage, '/' ); //avoid double slashes
223 $title = Title
::newFromText( $rootpage, !is_null( $this->mTargetNamespace
)
224 ?
$this->mTargetNamespace
228 if ( !$title ||
$title->isExternal() ) {
229 $status->fatal( 'import-rootpage-invalid' );
231 if ( !MWNamespace
::hasSubpages( $title->getNamespace() ) ) {
234 $displayNSText = $title->getNamespace() == NS_MAIN
235 ?
wfMessage( 'blanknamespace' )->text()
236 : $wgContLang->getNsText( $title->getNamespace() );
237 $status->fatal( 'import-rootpage-nosubpage', $displayNSText );
239 // set namespace to 'all', so the namespace check in processTitle() can passed
240 $this->setTargetNamespace( null );
241 $this->mTargetRootPage
= $title->getPrefixedDBkey();
251 public function setImageBasePath( $dir ) {
252 $this->mImageBasePath
= $dir;
256 * @param bool $import
258 public function setImportUploads( $import ) {
259 $this->mImportUploads
= $import;
263 * Default per-revision callback, performs the import.
264 * @param WikiRevision $revision
267 public function importRevision( $revision ) {
268 if ( !$revision->getContentHandler()->canBeUsedOn( $revision->getTitle() ) ) {
269 $this->notice( 'import-error-bad-location',
270 $revision->getTitle()->getPrefixedText(),
272 $revision->getModel(),
273 $revision->getFormat() );
279 $dbw = wfGetDB( DB_MASTER
);
280 return $dbw->deadlockLoop( array( $revision, 'importOldRevision' ) );
281 } catch ( MWContentSerializationException
$ex ) {
282 $this->notice( 'import-error-unserialize',
283 $revision->getTitle()->getPrefixedText(),
285 $revision->getModel(),
286 $revision->getFormat() );
293 * Default per-revision callback, performs the import.
294 * @param WikiRevision $revision
297 public function importLogItem( $revision ) {
298 $dbw = wfGetDB( DB_MASTER
);
299 return $dbw->deadlockLoop( array( $revision, 'importLogItem' ) );
304 * @param WikiRevision $revision
307 public function importUpload( $revision ) {
308 $dbw = wfGetDB( DB_MASTER
);
309 return $dbw->deadlockLoop( array( $revision, 'importUpload' ) );
313 * Mostly for hook use
314 * @param Title $title
315 * @param string $origTitle
316 * @param int $revCount
317 * @param int $sRevCount
318 * @param array $pageInfo
321 public function finishImportPage( $title, $origTitle, $revCount, $sRevCount, $pageInfo ) {
322 $args = func_get_args();
323 return wfRunHooks( 'AfterImportPage', $args );
327 * Alternate per-revision callback, for debugging.
328 * @param WikiRevision $revision
330 public function debugRevisionHandler( &$revision ) {
331 $this->debug( "Got revision:" );
332 if ( is_object( $revision->title
) ) {
333 $this->debug( "-- Title: " . $revision->title
->getPrefixedText() );
335 $this->debug( "-- Title: <invalid>" );
337 $this->debug( "-- User: " . $revision->user_text
);
338 $this->debug( "-- Timestamp: " . $revision->timestamp
);
339 $this->debug( "-- Comment: " . $revision->comment
);
340 $this->debug( "-- Text: " . $revision->text
);
344 * Notify the callback function when a new "<page>" is reached.
345 * @param Title $title
347 function pageCallback( $title ) {
348 if ( isset( $this->mPageCallback
) ) {
349 call_user_func( $this->mPageCallback
, $title );
354 * Notify the callback function when a "</page>" is closed.
355 * @param Title $title
356 * @param Title $origTitle
357 * @param int $revCount
358 * @param int $sucCount Number of revisions for which callback returned true
359 * @param array $pageInfo Associative array of page information
361 private function pageOutCallback( $title, $origTitle, $revCount, $sucCount, $pageInfo ) {
362 if ( isset( $this->mPageOutCallback
) ) {
363 $args = func_get_args();
364 call_user_func_array( $this->mPageOutCallback
, $args );
369 * Notify the callback function of a revision
370 * @param WikiRevision $revision
373 private function revisionCallback( $revision ) {
374 if ( isset( $this->mRevisionCallback
) ) {
375 return call_user_func_array( $this->mRevisionCallback
,
376 array( $revision, $this ) );
383 * Notify the callback function of a new log item
384 * @param WikiRevision $revision
387 private function logItemCallback( $revision ) {
388 if ( isset( $this->mLogItemCallback
) ) {
389 return call_user_func_array( $this->mLogItemCallback
,
390 array( $revision, $this ) );
397 * Retrieves the contents of the named attribute of the current element.
398 * @param string $attr the name of the attribute
399 * @return string the value of the attribute or an empty string if it is not set in the current element.
401 public function nodeAttribute( $attr ) {
402 return $this->reader
->getAttribute( $attr );
406 * Shouldn't something like this be built-in to XMLReader?
407 * Fetches text contents of the current element, assuming
408 * no sub-elements or such scary things.
412 public function nodeContents() {
413 if ( $this->reader
->isEmptyElement
) {
417 while ( $this->reader
->read() ) {
418 switch ( $this->reader
->nodeType
) {
419 case XmlReader
::TEXT
:
420 case XmlReader
::SIGNIFICANT_WHITESPACE
:
421 $buffer .= $this->reader
->value
;
423 case XmlReader
::END_ELEMENT
:
428 $this->reader
->close();
434 /** Left in for debugging */
435 private function dumpElement() {
436 static $lookup = null;
438 $xmlReaderConstants = array(
453 "SIGNIFICANT_WHITESPACE",
460 foreach ( $xmlReaderConstants as $name ) {
461 $lookup[constant( "XmlReader::$name" )] = $name;
466 $lookup[$this->reader
->nodeType
],
473 * Primary entry point
474 * @throws MWException
477 public function doImport() {
479 // Calls to reader->read need to be wrapped in calls to
480 // libxml_disable_entity_loader() to avoid local file
481 // inclusion attacks (bug 46932).
482 $oldDisable = libxml_disable_entity_loader( true );
483 $this->reader
->read();
485 if ( $this->reader
->name
!= 'mediawiki' ) {
486 libxml_disable_entity_loader( $oldDisable );
487 throw new MWException( "Expected <mediawiki> tag, got " .
488 $this->reader
->name
);
490 $this->debug( "<mediawiki> tag is correct." );
492 $this->debug( "Starting primary dump processing loop." );
494 $keepReading = $this->reader
->read();
496 while ( $keepReading ) {
497 $tag = $this->reader
->name
;
498 $type = $this->reader
->nodeType
;
500 if ( !wfRunHooks( 'ImportHandleToplevelXMLTag', array( $this ) ) ) {
502 } elseif ( $tag == 'mediawiki' && $type == XmlReader
::END_ELEMENT
) {
504 } elseif ( $tag == 'siteinfo' ) {
505 $this->handleSiteInfo();
506 } elseif ( $tag == 'page' ) {
508 } elseif ( $tag == 'logitem' ) {
509 $this->handleLogItem();
510 } elseif ( $tag != '#text' ) {
511 $this->warn( "Unhandled top-level XML tag $tag" );
517 $keepReading = $this->reader
->next();
519 $this->debug( "Skip" );
521 $keepReading = $this->reader
->read();
525 libxml_disable_entity_loader( $oldDisable );
531 * @throws MWException
533 private function handleSiteInfo() {
534 // Site info is useful, but not actually used for dump imports.
535 // Includes a quick short-circuit to save performance.
536 if ( ! $this->mSiteInfoCallback
) {
537 $this->reader
->next();
540 throw new MWException( "SiteInfo tag is not yet handled, do not set mSiteInfoCallback" );
543 private function handleLogItem() {
544 $this->debug( "Enter log item handler." );
547 // Fields that can just be stuffed in the pageInfo object
548 $normalFields = array( 'id', 'comment', 'type', 'action', 'timestamp',
549 'logtitle', 'params' );
551 while ( $this->reader
->read() ) {
552 if ( $this->reader
->nodeType
== XmlReader
::END_ELEMENT
&&
553 $this->reader
->name
== 'logitem' ) {
557 $tag = $this->reader
->name
;
559 if ( !wfRunHooks( 'ImportHandleLogItemXMLTag', array(
563 } elseif ( in_array( $tag, $normalFields ) ) {
564 $logInfo[$tag] = $this->nodeContents();
565 } elseif ( $tag == 'contributor' ) {
566 $logInfo['contributor'] = $this->handleContributor();
567 } elseif ( $tag != '#text' ) {
568 $this->warn( "Unhandled log-item XML tag $tag" );
572 $this->processLogItem( $logInfo );
576 * @param array $logInfo
579 private function processLogItem( $logInfo ) {
580 $revision = new WikiRevision
;
582 $revision->setID( $logInfo['id'] );
583 $revision->setType( $logInfo['type'] );
584 $revision->setAction( $logInfo['action'] );
585 $revision->setTimestamp( $logInfo['timestamp'] );
586 $revision->setParams( $logInfo['params'] );
587 $revision->setTitle( Title
::newFromText( $logInfo['logtitle'] ) );
588 $revision->setNoUpdates( $this->mNoUpdates
);
590 if ( isset( $logInfo['comment'] ) ) {
591 $revision->setComment( $logInfo['comment'] );
594 if ( isset( $logInfo['contributor']['ip'] ) ) {
595 $revision->setUserIP( $logInfo['contributor']['ip'] );
597 if ( isset( $logInfo['contributor']['username'] ) ) {
598 $revision->setUserName( $logInfo['contributor']['username'] );
601 return $this->logItemCallback( $revision );
604 private function handlePage() {
606 $this->debug( "Enter page handler." );
607 $pageInfo = array( 'revisionCount' => 0, 'successfulRevisionCount' => 0 );
609 // Fields that can just be stuffed in the pageInfo object
610 $normalFields = array( 'title', 'id', 'redirect', 'restrictions' );
615 while ( $skip ?
$this->reader
->next() : $this->reader
->read() ) {
616 if ( $this->reader
->nodeType
== XmlReader
::END_ELEMENT
&&
617 $this->reader
->name
== 'page' ) {
621 $tag = $this->reader
->name
;
624 // The title is invalid, bail out of this page
626 } elseif ( !wfRunHooks( 'ImportHandlePageXMLTag', array( $this,
629 } elseif ( in_array( $tag, $normalFields ) ) {
633 // <title>Page</title>
634 // <redirect title="NewTitle"/>
636 // Because the redirect tag is built differently, we need special handling for that case.
637 if ( $tag == 'redirect' ) {
638 $pageInfo[$tag] = $this->nodeAttribute( 'title' );
640 $pageInfo[$tag] = $this->nodeContents();
641 if ( $tag == 'title' ) {
642 $title = $this->processTitle( $pageInfo['title'] );
649 $this->pageCallback( $title );
650 list( $pageInfo['_title'], $origTitle ) = $title;
653 } elseif ( $tag == 'revision' ) {
654 $this->handleRevision( $pageInfo );
655 } elseif ( $tag == 'upload' ) {
656 $this->handleUpload( $pageInfo );
657 } elseif ( $tag != '#text' ) {
658 $this->warn( "Unhandled page XML tag $tag" );
663 $this->pageOutCallback( $pageInfo['_title'], $origTitle,
664 $pageInfo['revisionCount'],
665 $pageInfo['successfulRevisionCount'],
670 * @param array $pageInfo
672 private function handleRevision( &$pageInfo ) {
673 $this->debug( "Enter revision handler" );
674 $revisionInfo = array();
676 $normalFields = array( 'id', 'timestamp', 'comment', 'minor', 'model', 'format', 'text' );
680 while ( $skip ?
$this->reader
->next() : $this->reader
->read() ) {
681 if ( $this->reader
->nodeType
== XmlReader
::END_ELEMENT
&&
682 $this->reader
->name
== 'revision' ) {
686 $tag = $this->reader
->name
;
688 if ( !wfRunHooks( 'ImportHandleRevisionXMLTag', array(
689 $this, $pageInfo, $revisionInfo
692 } elseif ( in_array( $tag, $normalFields ) ) {
693 $revisionInfo[$tag] = $this->nodeContents();
694 } elseif ( $tag == 'contributor' ) {
695 $revisionInfo['contributor'] = $this->handleContributor();
696 } elseif ( $tag != '#text' ) {
697 $this->warn( "Unhandled revision XML tag $tag" );
702 $pageInfo['revisionCount']++
;
703 if ( $this->processRevision( $pageInfo, $revisionInfo ) ) {
704 $pageInfo['successfulRevisionCount']++
;
709 * @param array $pageInfo
710 * @param array $revisionInfo
713 private function processRevision( $pageInfo, $revisionInfo ) {
714 $revision = new WikiRevision
;
716 if ( isset( $revisionInfo['id'] ) ) {
717 $revision->setID( $revisionInfo['id'] );
719 if ( isset( $revisionInfo['model'] ) ) {
720 $revision->setModel( $revisionInfo['model'] );
722 if ( isset( $revisionInfo['format'] ) ) {
723 $revision->setFormat( $revisionInfo['format'] );
725 $revision->setTitle( $pageInfo['_title'] );
727 if ( isset( $revisionInfo['text'] ) ) {
728 $handler = $revision->getContentHandler();
729 $text = $handler->importTransform(
730 $revisionInfo['text'],
731 $revision->getFormat() );
733 $revision->setText( $text );
735 if ( isset( $revisionInfo['timestamp'] ) ) {
736 $revision->setTimestamp( $revisionInfo['timestamp'] );
738 $revision->setTimestamp( wfTimestampNow() );
741 if ( isset( $revisionInfo['comment'] ) ) {
742 $revision->setComment( $revisionInfo['comment'] );
745 if ( isset( $revisionInfo['minor'] ) ) {
746 $revision->setMinor( true );
748 if ( isset( $revisionInfo['contributor']['ip'] ) ) {
749 $revision->setUserIP( $revisionInfo['contributor']['ip'] );
751 if ( isset( $revisionInfo['contributor']['username'] ) ) {
752 $revision->setUserName( $revisionInfo['contributor']['username'] );
754 $revision->setNoUpdates( $this->mNoUpdates
);
756 return $this->revisionCallback( $revision );
760 * @param array $pageInfo
763 private function handleUpload( &$pageInfo ) {
764 $this->debug( "Enter upload handler" );
765 $uploadInfo = array();
767 $normalFields = array( 'timestamp', 'comment', 'filename', 'text',
768 'src', 'size', 'sha1base36', 'archivename', 'rel' );
772 while ( $skip ?
$this->reader
->next() : $this->reader
->read() ) {
773 if ( $this->reader
->nodeType
== XmlReader
::END_ELEMENT
&&
774 $this->reader
->name
== 'upload' ) {
778 $tag = $this->reader
->name
;
780 if ( !wfRunHooks( 'ImportHandleUploadXMLTag', array(
784 } elseif ( in_array( $tag, $normalFields ) ) {
785 $uploadInfo[$tag] = $this->nodeContents();
786 } elseif ( $tag == 'contributor' ) {
787 $uploadInfo['contributor'] = $this->handleContributor();
788 } elseif ( $tag == 'contents' ) {
789 $contents = $this->nodeContents();
790 $encoding = $this->reader
->getAttribute( 'encoding' );
791 if ( $encoding === 'base64' ) {
792 $uploadInfo['fileSrc'] = $this->dumpTemp( base64_decode( $contents ) );
793 $uploadInfo['isTempSrc'] = true;
795 } elseif ( $tag != '#text' ) {
796 $this->warn( "Unhandled upload XML tag $tag" );
801 if ( $this->mImageBasePath
&& isset( $uploadInfo['rel'] ) ) {
802 $path = "{$this->mImageBasePath}/{$uploadInfo['rel']}";
803 if ( file_exists( $path ) ) {
804 $uploadInfo['fileSrc'] = $path;
805 $uploadInfo['isTempSrc'] = false;
809 if ( $this->mImportUploads
) {
810 return $this->processUpload( $pageInfo, $uploadInfo );
815 * @param string $contents
818 private function dumpTemp( $contents ) {
819 $filename = tempnam( wfTempDir(), 'importupload' );
820 file_put_contents( $filename, $contents );
825 * @param array $pageInfo
826 * @param array $uploadInfo
829 private function processUpload( $pageInfo, $uploadInfo ) {
830 $revision = new WikiRevision
;
831 $text = isset( $uploadInfo['text'] ) ?
$uploadInfo['text'] : '';
833 $revision->setTitle( $pageInfo['_title'] );
834 $revision->setID( $pageInfo['id'] );
835 $revision->setTimestamp( $uploadInfo['timestamp'] );
836 $revision->setText( $text );
837 $revision->setFilename( $uploadInfo['filename'] );
838 if ( isset( $uploadInfo['archivename'] ) ) {
839 $revision->setArchiveName( $uploadInfo['archivename'] );
841 $revision->setSrc( $uploadInfo['src'] );
842 if ( isset( $uploadInfo['fileSrc'] ) ) {
843 $revision->setFileSrc( $uploadInfo['fileSrc'],
844 !empty( $uploadInfo['isTempSrc'] ) );
846 if ( isset( $uploadInfo['sha1base36'] ) ) {
847 $revision->setSha1Base36( $uploadInfo['sha1base36'] );
849 $revision->setSize( intval( $uploadInfo['size'] ) );
850 $revision->setComment( $uploadInfo['comment'] );
852 if ( isset( $uploadInfo['contributor']['ip'] ) ) {
853 $revision->setUserIP( $uploadInfo['contributor']['ip'] );
855 if ( isset( $uploadInfo['contributor']['username'] ) ) {
856 $revision->setUserName( $uploadInfo['contributor']['username'] );
858 $revision->setNoUpdates( $this->mNoUpdates
);
860 return call_user_func( $this->mUploadCallback
, $revision );
866 private function handleContributor() {
867 $fields = array( 'id', 'ip', 'username' );
870 while ( $this->reader
->read() ) {
871 if ( $this->reader
->nodeType
== XmlReader
::END_ELEMENT
&&
872 $this->reader
->name
== 'contributor' ) {
876 $tag = $this->reader
->name
;
878 if ( in_array( $tag, $fields ) ) {
879 $info[$tag] = $this->nodeContents();
887 * @param string $text
890 private function processTitle( $text ) {
891 global $wgCommandLineMode;
894 $origTitle = Title
::newFromText( $workTitle );
896 if ( !is_null( $this->mTargetNamespace
) && !is_null( $origTitle ) ) {
897 # makeTitleSafe, because $origTitle can have a interwiki (different setting of interwiki map)
898 # and than dbKey can begin with a lowercase char
899 $title = Title
::makeTitleSafe( $this->mTargetNamespace
,
900 $origTitle->getDBkey() );
902 if ( !is_null( $this->mTargetRootPage
) ) {
903 $workTitle = $this->mTargetRootPage
. '/' . $workTitle;
905 $title = Title
::newFromText( $workTitle );
908 if ( is_null( $title ) ) {
909 # Invalid page title? Ignore the page
910 $this->notice( 'import-error-invalid', $workTitle );
912 } elseif ( $title->isExternal() ) {
913 $this->notice( 'import-error-interwiki', $title->getPrefixedText() );
915 } elseif ( !$title->canExist() ) {
916 $this->notice( 'import-error-special', $title->getPrefixedText() );
918 } elseif ( !$title->userCan( 'edit' ) && !$wgCommandLineMode ) {
919 # Do not import if the importing wiki user cannot edit this page
920 $this->notice( 'import-error-edit', $title->getPrefixedText() );
922 } elseif ( !$title->exists() && !$title->userCan( 'create' ) && !$wgCommandLineMode ) {
923 # Do not import if the importing wiki user cannot create this page
924 $this->notice( 'import-error-create', $title->getPrefixedText() );
928 return array( $title, $origTitle );
932 /** This is a horrible hack used to keep source compatibility */
933 class UploadSourceAdapter
{
935 private static $sourceRegistrations = array();
947 * @param ImportStreamSource $source
950 static function registerSource( ImportStreamSource
$source ) {
951 $id = wfRandomString();
953 self
::$sourceRegistrations[$id] = $source;
959 * @param string $path
960 * @param string $mode
961 * @param array $options
962 * @param string $opened_path
965 function stream_open( $path, $mode, $options, &$opened_path ) {
966 $url = parse_url( $path );
969 if ( !isset( self
::$sourceRegistrations[$id] ) ) {
973 $this->mSource
= self
::$sourceRegistrations[$id];
982 function stream_read( $count ) {
986 while ( !$leave && !$this->mSource
->atEnd() &&
987 strlen( $this->mBuffer
) < $count ) {
988 $read = $this->mSource
->readChunk();
990 if ( !strlen( $read ) ) {
994 $this->mBuffer
.= $read;
997 if ( strlen( $this->mBuffer
) ) {
998 $return = substr( $this->mBuffer
, 0, $count );
999 $this->mBuffer
= substr( $this->mBuffer
, $count );
1002 $this->mPosition +
= strlen( $return );
1008 * @param string $data
1011 function stream_write( $data ) {
1018 function stream_tell() {
1019 return $this->mPosition
;
1025 function stream_eof() {
1026 return $this->mSource
->atEnd();
1032 function url_stat() {
1035 $result['dev'] = $result[0] = 0;
1036 $result['ino'] = $result[1] = 0;
1037 $result['mode'] = $result[2] = 0;
1038 $result['nlink'] = $result[3] = 0;
1039 $result['uid'] = $result[4] = 0;
1040 $result['gid'] = $result[5] = 0;
1041 $result['rdev'] = $result[6] = 0;
1042 $result['size'] = $result[7] = 0;
1043 $result['atime'] = $result[8] = 0;
1044 $result['mtime'] = $result[9] = 0;
1045 $result['ctime'] = $result[10] = 0;
1046 $result['blksize'] = $result[11] = 0;
1047 $result['blocks'] = $result[12] = 0;
1053 class XMLReader2
extends XMLReader
{
1056 * @return bool|string
1058 function nodeContents() {
1059 if ( $this->isEmptyElement
) {
1063 while ( $this->read() ) {
1064 switch ( $this->nodeType
) {
1065 case XmlReader
::TEXT
:
1066 case XmlReader
::SIGNIFICANT_WHITESPACE
:
1067 $buffer .= $this->value
;
1069 case XmlReader
::END_ELEMENT
:
1073 return $this->close();
1078 * @todo document (e.g. one-sentence class description).
1079 * @ingroup SpecialPage
1081 class WikiRevision
{
1082 /** @todo Unused? */
1083 private $importer = null;
1086 public $title = null;
1092 public $timestamp = "20010115000000";
1096 * @todo Can't find any uses. Public, because that's suspicious. Get clarity. */
1100 public $user_text = "";
1103 protected $model = null;
1106 protected $format = null;
1115 protected $content = null;
1117 /** @var ContentHandler */
1118 protected $contentHandler = null;
1121 public $comment = "";
1124 protected $minor = false;
1127 protected $type = "";
1130 protected $action = "";
1133 protected $params = "";
1136 protected $fileSrc = '';
1138 /** @var bool|string */
1139 protected $sha1base36 = false;
1145 private $isTemp = false;
1148 protected $archiveName = '';
1150 protected $filename;
1155 /** @todo Unused? */
1156 private $fileIsTemp;
1159 private $mNoUpdates = false;
1162 * @param Title $title
1163 * @throws MWException
1165 function setTitle( $title ) {
1166 if ( is_object( $title ) ) {
1167 $this->title
= $title;
1168 } elseif ( is_null( $title ) ) {
1169 throw new MWException( "WikiRevision given a null title in import. "
1170 . "You may need to adjust \$wgLegalTitleChars." );
1172 throw new MWException( "WikiRevision given non-object title in import." );
1179 function setID( $id ) {
1186 function setTimestamp( $ts ) {
1187 # 2003-08-05T18:30:02Z
1188 $this->timestamp
= wfTimestamp( TS_MW
, $ts );
1192 * @param string $user
1194 function setUsername( $user ) {
1195 $this->user_text
= $user;
1201 function setUserIP( $ip ) {
1202 $this->user_text
= $ip;
1206 * @param string $model
1208 function setModel( $model ) {
1209 $this->model
= $model;
1213 * @param string $format
1215 function setFormat( $format ) {
1216 $this->format
= $format;
1220 * @param string $text
1222 function setText( $text ) {
1223 $this->text
= $text;
1227 * @param string $text
1229 function setComment( $text ) {
1230 $this->comment
= $text;
1234 * @param bool $minor
1236 function setMinor( $minor ) {
1237 $this->minor
= (bool)$minor;
1243 function setSrc( $src ) {
1248 * @param string $src
1249 * @param bool $isTemp
1251 function setFileSrc( $src, $isTemp ) {
1252 $this->fileSrc
= $src;
1253 $this->fileIsTemp
= $isTemp;
1257 * @param string $sha1base36
1259 function setSha1Base36( $sha1base36 ) {
1260 $this->sha1base36
= $sha1base36;
1264 * @param string $filename
1266 function setFilename( $filename ) {
1267 $this->filename
= $filename;
1271 * @param string $archiveName
1273 function setArchiveName( $archiveName ) {
1274 $this->archiveName
= $archiveName;
1280 function setSize( $size ) {
1281 $this->size
= intval( $size );
1285 * @param string $type
1287 function setType( $type ) {
1288 $this->type
= $type;
1292 * @param string $action
1294 function setAction( $action ) {
1295 $this->action
= $action;
1299 * @param array $params
1301 function setParams( $params ) {
1302 $this->params
= $params;
1306 * @param bool $noupdates
1308 public function setNoUpdates( $noupdates ) {
1309 $this->mNoUpdates
= $noupdates;
1315 function getTitle() {
1316 return $this->title
;
1329 function getTimestamp() {
1330 return $this->timestamp
;
1336 function getUser() {
1337 return $this->user_text
;
1343 * @deprecated Since 1.21, use getContent() instead.
1345 function getText() {
1346 ContentHandler
::deprecated( __METHOD__
, '1.21' );
1352 * @return ContentHandler
1354 function getContentHandler() {
1355 if ( is_null( $this->contentHandler
) ) {
1356 $this->contentHandler
= ContentHandler
::getForModelID( $this->getModel() );
1359 return $this->contentHandler
;
1365 function getContent() {
1366 if ( is_null( $this->content
) ) {
1367 $handler = $this->getContentHandler();
1368 $this->content
= $handler->unserializeContent( $this->text
, $this->getFormat() );
1371 return $this->content
;
1377 function getModel() {
1378 if ( is_null( $this->model
) ) {
1379 $this->model
= $this->getTitle()->getContentModel();
1382 return $this->model
;
1388 function getFormat() {
1389 if ( is_null( $this->format
) ) {
1390 $this->format
= $this->getContentHandler()->getDefaultFormat();
1393 return $this->format
;
1399 function getComment() {
1400 return $this->comment
;
1406 function getMinor() {
1407 return $this->minor
;
1418 * @return bool|string
1420 function getSha1() {
1421 if ( $this->sha1base36
) {
1422 return wfBaseConvert( $this->sha1base36
, 36, 16 );
1430 function getFileSrc() {
1431 return $this->fileSrc
;
1437 function isTempSrc() {
1438 return $this->isTemp
;
1444 function getFilename() {
1445 return $this->filename
;
1451 function getArchiveName() {
1452 return $this->archiveName
;
1458 function getSize() {
1465 function getType() {
1472 function getAction() {
1473 return $this->action
;
1479 function getParams() {
1480 return $this->params
;
1486 function importOldRevision() {
1487 $dbw = wfGetDB( DB_MASTER
);
1489 # Sneak a single revision into place
1490 $user = User
::newFromName( $this->getUser() );
1492 $userId = intval( $user->getId() );
1493 $userText = $user->getName();
1497 $userText = $this->getUser();
1498 $userObj = new User
;
1501 // avoid memory leak...?
1502 $linkCache = LinkCache
::singleton();
1503 $linkCache->clear();
1505 $page = WikiPage
::factory( $this->title
);
1506 if ( !$page->exists() ) {
1507 # must create the page...
1508 $pageId = $page->insertOn( $dbw );
1510 $oldcountable = null;
1512 $pageId = $page->getId();
1515 $prior = $dbw->selectField( 'revision', '1',
1516 array( 'rev_page' => $pageId,
1517 'rev_timestamp' => $dbw->timestamp( $this->timestamp
),
1518 'rev_user_text' => $userText,
1519 'rev_comment' => $this->getComment() ),
1523 // @todo FIXME: This could fail slightly for multiple matches :P
1524 wfDebug( __METHOD__
. ": skipping existing revision for [[" .
1525 $this->title
->getPrefixedText() . "]], timestamp " . $this->timestamp
. "\n" );
1528 $oldcountable = $page->isCountable();
1531 # @todo FIXME: Use original rev_id optionally (better for backups)
1533 $revision = new Revision( array(
1534 'title' => $this->title
,
1536 'content_model' => $this->getModel(),
1537 'content_format' => $this->getFormat(),
1538 //XXX: just set 'content' => $this->getContent()?
1539 'text' => $this->getContent()->serialize( $this->getFormat() ),
1540 'comment' => $this->getComment(),
1542 'user_text' => $userText,
1543 'timestamp' => $this->timestamp
,
1544 'minor_edit' => $this->minor
,
1546 $revision->insertOn( $dbw );
1547 $changed = $page->updateIfNewerOn( $dbw, $revision );
1549 if ( $changed !== false && !$this->mNoUpdates
) {
1550 wfDebug( __METHOD__
. ": running updates\n" );
1551 $page->doEditUpdates(
1554 array( 'created' => $created, 'oldcountable' => $oldcountable )
1564 function importLogItem() {
1565 $dbw = wfGetDB( DB_MASTER
);
1566 # @todo FIXME: This will not record autoblocks
1567 if ( !$this->getTitle() ) {
1568 wfDebug( __METHOD__
. ": skipping invalid {$this->type}/{$this->action} log time, timestamp " .
1569 $this->timestamp
. "\n" );
1572 # Check if it exists already
1573 // @todo FIXME: Use original log ID (better for backups)
1574 $prior = $dbw->selectField( 'logging', '1',
1575 array( 'log_type' => $this->getType(),
1576 'log_action' => $this->getAction(),
1577 'log_timestamp' => $dbw->timestamp( $this->timestamp
),
1578 'log_namespace' => $this->getTitle()->getNamespace(),
1579 'log_title' => $this->getTitle()->getDBkey(),
1580 'log_comment' => $this->getComment(),
1581 #'log_user_text' => $this->user_text,
1582 'log_params' => $this->params
),
1585 // @todo FIXME: This could fail slightly for multiple matches :P
1588 . ": skipping existing item for Log:{$this->type}/{$this->action}, timestamp "
1589 . $this->timestamp
. "\n" );
1592 $log_id = $dbw->nextSequenceValue( 'logging_log_id_seq' );
1594 'log_id' => $log_id,
1595 'log_type' => $this->type
,
1596 'log_action' => $this->action
,
1597 'log_timestamp' => $dbw->timestamp( $this->timestamp
),
1598 'log_user' => User
::idFromName( $this->user_text
),
1599 #'log_user_text' => $this->user_text,
1600 'log_namespace' => $this->getTitle()->getNamespace(),
1601 'log_title' => $this->getTitle()->getDBkey(),
1602 'log_comment' => $this->getComment(),
1603 'log_params' => $this->params
1605 $dbw->insert( 'logging', $data, __METHOD__
);
1611 function importUpload() {
1613 $archiveName = $this->getArchiveName();
1614 if ( $archiveName ) {
1615 wfDebug( __METHOD__
. "Importing archived file as $archiveName\n" );
1616 $file = OldLocalFile
::newFromArchiveName( $this->getTitle(),
1617 RepoGroup
::singleton()->getLocalRepo(), $archiveName );
1619 $file = wfLocalFile( $this->getTitle() );
1620 wfDebug( __METHOD__
. 'Importing new file as ' . $file->getName() . "\n" );
1621 if ( $file->exists() && $file->getTimestamp() > $this->getTimestamp() ) {
1622 $archiveName = $file->getTimestamp() . '!' . $file->getName();
1623 $file = OldLocalFile
::newFromArchiveName( $this->getTitle(),
1624 RepoGroup
::singleton()->getLocalRepo(), $archiveName );
1625 wfDebug( __METHOD__
. "File already exists; importing as $archiveName\n" );
1629 wfDebug( __METHOD__
. ': Bad file for ' . $this->getTitle() . "\n" );
1633 # Get the file source or download if necessary
1634 $source = $this->getFileSrc();
1635 $flags = $this->isTempSrc() ? File
::DELETE_SOURCE
: 0;
1637 $source = $this->downloadSource();
1638 $flags |
= File
::DELETE_SOURCE
;
1641 wfDebug( __METHOD__
. ": Could not fetch remote file.\n" );
1644 $sha1 = $this->getSha1();
1645 if ( $sha1 && ( $sha1 !== sha1_file( $source ) ) ) {
1646 if ( $flags & File
::DELETE_SOURCE
) {
1647 # Broken file; delete it if it is a temporary file
1650 wfDebug( __METHOD__
. ": Corrupt file $source.\n" );
1654 $user = User
::newFromName( $this->user_text
);
1656 # Do the actual upload
1657 if ( $archiveName ) {
1658 $status = $file->uploadOld( $source, $archiveName,
1659 $this->getTimestamp(), $this->getComment(), $user, $flags );
1661 $status = $file->upload( $source, $this->getComment(), $this->getComment(),
1662 $flags, false, $this->getTimestamp(), $user );
1665 if ( $status->isGood() ) {
1666 wfDebug( __METHOD__
. ": Successful\n" );
1669 wfDebug( __METHOD__
. ': failed: ' . $status->getXml() . "\n" );
1675 * @return bool|string
1677 function downloadSource() {
1678 global $wgEnableUploads;
1679 if ( !$wgEnableUploads ) {
1683 $tempo = tempnam( wfTempDir(), 'download' );
1684 $f = fopen( $tempo, 'wb' );
1686 wfDebug( "IMPORT: couldn't write to temp file $tempo\n" );
1691 $src = $this->getSrc();
1692 $data = Http
::get( $src );
1694 wfDebug( "IMPORT: couldn't fetch source $src\n" );
1700 fwrite( $f, $data );
1709 * @todo document (e.g. one-sentence class description).
1710 * @ingroup SpecialPage
1712 class ImportStringSource
{
1713 function __construct( $string ) {
1714 $this->mString
= $string;
1715 $this->mRead
= false;
1722 return $this->mRead
;
1726 * @return bool|string
1728 function readChunk() {
1729 if ( $this->atEnd() ) {
1732 $this->mRead
= true;
1733 return $this->mString
;
1738 * @todo document (e.g. one-sentence class description).
1739 * @ingroup SpecialPage
1741 class ImportStreamSource
{
1742 function __construct( $handle ) {
1743 $this->mHandle
= $handle;
1750 return feof( $this->mHandle
);
1756 function readChunk() {
1757 return fread( $this->mHandle
, 32768 );
1761 * @param string $filename
1764 static function newFromFile( $filename ) {
1765 wfSuppressWarnings();
1766 $file = fopen( $filename, 'rt' );
1767 wfRestoreWarnings();
1769 return Status
::newFatal( "importcantopen" );
1771 return Status
::newGood( new ImportStreamSource( $file ) );
1775 * @param string $fieldname
1778 static function newFromUpload( $fieldname = "xmlimport" ) {
1779 $upload =& $_FILES[$fieldname];
1781 if ( $upload === null ||
!$upload['name'] ) {
1782 return Status
::newFatal( 'importnofile' );
1784 if ( !empty( $upload['error'] ) ) {
1785 switch ( $upload['error'] ) {
1787 # The uploaded file exceeds the upload_max_filesize directive in php.ini.
1788 return Status
::newFatal( 'importuploaderrorsize' );
1790 # The uploaded file exceeds the MAX_FILE_SIZE directive that
1791 # was specified in the HTML form.
1792 return Status
::newFatal( 'importuploaderrorsize' );
1794 # The uploaded file was only partially uploaded
1795 return Status
::newFatal( 'importuploaderrorpartial' );
1797 # Missing a temporary folder.
1798 return Status
::newFatal( 'importuploaderrortemp' );
1799 # case else: # Currently impossible
1803 $fname = $upload['tmp_name'];
1804 if ( is_uploaded_file( $fname ) ) {
1805 return ImportStreamSource
::newFromFile( $fname );
1807 return Status
::newFatal( 'importnofile' );
1812 * @param string $url
1813 * @param string $method
1816 static function newFromURL( $url, $method = 'GET' ) {
1817 wfDebug( __METHOD__
. ": opening $url\n" );
1818 # Use the standard HTTP fetch function; it times out
1819 # quicker and sorts out user-agent problems which might
1820 # otherwise prevent importing from large sites, such
1821 # as the Wikimedia cluster, etc.
1822 $data = Http
::request( $method, $url, array( 'followRedirects' => true ) );
1823 if ( $data !== false ) {
1825 fwrite( $file, $data );
1828 return Status
::newGood( new ImportStreamSource( $file ) );
1830 return Status
::newFatal( 'importcantopen' );
1835 * @param string $interwiki
1836 * @param string $page
1837 * @param bool $history
1838 * @param bool $templates
1839 * @param int $pageLinkDepth
1842 public static function newFromInterwiki( $interwiki, $page, $history = false,
1843 $templates = false, $pageLinkDepth = 0
1845 if ( $page == '' ) {
1846 return Status
::newFatal( 'import-noarticle' );
1848 $link = Title
::newFromText( "$interwiki:Special:Export/$page" );
1849 if ( is_null( $link ) ||
!$link->isExternal() ) {
1850 return Status
::newFatal( 'importbadinterwiki' );
1854 $params['history'] = 1;
1857 $params['templates'] = 1;
1859 if ( $pageLinkDepth ) {
1860 $params['pagelink-depth'] = $pageLinkDepth;
1862 $url = $link->getFullURL( $params );
1863 # For interwikis, use POST to avoid redirects.
1864 return ImportStreamSource
::newFromURL( $url, "POST" );