MediaWiki  1.28.1
NamespaceAwareForeignTitleFactory.php
Go to the documentation of this file.
1 <?php
30  protected $foreignNamespaces;
35 
41  private function normalizeNamespaceName( $name ) {
42  return strtolower( str_replace( ' ', '_', $name ) );
43  }
44 
52  public function __construct( $foreignNamespaces ) {
53  $this->foreignNamespaces = $foreignNamespaces;
54  if ( !is_null( $foreignNamespaces ) ) {
55  $this->foreignNamespacesFlipped = [];
56  foreach ( $foreignNamespaces as $id => $name ) {
57  $newKey = self::normalizeNamespaceName( $name );
58  $this->foreignNamespacesFlipped[$newKey] = $id;
59  }
60  }
61  }
62 
72  public function createForeignTitle( $title, $ns = null ) {
73  // Export schema version 0.5 and earlier (MW 1.18 and earlier) does not
74  // contain a <ns> tag, so we need to be able to handle that case.
75  if ( is_null( $ns ) ) {
76  return self::parseTitleNoNs( $title );
77  } else {
78  return self::parseTitleWithNs( $title, $ns );
79  }
80  }
81 
88  protected function parseTitleNoNs( $title ) {
89  $pieces = explode( ':', $title, 2 );
90  $key = self::normalizeNamespaceName( $pieces[0] );
91 
92  // Does the part before the colon match a known namespace? Check the
93  // foreign namespaces
94  $isNamespacePartValid = isset( $this->foreignNamespacesFlipped[$key] );
95 
96  if ( count( $pieces ) === 2 && $isNamespacePartValid ) {
97  list( $namespaceName, $pageName ) = $pieces;
98  $ns = $this->foreignNamespacesFlipped[$key];
99  } else {
100  $namespaceName = '';
101  $pageName = $title;
102  $ns = 0;
103  }
104 
105  return new ForeignTitle( $ns, $namespaceName, $pageName );
106  }
107 
115  protected function parseTitleWithNs( $title, $ns ) {
116  $pieces = explode( ':', $title, 2 );
117 
118  if ( isset( $this->foreignNamespaces[$ns] ) ) {
119  $namespaceName = $this->foreignNamespaces[$ns];
120  } else {
121  $namespaceName = $ns == '0' ? '' : $pieces[0];
122  }
123 
124  // We assume that the portion of the page title before the colon is the
125  // namespace name, except in the case of namespace 0
126  if ( $ns != '0' ) {
127  $pageName = $pieces[1];
128  } else {
129  $pageName = $title;
130  }
131 
132  return new ForeignTitle( $ns, $namespaceName, $pageName );
133  }
134 }
A parser that translates page titles on a foreign wiki into ForeignTitle objects, using information a...
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
parseTitleNoNs($title)
Helper function to parse the title when the namespace ID is not specified.
A parser that translates page titles into ForeignTitle objects.
namespace and then decline to actually register it file or subcat img or subcat $title
Definition: hooks.txt:953
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
Definition: distributors.txt:9
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:35
parseTitleWithNs($title, $ns)
Helper function to parse the title when the namespace value is known.
normalizeNamespaceName($name)
Normalizes an array name for $foreignNamespacesFlipped.
A simple, immutable structure to hold the title of a page on a foreign MediaWiki installation.
createForeignTitle($title, $ns=null)
Creates a ForeignTitle object based on the page title, and optionally the namespace ID...
Allows to change the fields on the form that will be generated $name
Definition: hooks.txt:300