3 * Provide things related to namespaces.
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.
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.
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
24 * This is a utility class with only static functions
25 * for dealing with namespaces that encodes all the
26 * "magic" behaviors of them based on index. The textual
27 * names of the namespaces are handled by Language.php.
29 * These are synonyms for the names given in the language file
30 * Users and translators should not change them
36 * These namespaces should always be first-letter capitalized, now and
37 * forevermore. Historically, they could've probably been lowercased too,
38 * but some things are just too ingrained now. :)
40 private static $alwaysCapitalizedNamespaces = array( NS_SPECIAL
, NS_USER
, NS_MEDIAWIKI
);
43 * Throw an exception when trying to get the subject or talk page
44 * for a given namespace where it does not make sense.
45 * Special namespaces are defined in includes/Defines.php and have
46 * a value below 0 (ex: NS_SPECIAL = -1 , NS_MEDIA = -2)
54 private static function isMethodValidFor( $index, $method ) {
55 if ( $index < NS_MAIN
) {
56 throw new MWException( "$method does not make any sense for given namespace $index" );
62 * Can pages in the given namespace be moved?
64 * @param int $index namespace index
67 public static function isMovable( $index ) {
68 global $wgAllowImageMoving;
70 $result = !( $index < NS_MAIN ||
( $index == NS_FILE
&& !$wgAllowImageMoving ) ||
$index == NS_CATEGORY
);
75 wfRunHooks( 'NamespaceIsMovable', array( $index, &$result ) );
81 * Is the given namespace is a subject (non-talk) namespace?
83 * @param int $index namespace index
87 public static function isSubject( $index ) {
88 return !self
::isTalk( $index );
92 * @see self::isSubject
93 * @deprecated Please use the more consistently named isSubject (since 1.19)
96 public static function isMain( $index ) {
97 wfDeprecated( __METHOD__
, '1.19' );
98 return self
::isSubject( $index );
102 * Is the given namespace a talk namespace?
104 * @param int $index namespace index
107 public static function isTalk( $index ) {
108 return $index > NS_MAIN
113 * Get the talk namespace index for a given namespace
115 * @param int $index namespace index
118 public static function getTalk( $index ) {
119 self
::isMethodValidFor( $index, __METHOD__
);
120 return self
::isTalk( $index )
126 * Get the subject namespace index for a given namespace
127 * Special namespaces (NS_MEDIA, NS_SPECIAL) are always the subject.
129 * @param int $index Namespace index
132 public static function getSubject( $index ) {
133 # Handle special namespaces
134 if ( $index < NS_MAIN
) {
138 return self
::isTalk( $index )
144 * Get the associated namespace.
145 * For talk namespaces, returns the subject (non-talk) namespace
146 * For subject (non-talk) namespaces, returns the talk namespace
148 * @param int $index namespace index
149 * @return int or null if no associated namespace could be found
151 public static function getAssociated( $index ) {
152 self
::isMethodValidFor( $index, __METHOD__
);
154 if ( self
::isSubject( $index ) ) {
155 return self
::getTalk( $index );
156 } elseif ( self
::isTalk( $index ) ) {
157 return self
::getSubject( $index );
164 * Returns whether the specified namespace exists
171 public static function exists( $index ) {
172 $nslist = self
::getCanonicalNamespaces();
173 return isset( $nslist[$index] );
177 * Returns whether the specified namespaces are the same namespace
179 * @note It's possible that in the future we may start using something
180 * other than just namespace indexes. Under that circumstance making use
181 * of this function rather than directly doing comparison will make
182 * sure that code will not potentially break.
184 * @param int $ns1 The first namespace index
185 * @param int $ns2 The second namespace index
190 public static function equals( $ns1, $ns2 ) {
195 * Returns whether the specified namespaces share the same subject.
196 * eg: NS_USER and NS_USER wil return true, as well
197 * NS_USER and NS_USER_TALK will return true.
199 * @param int $ns1 The first namespace index
200 * @param int $ns2 The second namespace index
205 public static function subjectEquals( $ns1, $ns2 ) {
206 return self
::getSubject( $ns1 ) == self
::getSubject( $ns2 );
210 * Returns array of all defined namespaces with their canonical
213 * @param bool $rebuild rebuild namespace list (default = false). Used for testing.
218 public static function getCanonicalNamespaces( $rebuild = false ) {
219 static $namespaces = null;
220 if ( $namespaces === null ||
$rebuild ) {
221 global $wgExtraNamespaces, $wgCanonicalNamespaceNames;
222 $namespaces = array( NS_MAIN
=> '' ) +
$wgCanonicalNamespaceNames;
223 if ( is_array( $wgExtraNamespaces ) ) {
224 $namespaces +
= $wgExtraNamespaces;
226 wfRunHooks( 'CanonicalNamespaces', array( &$namespaces ) );
232 * Returns the canonical (English) name for a given index
234 * @param int $index namespace index
235 * @return string or false if no canonical definition.
237 public static function getCanonicalName( $index ) {
238 $nslist = self
::getCanonicalNamespaces();
239 if ( isset( $nslist[$index] ) ) {
240 return $nslist[$index];
247 * Returns the index for a given canonical name, or NULL
248 * The input *must* be converted to lower case first
250 * @param string $name namespace name
253 public static function getCanonicalIndex( $name ) {
254 static $xNamespaces = false;
255 if ( $xNamespaces === false ) {
256 $xNamespaces = array();
257 foreach ( self
::getCanonicalNamespaces() as $i => $text ) {
258 $xNamespaces[strtolower( $text )] = $i;
261 if ( array_key_exists( $name, $xNamespaces ) ) {
262 return $xNamespaces[$name];
269 * Returns an array of the namespaces (by integer id) that exist on the
270 * wiki. Used primarily by the api in help documentation.
273 public static function getValidNamespaces() {
274 static $mValidNamespaces = null;
276 if ( is_null( $mValidNamespaces ) ) {
277 foreach ( array_keys( self
::getCanonicalNamespaces() ) as $ns ) {
279 $mValidNamespaces[] = $ns;
284 return $mValidNamespaces;
288 * Can this namespace ever have a talk namespace?
290 * @param int $index namespace index
293 public static function canTalk( $index ) {
294 return $index >= NS_MAIN
;
298 * Does this namespace contain content, for the purposes of calculating
301 * @param int $index index to check
304 public static function isContent( $index ) {
305 global $wgContentNamespaces;
306 return $index == NS_MAIN ||
in_array( $index, $wgContentNamespaces );
310 * Can pages in a namespace be watched?
315 public static function isWatchable( $index ) {
316 return $index >= NS_MAIN
;
320 * Does the namespace allow subpages?
322 * @param int $index Index to check
325 public static function hasSubpages( $index ) {
326 global $wgNamespacesWithSubpages;
327 return !empty( $wgNamespacesWithSubpages[$index] );
331 * Get a list of all namespace indices which are considered to contain content
332 * @return array of namespace indices
334 public static function getContentNamespaces() {
335 global $wgContentNamespaces;
336 if ( !is_array( $wgContentNamespaces ) ||
$wgContentNamespaces === array() ) {
337 return array( NS_MAIN
);
338 } elseif ( !in_array( NS_MAIN
, $wgContentNamespaces ) ) {
339 // always force NS_MAIN to be part of array (to match the algorithm used by isContent)
340 return array_merge( array( NS_MAIN
), $wgContentNamespaces );
342 return $wgContentNamespaces;
347 * List all namespace indices which are considered subject, aka not a talk
348 * or special namespace. See also MWNamespace::isSubject
350 * @return array of namespace indices
352 public static function getSubjectNamespaces() {
354 MWNamespace
::getValidNamespaces(),
355 'MWNamespace::isSubject'
360 * List all namespace indices which are considered talks, aka not a subject
361 * or special namespace. See also MWNamespace::isTalk
363 * @return array of namespace indices
365 public static function getTalkNamespaces() {
367 MWNamespace
::getValidNamespaces(),
368 'MWNamespace::isTalk'
373 * Is the namespace first-letter capitalized?
375 * @param int $index Index to check
378 public static function isCapitalized( $index ) {
379 global $wgCapitalLinks, $wgCapitalLinkOverrides;
380 // Turn NS_MEDIA into NS_FILE
381 $index = $index === NS_MEDIA ? NS_FILE
: $index;
383 // Make sure to get the subject of our namespace
384 $index = self
::getSubject( $index );
386 // Some namespaces are special and should always be upper case
387 if ( in_array( $index, self
::$alwaysCapitalizedNamespaces ) ) {
390 if ( isset( $wgCapitalLinkOverrides[$index] ) ) {
391 // $wgCapitalLinkOverrides is explicitly set
392 return $wgCapitalLinkOverrides[$index];
394 // Default to the global setting
395 return $wgCapitalLinks;
399 * Does the namespace (potentially) have different aliases for different
400 * genders. Not all languages make a distinction here.
403 * @param int $index Index to check
406 public static function hasGenderDistinction( $index ) {
407 return $index == NS_USER ||
$index == NS_USER_TALK
;
411 * It is not possible to use pages from this namespace as template?
414 * @param int $index Index to check
417 public static function isNonincludable( $index ) {
418 global $wgNonincludableNamespaces;
419 return $wgNonincludableNamespaces && in_array( $index, $wgNonincludableNamespaces );
423 * Get the default content model for a namespace
424 * This does not mean that all pages in that namespace have the model
427 * @param int $index Index to check
428 * @return null|string default model name for the given namespace, if set
430 public static function getNamespaceContentModel( $index ) {
431 global $wgNamespaceContentModels;
432 return isset( $wgNamespaceContentModels[$index] )
433 ?
$wgNamespaceContentModels[$index]