3 * Implements Special:Import
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 * MediaWiki page data importer
30 * @ingroup SpecialPage
32 class SpecialImport
extends SpecialPage
{
33 private $sourceName = false;
34 private $interwiki = false;
36 private $fullInterwikiPrefix;
37 private $mapping = 'default';
39 private $rootpage = '';
40 private $frompage = '';
41 private $logcomment = false;
42 private $history = true;
43 private $includeTemplates = false;
44 private $pageLinkDepth;
45 private $importSources;
50 public function __construct() {
51 parent
::__construct( 'Import', 'import' );
54 public function doesWrites() {
60 * @param string|null $par
61 * @throws PermissionsError
62 * @throws ReadOnlyError
64 function execute( $par ) {
65 $this->useTransactionalTimeLimit();
68 $this->outputHeader();
70 $this->namespace = $this->getConfig()->get( 'ImportTargetNamespace' );
72 $this->getOutput()->addModules( 'mediawiki.special.import' );
74 $this->importSources
= $this->getConfig()->get( 'ImportSources' );
75 Hooks
::run( 'ImportSources', [ &$this->importSources
] );
77 $user = $this->getUser();
78 if ( !$user->isAllowedAny( 'import', 'importupload' ) ) {
79 throw new PermissionsError( 'import' );
82 # @todo Allow Title::getUserPermissionsErrors() to take an array
83 # @todo FIXME: Title::checkSpecialsAndNSPermissions() has a very wierd expectation of what
84 # getUserPermissionsErrors() might actually be used for, hence the 'ns-specialprotected'
85 $errors = wfMergeErrorArrays(
86 $this->getPageTitle()->getUserPermissionsErrors(
87 'import', $user, true,
88 [ 'ns-specialprotected', 'badaccess-group0', 'badaccess-groups' ]
90 $this->getPageTitle()->getUserPermissionsErrors(
91 'importupload', $user, true,
92 [ 'ns-specialprotected', 'badaccess-group0', 'badaccess-groups' ]
97 throw new PermissionsError( 'import', $errors );
100 $this->checkReadOnly();
102 $request = $this->getRequest();
103 if ( $request->wasPosted() && $request->getVal( 'action' ) == 'submit' ) {
110 * Do the actual import
112 private function doImport() {
114 $request = $this->getRequest();
115 $this->sourceName
= $request->getVal( "source" );
117 $this->logcomment
= $request->getText( 'log-comment' );
118 $this->pageLinkDepth
= $this->getConfig()->get( 'ExportMaxLinkDepth' ) == 0
120 : $request->getIntOrNull( 'pagelink-depth' );
122 $this->mapping
= $request->getVal( 'mapping' );
123 if ( $this->mapping
=== 'namespace' ) {
124 $this->namespace = $request->getIntOrNull( 'namespace' );
125 } elseif ( $this->mapping
=== 'subpage' ) {
126 $this->rootpage
= $request->getText( 'rootpage' );
128 $this->mapping
= 'default';
131 $user = $this->getUser();
132 if ( !$user->matchEditToken( $request->getVal( 'editToken' ) ) ) {
133 $source = Status
::newFatal( 'import-token-mismatch' );
134 } elseif ( $this->sourceName
=== 'upload' ) {
136 if ( $user->isAllowed( 'importupload' ) ) {
137 $source = ImportStreamSource
::newFromUpload( "xmlimport" );
139 throw new PermissionsError( 'importupload' );
141 } elseif ( $this->sourceName
=== 'interwiki' ) {
142 if ( !$user->isAllowed( 'import' ) ) {
143 throw new PermissionsError( 'import' );
145 $this->interwiki
= $this->fullInterwikiPrefix
= $request->getVal( 'interwiki' );
146 // does this interwiki have subprojects?
147 $hasSubprojects = array_key_exists( $this->interwiki
, $this->importSources
);
148 if ( !$hasSubprojects && !in_array( $this->interwiki
, $this->importSources
) ) {
149 $source = Status
::newFatal( "import-invalid-interwiki" );
151 if ( $hasSubprojects ) {
152 $this->subproject
= $request->getVal( 'subproject' );
153 $this->fullInterwikiPrefix
.= ':' . $request->getVal( 'subproject' );
155 if ( $hasSubprojects &&
156 !in_array( $this->subproject
, $this->importSources
[$this->interwiki
] )
158 $source = Status
::newFatal( "import-invalid-interwiki" );
160 $this->history
= $request->getCheck( 'interwikiHistory' );
161 $this->frompage
= $request->getText( "frompage" );
162 $this->includeTemplates
= $request->getCheck( 'interwikiTemplates' );
163 $source = ImportStreamSource
::newFromInterwiki(
164 $this->fullInterwikiPrefix
,
167 $this->includeTemplates
,
168 $this->pageLinkDepth
);
172 $source = Status
::newFatal( "importunknownsource" );
175 $out = $this->getOutput();
176 if ( !$source->isGood() ) {
178 "<p class=\"error\">\n$1\n</p>",
179 [ 'importfailed', $source->getWikiText() ]
182 $importer = new WikiImporter( $source->value
, $this->getConfig() );
183 if ( !is_null( $this->namespace ) ) {
184 $importer->setTargetNamespace( $this->namespace );
185 } elseif ( !is_null( $this->rootpage
) ) {
186 $statusRootPage = $importer->setTargetRootPage( $this->rootpage
);
187 if ( !$statusRootPage->isGood() ) {
189 "<p class=\"error\">\n$1\n</p>",
191 'import-options-wrong',
192 $statusRootPage->getWikiText(),
193 count( $statusRootPage->getErrorsArray() )
201 $out->addWikiMsg( "importstart" );
203 $reporter = new ImportReporter(
206 $this->fullInterwikiPrefix
,
209 $reporter->setContext( $this->getContext() );
214 $importer->doImport();
215 } catch ( Exception
$e ) {
218 $result = $reporter->close();
221 # No source or XML parse error
223 "<p class=\"error\">\n$1\n</p>",
224 [ 'importfailed', $exception->getMessage() ]
226 } elseif ( !$result->isGood() ) {
229 "<p class=\"error\">\n$1\n</p>",
230 [ 'importfailed', $result->getWikiText() ]
234 $out->addWikiMsg( 'importsuccess' );
236 $out->addHTML( '<hr />' );
240 private function getMappingFormPart( $sourceName ) {
241 $isSameSourceAsBefore = ( $this->sourceName
=== $sourceName );
242 $defaultNamespace = $this->getConfig()->get( 'ImportTargetNamespace' );
246 <td class='mw-input'>" .
248 $this->msg( 'import-mapping-default' )->text(),
251 // mw-import-mapping-interwiki-default, mw-import-mapping-upload-default
252 "mw-import-mapping-$sourceName-default",
253 ( $isSameSourceAsBefore ?
254 ( $this->mapping
=== 'default' ) :
255 is_null( $defaultNamespace ) )
262 <td class='mw-input'>" .
264 $this->msg( 'import-mapping-namespace' )->text(),
267 // mw-import-mapping-interwiki-namespace, mw-import-mapping-upload-namespace
268 "mw-import-mapping-$sourceName-namespace",
269 ( $isSameSourceAsBefore ?
270 ( $this->mapping
=== 'namespace' ) :
271 !is_null( $defaultNamespace ) )
273 Html
::namespaceSelector(
275 'selected' => ( $isSameSourceAsBefore ?
277 ( $defaultNamespace ||
'' ) ),
279 'name' => "namespace",
280 // mw-import-namespace-interwiki, mw-import-namespace-upload
281 'id' => "mw-import-namespace-$sourceName",
282 'class' => 'namespaceselector',
290 <td class='mw-input'>" .
292 $this->msg( 'import-mapping-subpage' )->text(),
295 // mw-import-mapping-interwiki-subpage, mw-import-mapping-upload-subpage
296 "mw-import-mapping-$sourceName-subpage",
297 ( $isSameSourceAsBefore ?
( $this->mapping
=== 'subpage' ) : '' )
299 Xml
::input( 'rootpage', 50,
300 ( $isSameSourceAsBefore ?
$this->rootpage
: '' ),
302 // Should be "mw-import-rootpage-...", but we keep this inaccurate
303 // ID for legacy reasons
304 // mw-interwiki-rootpage-interwiki, mw-interwiki-rootpage-upload
305 'id' => "mw-interwiki-rootpage-$sourceName",
313 private function showForm() {
314 $action = $this->getPageTitle()->getLocalURL( [ 'action' => 'submit' ] );
315 $user = $this->getUser();
316 $out = $this->getOutput();
317 $this->addHelpLink( '//meta.wikimedia.org/wiki/Special:MyLanguage/Help:Import', true );
319 if ( $user->isAllowed( 'importupload' ) ) {
320 $mappingSelection = $this->getMappingFormPart( 'upload' );
322 Xml
::fieldset( $this->msg( 'import-upload' )->text() ) .
326 'enctype' => 'multipart/form-data',
329 'id' => 'mw-import-upload-form'
332 $this->msg( 'importtext' )->parseAsBlock() .
333 Html
::hidden( 'action', 'submit' ) .
334 Html
::hidden( 'source', 'upload' ) .
335 Xml
::openElement( 'table', [ 'id' => 'mw-import-table-upload' ] ) .
337 <td class='mw-label'>" .
338 Xml
::label( $this->msg( 'import-upload-filename' )->text(), 'xmlimport' ) .
340 <td class='mw-input'>" .
341 Html
::input( 'xmlimport', '', 'file', [ 'id' => 'xmlimport' ] ) . ' ' .
345 <td class='mw-label'>" .
346 Xml
::label( $this->msg( 'import-comment' )->text(), 'mw-import-comment' ) .
348 <td class='mw-input'>" .
349 Xml
::input( 'log-comment', 50,
350 ( $this->sourceName
=== 'upload' ?
$this->logcomment
: '' ),
351 [ 'id' => 'mw-import-comment', 'type' => 'text' ] ) . ' ' .
357 <td class='mw-submit'>" .
358 Xml
::submitButton( $this->msg( 'uploadbtn' )->text() ) .
361 Xml
::closeElement( 'table' ) .
362 Html
::hidden( 'editToken', $user->getEditToken() ) .
363 Xml
::closeElement( 'form' ) .
364 Xml
::closeElement( 'fieldset' )
367 if ( empty( $this->importSources
) ) {
368 $out->addWikiMsg( 'importnosources' );
372 if ( $user->isAllowed( 'import' ) && !empty( $this->importSources
) ) {
373 # Show input field for import depth only if $wgExportMaxLinkDepth > 0
375 if ( $this->getConfig()->get( 'ExportMaxLinkDepth' ) > 0 ) {
377 <td class='mw-label'>" .
378 $this->msg( 'export-pagelinks' )->parse() .
380 <td class='mw-input'>" .
381 Xml
::input( 'pagelink-depth', 3, 0 ) .
385 $mappingSelection = $this->getMappingFormPart( 'interwiki' );
388 Xml
::fieldset( $this->msg( 'importinterwiki' )->text() ) .
394 'id' => 'mw-import-interwiki-form'
397 $this->msg( 'import-interwiki-text' )->parseAsBlock() .
398 Html
::hidden( 'action', 'submit' ) .
399 Html
::hidden( 'source', 'interwiki' ) .
400 Html
::hidden( 'editToken', $user->getEditToken() ) .
401 Xml
::openElement( 'table', [ 'id' => 'mw-import-table-interwiki' ] ) .
403 <td class='mw-label'>" .
404 Xml
::label( $this->msg( 'import-interwiki-sourcewiki' )->text(), 'interwiki' ) .
406 <td class='mw-input'>" .
409 [ 'name' => 'interwiki', 'id' => 'interwiki' ]
413 $needSubprojectField = false;
414 foreach ( $this->importSources
as $key => $value ) {
415 if ( is_int( $key ) ) {
417 } elseif ( $value !== $key ) {
418 $needSubprojectField = true;
424 if ( is_array( $value ) ) {
425 $attribs['data-subprojects'] = implode( ' ', $value );
427 if ( $this->interwiki
=== $key ) {
428 $attribs['selected'] = 'selected';
430 $out->addHTML( Html
::element( 'option', $attribs, $key ) );
434 Xml
::closeElement( 'select' )
437 if ( $needSubprojectField ) {
441 [ 'name' => 'subproject', 'id' => 'subproject' ]
445 $subprojectsToAdd = [];
446 foreach ( $this->importSources
as $key => $value ) {
447 if ( is_array( $value ) ) {
448 $subprojectsToAdd = array_merge( $subprojectsToAdd, $value );
451 $subprojectsToAdd = array_unique( $subprojectsToAdd );
452 sort( $subprojectsToAdd );
453 foreach ( $subprojectsToAdd as $subproject ) {
454 $out->addHTML( Xml
::option( $subproject, $subproject, $this->subproject
=== $subproject ) );
458 Xml
::closeElement( 'select' )
466 <td class='mw-label'>" .
467 Xml
::label( $this->msg( 'import-interwiki-sourcepage' )->text(), 'frompage' ) .
469 <td class='mw-input'>" .
470 Xml
::input( 'frompage', 50, $this->frompage
, [ 'id' => 'frompage' ] ) .
476 <td class='mw-input'>" .
478 $this->msg( 'import-interwiki-history' )->text(),
488 <td class='mw-input'>" .
490 $this->msg( 'import-interwiki-templates' )->text(),
491 'interwikiTemplates',
492 'interwikiTemplates',
493 $this->includeTemplates
499 <td class='mw-label'>" .
500 Xml
::label( $this->msg( 'import-comment' )->text(), 'mw-interwiki-comment' ) .
502 <td class='mw-input'>" .
503 Xml
::input( 'log-comment', 50,
504 ( $this->sourceName
=== 'interwiki' ?
$this->logcomment
: '' ),
505 [ 'id' => 'mw-interwiki-comment', 'type' => 'text' ] ) . ' ' .
512 <td class='mw-submit'>" .
514 $this->msg( 'import-interwiki-submit' )->text(),
515 Linker
::tooltipAndAccesskeyAttribs( 'import' )
519 Xml
::closeElement( 'table' ) .
520 Xml
::closeElement( 'form' ) .
521 Xml
::closeElement( 'fieldset' )
526 protected function getGroupName() {
533 * @ingroup SpecialPage
535 class ImportReporter
extends ContextSource
{
536 private $reason = false;
537 private $mOriginalLogCallback = null;
538 private $mOriginalPageOutCallback = null;
539 private $mLogItemCount = 0;
542 * @param WikiImporter $importer
543 * @param bool $upload
544 * @param string $interwiki
545 * @param string|bool $reason
547 function __construct( $importer, $upload, $interwiki, $reason = false ) {
548 $this->mOriginalPageOutCallback
=
549 $importer->setPageOutCallback( [ $this, 'reportPage' ] );
550 $this->mOriginalLogCallback
=
551 $importer->setLogItemCallback( [ $this, 'reportLogItem' ] );
552 $importer->setNoticeCallback( [ $this, 'reportNotice' ] );
553 $this->mPageCount
= 0;
554 $this->mIsUpload
= $upload;
555 $this->mInterwiki
= $interwiki;
556 $this->reason
= $reason;
560 $this->getOutput()->addHTML( "<ul>\n" );
563 function reportNotice( $msg, array $params ) {
564 $this->getOutput()->addHTML(
565 Html
::element( 'li', [], $this->msg( $msg, $params )->text() )
569 function reportLogItem( /* ... */ ) {
570 $this->mLogItemCount++
;
571 if ( is_callable( $this->mOriginalLogCallback
) ) {
572 call_user_func_array( $this->mOriginalLogCallback
, func_get_args() );
577 * @param Title $title
578 * @param ForeignTitle $foreignTitle
579 * @param int $revisionCount
580 * @param int $successCount
581 * @param array $pageInfo
584 public function reportPage( $title, $foreignTitle, $revisionCount,
585 $successCount, $pageInfo ) {
586 $args = func_get_args();
587 call_user_func_array( $this->mOriginalPageOutCallback
, $args );
589 if ( $title === null ) {
590 # Invalid or non-importable title; a notice is already displayed
596 if ( $successCount > 0 ) {
597 $this->getOutput()->addHTML(
598 "<li>" . Linker
::linkKnown( $title ) . " " .
599 $this->msg( 'import-revision-count' )->numParams( $successCount )->escaped() .
603 $logParams = [ '4:number:count' => $successCount ];
604 if ( $this->mIsUpload
) {
605 $detail = $this->msg( 'import-logentry-upload-detail' )->numParams(
606 $successCount )->inContentLanguage()->text();
609 $pageTitle = $foreignTitle->getFullText();
610 $fullInterwikiPrefix = $this->mInterwiki
;
611 Hooks
::run( 'ImportLogInterwikiLink', [ &$fullInterwikiPrefix, &$pageTitle ] );
613 $interwikiTitleStr = $fullInterwikiPrefix . ':' . $pageTitle;
614 $interwiki = '[[:' . $interwikiTitleStr . ']]';
615 $detail = $this->msg( 'import-logentry-interwiki-detail' )->numParams(
616 $successCount )->params( $interwiki )->inContentLanguage()->text();
617 $action = 'interwiki';
618 $logParams['5:title-link:interwiki'] = $interwikiTitleStr;
620 if ( $this->reason
) {
621 $detail .= $this->msg( 'colon-separator' )->inContentLanguage()->text()
625 $logEntry = new ManualLogEntry( 'import', $action );
626 $logEntry->setTarget( $title );
627 $logEntry->setComment( $this->reason
);
628 $logEntry->setPerformer( $this->getUser() );
629 $logEntry->setParameters( $logParams );
630 $logid = $logEntry->insert();
631 $logEntry->publish( $logid );
633 $comment = $detail; // quick
634 $dbw = wfGetDB( DB_MASTER
);
635 $latest = $title->getLatestRevID();
636 $nullRevision = Revision
::newNullRevision(
638 $title->getArticleID(),
644 if ( !is_null( $nullRevision ) ) {
645 $nullRevision->insertOn( $dbw );
646 $page = WikiPage
::factory( $title );
648 $page->updateRevisionOn( $dbw, $nullRevision );
650 'NewRevisionFromEditComplete',
651 [ $page, $nullRevision, $latest, $this->getUser() ]
655 $this->getOutput()->addHTML( "<li>" . Linker
::linkKnown( $title ) . " " .
656 $this->msg( 'import-nonewrevisions' )->escaped() . "</li>\n" );
661 $out = $this->getOutput();
662 if ( $this->mLogItemCount
> 0 ) {
663 $msg = $this->msg( 'imported-log-entries' )->numParams( $this->mLogItemCount
)->parse();
664 $out->addHTML( Xml
::tags( 'li', null, $msg ) );
665 } elseif ( $this->mPageCount
== 0 && $this->mLogItemCount
== 0 ) {
666 $out->addHTML( "</ul>\n" );
668 return Status
::newFatal( 'importnopages' );
670 $out->addHTML( "</ul>\n" );
672 return Status
::newGood( $this->mPageCount
);