MediaWiki REL1_31
NamespaceAwareForeignTitleFactory.php
Go to the documentation of this file.
1<?php
34
40 private function normalizeNamespaceName( $name ) {
41 return strtolower( str_replace( ' ', '_', $name ) );
42 }
43
51 public function __construct( $foreignNamespaces ) {
52 $this->foreignNamespaces = $foreignNamespaces;
53 if ( !is_null( $foreignNamespaces ) ) {
54 $this->foreignNamespacesFlipped = [];
55 foreach ( $foreignNamespaces as $id => $name ) {
56 $newKey = self::normalizeNamespaceName( $name );
57 $this->foreignNamespacesFlipped[$newKey] = $id;
58 }
59 }
60 }
61
71 public function createForeignTitle( $title, $ns = null ) {
72 // Export schema version 0.5 and earlier (MW 1.18 and earlier) does not
73 // contain a <ns> tag, so we need to be able to handle that case.
74 if ( is_null( $ns ) ) {
75 return self::parseTitleNoNs( $title );
76 } else {
77 return self::parseTitleWithNs( $title, $ns );
78 }
79 }
80
87 protected function parseTitleNoNs( $title ) {
88 $pieces = explode( ':', $title, 2 );
89 $key = self::normalizeNamespaceName( $pieces[0] );
90
91 // Does the part before the colon match a known namespace? Check the
92 // foreign namespaces
93 $isNamespacePartValid = isset( $this->foreignNamespacesFlipped[$key] );
94
95 if ( count( $pieces ) === 2 && $isNamespacePartValid ) {
96 list( $namespaceName, $pageName ) = $pieces;
97 $ns = $this->foreignNamespacesFlipped[$key];
98 } else {
99 $namespaceName = '';
100 $pageName = $title;
101 $ns = 0;
102 }
103
104 return new ForeignTitle( $ns, $namespaceName, $pageName );
105 }
106
114 protected function parseTitleWithNs( $title, $ns ) {
115 $pieces = explode( ':', $title, 2 );
116
117 // Is $title of the form Namespace:Title (true), or just Title (false)?
118 $titleIncludesNamespace = ( $ns != '0' && count( $pieces ) === 2 );
119
120 if ( isset( $this->foreignNamespaces[$ns] ) ) {
121 $namespaceName = $this->foreignNamespaces[$ns];
122 } else {
123 // If the foreign wiki is misconfigured, XML dumps can contain a page with
124 // a non-zero namespace ID, but whose title doesn't contain a colon
125 // (T114115). In those cases, output a made-up namespace name to avoid
126 // collisions. The ImportTitleFactory might replace this with something
127 // more appropriate.
128 $namespaceName = $titleIncludesNamespace ? $pieces[0] : "Ns$ns";
129 }
130
131 // We assume that the portion of the page title before the colon is the
132 // namespace name, except in the case of namespace 0.
133 if ( $titleIncludesNamespace ) {
134 $pageName = $pieces[1];
135 } else {
136 $pageName = $title;
137 }
138
139 return new ForeignTitle( $ns, $namespaceName, $pageName );
140 }
141}
A simple, immutable structure to hold the title of a page on a foreign MediaWiki installation.
A parser that translates page titles on a foreign wiki into ForeignTitle objects, using information a...
parseTitleWithNs( $title, $ns)
Helper function to parse the title when the namespace value is known.
parseTitleNoNs( $title)
Helper function to parse the title when the namespace ID is not specified.
createForeignTitle( $title, $ns=null)
Creates a ForeignTitle object based on the page title, and optionally the namespace ID,...
normalizeNamespaceName( $name)
Normalizes an array name for $foreignNamespacesFlipped.
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
namespace and then decline to actually register it file or subcat img or subcat $title
Definition hooks.txt:964
A parser that translates page titles into ForeignTitle objects.