50 parent::__construct(
'Import',
'import' );
69 $this->
namespace = $this->
getConfig()->get( 'ImportTargetNamespace' );
71 $this->
getOutput()->addModules(
'mediawiki.special.import' );
73 $this->importSources = $this->
getConfig()->get(
'ImportSources' );
74 Hooks::run(
'ImportSources', [ &$this->importSources ] );
77 if ( !$user->isAllowedAny(
'import',
'importupload' ) ) {
81 # @todo Allow Title::getUserPermissionsErrors() to take an array
82 # @todo FIXME: Title::checkSpecialsAndNSPermissions() has a very wierd expectation of what
83 # getUserPermissionsErrors() might actually be used for, hence the 'ns-specialprotected'
86 'import', $user,
true,
87 [
'ns-specialprotected',
'badaccess-group0',
'badaccess-groups' ]
90 'importupload', $user,
true,
91 [
'ns-specialprotected',
'badaccess-group0',
'badaccess-groups' ]
114 $this->sourceName =
$request->getVal(
"source" );
115 $this->assignKnownUsers =
$request->getCheck(
'assignKnownUsers' );
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';
132 if ( !$user->matchEditToken(
$request->getVal(
'editToken' ) ) ) {
133 $source = Status::newFatal(
'import-token-mismatch' );
134 } elseif ( $this->sourceName ===
'upload' ) {
136 $this->usernamePrefix = $this->fullInterwikiPrefix =
$request->getVal(
'usernamePrefix' );
137 if ( $user->isAllowed(
'importupload' ) ) {
142 } elseif ( $this->sourceName ===
'interwiki' ) {
143 if ( !$user->isAllowed(
'import' ) ) {
146 $this->interwiki = $this->fullInterwikiPrefix =
$request->getVal(
'interwiki' );
148 $hasSubprojects = array_key_exists( $this->interwiki, $this->importSources );
149 if ( !$hasSubprojects && !in_array( $this->interwiki, $this->importSources ) ) {
150 $source = Status::newFatal(
"import-invalid-interwiki" );
152 if ( $hasSubprojects ) {
153 $this->subproject =
$request->getVal(
'subproject' );
154 $this->fullInterwikiPrefix .=
':' .
$request->getVal(
'subproject' );
156 if ( $hasSubprojects &&
157 !in_array( $this->subproject, $this->importSources[$this->interwiki] )
159 $source = Status::newFatal(
"import-invalid-interwiki" );
162 $this->frompage =
$request->getText(
"frompage" );
163 $this->includeTemplates =
$request->getCheck(
'interwikiTemplates' );
165 $this->fullInterwikiPrefix,
168 $this->includeTemplates,
169 $this->pageLinkDepth );
173 $source = Status::newFatal(
"importunknownsource" );
176 if ( (
string)$this->fullInterwikiPrefix ===
'' ) {
177 $source->fatal(
'importnoprefix' );
182 $out->addWikiText(
"<p class=\"error\">\n" .
183 $this->
msg(
'importfailed',
$source->getWikiText() )->parse() .
"\n</p>" );
186 if ( !is_null( $this->
namespace ) ) {
187 $importer->setTargetNamespace( $this->
namespace );
188 } elseif ( !is_null( $this->rootpage ) ) {
189 $statusRootPage = $importer->setTargetRootPage( $this->rootpage );
190 if ( !$statusRootPage->isGood() ) {
192 "<p class=\"error\">\n$1\n</p>",
194 'import-options-wrong',
195 $statusRootPage->getWikiText(),
196 count( $statusRootPage->getErrorsArray() )
203 $importer->setUsernamePrefix( $this->fullInterwikiPrefix, $this->assignKnownUsers );
205 $out->addWikiMsg(
"importstart" );
210 $this->fullInterwikiPrefix,
218 $importer->doImport();
219 }
catch ( Exception
$e ) {
222 $result = $reporter->close();
225 # No source or XML parse error
227 "<p class=\"error\">\n$1\n</p>",
228 [
'importfailed', $exception->getMessage() ]
230 } elseif ( !$result->isGood() ) {
233 "<p class=\"error\">\n$1\n</p>",
234 [
'importfailed', $result->getWikiText() ]
238 $out->addWikiMsg(
'importsuccess' );
240 $out->addHTML(
'<hr />' );
245 $isSameSourceAsBefore = ( $this->sourceName ===
$sourceName );
246 $defaultNamespace = $this->
getConfig()->get(
'ImportTargetNamespace' );
250 <td class='mw-input'>" .
252 $this->
msg(
'import-mapping-default' )->
text(),
256 "mw-import-mapping-$sourceName-default",
257 ( $isSameSourceAsBefore ?
258 ( $this->mapping ===
'default' ) :
259 is_null( $defaultNamespace ) )
266 <td class='mw-input'>" .
268 $this->
msg(
'import-mapping-namespace' )->
text(),
272 "mw-import-mapping-$sourceName-namespace",
273 ( $isSameSourceAsBefore ?
274 ( $this->mapping ===
'namespace' ) :
275 !is_null( $defaultNamespace ) )
277 Html::namespaceSelector(
279 'selected' => ( $isSameSourceAsBefore ?
281 ( $defaultNamespace ||
'' ) ),
283 'name' =>
"namespace",
285 'id' =>
"mw-import-namespace-$sourceName",
286 'class' =>
'namespaceselector',
294 <td class='mw-input'>" .
296 $this->
msg(
'import-mapping-subpage' )->text(),
300 "mw-import-mapping-$sourceName-subpage",
301 ( $isSameSourceAsBefore ? ( $this->mapping ===
'subpage' ) :
'' )
303 Xml::input(
'rootpage', 50,
304 ( $isSameSourceAsBefore ? $this->rootpage :
'' ),
309 'id' =>
"mw-interwiki-rootpage-$sourceName",
318 $action = $this->
getPageTitle()->getLocalURL( [
'action' =>
'submit' ] );
321 $this->
addHelpLink(
'//meta.wikimedia.org/wiki/Special:MyLanguage/Help:Import',
true );
323 if ( $user->isAllowed(
'importupload' ) ) {
326 Xml::fieldset( $this->
msg(
'import-upload' )->
text() ) .
330 'enctype' =>
'multipart/form-data',
333 'id' =>
'mw-import-upload-form'
336 $this->
msg(
'importtext' )->parseAsBlock() .
337 Html::hidden(
'action',
'submit' ) .
338 Html::hidden(
'source',
'upload' ) .
339 Xml::openElement(
'table', [
'id' =>
'mw-import-table-upload' ] ) .
341 <td class='mw-label'>" .
342 Xml::label( $this->
msg(
'import-upload-filename' )->
text(),
'xmlimport' ) .
344 <td class='mw-input'>" .
345 Html::input(
'xmlimport',
'',
'file', [
'id' =>
'xmlimport' ] ) .
' ' .
349 <td class='mw-label'>" .
350 Xml::label( $this->
msg(
'import-upload-username-prefix' )->
text(),
351 'mw-import-usernamePrefix' ) .
353 <td class='mw-input'>" .
354 Xml::input(
'usernamePrefix', 50,
355 $this->usernamePrefix,
356 [
'id' =>
'usernamePrefix',
'type' =>
'text' ] ) .
' ' .
361 <td class='mw-input'>" .
363 $this->
msg(
'import-assign-known-users' )->
text(),
366 $this->assignKnownUsers
371 <td class='mw-label'>" .
372 Xml::label( $this->
msg(
'import-comment' )->
text(),
'mw-import-comment' ) .
374 <td class='mw-input'>" .
375 Xml::input(
'log-comment', 50,
376 ( $this->sourceName ===
'upload' ? $this->logcomment :
'' ),
377 [
'id' =>
'mw-import-comment',
'type' =>
'text' ] ) .
' ' .
383 <td class='mw-submit'>" .
384 Xml::submitButton( $this->
msg(
'uploadbtn' )->
text() ) .
387 Xml::closeElement(
'table' ) .
388 Html::hidden(
'editToken', $user->getEditToken() ) .
389 Xml::closeElement(
'form' ) .
390 Xml::closeElement(
'fieldset' )
393 if ( empty( $this->importSources ) ) {
394 $out->addWikiMsg(
'importnosources' );
398 if ( $user->isAllowed(
'import' ) && !empty( $this->importSources ) ) {
399 # Show input field for import depth only if $wgExportMaxLinkDepth > 0
401 if ( $this->
getConfig()->get(
'ExportMaxLinkDepth' ) > 0 ) {
403 <td class='mw-label'>" .
404 $this->
msg(
'export-pagelinks' )->parse() .
406 <td class='mw-input'>" .
407 Xml::input(
'pagelink-depth', 3, 0 ) .
414 Xml::fieldset( $this->
msg(
'importinterwiki' )->
text() ) .
420 'id' =>
'mw-import-interwiki-form'
423 $this->
msg(
'import-interwiki-text' )->parseAsBlock() .
424 Html::hidden(
'action',
'submit' ) .
425 Html::hidden(
'source',
'interwiki' ) .
426 Html::hidden(
'editToken', $user->getEditToken() ) .
427 Xml::openElement(
'table', [
'id' =>
'mw-import-table-interwiki' ] ) .
429 <td class='mw-label'>" .
430 Xml::label( $this->msg(
'import-interwiki-sourcewiki' )->text(),
'interwiki' ) .
432 <td class='mw-input'>" .
435 [
'name' =>
'interwiki',
'id' =>
'interwiki' ]
439 $needSubprojectField =
false;
440 foreach ( $this->importSources as $key =>
$value ) {
441 if ( is_int( $key ) ) {
443 } elseif (
$value !== $key ) {
444 $needSubprojectField =
true;
450 if ( is_array(
$value ) ) {
453 if ( $this->interwiki === $key ) {
456 $out->addHTML( Html::element(
'option',
$attribs, $key ) );
460 Xml::closeElement(
'select' )
463 if ( $needSubprojectField ) {
467 [
'name' =>
'subproject',
'id' =>
'subproject' ]
471 $subprojectsToAdd = [];
472 foreach ( $this->importSources as $key =>
$value ) {
473 if ( is_array(
$value ) ) {
474 $subprojectsToAdd = array_merge( $subprojectsToAdd,
$value );
477 $subprojectsToAdd = array_unique( $subprojectsToAdd );
478 sort( $subprojectsToAdd );
484 Xml::closeElement(
'select' )
492 <td class='mw-label'>" .
493 Xml::label( $this->
msg(
'import-interwiki-sourcepage' )->
text(),
'frompage' ) .
495 <td class='mw-input'>" .
496 Xml::input(
'frompage', 50, $this->frompage, [
'id' =>
'frompage' ] ) .
502 <td class='mw-input'>" .
504 $this->
msg(
'import-interwiki-history' )->
text(),
514 <td class='mw-input'>" .
516 $this->
msg(
'import-interwiki-templates' )->
text(),
517 'interwikiTemplates',
518 'interwikiTemplates',
519 $this->includeTemplates
525 <td class='mw-input'>" .
527 $this->
msg(
'import-assign-known-users' )->
text(),
530 $this->assignKnownUsers
536 <td class='mw-label'>" .
537 Xml::label( $this->
msg(
'import-comment' )->
text(),
'mw-interwiki-comment' ) .
539 <td class='mw-input'>" .
540 Xml::input(
'log-comment', 50,
541 ( $this->sourceName ===
'interwiki' ? $this->logcomment :
'' ),
542 [
'id' =>
'mw-interwiki-comment',
'type' =>
'text' ] ) .
' ' .
549 <td class='mw-submit'>" .
551 $this->
msg(
'import-interwiki-submit' )->
text(),
556 Xml::closeElement(
'table' ) .
557 Xml::closeElement(
'form' ) .
558 Xml::closeElement(
'fieldset' )
wfMergeErrorArrays()
Merge arrays in the style of getUserPermissionsErrors, with duplicate removal e.g.
static newFromInterwiki( $interwiki, $page, $history=false, $templates=false, $pageLinkDepth=0)
static newFromUpload( $fieldname="xmlimport")
static tooltipAndAccesskeyAttribs( $name, array $msgParams=[], $options=null)
Returns the attributes for the tooltip and access key.
Show an error when a user tries to do something they do not have the necessary permissions for.
MediaWiki page data importer.
doesWrites()
Indicates whether this special page may perform database writes.
getMappingFormPart( $sourceName)
doImport()
Do the actual import.
getGroupName()
Under which header this special page is listed in Special:SpecialPages See messages 'specialpages-gro...
Parent class for all special pages.
outputHeader( $summaryMessageKey='')
Outputs a summary message on top of special pages Per default the message key is the canonical name o...
setHeaders()
Sets headers - this should be called from the execute() method of all derived classes!
getOutput()
Get the OutputPage being used for this instance.
getUser()
Shortcut to get the User executing this instance.
getContext()
Gets the context this SpecialPage is executed in.
msg( $key)
Wrapper around wfMessage that sets the current context.
getConfig()
Shortcut to get main config object.
getRequest()
Get the WebRequest being used for this instance.
checkReadOnly()
If the wiki is currently in readonly mode, throws a ReadOnlyError.
getPageTitle( $subpage=false)
Get a self-referential title object.
useTransactionalTimeLimit()
Call wfTransactionalTimeLimit() if this request was POSTed.
addHelpLink( $to, $overrideBaseUrl=false)
Adds help link with an icon via page indicators.
XML file reader for the page data importer.
design txt This is a brief overview of the new design More thorough and up to date information is available on the documentation wiki at etc Handles the details of getting and saving to the user table of the and dealing with sessions and cookies OutputPage Encapsulates the entire HTML page that will be sent in response to any server request It is used by calling its functions to add text
do that in ParserLimitReportFormat instead use this to modify the parameters of the image all existing parser cache entries will be invalid To avoid you ll need to handle that somehow(e.g. with the RejectParserCacheValue hook) because MediaWiki won 't do it for you. & $defaults also a ContextSource after deleting those rows but within the same transaction you ll probably need to make sure the header is varied on $request
presenting them properly to the user as errors is done by the caller return true use this to change the list i e etc next in line in page history
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that probably a stub it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output $out
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses just before the function returns a value If you return an< a > element with HTML attributes $attribs and contents $html will be returned If you return $ret will be returned and may include noclasses after processing & $attribs
returning false will NOT prevent logging $e