Localisation updates from https://translatewiki.net.
[mediawiki.git] / includes / title / NamespaceAwareForeignTitleFactory.php
blob1943bf88f10a1f03f01504d149ff72883f0054c6
1 <?php
2 /**
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation; either version 2 of the License, or
6 * (at your option) any later version.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 * http://www.gnu.org/copyleft/gpl.html
18 * @file
21 namespace MediaWiki\Title;
23 /**
24 * A parser that translates page titles on a foreign wiki into ForeignTitle
25 * objects, using information about the namespace setup on the foreign site.
27 class NamespaceAwareForeignTitleFactory implements ForeignTitleFactory {
28 /**
29 * @var array
31 protected $foreignNamespaces;
32 /**
33 * @var array
35 private $foreignNamespacesFlipped;
37 /**
38 * Normalizes an array name for $foreignNamespacesFlipped.
39 * @param string $name
40 * @return string
42 private function normalizeNamespaceName( $name ) {
43 return strtolower( str_replace( ' ', '_', $name ) );
46 /**
47 * @param array|null $foreignNamespaces An array 'id' => 'name' which contains
48 * the complete namespace setup of the foreign wiki. Such data could be
49 * obtained from siteinfo/namespaces in an XML dump file, or by an action API
50 * query such as api.php?action=query&meta=siteinfo&siprop=namespaces. If
51 * this data is unavailable, use NaiveForeignTitleFactory instead.
53 public function __construct( $foreignNamespaces ) {
54 $this->foreignNamespaces = $foreignNamespaces;
55 if ( $foreignNamespaces !== null ) {
56 $this->foreignNamespacesFlipped = [];
57 foreach ( $foreignNamespaces as $id => $name ) {
58 $newKey = self::normalizeNamespaceName( $name );
59 $this->foreignNamespacesFlipped[$newKey] = $id;
64 /**
65 * Create a ForeignTitle object.
67 * Based on the page title and optionally the namespace ID, of a page on a foreign wiki.
68 * These values could be, for example, the `<title>` and `<ns>` attributes found in an
69 * XML dump.
71 * @param string $title The page title
72 * @param int|null $ns The namespace ID, or null if this data is not available
73 * @return ForeignTitle
75 public function createForeignTitle( $title, $ns = null ) {
76 // Export schema version 0.5 and earlier (MW 1.18 and earlier) does not
77 // contain a <ns> tag, so we need to be able to handle that case.
78 if ( $ns === null ) {
79 return self::parseTitleNoNs( $title );
80 } else {
81 return self::parseTitleWithNs( $title, $ns );
85 /**
86 * Helper function to parse the title when the namespace ID is not specified.
88 * @param string $title
89 * @return ForeignTitle
91 protected function parseTitleNoNs( $title ) {
92 $pieces = explode( ':', $title, 2 );
93 $key = self::normalizeNamespaceName( $pieces[0] );
95 // Does the part before the colon match a known namespace? Check the
96 // foreign namespaces
97 $isNamespacePartValid = isset( $this->foreignNamespacesFlipped[$key] );
99 if ( count( $pieces ) === 2 && $isNamespacePartValid ) {
100 [ $namespaceName, $pageName ] = $pieces;
101 $ns = $this->foreignNamespacesFlipped[$key];
102 } else {
103 $namespaceName = '';
104 $pageName = $title;
105 $ns = 0;
108 return new ForeignTitle( $ns, $namespaceName, $pageName );
112 * Helper function to parse the title when the namespace value is known.
114 * @param string $title
115 * @param int $ns
116 * @return ForeignTitle
118 protected function parseTitleWithNs( $title, $ns ) {
119 $pieces = explode( ':', $title, 2 );
121 // Is $title of the form Namespace:Title (true), or just Title (false)?
122 $titleIncludesNamespace = ( $ns != '0' && count( $pieces ) === 2 );
124 if ( isset( $this->foreignNamespaces[$ns] ) ) {
125 $namespaceName = $this->foreignNamespaces[$ns];
126 } else {
127 // If the foreign wiki is misconfigured, XML dumps can contain a page with
128 // a non-zero namespace ID, but whose title doesn't contain a colon
129 // (T114115). In those cases, output a made-up namespace name to avoid
130 // collisions. The ImportTitleFactory might replace this with something
131 // more appropriate.
132 $namespaceName = $titleIncludesNamespace ? $pieces[0] : "Ns$ns";
135 // We assume that the portion of the page title before the colon is the
136 // namespace name, except in the case of namespace 0.
137 if ( $titleIncludesNamespace ) {
138 $pageName = $pieces[1];
139 } else {
140 $pageName = $title;
143 return new ForeignTitle( $ns, $namespaceName, $pageName );
147 /** @deprecated class alias since 1.41 */
148 class_alias( NamespaceAwareForeignTitleFactory::class, 'NamespaceAwareForeignTitleFactory' );