Merge "Selenium: replace UserLoginPage with BlankPage where possible"
[lhc/web/wiklou.git] / includes / title / MediaWikiTitleCodec.php
1 <?php
2 /**
3 * A codec for MediaWiki page titles.
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
19 *
20 * @file
21 * @author Daniel Kinzler
22 */
23 use MediaWiki\Interwiki\InterwikiLookup;
24 use MediaWiki\MediaWikiServices;
25 use MediaWiki\Linker\LinkTarget;
26
27 /**
28 * A codec for MediaWiki page titles.
29 *
30 * @note Normalization and validation is applied while parsing, not when formatting.
31 * It's possible to construct a TitleValue with an invalid title, and use MediaWikiTitleCodec
32 * to generate an (invalid) title string from it. TitleValues should be constructed only
33 * via parseTitle() or from a (semi)trusted source, such as the database.
34 *
35 * @see https://www.mediawiki.org/wiki/Requests_for_comment/TitleValue
36 * @since 1.23
37 */
38 class MediaWikiTitleCodec implements TitleFormatter, TitleParser {
39 /**
40 * @var Language
41 */
42 protected $language;
43
44 /**
45 * @var GenderCache
46 */
47 protected $genderCache;
48
49 /**
50 * @var string[]
51 */
52 protected $localInterwikis;
53
54 /**
55 * @var InterwikiLookup
56 */
57 protected $interwikiLookup;
58
59 /**
60 * @var NamespaceInfo
61 */
62 protected $nsInfo;
63
64 /**
65 * @param Language $language The language object to use for localizing namespace names.
66 * @param GenderCache $genderCache The gender cache for generating gendered namespace names
67 * @param string[]|string $localInterwikis
68 * @param InterwikiLookup|null $interwikiLookup
69 * @param NamespaceInfo|null $nsInfo
70 */
71 public function __construct( Language $language, GenderCache $genderCache,
72 $localInterwikis = [], InterwikiLookup $interwikiLookup = null,
73 NamespaceInfo $nsInfo = null
74 ) {
75 if ( !$interwikiLookup ) {
76 wfDeprecated( __METHOD__ . ' with no InterwikiLookup argument', '1.34' );
77 $interwikiLookup = MediaWikiServices::getInstance()->getInterwikiLookup();
78 }
79 if ( !$nsInfo ) {
80 wfDeprecated( __METHOD__ . ' with no NamespaceInfo argument', '1.34' );
81 $nsInfo = MediaWikiServices::getInstance()->getNamespaceInfo();
82 }
83 $this->language = $language;
84 $this->genderCache = $genderCache;
85 $this->localInterwikis = (array)$localInterwikis;
86 $this->interwikiLookup = $interwikiLookup;
87 $this->nsInfo = $nsInfo;
88 }
89
90 /**
91 * @see TitleFormatter::getNamespaceName()
92 *
93 * @param int $namespace
94 * @param string $text
95 *
96 * @throws InvalidArgumentException If the namespace is invalid
97 * @return string Namespace name with underscores (not spaces)
98 */
99 public function getNamespaceName( $namespace, $text ) {
100 if ( $this->language->needsGenderDistinction() &&
101 $this->nsInfo->hasGenderDistinction( $namespace )
102 ) {
103 // NOTE: we are assuming here that the title text is a user name!
104 $gender = $this->genderCache->getGenderOf( $text, __METHOD__ );
105 $name = $this->language->getGenderNsText( $namespace, $gender );
106 } else {
107 $name = $this->language->getNsText( $namespace );
108 }
109
110 if ( $name === false ) {
111 throw new InvalidArgumentException( 'Unknown namespace ID: ' . $namespace );
112 }
113
114 return $name;
115 }
116
117 /**
118 * @see TitleFormatter::formatTitle()
119 *
120 * @param int|bool $namespace The namespace ID (or false, if the namespace should be ignored)
121 * @param string $text The page title. Should be valid. Only minimal normalization is applied.
122 * Underscores will be replaced.
123 * @param string $fragment The fragment name (may be empty).
124 * @param string $interwiki The interwiki name (may be empty).
125 *
126 * @throws InvalidArgumentException If the namespace is invalid
127 * @return string
128 */
129 public function formatTitle( $namespace, $text, $fragment = '', $interwiki = '' ) {
130 $out = '';
131 if ( $interwiki !== '' ) {
132 $out = $interwiki . ':';
133 }
134
135 if ( $namespace != 0 ) {
136 try {
137 $nsName = $this->getNamespaceName( $namespace, $text );
138 } catch ( InvalidArgumentException $e ) {
139 // See T165149. Awkward, but better than erroneously linking to the main namespace.
140 $nsName = $this->language->getNsText( NS_SPECIAL ) . ":Badtitle/NS{$namespace}";
141 }
142
143 $out .= $nsName . ':';
144 }
145 $out .= $text;
146
147 if ( $fragment !== '' ) {
148 $out .= '#' . $fragment;
149 }
150
151 $out = str_replace( '_', ' ', $out );
152
153 return $out;
154 }
155
156 /**
157 * Parses the given text and constructs a TitleValue.
158 *
159 * @param string $text The text to parse
160 * @param int $defaultNamespace Namespace to assume per default (usually NS_MAIN)
161 *
162 * @throws MalformedTitleException
163 * @return TitleValue
164 */
165 public function parseTitle( $text, $defaultNamespace = NS_MAIN ) {
166 // Convert things like &eacute; &#257; or &#x3017; into normalized (T16952) text
167 $filteredText = Sanitizer::decodeCharReferencesAndNormalize( $text );
168
169 // NOTE: this is an ugly cludge that allows this class to share the
170 // code for parsing with the old Title class. The parser code should
171 // be refactored to avoid this.
172 $parts = $this->splitTitleString( $filteredText, $defaultNamespace );
173
174 // Fragment-only is okay, but only with no namespace
175 if ( $parts['dbkey'] === '' &&
176 ( $parts['fragment'] === '' || $parts['namespace'] !== NS_MAIN ) ) {
177 throw new MalformedTitleException( 'title-invalid-empty', $text );
178 }
179
180 return new TitleValue(
181 $parts['namespace'],
182 $parts['dbkey'],
183 $parts['fragment'],
184 $parts['interwiki']
185 );
186 }
187
188 /**
189 * @see TitleFormatter::getText()
190 *
191 * @param LinkTarget $title
192 *
193 * @return string $title->getText()
194 */
195 public function getText( LinkTarget $title ) {
196 return $title->getText();
197 }
198
199 /**
200 * @see TitleFormatter::getText()
201 *
202 * @param LinkTarget $title
203 *
204 * @return string
205 */
206 public function getPrefixedText( LinkTarget $title ) {
207 if ( !isset( $title->prefixedText ) ) {
208 $title->prefixedText = $this->formatTitle(
209 $title->getNamespace(),
210 $title->getText(),
211 '',
212 $title->getInterwiki()
213 );
214 }
215
216 return $title->prefixedText;
217 }
218
219 /**
220 * @since 1.27
221 * @see TitleFormatter::getPrefixedDBkey()
222 * @param LinkTarget $target
223 * @return string
224 */
225 public function getPrefixedDBkey( LinkTarget $target ) {
226 return strtr( $this->formatTitle(
227 $target->getNamespace(),
228 $target->getDBkey(),
229 '',
230 $target->getInterwiki()
231 ), ' ', '_' );
232 }
233
234 /**
235 * @see TitleFormatter::getText()
236 *
237 * @param LinkTarget $title
238 *
239 * @return string
240 */
241 public function getFullText( LinkTarget $title ) {
242 return $this->formatTitle(
243 $title->getNamespace(),
244 $title->getText(),
245 $title->getFragment(),
246 $title->getInterwiki()
247 );
248 }
249
250 /**
251 * Normalizes and splits a title string.
252 *
253 * This function removes illegal characters, splits off the interwiki and
254 * namespace prefixes, sets the other forms, and canonicalizes
255 * everything.
256 *
257 * @todo this method is only exposed as a temporary measure to ease refactoring.
258 * It was copied with minimal changes from Title::secureAndSplit().
259 *
260 * @todo This method should be split up and an appropriate interface
261 * defined for use by the Title class.
262 *
263 * @param string $text
264 * @param int $defaultNamespace
265 *
266 * @throws MalformedTitleException If $text is not a valid title string.
267 * @return array A map with the fields 'interwiki', 'fragment', 'namespace',
268 * 'user_case_dbkey', and 'dbkey'.
269 */
270 public function splitTitleString( $text, $defaultNamespace = NS_MAIN ) {
271 $dbkey = str_replace( ' ', '_', $text );
272
273 # Initialisation
274 $parts = [
275 'interwiki' => '',
276 'local_interwiki' => false,
277 'fragment' => '',
278 'namespace' => $defaultNamespace,
279 'dbkey' => $dbkey,
280 'user_case_dbkey' => $dbkey,
281 ];
282
283 # Strip Unicode bidi override characters.
284 # Sometimes they slip into cut-n-pasted page titles, where the
285 # override chars get included in list displays.
286 $dbkey = preg_replace( '/[\x{200E}\x{200F}\x{202A}-\x{202E}]+/u', '', $dbkey );
287
288 # Clean up whitespace
289 # Note: use of the /u option on preg_replace here will cause
290 # input with invalid UTF-8 sequences to be nullified out in PHP 5.2.x,
291 # conveniently disabling them.
292 $dbkey = preg_replace(
293 '/[ _\xA0\x{1680}\x{180E}\x{2000}-\x{200A}\x{2028}\x{2029}\x{202F}\x{205F}\x{3000}]+/u',
294 '_',
295 $dbkey
296 );
297 $dbkey = trim( $dbkey, '_' );
298
299 if ( strpos( $dbkey, UtfNormal\Constants::UTF8_REPLACEMENT ) !== false ) {
300 # Contained illegal UTF-8 sequences or forbidden Unicode chars.
301 throw new MalformedTitleException( 'title-invalid-utf8', $text );
302 }
303
304 $parts['dbkey'] = $dbkey;
305
306 # Initial colon indicates main namespace rather than specified default
307 # but should not create invalid {ns,title} pairs such as {0,Project:Foo}
308 if ( $dbkey !== '' && $dbkey[0] == ':' ) {
309 $parts['namespace'] = NS_MAIN;
310 $dbkey = substr( $dbkey, 1 ); # remove the colon but continue processing
311 $dbkey = trim( $dbkey, '_' ); # remove any subsequent whitespace
312 }
313
314 if ( $dbkey == '' ) {
315 throw new MalformedTitleException( 'title-invalid-empty', $text );
316 }
317
318 # Namespace or interwiki prefix
319 $prefixRegexp = "/^(.+?)_*:_*(.*)$/S";
320 do {
321 $m = [];
322 if ( preg_match( $prefixRegexp, $dbkey, $m ) ) {
323 $p = $m[1];
324 $ns = $this->language->getNsIndex( $p );
325 if ( $ns !== false ) {
326 # Ordinary namespace
327 $dbkey = $m[2];
328 $parts['namespace'] = $ns;
329 # For Talk:X pages, check if X has a "namespace" prefix
330 if ( $ns == NS_TALK && preg_match( $prefixRegexp, $dbkey, $x ) ) {
331 if ( $this->language->getNsIndex( $x[1] ) ) {
332 # Disallow Talk:File:x type titles...
333 throw new MalformedTitleException( 'title-invalid-talk-namespace', $text );
334 } elseif ( $this->interwikiLookup->isValidInterwiki( $x[1] ) ) {
335 # Disallow Talk:Interwiki:x type titles...
336 throw new MalformedTitleException( 'title-invalid-talk-namespace', $text );
337 }
338 }
339 } elseif ( $this->interwikiLookup->isValidInterwiki( $p ) ) {
340 # Interwiki link
341 $dbkey = $m[2];
342 $parts['interwiki'] = $this->language->lc( $p );
343
344 # Redundant interwiki prefix to the local wiki
345 foreach ( $this->localInterwikis as $localIW ) {
346 if ( strcasecmp( $parts['interwiki'], $localIW ) == 0 ) {
347 if ( $dbkey == '' ) {
348 # Empty self-links should point to the Main Page, to ensure
349 # compatibility with cross-wiki transclusions and the like.
350 $mainPage = Title::newMainPage();
351 return [
352 'interwiki' => $mainPage->getInterwiki(),
353 'local_interwiki' => true,
354 'fragment' => $mainPage->getFragment(),
355 'namespace' => $mainPage->getNamespace(),
356 'dbkey' => $mainPage->getDBkey(),
357 'user_case_dbkey' => $mainPage->getUserCaseDBKey()
358 ];
359 }
360 $parts['interwiki'] = '';
361 # local interwikis should behave like initial-colon links
362 $parts['local_interwiki'] = true;
363
364 # Do another namespace split...
365 continue 2;
366 }
367 }
368
369 # If there's an initial colon after the interwiki, that also
370 # resets the default namespace
371 if ( $dbkey !== '' && $dbkey[0] == ':' ) {
372 $parts['namespace'] = NS_MAIN;
373 $dbkey = substr( $dbkey, 1 );
374 $dbkey = trim( $dbkey, '_' );
375 }
376 }
377 # If there's no recognized interwiki or namespace,
378 # then let the colon expression be part of the title.
379 }
380 break;
381 } while ( true );
382
383 $fragment = strstr( $dbkey, '#' );
384 if ( $fragment !== false ) {
385 $parts['fragment'] = str_replace( '_', ' ', substr( $fragment, 1 ) );
386 $dbkey = substr( $dbkey, 0, strlen( $dbkey ) - strlen( $fragment ) );
387 # remove whitespace again: prevents "Foo_bar_#"
388 # becoming "Foo_bar_"
389 $dbkey = preg_replace( '/_*$/', '', $dbkey );
390 }
391
392 # Reject illegal characters.
393 $rxTc = self::getTitleInvalidRegex();
394 $matches = [];
395 if ( preg_match( $rxTc, $dbkey, $matches ) ) {
396 throw new MalformedTitleException( 'title-invalid-characters', $text, [ $matches[0] ] );
397 }
398
399 # Pages with "/./" or "/../" appearing in the URLs will often be un-
400 # reachable due to the way web browsers deal with 'relative' URLs.
401 # Also, they conflict with subpage syntax. Forbid them explicitly.
402 if (
403 strpos( $dbkey, '.' ) !== false &&
404 (
405 $dbkey === '.' || $dbkey === '..' ||
406 strpos( $dbkey, './' ) === 0 ||
407 strpos( $dbkey, '../' ) === 0 ||
408 strpos( $dbkey, '/./' ) !== false ||
409 strpos( $dbkey, '/../' ) !== false ||
410 substr( $dbkey, -2 ) == '/.' ||
411 substr( $dbkey, -3 ) == '/..'
412 )
413 ) {
414 throw new MalformedTitleException( 'title-invalid-relative', $text );
415 }
416
417 # Magic tilde sequences? Nu-uh!
418 if ( strpos( $dbkey, '~~~' ) !== false ) {
419 throw new MalformedTitleException( 'title-invalid-magic-tilde', $text );
420 }
421
422 # Limit the size of titles to 255 bytes. This is typically the size of the
423 # underlying database field. We make an exception for special pages, which
424 # don't need to be stored in the database, and may edge over 255 bytes due
425 # to subpage syntax for long titles, e.g. [[Special:Block/Long name]]
426 $maxLength = ( $parts['namespace'] != NS_SPECIAL ) ? 255 : 512;
427 if ( strlen( $dbkey ) > $maxLength ) {
428 throw new MalformedTitleException( 'title-invalid-too-long', $text,
429 [ Message::numParam( $maxLength ) ] );
430 }
431
432 # Normally, all wiki links are forced to have an initial capital letter so [[foo]]
433 # and [[Foo]] point to the same place. Don't force it for interwikis, since the
434 # other site might be case-sensitive.
435 $parts['user_case_dbkey'] = $dbkey;
436 if ( $parts['interwiki'] === '' ) {
437 $dbkey = Title::capitalize( $dbkey, $parts['namespace'] );
438 }
439
440 # Can't make a link to a namespace alone... "empty" local links can only be
441 # self-links with a fragment identifier.
442 if ( $dbkey == '' && $parts['interwiki'] === '' && $parts['namespace'] != NS_MAIN ) {
443 throw new MalformedTitleException( 'title-invalid-empty', $text );
444 }
445
446 // Allow IPv6 usernames to start with '::' by canonicalizing IPv6 titles.
447 // IP names are not allowed for accounts, and can only be referring to
448 // edits from the IP. Given '::' abbreviations and caps/lowercaps,
449 // there are numerous ways to present the same IP. Having sp:contribs scan
450 // them all is silly and having some show the edits and others not is
451 // inconsistent. Same for talk/userpages. Keep them normalized instead.
452 if ( $parts['namespace'] == NS_USER || $parts['namespace'] == NS_USER_TALK ) {
453 $dbkey = IP::sanitizeIP( $dbkey );
454 }
455
456 // Any remaining initial :s are illegal.
457 if ( $dbkey !== '' && $dbkey[0] == ':' ) {
458 throw new MalformedTitleException( 'title-invalid-leading-colon', $text );
459 }
460
461 # Fill fields
462 $parts['dbkey'] = $dbkey;
463
464 return $parts;
465 }
466
467 /**
468 * Returns a simple regex that will match on characters and sequences invalid in titles.
469 * Note that this doesn't pick up many things that could be wrong with titles, but that
470 * replacing this regex with something valid will make many titles valid.
471 * Previously Title::getTitleInvalidRegex()
472 *
473 * @return string Regex string
474 * @since 1.25
475 */
476 public static function getTitleInvalidRegex() {
477 static $rxTc = false;
478 if ( !$rxTc ) {
479 # Matching titles will be held as illegal.
480 $rxTc = '/' .
481 # Any character not allowed is forbidden...
482 '[^' . Title::legalChars() . ']' .
483 # URL percent encoding sequences interfere with the ability
484 # to round-trip titles -- you can't link to them consistently.
485 '|%[0-9A-Fa-f]{2}' .
486 # XML/HTML character references produce similar issues.
487 '|&[A-Za-z0-9\x80-\xff]+;' .
488 '|&#[0-9]+;' .
489 '|&#x[0-9A-Fa-f]+;' .
490 '/S';
491 }
492
493 return $rxTc;
494 }
495 }