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' ) ) ) {
133 $source = Status::newFatal(
'import-token-mismatch' );
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 ) ) {
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" );
161 $this->frompage =
$request->getText(
"frompage" );
162 $this->includeTemplates =
$request->getCheck(
'interwikiTemplates' );
164 $this->fullInterwikiPrefix,
167 $this->includeTemplates,
168 $this->pageLinkDepth );
172 $source = Status::newFatal(
"importunknownsource" );
178 "<p class=\"error\">\n$1\n</p>",
179 [
'importfailed',
$source->getWikiText() ]
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" );
206 $this->fullInterwikiPrefix,
214 $importer->doImport();
215 }
catch ( Exception
$e ) {
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'>" .
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 ) ) {
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 );
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() );
584 public function reportPage( $title, $foreignTitle, $revisionCount,
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 ) {
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()
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 );
635 $latest =
$title->getLatestRevID();
644 if ( !is_null( $nullRevision ) ) {
645 $nullRevision->insertOn( $dbw );
648 $page->updateRevisionOn( $dbw, $nullRevision );
650 'NewRevisionFromEditComplete',
656 $this->
msg(
'import-nonewrevisions' )->escaped() .
"</li>\n" );
662 if ( $this->mLogItemCount > 0 ) {
663 $msg = $this->
msg(
'imported-log-entries' )->numParams( $this->mLogItemCount )->parse();
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 );
wfGetDB( $db, $groups=[], $wiki=false)
Get a Database object.
wfMergeErrorArrays()
Merge arrays in the style of getUserPermissionsErrors, with duplicate removal e.g.
The simplest way of implementing IContextSource is to hold a RequestContext as a member variable and ...
getUser()
Get the User object.
msg()
Get a Message object with context set Parameters are the same as wfMessage()
getOutput()
Get the OutputPage object.
static element( $element, $attribs=[], $contents='')
Identical to rawElement(), but HTML-escapes $contents (like Xml::element()).
static input( $name, $value='', $type='text', array $attribs=[])
Convenience function to produce an "<input>" element.
static namespaceSelector(array $params=[], array $selectAttribs=[])
Build a drop-down box for selecting a namespace.
static hidden( $name, $value, array $attribs=[])
Convenience function to produce an input element with type=hidden.
reportNotice( $msg, array $params)
$mOriginalPageOutCallback
reportPage( $title, $foreignTitle, $revisionCount, $successCount, $pageInfo)
__construct( $importer, $upload, $interwiki, $reason=false)
static newFromInterwiki( $interwiki, $page, $history=false, $templates=false, $pageLinkDepth=0)
static newFromUpload( $fieldname="xmlimport")
static tooltipAndAccesskeyAttribs( $name, array $msgParams=[])
Returns the attributes for the tooltip and access key.
static linkKnown( $target, $html=null, $customAttribs=[], $query=[], $options=[ 'known', 'noclasses'])
Identical to link(), except $options defaults to 'known'.
Class for creating log entries manually, to inject them into the database.
Show an error when a user tries to do something they do not have the necessary permissions for.
static newNullRevision( $dbw, $pageId, $summary, $minor, $user=null)
Create a new null-revision for insertion into a page's history.
MediaWiki page data importer.
doesWrites()
Indicates whether this special page may perform database writes.
getMappingFormPart( $sourceName)
__construct()
Constructor.
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.
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.
msg()
Wrapper around wfMessage that sets the current context.
XML file reader for the page data importer.
static factory(Title $title)
Create a WikiPage object of the appropriate class for the given title.
static closeElement( $element)
Shortcut to close an XML element.
static label( $label, $id, $attribs=[])
Convenience function to build an HTML form label.
static openElement( $element, $attribs=null)
This opens an XML element.
static input( $name, $size=false, $value=false, $attribs=[])
Convenience function to build an HTML text input field.
static submitButton( $value, $attribs=[])
Convenience function to build an HTML submit button When $wgUseMediaWikiUIEverywhere is true it will ...
static option( $text, $value=null, $selected=false, $attribs=[])
Convenience function to build an HTML drop-down list item.
static checkLabel( $label, $name, $id, $checked=false, $attribs=[])
Convenience function to build an HTML checkbox with a label.
static tags( $element, $attribs=null, $contents)
Same as Xml::element(), but does not escape contents.
static radioLabel( $label, $name, $value, $id, $checked=false, $attribs=[])
Convenience function to build an HTML radio button with a label.
static fieldset( $legend=false, $content=false, $attribs=[])
Shortcut for creating fieldsets.
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
the array() calling protocol came about after MediaWiki 1.4rc1.
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
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
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
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':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
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
namespace and then decline to actually register it file or subcat img or subcat $title
error also a ContextSource you ll probably need to make sure the header is varied on $request
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
returning false will NOT prevent logging $e
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