51 parent::__construct(
'Import',
'import' );
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 ] );
78 if ( !
$user->isAllowedAny(
'import',
'importupload' ) ) {
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'
87 'import',
$user,
true,
88 [
'ns-specialprotected',
'badaccess-group0',
'badaccess-groups' ]
91 'importupload',
$user,
true,
92 [
'ns-specialprotected',
'badaccess-group0',
'badaccess-groups' ]
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';
132 if ( !
$user->matchEditToken(
$request->getVal(
'editToken' ) ) ) {
134 } elseif ( $this->sourceName ===
'upload' ) {
136 if (
$user->isAllowed(
'importupload' ) ) {
141 } elseif ( $this->sourceName ===
'interwiki' ) {
142 if ( !
$user->isAllowed(
'import' ) ) {
145 $this->interwiki = $this->fullInterwikiPrefix =
$request->getVal(
'interwiki' );
147 $hasSubprojects = array_key_exists( $this->interwiki, $this->importSources );
148 if ( !$hasSubprojects && !in_array( $this->interwiki, $this->importSources ) ) {
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] )
161 $this->frompage =
$request->getText(
"frompage" );
162 $this->includeTemplates =
$request->getCheck(
'interwikiTemplates' );
164 $this->fullInterwikiPrefix,
167 $this->includeTemplates,
168 $this->pageLinkDepth );
178 "<p class=\"error\">\n$1\n</p>",
179 [
'importfailed',
$source->getWikiText() ]
183 if ( !is_null( $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" );
206 $this->fullInterwikiPrefix,
214 $importer->doImport();
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 />' );
241 $isSameSourceAsBefore = ( $this->sourceName ===
$sourceName );
242 $defaultNamespace = $this->
getConfig()->get(
'ImportTargetNamespace' );
246 <td class='mw-input'>" .
248 $this->
msg(
'import-mapping-default' )->
text(),
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(),
268 "mw-import-mapping-$sourceName-namespace",
269 ( $isSameSourceAsBefore ?
270 ( $this->mapping ===
'namespace' ) :
271 !is_null( $defaultNamespace ) )
275 'selected' => ( $isSameSourceAsBefore ?
277 ( $defaultNamespace ||
'' ) ),
279 'name' =>
"namespace",
281 'id' =>
"mw-import-namespace-$sourceName",
282 'class' =>
'namespaceselector',
290 <td class='mw-input'>" .
292 $this->
msg(
'import-mapping-subpage' )->
text(),
296 "mw-import-mapping-$sourceName-subpage",
297 ( $isSameSourceAsBefore ? ( $this->mapping ===
'subpage' ) :
'' )
300 ( $isSameSourceAsBefore ? $this->rootpage :
'' ),
305 'id' =>
"mw-interwiki-rootpage-$sourceName",
314 $action = $this->
getPageTitle()->getLocalURL( [
'action' =>
'submit' ] );
317 $this->
addHelpLink(
'//meta.wikimedia.org/wiki/Special:MyLanguage/Help:Import',
true );
319 if (
$user->isAllowed(
'importupload' ) ) {
326 'enctype' =>
'multipart/form-data',
329 'id' =>
'mw-import-upload-form'
332 $this->
msg(
'importtext' )->parseAsBlock() .
337 <td class='mw-label'>" .
340 <td class='mw-input'>" .
341 Html::input(
'xmlimport',
'',
'file', [
'id' =>
'xmlimport' ] ) .
' ' .
345 <td class='mw-label'>" .
348 <td class='mw-input'>" .
350 ( $this->sourceName ===
'upload' ? $this->logcomment :
'' ),
351 [
'id' =>
'mw-import-comment',
'type' =>
'text' ] ) .
' ' .
357 <td class='mw-submit'>" .
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'>" .
394 'id' =>
'mw-import-interwiki-form'
397 $this->
msg(
'import-interwiki-text' )->parseAsBlock() .
403 <td class='mw-label'>" .
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 ) ) {
427 if ( $this->interwiki === $key ) {
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 );
454 $out->addHTML(
Xml::option( $subproject, $subproject, $this->subproject === $subproject ) );
466 <td class='mw-label'>" .
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'>" .
502 <td class='mw-input'>" .
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(),
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;
570 $this->mLogItemCount++;
571 if ( is_callable( $this->mOriginalLogCallback ) ) {
572 call_user_func_array( $this->mOriginalLogCallback, func_get_args() );
585 $successCount, $pageInfo ) {
586 $args = func_get_args();
587 call_user_func_array( $this->mOriginalPageOutCallback,
$args );
590 # Invalid or non-importable title; a notice is already displayed
596 if ( $successCount > 0 ) {
602 $this->
msg(
'import-revision-count' )->numParams( $successCount )->escaped() .
607 $logParams = [
'4:number:count' => $successCount ];
608 if ( $this->mIsUpload ) {
609 $detail = $this->
msg(
'import-logentry-upload-detail' )->numParams(
610 $successCount )->inContentLanguage()->text();
613 $pageTitle = $foreignTitle->getFullText();
614 $fullInterwikiPrefix = $this->mInterwiki;
615 Hooks::run(
'ImportLogInterwikiLink', [ &$fullInterwikiPrefix, &$pageTitle ] );
617 $interwikiTitleStr = $fullInterwikiPrefix .
':' . $pageTitle;
618 $interwiki =
'[[:' . $interwikiTitleStr .
']]';
619 $detail = $this->
msg(
'import-logentry-interwiki-detail' )->numParams(
620 $successCount )->params( $interwiki )->inContentLanguage()->text();
621 $action =
'interwiki';
622 $logParams[
'5:title-link:interwiki'] = $interwikiTitleStr;
624 if ( $this->reason ) {
625 $detail .= $this->
msg(
'colon-separator' )->inContentLanguage()->text()
630 $logEntry->setTarget(
$title );
631 $logEntry->setComment( $this->reason );
632 $logEntry->setPerformer( $this->
getUser() );
633 $logEntry->setParameters( $logParams );
634 $logid = $logEntry->insert();
635 $logEntry->publish( $logid );
639 $latest =
$title->getLatestRevID();
648 if ( !is_null( $nullRevision ) ) {
649 $nullRevision->insertOn( $dbw );
652 $page->updateRevisionOn( $dbw, $nullRevision );
654 'NewRevisionFromEditComplete',
660 $this->
msg(
'import-nonewrevisions' )->escaped() .
"</li>\n" );
666 if ( $this->mLogItemCount > 0 ) {
667 $msg = $this->
msg(
'imported-log-entries' )->numParams( $this->mLogItemCount )->parse();
669 } elseif ( $this->mPageCount == 0 && $this->mLogItemCount == 0 ) {
670 $out->addHTML(
"</ul>\n" );
674 $out->addHTML(
"</ul>\n" );
static factory(Title $title)
Create a WikiPage object of the appropriate class for the given title.
wfGetDB($db, $groups=[], $wiki=false)
Get a Database object.
doImport()
Do the actual import.
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
the array() calling protocol came about after MediaWiki 1.4rc1.
getContext()
Gets the context this SpecialPage is executed in.
MediaWiki page data importer.
XML file reader for the page data importer.
static radioLabel($label, $name, $value, $id, $checked=false, $attribs=[])
Convenience function to build an HTML radio button with a label.
div flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException'returning false will NOT prevent logging $e
static newFatal($message)
Factory function for fatal errors.
The simplest way of implementing IContextSource is to hold a RequestContext as a member variable and ...
__construct($importer, $upload, $interwiki, $reason=false)
static hidden($name, $value, array $attribs=[])
Convenience function to produce an input element with type=hidden.
reportNotice($msg, array $params)
static input($name, $size=false, $value=false, $attribs=[])
Convenience function to build an HTML text input field.
msg()
Wrapper around wfMessage that sets the current context.
getOutput()
Get the OutputPage being used for this instance.
static tooltipAndAccesskeyAttribs($name, array $msgParams=[])
Returns the attributes for the tooltip and access key.
static submitButton($value, $attribs=[])
Convenience function to build an HTML submit button When $wgUseMediaWikiUIEverywhere is true it will ...
addHelpLink($to, $overrideBaseUrl=false)
Adds help link with an icon via page indicators.
setTargetNamespace($namespace)
Set a target namespace to override the defaults.
static label($label, $id, $attribs=[])
Convenience function to build an HTML form label.
The index of the header message $result[1]=The index of the body text message $result[2 through n]=Parameters passed to body text message.Please note the header message cannot receive/use parameters. 'ImportHandleLogItemXMLTag':When parsing a XML tag in a log item.Return false to stop further processing of the tag $reader:XMLReader object $logInfo:Array of information 'ImportHandlePageXMLTag':When parsing a XML tag in a page.Return false to stop further processing of the tag $reader:XMLReader object &$pageInfo:Array of information 'ImportHandleRevisionXMLTag':When parsing a XML tag in a page revision.Return false to stop further processing of the tag $reader:XMLReader object $pageInfo:Array of page information $revisionInfo:Array of revision information 'ImportHandleToplevelXMLTag':When parsing a top level XML tag.Return false to stop further processing of the tag $reader:XMLReader object 'ImportHandleUploadXMLTag':When parsing a XML tag in a file upload.Return false to stop further processing of the tag $reader:XMLReader object $revisionInfo:Array of information 'ImportLogInterwikiLink':Hook to change the interwiki link used in log entries and edit summaries for transwiki imports.&$fullInterwikiPrefix:Interwiki prefix, may contain colons.&$pageTitle:String that contains page title. 'ImportSources':Called when reading from the $wgImportSources configuration variable.Can be used to lazy-load the import sources list.&$importSources:The value of $wgImportSources.Modify as necessary.See the comment in DefaultSettings.php for the detail of how to structure this array. 'InfoAction':When building information to display on the action=info page.$context:IContextSource object &$pageInfo:Array of information 'InitializeArticleMaybeRedirect':MediaWiki check to see if title is a redirect.&$title:Title object for the current page &$request:WebRequest &$ignoreRedirect:boolean to skip redirect check &$target:Title/string of redirect target &$article:Article object 'InternalParseBeforeLinks':during Parser's internalParse method before links but after nowiki/noinclude/includeonly/onlyinclude and other processings.&$parser:Parser object &$text:string containing partially parsed text &$stripState:Parser's internal StripState object 'InternalParseBeforeSanitize':during Parser's internalParse method just before the parser removes unwanted/dangerous HTML tags and after nowiki/noinclude/includeonly/onlyinclude and other processings.Ideal for syntax-extensions after template/parser function execution which respect nowiki and HTML-comments.&$parser:Parser object &$text:string containing partially parsed text &$stripState:Parser's internal StripState object 'InterwikiLoadPrefix':When resolving if a given prefix is an interwiki or not.Return true without providing an interwiki to continue interwiki search.$prefix:interwiki prefix we are looking for.&$iwData:output array describing the interwiki with keys iw_url, iw_local, iw_trans and optionally iw_api and iw_wikiid. 'InvalidateEmailComplete':Called after a user's email has been invalidated successfully.$user:user(object) whose email is being invalidated 'IRCLineURL':When constructing the URL to use in an IRC notification.Callee may modify $url and $query, URL will be constructed as $url.$query &$url:URL to index.php &$query:Query string $rc:RecentChange object that triggered url generation 'IsFileCacheable':Override the result of Article::isFileCacheable()(if true) &$article:article(object) being checked 'IsTrustedProxy':Override the result of IP::isTrustedProxy() &$ip:IP being check &$result:Change this value to override the result of IP::isTrustedProxy() 'IsUploadAllowedFromUrl':Override the result of UploadFromUrl::isAllowedUrl() $url:URL used to upload from &$allowed:Boolean indicating if uploading is allowed for given URL 'isValidEmailAddr':Override the result of Sanitizer::validateEmail(), for instance to return false if the domain name doesn't match your organization.$addr:The e-mail address entered by the user &$result:Set this and return false to override the internal checks 'isValidPassword':Override the result of User::isValidPassword() $password:The password entered by the user &$result:Set this and return false to override the internal checks $user:User the password is being validated for 'Language::getMessagesFileName':$code:The language code or the language we're looking for a messages file for &$file:The messages file path, you can override this to change the location. 'LanguageGetMagic':DEPRECATED!Use $magicWords in a file listed in $wgExtensionMessagesFiles instead.Use this to define synonyms of magic words depending of the language &$magicExtensions:associative array of magic words synonyms $lang:language code(string) 'LanguageGetNamespaces':Provide custom ordering for namespaces or remove namespaces.Do not use this hook to add namespaces.Use CanonicalNamespaces for that.&$namespaces:Array of namespaces indexed by their numbers 'LanguageGetSpecialPageAliases':DEPRECATED!Use $specialPageAliases in a file listed in $wgExtensionMessagesFiles instead.Use to define aliases of special pages names depending of the language &$specialPageAliases:associative array of magic words synonyms $lang:language code(string) 'LanguageGetTranslatedLanguageNames':Provide translated language names.&$names:array of language code=> language name $code:language of the preferred translations 'LanguageLinks':Manipulate a page's language links.This is called in various places to allow extensions to define the effective language links for a page.$title:The page's Title.&$links:Associative array mapping language codes to prefixed links of the form"language:title".&$linkFlags:Associative array mapping prefixed links to arrays of flags.Currently unused, but planned to provide support for marking individual language links in the UI, e.g.for featured articles. 'LanguageSelector':Hook to change the language selector available on a page.$out:The output page.$cssClassName:CSS class name of the language selector. 'LinkBegin':DEPRECATED!Use HtmlPageLinkRendererBegin instead.Used when generating internal and interwiki links in Linker::link(), before processing starts.Return false to skip default processing and return $ret.See documentation for Linker::link() for details on the expected meanings of parameters.$skin:the Skin object $target:the Title that the link is pointing to &$html:the contents that the< a > tag should have(raw HTML) $result
outputHeader($summaryMessageKey= '')
Outputs a summary message on top of special pages Per default the message key is the canonical name o...
static fieldset($legend=false, $content=false, $attribs=[])
Shortcut for creating fieldsets.
static closeElement($element)
Shortcut to close an XML element.
msg()
Get a Message object with context set Parameters are the same as wfMessage()
Parent class for all special pages.
wfMergeErrorArrays()
Merge arrays in the style of getUserPermissionsErrors, with duplicate removal e.g.
getMappingFormPart($sourceName)
static option($text, $value=null, $selected=false, $attribs=[])
Convenience function to build an HTML drop-down list item.
static newNullRevision($dbw, $pageId, $summary, $minor, $user=null)
Create a new null-revision for insertion into a page's history.
static openElement($element, $attribs=null)
This opens an XML element.
setHeaders()
Sets headers - this should be called from the execute() method of all derived classes! ...
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
static newFromInterwiki($interwiki, $page, $history=false, $templates=false, $pageLinkDepth=0)
namespace and then decline to actually register it file or subcat img or subcat $title
static linkKnown($target, $html=null, $customAttribs=[], $query=[], $options=[ 'known'])
Identical to link(), except $options defaults to 'known'.
__construct()
Constructor.
static newGood($value=null)
Factory function for good results.
static run($event, array $args=[], $deprecatedVersion=null)
Call hook functions defined in Hooks::register and $wgHooks.
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
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
please add to it if you re going to add events to the MediaWiki code where normally authentication against an external auth plugin would be creating a local account $user
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
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
static tags($element, $attribs=null, $contents)
Same as Xml::element(), but does not escape contents.
reportPage($title, $foreignTitle, $revisionCount, $successCount, $pageInfo)
Class for creating log entries manually, to inject them into the database.
error also a ContextSource you ll probably need to make sure the header is varied on $request
useTransactionalTimeLimit()
Call wfTransactionalTimeLimit() if this request was POSTed.
getUser()
Shortcut to get the User executing this instance.
getConfig()
Shortcut to get main config object.
Show an error when a user tries to do something they do not have the necessary permissions for...
$mOriginalPageOutCallback
static checkLabel($label, $name, $id, $checked=false, $attribs=[])
Convenience function to build an HTML checkbox with a label.
static newFromUpload($fieldname="xmlimport")
getRequest()
Get the WebRequest being used for this instance.
checkReadOnly()
If the wiki is currently in readonly mode, throws a ReadOnlyError.
static element($element, $attribs=[], $contents= '')
Identical to rawElement(), but HTML-escapes $contents (like Xml::element()).
getUser()
Get the User object.
do that in ParserLimitReportFormat instead use this to modify the parameters of the image and a DIV can begin in one section and end in another Make sure your code can handle that case gracefully See the EditSectionClearerLink extension for an example zero but section is usually empty its values are the globals values before the output is cached $page
getPageTitle($subpage=false)
Get a self-referential title object.
static namespaceSelector(array $params=[], array $selectAttribs=[])
Build a drop-down box for selecting a namespace.
getOutput()
Get the OutputPage object.