MediaWiki REL1_28
namespaceDupes.php
Go to the documentation of this file.
1<?php
28
29require_once __DIR__ . '/Maintenance.php';
30
38
42 protected $db;
43
44 private $resolvablePages = 0;
45 private $totalPages = 0;
46
47 private $resolvableLinks = 0;
48 private $totalLinks = 0;
49
50 public function __construct() {
51 parent::__construct();
52 $this->addDescription( 'Find and fix pages affected by namespace addition/removal' );
53 $this->addOption( 'fix', 'Attempt to automatically fix errors' );
54 $this->addOption( 'merge', "Instead of renaming conflicts, do a history merge with " .
55 "the correct title" );
56 $this->addOption( 'add-suffix', "Dupes will be renamed with correct namespace with " .
57 "<text> appended after the article name", false, true );
58 $this->addOption( 'add-prefix', "Dupes will be renamed with correct namespace with " .
59 "<text> prepended before the article name", false, true );
60 $this->addOption( 'source-pseudo-namespace', "Move all pages with the given source " .
61 "prefix (with an implied colon following it). If --dest-namespace is not specified, " .
62 "the colon will be replaced with a hyphen.",
63 false, true );
64 $this->addOption( 'dest-namespace', "In combination with --source-pseudo-namespace, " .
65 "specify the namespace ID of the destination.", false, true );
66 $this->addOption( 'move-talk', "If this is specified, pages in the Talk namespace that " .
67 "begin with a conflicting prefix will be renamed, for example " .
68 "Talk:File:Foo -> File_Talk:Foo" );
69 }
70
71 public function execute() {
72 $this->db = $this->getDB( DB_MASTER );
73
74 $options = [
75 'fix' => $this->hasOption( 'fix' ),
76 'merge' => $this->hasOption( 'merge' ),
77 'add-suffix' => $this->getOption( 'add-suffix', '' ),
78 'add-prefix' => $this->getOption( 'add-prefix', '' ),
79 'move-talk' => $this->hasOption( 'move-talk' ),
80 'source-pseudo-namespace' => $this->getOption( 'source-pseudo-namespace', '' ),
81 'dest-namespace' => intval( $this->getOption( 'dest-namespace', 0 ) ) ];
82
83 if ( $options['source-pseudo-namespace'] !== '' ) {
84 $retval = $this->checkPrefix( $options );
85 } else {
86 $retval = $this->checkAll( $options );
87 }
88
89 if ( $retval ) {
90 $this->output( "\nLooks good!\n" );
91 } else {
92 $this->output( "\nOh noeees\n" );
93 }
94 }
95
103 private function checkAll( $options ) {
105
106 $spaces = [];
107
108 // List interwikis first, so they'll be overridden
109 // by any conflicting local namespaces.
110 foreach ( $this->getInterwikiList() as $prefix ) {
111 $name = $wgContLang->ucfirst( $prefix );
112 $spaces[$name] = 0;
113 }
114
115 // Now pull in all canonical and alias namespaces...
116 foreach ( MWNamespace::getCanonicalNamespaces() as $ns => $name ) {
117 // This includes $wgExtraNamespaces
118 if ( $name !== '' ) {
119 $spaces[$name] = $ns;
120 }
121 }
122 foreach ( $wgContLang->getNamespaces() as $ns => $name ) {
123 if ( $name !== '' ) {
124 $spaces[$name] = $ns;
125 }
126 }
127 foreach ( $wgNamespaceAliases as $name => $ns ) {
128 $spaces[$name] = $ns;
129 }
130 foreach ( $wgContLang->getNamespaceAliases() as $name => $ns ) {
131 $spaces[$name] = $ns;
132 }
133
134 // We'll need to check for lowercase keys as well,
135 // since we're doing case-sensitive searches in the db.
136 foreach ( $spaces as $name => $ns ) {
137 $moreNames = [];
138 $moreNames[] = $wgContLang->uc( $name );
139 $moreNames[] = $wgContLang->ucfirst( $wgContLang->lc( $name ) );
140 $moreNames[] = $wgContLang->ucwords( $name );
141 $moreNames[] = $wgContLang->ucwords( $wgContLang->lc( $name ) );
142 $moreNames[] = $wgContLang->ucwordbreaks( $name );
143 $moreNames[] = $wgContLang->ucwordbreaks( $wgContLang->lc( $name ) );
144 if ( !$wgCapitalLinks ) {
145 foreach ( $moreNames as $altName ) {
146 $moreNames[] = $wgContLang->lcfirst( $altName );
147 }
148 $moreNames[] = $wgContLang->lcfirst( $name );
149 }
150 foreach ( array_unique( $moreNames ) as $altName ) {
151 if ( $altName !== $name ) {
152 $spaces[$altName] = $ns;
153 }
154 }
155 }
156
157 // Sort by namespace index, and if there are two with the same index,
158 // break the tie by sorting by name
159 $origSpaces = $spaces;
160 uksort( $spaces, function ( $a, $b ) use ( $origSpaces ) {
161 if ( $origSpaces[$a] < $origSpaces[$b] ) {
162 return -1;
163 } elseif ( $origSpaces[$a] > $origSpaces[$b] ) {
164 return 1;
165 } elseif ( $a < $b ) {
166 return -1;
167 } elseif ( $a > $b ) {
168 return 1;
169 } else {
170 return 0;
171 }
172 } );
173
174 $ok = true;
175 foreach ( $spaces as $name => $ns ) {
176 $ok = $this->checkNamespace( $ns, $name, $options ) && $ok;
177 }
178
179 $this->output( "{$this->totalPages} pages to fix, " .
180 "{$this->resolvablePages} were resolvable.\n\n" );
181
182 foreach ( $spaces as $name => $ns ) {
183 if ( $ns != 0 ) {
184 /* Fix up link destinations for non-interwiki links only.
185 *
186 * For example if a page has [[Foo:Bar]] and then a Foo namespace
187 * is introduced, pagelinks needs to be updated to have
188 * page_namespace = NS_FOO.
189 *
190 * If instead an interwiki prefix was introduced called "Foo",
191 * the link should instead be moved to the iwlinks table. If a new
192 * language is introduced called "Foo", or if there is a pagelink
193 * [[fr:Bar]] when interlanguage magic links are turned on, the
194 * link would have to be moved to the langlinks table. Let's put
195 * those cases in the too-hard basket for now. The consequences are
196 * not especially severe.
197 * @fixme Handle interwiki links, and pagelinks to Category:, File:
198 * which probably need reparsing.
199 */
200
201 $this->checkLinkTable( 'pagelinks', 'pl', $ns, $name, $options );
202 $this->checkLinkTable( 'templatelinks', 'tl', $ns, $name, $options );
203
204 // The redirect table has interwiki links randomly mixed in, we
205 // need to filter those out. For example [[w:Foo:Bar]] would
206 // have rd_interwiki=w and rd_namespace=0, which would match the
207 // query for a conflicting namespace "Foo" if filtering wasn't done.
208 $this->checkLinkTable( 'redirect', 'rd', $ns, $name, $options,
209 [ 'rd_interwiki' => null ] );
210 $this->checkLinkTable( 'redirect', 'rd', $ns, $name, $options,
211 [ 'rd_interwiki' => '' ] );
212 }
213 }
214
215 $this->output( "{$this->totalLinks} links to fix, " .
216 "{$this->resolvableLinks} were resolvable.\n" );
217
218 return $ok;
219 }
220
226 private function getInterwikiList() {
228 $prefixes = [];
229 foreach ( $result as $row ) {
230 $prefixes[] = $row['iw_prefix'];
231 }
232
233 return $prefixes;
234 }
235
244 private function checkNamespace( $ns, $name, $options ) {
245 $targets = $this->getTargetList( $ns, $name, $options );
246 $count = $targets->numRows();
247 $this->totalPages += $count;
248 if ( $count == 0 ) {
249 return true;
250 }
251
252 $dryRunNote = $options['fix'] ? '' : ' DRY RUN ONLY';
253
254 $ok = true;
255 foreach ( $targets as $row ) {
256
257 // Find the new title and determine the action to take
258
259 $newTitle = $this->getDestinationTitle( $ns, $name,
260 $row->page_namespace, $row->page_title, $options );
261 $logStatus = false;
262 if ( !$newTitle ) {
263 $logStatus = 'invalid title';
264 $action = 'abort';
265 } elseif ( $newTitle->exists() ) {
266 if ( $options['merge'] ) {
267 if ( $this->canMerge( $row->page_id, $newTitle, $logStatus ) ) {
268 $action = 'merge';
269 } else {
270 $action = 'abort';
271 }
272 } elseif ( $options['add-prefix'] == '' && $options['add-suffix'] == '' ) {
273 $action = 'abort';
274 $logStatus = 'dest title exists and --add-prefix not specified';
275 } else {
276 $newTitle = $this->getAlternateTitle( $newTitle, $options );
277 if ( !$newTitle ) {
278 $action = 'abort';
279 $logStatus = 'alternate title is invalid';
280 } elseif ( $newTitle->exists() ) {
281 $action = 'abort';
282 $logStatus = 'title conflict';
283 } else {
284 $action = 'move';
285 $logStatus = 'alternate';
286 }
287 }
288 } else {
289 $action = 'move';
290 $logStatus = 'no conflict';
291 }
292
293 // Take the action or log a dry run message
294
295 $logTitle = "id={$row->page_id} ns={$row->page_namespace} dbk={$row->page_title}";
296 $pageOK = true;
297
298 switch ( $action ) {
299 case 'abort':
300 $this->output( "$logTitle *** $logStatus\n" );
301 $pageOK = false;
302 break;
303 case 'move':
304 $this->output( "$logTitle -> " .
305 $newTitle->getPrefixedDBkey() . " ($logStatus)$dryRunNote\n" );
306
307 if ( $options['fix'] ) {
308 $pageOK = $this->movePage( $row->page_id, $newTitle );
309 }
310 break;
311 case 'merge':
312 $this->output( "$logTitle => " .
313 $newTitle->getPrefixedDBkey() . " (merge)$dryRunNote\n" );
314
315 if ( $options['fix'] ) {
316 $pageOK = $this->mergePage( $row, $newTitle );
317 }
318 break;
319 }
320
321 if ( $pageOK ) {
322 $this->resolvablePages++;
323 } else {
324 $ok = false;
325 }
326 }
327
328 return $ok;
329 }
330
340 private function checkLinkTable( $table, $fieldPrefix, $ns, $name, $options,
341 $extraConds = []
342 ) {
343 $batchConds = [];
344 $fromField = "{$fieldPrefix}_from";
345 $namespaceField = "{$fieldPrefix}_namespace";
346 $titleField = "{$fieldPrefix}_title";
347 $batchSize = 500;
348 while ( true ) {
349 $res = $this->db->select(
350 $table,
351 [ $fromField, $namespaceField, $titleField ],
352 array_merge( $batchConds, $extraConds, [
353 $namespaceField => 0,
354 $titleField . $this->db->buildLike( "$name:", $this->db->anyString() )
355 ] ),
356 __METHOD__,
357 [
358 'ORDER BY' => [ $titleField, $fromField ],
359 'LIMIT' => $batchSize
360 ]
361 );
362
363 if ( $res->numRows() == 0 ) {
364 break;
365 }
366 foreach ( $res as $row ) {
367 $logTitle = "from={$row->$fromField} ns={$row->$namespaceField} " .
368 "dbk={$row->$titleField}";
369 $destTitle = $this->getDestinationTitle( $ns, $name,
370 $row->$namespaceField, $row->$titleField, $options );
371 $this->totalLinks++;
372 if ( !$destTitle ) {
373 $this->output( "$table $logTitle *** INVALID\n" );
374 continue;
375 }
376 $this->resolvableLinks++;
377 if ( !$options['fix'] ) {
378 $this->output( "$table $logTitle -> " .
379 $destTitle->getPrefixedDBkey() . " DRY RUN\n" );
380 continue;
381 }
382
383 $this->db->update( $table,
384 // SET
385 [
386 $namespaceField => $destTitle->getNamespace(),
387 $titleField => $destTitle->getDBkey()
388 ],
389 // WHERE
390 [
391 $namespaceField => 0,
392 $titleField => $row->$titleField,
393 $fromField => $row->$fromField
394 ],
395 __METHOD__,
396 [ 'IGNORE' ]
397 );
398 $this->output( "$table $logTitle -> " .
399 $destTitle->getPrefixedDBkey() . "\n" );
400 }
401 $encLastTitle = $this->db->addQuotes( $row->$titleField );
402 $encLastFrom = $this->db->addQuotes( $row->$fromField );
403
404 $batchConds = [
405 "$titleField > $encLastTitle " .
406 "OR ($titleField = $encLastTitle AND $fromField > $encLastFrom)" ];
407
409 }
410 }
411
419 private function checkPrefix( $options ) {
420 $prefix = $options['source-pseudo-namespace'];
421 $ns = $options['dest-namespace'];
422 $this->output( "Checking prefix \"$prefix\" vs namespace $ns\n" );
423
424 return $this->checkNamespace( $ns, $prefix, $options );
425 }
426
437 private function getTargetList( $ns, $name, $options ) {
438 if ( $options['move-talk'] && MWNamespace::isSubject( $ns ) ) {
439 $checkNamespaces = [ NS_MAIN, NS_TALK ];
440 } else {
441 $checkNamespaces = NS_MAIN;
442 }
443
444 return $this->db->select( 'page',
445 [
446 'page_id',
447 'page_title',
448 'page_namespace',
449 ],
450 [
451 'page_namespace' => $checkNamespaces,
452 'page_title' . $this->db->buildLike( "$name:", $this->db->anyString() ),
453 ],
454 __METHOD__
455 );
456 }
457
467 private function getDestinationTitle( $ns, $name, $sourceNs, $sourceDbk, $options ) {
468 $dbk = substr( $sourceDbk, strlen( "$name:" ) );
469 if ( $ns == 0 ) {
470 // An interwiki; try an alternate encoding with '-' for ':'
471 $dbk = "$name-" . $dbk;
472 }
473 $destNS = $ns;
474 if ( $sourceNs == NS_TALK && MWNamespace::isSubject( $ns ) ) {
475 // This is an associated talk page moved with the --move-talk feature.
476 $destNS = MWNamespace::getTalk( $destNS );
477 }
478 $newTitle = Title::makeTitleSafe( $destNS, $dbk );
479 if ( !$newTitle || !$newTitle->canExist() ) {
480 return false;
481 }
482 return $newTitle;
483 }
484
493 private function getAlternateTitle( LinkTarget $linkTarget, $options ) {
494 $prefix = $options['add-prefix'];
495 $suffix = $options['add-suffix'];
496 if ( $prefix == '' && $suffix == '' ) {
497 return false;
498 }
499 while ( true ) {
500 $dbk = $prefix . $linkTarget->getDBkey() . $suffix;
501 $title = Title::makeTitleSafe( $linkTarget->getNamespace(), $dbk );
502 if ( !$title ) {
503 return false;
504 }
505 if ( !$title->exists() ) {
506 return $title;
507 }
508 }
509 }
510
518 private function movePage( $id, LinkTarget $newLinkTarget ) {
519 $this->db->update( 'page',
520 [
521 "page_namespace" => $newLinkTarget->getNamespace(),
522 "page_title" => $newLinkTarget->getDBkey(),
523 ],
524 [
525 "page_id" => $id,
526 ],
527 __METHOD__ );
528
529 // Update *_from_namespace in links tables
530 $fromNamespaceTables = [
531 [ 'pagelinks', 'pl' ],
532 [ 'templatelinks', 'tl' ],
533 [ 'imagelinks', 'il' ] ];
534 foreach ( $fromNamespaceTables as $tableInfo ) {
535 list( $table, $fieldPrefix ) = $tableInfo;
536 $this->db->update( $table,
537 // SET
538 [ "{$fieldPrefix}_from_namespace" => $newLinkTarget->getNamespace() ],
539 // WHERE
540 [ "{$fieldPrefix}_from" => $id ],
541 __METHOD__ );
542 }
543
544 return true;
545 }
546
559 private function canMerge( $id, LinkTarget $linkTarget, &$logStatus ) {
560 $latestDest = Revision::newFromTitle( $linkTarget, 0, Revision::READ_LATEST );
561 $latestSource = Revision::newFromPageId( $id, 0, Revision::READ_LATEST );
562 if ( $latestSource->getTimestamp() > $latestDest->getTimestamp() ) {
563 $logStatus = 'cannot merge since source is later';
564 return false;
565 } else {
566 return true;
567 }
568 }
569
577 private function mergePage( $row, Title $newTitle ) {
578 $id = $row->page_id;
579
580 // Construct the WikiPage object we will need later, while the
581 // page_id still exists. Note that this cannot use makeTitleSafe(),
582 // we are deliberately constructing an invalid title.
583 $sourceTitle = Title::makeTitle( $row->page_namespace, $row->page_title );
584 $sourceTitle->resetArticleID( $id );
585 $wikiPage = new WikiPage( $sourceTitle );
586 $wikiPage->loadPageData( 'fromdbmaster' );
587
588 $destId = $newTitle->getArticleID();
589 $this->beginTransaction( $this->db, __METHOD__ );
590 $this->db->update( 'revision',
591 // SET
592 [ 'rev_page' => $destId ],
593 // WHERE
594 [ 'rev_page' => $id ],
595 __METHOD__ );
596
597 $this->db->delete( 'page', [ 'page_id' => $id ], __METHOD__ );
598
599 $this->commitTransaction( $this->db, __METHOD__ );
600
601 /* Call LinksDeletionUpdate to delete outgoing links from the old title,
602 * and update category counts.
603 *
604 * Calling external code with a fake broken Title is a fairly dubious
605 * idea. It's necessary because it's quite a lot of code to duplicate,
606 * but that also makes it fragile since it would be easy for someone to
607 * accidentally introduce an assumption of title validity to the code we
608 * are calling.
609 */
610 DeferredUpdates::addUpdate( new LinksDeletionUpdate( $wikiPage ) );
611 DeferredUpdates::doUpdates();
612
613 return true;
614 }
615}
616
617$maintClass = "NamespaceConflictChecker";
618require_once RUN_MAINTENANCE_IF_MAIN;
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
$wgCapitalLinks
Set this to false to avoid forcing the first letter of links to capitals.
$wgNamespaceAliases
Namespace aliases.
wfWaitForSlaves( $ifWritesSince=null, $wiki=false, $cluster=false, $timeout=null)
Waits for the replica DBs to catch up to the master position.
Relational database abstraction object.
Definition Database.php:36
static getAllPrefixes( $local=null)
Returns all interwiki prefixes.
Update object handling the cleanup of links tables after a page was deleted.
Abstract maintenance class for quickly writing and churning out maintenance scripts with minimal effo...
beginTransaction(IDatabase $dbw, $fname)
Begin a transcation on a DB.
commitTransaction(IDatabase $dbw, $fname)
Commit the transcation on a DB handle and wait for replica DBs to catch up.
getDB( $db, $groups=[], $wiki=false)
Returns a database to be used by current maintenance script.
hasOption( $name)
Checks to see if a particular param exists.
addDescription( $text)
Set the description text.
addOption( $name, $description, $required=false, $withArg=false, $shortName=false, $multiOccurrence=false)
Add a parameter to the script.
getOption( $name, $default=null)
Get an option, or return the default.
Maintenance script that checks for articles to fix after adding/deleting namespaces.
checkLinkTable( $table, $fieldPrefix, $ns, $name, $options, $extraConds=[])
Check and repair the destination fields in a link table.
getAlternateTitle(LinkTarget $linkTarget, $options)
Get an alternative title to move a page to.
execute()
Do the actual work.
getDestinationTitle( $ns, $name, $sourceNs, $sourceDbk, $options)
Get the preferred destination title for a given target page.
movePage( $id, LinkTarget $newLinkTarget)
Move a page.
getInterwikiList()
Get the interwiki list.
checkNamespace( $ns, $name, $options)
Check a given prefix and try to move it into the given destination namespace.
canMerge( $id, LinkTarget $linkTarget, &$logStatus)
Determine if we can merge a page.
getTargetList( $ns, $name, $options)
Find pages in main and talk namespaces that have a prefix of the new namespace so we know titles that...
__construct()
Default constructor.
checkAll( $options)
Check all namespaces.
checkPrefix( $options)
Move the given pseudo-namespace, either replacing the colon with a hyphen (useful for pseudo-namespac...
mergePage( $row, Title $newTitle)
Merge page histories.
static newFromPageId( $pageId, $revId=0, $flags=0)
Load either the current, or a specified, revision that's attached to a given page ID.
Definition Revision.php:159
static newFromTitle(LinkTarget $linkTarget, $id=0, $flags=0)
Load either the current, or a specified, revision that's attached to a given link target.
Definition Revision.php:128
Represents a title within MediaWiki.
Definition Title.php:36
getArticleID( $flags=0)
Get the article ID for this Title from the link cache, adding it if necessary.
Definition Title.php:3209
Class representing a MediaWiki article and history.
Definition WikiPage.php:32
$res
Definition database.txt:21
deferred txt A few of the database updates required by various functions here can be deferred until after the result page is displayed to the user For updating the view updating the linked to tables after a etc PHP does not yet have any way to tell the server to actually return and disconnect while still running these but it might have such a feature in the future We handle these by creating a deferred update object and putting those objects on a global list
Definition deferred.txt:11
this class mediates it Skin Encapsulates a look and feel for the wiki All of the functions that render HTML and make choices about how to render it are here and are called from various other places when and is meant to be subclassed with other skins that may override some of its functions The User object contains a reference to a and so rather than having a global skin object we just rely on the global User and get the skin with $wgUser and also has some character encoding functions and other locale stuff The current user interface language is instantiated as and the local content language as $wgContLang
Definition design.txt:57
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 in any and then calling output() to send it all. It could be easily changed to send incrementally if that becomes useful
when a variable name is used in a it is silently declared as a new local masking the global
Definition design.txt:95
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
const NS_MAIN
Definition Defines.php:56
const NS_TALK
Definition Defines.php:57
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
Definition hooks.txt:1937
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 incomplete not yet checked for validity & $retval
Definition hooks.txt:268
namespace and then decline to actually register it file or subcat img or subcat $title
Definition hooks.txt:986
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set and then return false from the hook function Ensure you consume the ChangeTagAfterDelete hook to carry out custom deletion actions as context called by AbstractContent::getParserOutput May be used to override the normal model specific rendering of page content as context as context $options
Definition hooks.txt:1096
Allows to change the fields on the form that will be generated $name
Definition hooks.txt:304
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
Definition injection.txt:37
getNamespace()
Get the namespace index.
getDBkey()
Get the main part with underscores.
require_once RUN_MAINTENANCE_IF_MAIN
$maintClass
const DB_MASTER
Definition defines.php:23