MediaWiki REL1_29
MediaWikiTitleCodec.php
Go to the documentation of this file.
1<?php
27
43 protected $language;
44
48 protected $genderCache;
49
54
59
68 ) {
69 $this->language = $language;
70 $this->genderCache = $genderCache;
71 $this->localInterwikis = (array)$localInterwikis;
72 $this->interwikiLookup = $interwikiLookup ?:
73 MediaWikiServices::getInstance()->getInterwikiLookup();
74 }
75
85 public function getNamespaceName( $namespace, $text ) {
86 if ( $this->language->needsGenderDistinction() &&
87 MWNamespace::hasGenderDistinction( $namespace )
88 ) {
89
90 // NOTE: we are assuming here that the title text is a user name!
91 $gender = $this->genderCache->getGenderOf( $text, __METHOD__ );
92 $name = $this->language->getGenderNsText( $namespace, $gender );
93 } else {
94 $name = $this->language->getNsText( $namespace );
95 }
96
97 if ( $name === false ) {
98 throw new InvalidArgumentException( 'Unknown namespace ID: ' . $namespace );
99 }
100
101 return $name;
102 }
103
116 public function formatTitle( $namespace, $text, $fragment = '', $interwiki = '' ) {
117 if ( $namespace !== false ) {
118 // Try to get a namespace name, but fallback
119 // to empty string if it doesn't exist
120 try {
121 $nsName = $this->getNamespaceName( $namespace, $text );
122 } catch ( InvalidArgumentException $e ) {
123 $nsName = '';
124 }
125
126 if ( $namespace !== 0 ) {
127 $text = $nsName . ':' . $text;
128 }
129 }
130
131 if ( $fragment !== '' ) {
132 $text = $text . '#' . $fragment;
133 }
134
135 if ( $interwiki !== '' ) {
136 $text = $interwiki . ':' . $text;
137 }
138
139 $text = str_replace( '_', ' ', $text );
140
141 return $text;
142 }
143
154 public function parseTitle( $text, $defaultNamespace ) {
155 // NOTE: this is an ugly cludge that allows this class to share the
156 // code for parsing with the old Title class. The parser code should
157 // be refactored to avoid this.
158 $parts = $this->splitTitleString( $text, $defaultNamespace );
159
160 // Relative fragment links are not supported by TitleValue
161 if ( $parts['dbkey'] === '' ) {
162 throw new MalformedTitleException( 'title-invalid-empty', $text );
163 }
164
165 return new TitleValue(
166 $parts['namespace'],
167 $parts['dbkey'],
168 $parts['fragment'],
169 $parts['interwiki']
170 );
171 }
172
180 public function getText( LinkTarget $title ) {
181 return $this->formatTitle( false, $title->getText(), '' );
182 }
183
191 public function getPrefixedText( LinkTarget $title ) {
192 return $this->formatTitle(
193 $title->getNamespace(),
194 $title->getText(),
195 '',
196 $title->getInterwiki()
197 );
198 }
199
206 public function getPrefixedDBkey( LinkTarget $target ) {
207 $key = '';
208 if ( $target->isExternal() ) {
209 $key .= $target->getInterwiki() . ':';
210 }
211 // Try to get a namespace name, but fallback
212 // to empty string if it doesn't exist
213 try {
214 $nsName = $this->getNamespaceName(
215 $target->getNamespace(),
216 $target->getText()
217 );
218 } catch ( InvalidArgumentException $e ) {
219 $nsName = '';
220 }
221
222 if ( $target->getNamespace() !== 0 ) {
223 $key .= $nsName . ':';
224 }
225
226 $key .= $target->getText();
227
228 return strtr( $key, ' ', '_' );
229 }
230
238 public function getFullText( LinkTarget $title ) {
239 return $this->formatTitle(
240 $title->getNamespace(),
241 $title->getText(),
242 $title->getFragment(),
243 $title->getInterwiki()
244 );
245 }
246
267 public function splitTitleString( $text, $defaultNamespace = NS_MAIN ) {
268 $dbkey = str_replace( ' ', '_', $text );
269
270 # Initialisation
271 $parts = [
272 'interwiki' => '',
273 'local_interwiki' => false,
274 'fragment' => '',
275 'namespace' => $defaultNamespace,
276 'dbkey' => $dbkey,
277 'user_case_dbkey' => $dbkey,
278 ];
279
280 # Strip Unicode bidi override characters.
281 # Sometimes they slip into cut-n-pasted page titles, where the
282 # override chars get included in list displays.
283 $dbkey = preg_replace( '/\xE2\x80[\x8E\x8F\xAA-\xAE]/S', '', $dbkey );
284
285 # Clean up whitespace
286 # Note: use of the /u option on preg_replace here will cause
287 # input with invalid UTF-8 sequences to be nullified out in PHP 5.2.x,
288 # conveniently disabling them.
289 $dbkey = preg_replace(
290 '/[ _\xA0\x{1680}\x{180E}\x{2000}-\x{200A}\x{2028}\x{2029}\x{202F}\x{205F}\x{3000}]+/u',
291 '_',
292 $dbkey
293 );
294 $dbkey = trim( $dbkey, '_' );
295
296 if ( strpos( $dbkey, UtfNormal\Constants::UTF8_REPLACEMENT ) !== false ) {
297 # Contained illegal UTF-8 sequences or forbidden Unicode chars.
298 throw new MalformedTitleException( 'title-invalid-utf8', $text );
299 }
300
301 $parts['dbkey'] = $dbkey;
302
303 # Initial colon indicates main namespace rather than specified default
304 # but should not create invalid {ns,title} pairs such as {0,Project:Foo}
305 if ( $dbkey !== '' && ':' == $dbkey[0] ) {
306 $parts['namespace'] = NS_MAIN;
307 $dbkey = substr( $dbkey, 1 ); # remove the colon but continue processing
308 $dbkey = trim( $dbkey, '_' ); # remove any subsequent whitespace
309 }
310
311 if ( $dbkey == '' ) {
312 throw new MalformedTitleException( 'title-invalid-empty', $text );
313 }
314
315 # Namespace or interwiki prefix
316 $prefixRegexp = "/^(.+?)_*:_*(.*)$/S";
317 do {
318 $m = [];
319 if ( preg_match( $prefixRegexp, $dbkey, $m ) ) {
320 $p = $m[1];
321 $ns = $this->language->getNsIndex( $p );
322 if ( $ns !== false ) {
323 # Ordinary namespace
324 $dbkey = $m[2];
325 $parts['namespace'] = $ns;
326 # For Talk:X pages, check if X has a "namespace" prefix
327 if ( $ns == NS_TALK && preg_match( $prefixRegexp, $dbkey, $x ) ) {
328 if ( $this->language->getNsIndex( $x[1] ) ) {
329 # Disallow Talk:File:x type titles...
330 throw new MalformedTitleException( 'title-invalid-talk-namespace', $text );
331 } elseif ( $this->interwikiLookup->isValidInterwiki( $x[1] ) ) {
332 // TODO: get rid of global state!
333 # Disallow Talk:Interwiki:x type titles...
334 throw new MalformedTitleException( 'title-invalid-talk-namespace', $text );
335 }
336 }
337 } elseif ( $this->interwikiLookup->isValidInterwiki( $p ) ) {
338 # Interwiki link
339 $dbkey = $m[2];
340 $parts['interwiki'] = $this->language->lc( $p );
341
342 # Redundant interwiki prefix to the local wiki
343 foreach ( $this->localInterwikis as $localIW ) {
344 if ( 0 == strcasecmp( $parts['interwiki'], $localIW ) ) {
345 if ( $dbkey == '' ) {
346 # Empty self-links should point to the Main Page, to ensure
347 # compatibility with cross-wiki transclusions and the like.
348 $mainPage = Title::newMainPage();
349 return [
350 'interwiki' => $mainPage->getInterwiki(),
351 'local_interwiki' => true,
352 'fragment' => $mainPage->getFragment(),
353 'namespace' => $mainPage->getNamespace(),
354 'dbkey' => $mainPage->getDBkey(),
355 'user_case_dbkey' => $mainPage->getUserCaseDBKey()
356 ];
357 }
358 $parts['interwiki'] = '';
359 # local interwikis should behave like initial-colon links
360 $parts['local_interwiki'] = true;
361
362 # Do another namespace split...
363 continue 2;
364 }
365 }
366
367 # If there's an initial colon after the interwiki, that also
368 # resets the default namespace
369 if ( $dbkey !== '' && $dbkey[0] == ':' ) {
370 $parts['namespace'] = NS_MAIN;
371 $dbkey = substr( $dbkey, 1 );
372 }
373 }
374 # If there's no recognized interwiki or namespace,
375 # then let the colon expression be part of the title.
376 }
377 break;
378 } while ( true );
379
380 $fragment = strstr( $dbkey, '#' );
381 if ( false !== $fragment ) {
382 $parts['fragment'] = str_replace( '_', ' ', substr( $fragment, 1 ) );
383 $dbkey = substr( $dbkey, 0, strlen( $dbkey ) - strlen( $fragment ) );
384 # remove whitespace again: prevents "Foo_bar_#"
385 # becoming "Foo_bar_"
386 $dbkey = preg_replace( '/_*$/', '', $dbkey );
387 }
388
389 # Reject illegal characters.
391 $matches = [];
392 if ( preg_match( $rxTc, $dbkey, $matches ) ) {
393 throw new MalformedTitleException( 'title-invalid-characters', $text, [ $matches[0] ] );
394 }
395
396 # Pages with "/./" or "/../" appearing in the URLs will often be un-
397 # reachable due to the way web browsers deal with 'relative' URLs.
398 # Also, they conflict with subpage syntax. Forbid them explicitly.
399 if (
400 strpos( $dbkey, '.' ) !== false &&
401 (
402 $dbkey === '.' || $dbkey === '..' ||
403 strpos( $dbkey, './' ) === 0 ||
404 strpos( $dbkey, '../' ) === 0 ||
405 strpos( $dbkey, '/./' ) !== false ||
406 strpos( $dbkey, '/../' ) !== false ||
407 substr( $dbkey, -2 ) == '/.' ||
408 substr( $dbkey, -3 ) == '/..'
409 )
410 ) {
411 throw new MalformedTitleException( 'title-invalid-relative', $text );
412 }
413
414 # Magic tilde sequences? Nu-uh!
415 if ( strpos( $dbkey, '~~~' ) !== false ) {
416 throw new MalformedTitleException( 'title-invalid-magic-tilde', $text );
417 }
418
419 # Limit the size of titles to 255 bytes. This is typically the size of the
420 # underlying database field. We make an exception for special pages, which
421 # don't need to be stored in the database, and may edge over 255 bytes due
422 # to subpage syntax for long titles, e.g. [[Special:Block/Long name]]
423 $maxLength = ( $parts['namespace'] != NS_SPECIAL ) ? 255 : 512;
424 if ( strlen( $dbkey ) > $maxLength ) {
425 throw new MalformedTitleException( 'title-invalid-too-long', $text,
426 [ Message::numParam( $maxLength ) ] );
427 }
428
429 # Normally, all wiki links are forced to have an initial capital letter so [[foo]]
430 # and [[Foo]] point to the same place. Don't force it for interwikis, since the
431 # other site might be case-sensitive.
432 $parts['user_case_dbkey'] = $dbkey;
433 if ( $parts['interwiki'] === '' ) {
434 $dbkey = Title::capitalize( $dbkey, $parts['namespace'] );
435 }
436
437 # Can't make a link to a namespace alone... "empty" local links can only be
438 # self-links with a fragment identifier.
439 if ( $dbkey == '' && $parts['interwiki'] === '' ) {
440 if ( $parts['namespace'] != NS_MAIN ) {
441 throw new MalformedTitleException( 'title-invalid-empty', $text );
442 }
443 }
444
445 // Allow IPv6 usernames to start with '::' by canonicalizing IPv6 titles.
446 // IP names are not allowed for accounts, and can only be referring to
447 // edits from the IP. Given '::' abbreviations and caps/lowercaps,
448 // there are numerous ways to present the same IP. Having sp:contribs scan
449 // them all is silly and having some show the edits and others not is
450 // inconsistent. Same for talk/userpages. Keep them normalized instead.
451 if ( $parts['namespace'] == NS_USER || $parts['namespace'] == NS_USER_TALK ) {
452 $dbkey = IP::sanitizeIP( $dbkey );
453 }
454
455 // Any remaining initial :s are illegal.
456 if ( $dbkey !== '' && ':' == $dbkey[0] ) {
457 throw new MalformedTitleException( 'title-invalid-leading-colon', $text );
458 }
459
460 # Fill fields
461 $parts['dbkey'] = $dbkey;
462
463 return $parts;
464 }
465
475 public static function getTitleInvalidRegex() {
476 static $rxTc = false;
477 if ( !$rxTc ) {
478 # Matching titles will be held as illegal.
479 $rxTc = '/' .
480 # Any character not allowed is forbidden...
481 '[^' . Title::legalChars() . ']' .
482 # URL percent encoding sequences interfere with the ability
483 # to round-trip titles -- you can't link to them consistently.
484 '|%[0-9A-Fa-f]{2}' .
485 # XML/HTML character references produce similar issues.
486 '|&[A-Za-z0-9\x80-\xff]+;' .
487 '|&#[0-9]+;' .
488 '|&#x[0-9A-Fa-f]+;' .
489 '/S';
490 }
491
492 return $rxTc;
493 }
494}
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
Caches user genders when needed to use correct namespace aliases.
Internationalisation code.
Definition Language.php:35
MalformedTitleException is thrown when a TitleParser is unable to parse a title string.
A codec for MediaWiki page titles.
static getTitleInvalidRegex()
Returns a simple regex that will match on characters and sequences invalid in titles.
splitTitleString( $text, $defaultNamespace=NS_MAIN)
Normalizes and splits a title string.
getPrefixedDBkey(LinkTarget $target)
formatTitle( $namespace, $text, $fragment='', $interwiki='')
getFullText(LinkTarget $title)
InterwikiLookup $interwikiLookup
getNamespaceName( $namespace, $text)
getText(LinkTarget $title)
__construct(Language $language, GenderCache $genderCache, $localInterwikis=[], $interwikiLookup=null)
parseTitle( $text, $defaultNamespace)
Parses the given text and constructs a TitleValue.
getPrefixedText(LinkTarget $title)
MediaWikiServices is the service locator for the application scope of MediaWiki.
Represents a page (or page fragment) title within MediaWiki.
Unicode normalization routines for working with UTF-8 strings.
Definition UtfNormal.php:48
We use the convention $dbr for read and $dbw for write to help you keep track of whether the database object is a the world will explode Or to be a subsequent write query which succeeded on the master may fail when replicated to the slave due to a unique key collision Replication on the slave will stop and it may take hours to repair the database and get it back online Setting read_only in my cnf on the slave will avoid this but given the dire we prefer to have as many checks as possible We provide a but the wrapper functions like please read the documentation for except in special pages derived from QueryPage It s a common pitfall for new developers to submit code containing SQL queries which examine huge numbers of rows Remember that COUNT * is(N), counting rows in atable is like counting beans in a bucket.------------------------------------------------------------------------ Replication------------------------------------------------------------------------The largest installation of MediaWiki, Wikimedia, uses a large set ofslave MySQL servers replicating writes made to a master MySQL server. Itis important to understand the issues associated with this setup if youwant to write code destined for Wikipedia.It 's often the case that the best algorithm to use for a given taskdepends on whether or not replication is in use. Due to our unabashedWikipedia-centrism, we often just use the replication-friendly version, but if you like, you can use wfGetLB() ->getServerCount() > 1 tocheck to see if replication is in use.===Lag===Lag primarily occurs when large write queries are sent to the master.Writes on the master are executed in parallel, but they are executed inserial when they are replicated to the slaves. The master writes thequery to the binlog when the transaction is committed. The slaves pollthe binlog and start executing the query as soon as it appears. They canservice reads while they are performing a write query, but will not readanything more from the binlog and thus will perform no more writes. Thismeans that if the write query runs for a long time, the slaves will lagbehind the master for the time it takes for the write query to complete.Lag can be exacerbated by high read load. MediaWiki 's load balancer willstop sending reads to a slave when it is lagged by more than 30 seconds.If the load ratios are set incorrectly, or if there is too much loadgenerally, this may lead to a slave permanently hovering around 30seconds lag.If all slaves are lagged by more than 30 seconds, MediaWiki will stopwriting to the database. All edits and other write operations will berefused, with an error returned to the user. This gives the slaves achance to catch up. Before we had this mechanism, the slaves wouldregularly lag by several minutes, making review of recent editsdifficult.In addition to this, MediaWiki attempts to ensure that the user seesevents occurring on the wiki in chronological order. A few seconds of lagcan be tolerated, as long as the user sees a consistent picture fromsubsequent requests. This is done by saving the master binlog positionin the session, and then at the start of each request, waiting for theslave to catch up to that position before doing any reads from it. Ifthis wait times out, reads are allowed anyway, but the request isconsidered to be in "lagged slave mode". Lagged slave mode can bechecked by calling wfGetLB() ->getLaggedSlaveMode(). The onlypractical consequence at present is a warning displayed in the pagefooter.===Lag avoidance===To avoid excessive lag, queries which write large numbers of rows shouldbe split up, generally to write one row at a time. Multi-row INSERT ...SELECT queries are the worst offenders should be avoided altogether.Instead do the select first and then the insert.===Working with lag===Despite our best efforts, it 's not practical to guarantee a low-lagenvironment. Lag will usually be less than one second, but mayoccasionally be up to 30 seconds. For scalability, it 's very importantto keep load on the master low, so simply sending all your queries tothe master is not the answer. So when you have a genuine need forup-to-date data, the following approach is advised:1) Do a quick query to the master for a sequence number or timestamp 2) Run the full query on the slave and check if it matches the data you gotfrom the master 3) If it doesn 't, run the full query on the masterTo avoid swamping the master every time the slaves lag, use of thisapproach should be kept to a minimum. In most cases you should just readfrom the slave and let the user deal with the delay.------------------------------------------------------------------------ Lock contention------------------------------------------------------------------------Due to the high write rate on Wikipedia(and some other wikis), MediaWiki developers need to be very careful to structure their writesto avoid long-lasting locks. By default, MediaWiki opens a transactionat the first query, and commits it before the output is sent. Locks willbe held from the time when the query is done until the commit. So youcan reduce lock time by doing as much processing as possible before youdo your write queries.Often this approach is not good enough, and it becomes necessary toenclose small groups of queries in their own transaction. Use thefollowing syntax:$dbw=wfGetDB(DB_MASTER
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 but I prefer the flexibility This should also do the output encoding The system allocates a global one in $wgOut Title Represents the title of an and does all the work of translating among various forms such as plain URL
Definition design.txt:26
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_USER
Definition Defines.php:64
const NS_MAIN
Definition Defines.php:62
const NS_SPECIAL
Definition Defines.php:51
const NS_TALK
Definition Defines.php:63
const NS_USER_TALK
Definition Defines.php:65
the array() calling protocol came about after MediaWiki 1.4rc1.
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 after processing
Definition hooks.txt:1975
namespace and then decline to actually register it file or subcat img or subcat $title
Definition hooks.txt:964
Allows to change the fields on the form that will be generated $name
Definition hooks.txt:304
returning false will NOT prevent logging $e
Definition hooks.txt:2127
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
Service interface for looking up Interwiki records.
getInterwiki()
The interwiki component of this LinkTarget.
getNamespace()
Get the namespace index.
isExternal()
Whether this LinkTarget has an interwiki component.
getText()
Returns the link in text form, without namespace prefix or fragment.
A title formatter service for MediaWiki.
A title parser service for MediaWiki.