d63cff084e87324c91ccf4040fffe84f5f8ad917
[lhc/web/wiklou.git] / includes / Title.php
1 <?php
2 /**
3 * See title.txt
4 *
5 * @package MediaWiki
6 */
7
8 /** */
9 require_once( 'normal/UtfNormal.php' );
10
11 define ( 'GAID_FOR_UPDATE', 1 );
12
13 # Title::newFromTitle maintains a cache to avoid
14 # expensive re-normalization of commonly used titles.
15 # On a batch operation this can become a memory leak
16 # if not bounded. After hitting this many titles,
17 # reset the cache.
18 define( 'MW_TITLECACHE_MAX', 1000 );
19
20 # Constants for pr_cascade bitfield
21 define( 'CASCADE', 1 );
22
23 /**
24 * Title class
25 * - Represents a title, which may contain an interwiki designation or namespace
26 * - Can fetch various kinds of data from the database, albeit inefficiently.
27 *
28 * @package MediaWiki
29 */
30 class Title {
31 /**
32 * Static cache variables
33 */
34 static private $titleCache=array();
35 static private $interwikiCache=array();
36
37
38 /**
39 * All member variables should be considered private
40 * Please use the accessor functions
41 */
42
43 /**#@+
44 * @private
45 */
46
47 var $mTextform; # Text form (spaces not underscores) of the main part
48 var $mUrlform; # URL-encoded form of the main part
49 var $mDbkeyform; # Main part with underscores
50 var $mNamespace; # Namespace index, i.e. one of the NS_xxxx constants
51 var $mInterwiki; # Interwiki prefix (or null string)
52 var $mFragment; # Title fragment (i.e. the bit after the #)
53 var $mArticleID; # Article ID, fetched from the link cache on demand
54 var $mLatestID; # ID of most recent revision
55 var $mRestrictions; # Array of groups allowed to edit this article
56 var $mCascadeRestriction; # Cascade restrictions on this page to included templates and images?
57 var $mHasCascadingRestrictions; # Are cascading restrictions in effect on this page?
58 var $mCascadeRestrictionSources;# Where are the cascading restrictions coming from on this page?
59 var $mRestrictionsLoaded; # Boolean for initialisation on demand
60 var $mPrefixedText; # Text form including namespace/interwiki, initialised on demand
61 var $mDefaultNamespace; # Namespace index when there is no namespace
62 # Zero except in {{transclusion}} tags
63 var $mWatched; # Is $wgUser watching this page? NULL if unfilled, accessed through userIsWatching()
64 /**#@-*/
65
66
67 /**
68 * Constructor
69 * @private
70 */
71 /* private */ function __construct() {
72 $this->mInterwiki = $this->mUrlform =
73 $this->mTextform = $this->mDbkeyform = '';
74 $this->mArticleID = -1;
75 $this->mNamespace = NS_MAIN;
76 $this->mRestrictionsLoaded = false;
77 $this->mRestrictions = array();
78 # Dont change the following, NS_MAIN is hardcoded in several place
79 # See bug #696
80 $this->mDefaultNamespace = NS_MAIN;
81 $this->mWatched = NULL;
82 $this->mLatestID = false;
83 $this->mOldRestrictions = false;
84 }
85
86 /**
87 * Create a new Title from a prefixed DB key
88 * @param string $key The database key, which has underscores
89 * instead of spaces, possibly including namespace and
90 * interwiki prefixes
91 * @return Title the new object, or NULL on an error
92 * @static
93 * @access public
94 */
95 /* static */ function newFromDBkey( $key ) {
96 $t = new Title();
97 $t->mDbkeyform = $key;
98 if( $t->secureAndSplit() )
99 return $t;
100 else
101 return NULL;
102 }
103
104 /**
105 * Create a new Title from text, such as what one would
106 * find in a link. Decodes any HTML entities in the text.
107 *
108 * @param string $text the link text; spaces, prefixes,
109 * and an initial ':' indicating the main namespace
110 * are accepted
111 * @param int $defaultNamespace the namespace to use if
112 * none is specified by a prefix
113 * @return Title the new object, or NULL on an error
114 * @static
115 * @access public
116 */
117 public static function newFromText( $text, $defaultNamespace = NS_MAIN ) {
118 if( is_object( $text ) ) {
119 throw new MWException( 'Title::newFromText given an object' );
120 }
121
122 /**
123 * Wiki pages often contain multiple links to the same page.
124 * Title normalization and parsing can become expensive on
125 * pages with many links, so we can save a little time by
126 * caching them.
127 *
128 * In theory these are value objects and won't get changed...
129 */
130 if( $defaultNamespace == NS_MAIN && isset( Title::$titleCache[$text] ) ) {
131 return Title::$titleCache[$text];
132 }
133
134 /**
135 * Convert things like &eacute; &#257; or &#x3017; into real text...
136 */
137 $filteredText = Sanitizer::decodeCharReferences( $text );
138
139 $t = new Title();
140 $t->mDbkeyform = str_replace( ' ', '_', $filteredText );
141 $t->mDefaultNamespace = $defaultNamespace;
142
143 static $cachedcount = 0 ;
144 if( $t->secureAndSplit() ) {
145 if( $defaultNamespace == NS_MAIN ) {
146 if( $cachedcount >= MW_TITLECACHE_MAX ) {
147 # Avoid memory leaks on mass operations...
148 Title::$titleCache = array();
149 $cachedcount=0;
150 }
151 $cachedcount++;
152 Title::$titleCache[$text] =& $t;
153 }
154 return $t;
155 } else {
156 $ret = NULL;
157 return $ret;
158 }
159 }
160
161 /**
162 * Create a new Title from URL-encoded text. Ensures that
163 * the given title's length does not exceed the maximum.
164 * @param string $url the title, as might be taken from a URL
165 * @return Title the new object, or NULL on an error
166 * @static
167 * @access public
168 */
169 public static function newFromURL( $url ) {
170 global $wgLegalTitleChars;
171 $t = new Title();
172
173 # For compatibility with old buggy URLs. "+" is usually not valid in titles,
174 # but some URLs used it as a space replacement and they still come
175 # from some external search tools.
176 if ( strpos( $wgLegalTitleChars, '+' ) === false ) {
177 $url = str_replace( '+', ' ', $url );
178 }
179
180 $t->mDbkeyform = str_replace( ' ', '_', $url );
181 if( $t->secureAndSplit() ) {
182 return $t;
183 } else {
184 return NULL;
185 }
186 }
187
188 /**
189 * Create a new Title from an article ID
190 *
191 * @todo This is inefficiently implemented, the page row is requested
192 * but not used for anything else
193 *
194 * @param int $id the page_id corresponding to the Title to create
195 * @return Title the new object, or NULL on an error
196 * @access public
197 * @static
198 */
199 public static function newFromID( $id ) {
200 $fname = 'Title::newFromID';
201 $dbr =& wfGetDB( DB_SLAVE );
202 $row = $dbr->selectRow( 'page', array( 'page_namespace', 'page_title' ),
203 array( 'page_id' => $id ), $fname );
204 if ( $row !== false ) {
205 $title = Title::makeTitle( $row->page_namespace, $row->page_title );
206 } else {
207 $title = NULL;
208 }
209 return $title;
210 }
211
212 /**
213 * Make an array of titles from an array of IDs
214 */
215 function newFromIDs( $ids ) {
216 $dbr =& wfGetDB( DB_SLAVE );
217 $res = $dbr->select( 'page', array( 'page_namespace', 'page_title' ),
218 'page_id IN (' . $dbr->makeList( $ids ) . ')', __METHOD__ );
219
220 $titles = array();
221 while ( $row = $dbr->fetchObject( $res ) ) {
222 $titles[] = Title::makeTitle( $row->page_namespace, $row->page_title );
223 }
224 return $titles;
225 }
226
227 /**
228 * Create a new Title from a namespace index and a DB key.
229 * It's assumed that $ns and $title are *valid*, for instance when
230 * they came directly from the database or a special page name.
231 * For convenience, spaces are converted to underscores so that
232 * eg user_text fields can be used directly.
233 *
234 * @param int $ns the namespace of the article
235 * @param string $title the unprefixed database key form
236 * @return Title the new object
237 * @static
238 * @access public
239 */
240 public static function &makeTitle( $ns, $title ) {
241 $t = new Title();
242 $t->mInterwiki = '';
243 $t->mFragment = '';
244 $t->mNamespace = intval( $ns );
245 $t->mDbkeyform = str_replace( ' ', '_', $title );
246 $t->mArticleID = ( $ns >= 0 ) ? -1 : 0;
247 $t->mUrlform = wfUrlencode( $t->mDbkeyform );
248 $t->mTextform = str_replace( '_', ' ', $title );
249 return $t;
250 }
251
252 /**
253 * Create a new Title from a namespace index and a DB key.
254 * The parameters will be checked for validity, which is a bit slower
255 * than makeTitle() but safer for user-provided data.
256 *
257 * @param int $ns the namespace of the article
258 * @param string $title the database key form
259 * @return Title the new object, or NULL on an error
260 * @static
261 * @access public
262 */
263 public static function makeTitleSafe( $ns, $title ) {
264 $t = new Title();
265 $t->mDbkeyform = Title::makeName( $ns, $title );
266 if( $t->secureAndSplit() ) {
267 return $t;
268 } else {
269 return NULL;
270 }
271 }
272
273 /**
274 * Create a new Title for the Main Page
275 *
276 * @static
277 * @return Title the new object
278 * @access public
279 */
280 public static function newMainPage() {
281 return Title::newFromText( wfMsgForContent( 'mainpage' ) );
282 }
283
284 /**
285 * Create a new Title for a redirect
286 * @param string $text the redirect title text
287 * @return Title the new object, or NULL if the text is not a
288 * valid redirect
289 */
290 public static function newFromRedirect( $text ) {
291 $mwRedir = MagicWord::get( 'redirect' );
292 $rt = NULL;
293 if ( $mwRedir->matchStart( $text ) ) {
294 $m = array();
295 if ( preg_match( '/\[{2}(.*?)(?:\||\]{2})/', $text, $m ) ) {
296 # categories are escaped using : for example one can enter:
297 # #REDIRECT [[:Category:Music]]. Need to remove it.
298 if ( substr($m[1],0,1) == ':') {
299 # We don't want to keep the ':'
300 $m[1] = substr( $m[1], 1 );
301 }
302
303 $rt = Title::newFromText( $m[1] );
304 # Disallow redirects to Special:Userlogout
305 if ( !is_null($rt) && $rt->isSpecial( 'Userlogout' ) ) {
306 $rt = NULL;
307 }
308 }
309 }
310 return $rt;
311 }
312
313 #----------------------------------------------------------------------------
314 # Static functions
315 #----------------------------------------------------------------------------
316
317 /**
318 * Get the prefixed DB key associated with an ID
319 * @param int $id the page_id of the article
320 * @return Title an object representing the article, or NULL
321 * if no such article was found
322 * @static
323 * @access public
324 */
325 function nameOf( $id ) {
326 $fname = 'Title::nameOf';
327 $dbr =& wfGetDB( DB_SLAVE );
328
329 $s = $dbr->selectRow( 'page', array( 'page_namespace','page_title' ), array( 'page_id' => $id ), $fname );
330 if ( $s === false ) { return NULL; }
331
332 $n = Title::makeName( $s->page_namespace, $s->page_title );
333 return $n;
334 }
335
336 /**
337 * Get a regex character class describing the legal characters in a link
338 * @return string the list of characters, not delimited
339 * @static
340 * @access public
341 */
342 public static function legalChars() {
343 global $wgLegalTitleChars;
344 return $wgLegalTitleChars;
345 }
346
347 /**
348 * Get a string representation of a title suitable for
349 * including in a search index
350 *
351 * @param int $ns a namespace index
352 * @param string $title text-form main part
353 * @return string a stripped-down title string ready for the
354 * search index
355 */
356 public static function indexTitle( $ns, $title ) {
357 global $wgContLang;
358
359 $lc = SearchEngine::legalSearchChars() . '&#;';
360 $t = $wgContLang->stripForSearch( $title );
361 $t = preg_replace( "/[^{$lc}]+/", ' ', $t );
362 $t = $wgContLang->lc( $t );
363
364 # Handle 's, s'
365 $t = preg_replace( "/([{$lc}]+)'s( |$)/", "\\1 \\1's ", $t );
366 $t = preg_replace( "/([{$lc}]+)s'( |$)/", "\\1s ", $t );
367
368 $t = preg_replace( "/\\s+/", ' ', $t );
369
370 if ( $ns == NS_IMAGE ) {
371 $t = preg_replace( "/ (png|gif|jpg|jpeg|ogg)$/", "", $t );
372 }
373 return trim( $t );
374 }
375
376 /*
377 * Make a prefixed DB key from a DB key and a namespace index
378 * @param int $ns numerical representation of the namespace
379 * @param string $title the DB key form the title
380 * @return string the prefixed form of the title
381 */
382 public static function makeName( $ns, $title ) {
383 global $wgContLang;
384
385 $n = $wgContLang->getNsText( $ns );
386 return $n == '' ? $title : "$n:$title";
387 }
388
389 /**
390 * Returns the URL associated with an interwiki prefix
391 * @param string $key the interwiki prefix (e.g. "MeatBall")
392 * @return the associated URL, containing "$1", which should be
393 * replaced by an article title
394 * @static (arguably)
395 * @access public
396 */
397 function getInterwikiLink( $key ) {
398 global $wgMemc, $wgInterwikiExpiry;
399 global $wgInterwikiCache, $wgContLang;
400 $fname = 'Title::getInterwikiLink';
401
402 $key = $wgContLang->lc( $key );
403
404 $k = wfMemcKey( 'interwiki', $key );
405 if( array_key_exists( $k, Title::$interwikiCache ) ) {
406 return Title::$interwikiCache[$k]->iw_url;
407 }
408
409 if ($wgInterwikiCache) {
410 return Title::getInterwikiCached( $key );
411 }
412
413 $s = $wgMemc->get( $k );
414 # Ignore old keys with no iw_local
415 if( $s && isset( $s->iw_local ) && isset($s->iw_trans)) {
416 Title::$interwikiCache[$k] = $s;
417 return $s->iw_url;
418 }
419
420 $dbr =& wfGetDB( DB_SLAVE );
421 $res = $dbr->select( 'interwiki',
422 array( 'iw_url', 'iw_local', 'iw_trans' ),
423 array( 'iw_prefix' => $key ), $fname );
424 if( !$res ) {
425 return '';
426 }
427
428 $s = $dbr->fetchObject( $res );
429 if( !$s ) {
430 # Cache non-existence: create a blank object and save it to memcached
431 $s = (object)false;
432 $s->iw_url = '';
433 $s->iw_local = 0;
434 $s->iw_trans = 0;
435 }
436 $wgMemc->set( $k, $s, $wgInterwikiExpiry );
437 Title::$interwikiCache[$k] = $s;
438
439 return $s->iw_url;
440 }
441
442 /**
443 * Fetch interwiki prefix data from local cache in constant database
444 *
445 * More logic is explained in DefaultSettings
446 *
447 * @return string URL of interwiki site
448 * @access public
449 */
450 function getInterwikiCached( $key ) {
451 global $wgInterwikiCache, $wgInterwikiScopes, $wgInterwikiFallbackSite;
452 static $db, $site;
453
454 if (!$db)
455 $db=dba_open($wgInterwikiCache,'r','cdb');
456 /* Resolve site name */
457 if ($wgInterwikiScopes>=3 and !$site) {
458 $site = dba_fetch('__sites:' . wfWikiID(), $db);
459 if ($site=="")
460 $site = $wgInterwikiFallbackSite;
461 }
462 $value = dba_fetch( wfMemcKey( $key ), $db);
463 if ($value=='' and $wgInterwikiScopes>=3) {
464 /* try site-level */
465 $value = dba_fetch("_{$site}:{$key}", $db);
466 }
467 if ($value=='' and $wgInterwikiScopes>=2) {
468 /* try globals */
469 $value = dba_fetch("__global:{$key}", $db);
470 }
471 if ($value=='undef')
472 $value='';
473 $s = (object)false;
474 $s->iw_url = '';
475 $s->iw_local = 0;
476 $s->iw_trans = 0;
477 if ($value!='') {
478 list($local,$url)=explode(' ',$value,2);
479 $s->iw_url=$url;
480 $s->iw_local=(int)$local;
481 }
482 Title::$interwikiCache[wfMemcKey( 'interwiki', $key )] = $s;
483 return $s->iw_url;
484 }
485 /**
486 * Determine whether the object refers to a page within
487 * this project.
488 *
489 * @return bool TRUE if this is an in-project interwiki link
490 * or a wikilink, FALSE otherwise
491 * @access public
492 */
493 function isLocal() {
494 if ( $this->mInterwiki != '' ) {
495 # Make sure key is loaded into cache
496 $this->getInterwikiLink( $this->mInterwiki );
497 $k = wfMemcKey( 'interwiki', $this->mInterwiki );
498 return (bool)(Title::$interwikiCache[$k]->iw_local);
499 } else {
500 return true;
501 }
502 }
503
504 /**
505 * Determine whether the object refers to a page within
506 * this project and is transcludable.
507 *
508 * @return bool TRUE if this is transcludable
509 * @access public
510 */
511 function isTrans() {
512 if ($this->mInterwiki == '')
513 return false;
514 # Make sure key is loaded into cache
515 $this->getInterwikiLink( $this->mInterwiki );
516 $k = wfMemcKey( 'interwiki', $this->mInterwiki );
517 return (bool)(Title::$interwikiCache[$k]->iw_trans);
518 }
519
520 /**
521 * Update the page_touched field for an array of title objects
522 * @todo Inefficient unless the IDs are already loaded into the
523 * link cache
524 * @param array $titles an array of Title objects to be touched
525 * @param string $timestamp the timestamp to use instead of the
526 * default current time
527 * @static
528 * @access public
529 */
530 function touchArray( $titles, $timestamp = '' ) {
531
532 if ( count( $titles ) == 0 ) {
533 return;
534 }
535 $dbw =& wfGetDB( DB_MASTER );
536 if ( $timestamp == '' ) {
537 $timestamp = $dbw->timestamp();
538 }
539 /*
540 $page = $dbw->tableName( 'page' );
541 $sql = "UPDATE $page SET page_touched='{$timestamp}' WHERE page_id IN (";
542 $first = true;
543
544 foreach ( $titles as $title ) {
545 if ( $wgUseFileCache ) {
546 $cm = new HTMLFileCache($title);
547 @unlink($cm->fileCacheName());
548 }
549
550 if ( ! $first ) {
551 $sql .= ',';
552 }
553 $first = false;
554 $sql .= $title->getArticleID();
555 }
556 $sql .= ')';
557 if ( ! $first ) {
558 $dbw->query( $sql, 'Title::touchArray' );
559 }
560 */
561 // hack hack hack -- brion 2005-07-11. this was unfriendly to db.
562 // do them in small chunks:
563 $fname = 'Title::touchArray';
564 foreach( $titles as $title ) {
565 $dbw->update( 'page',
566 array( 'page_touched' => $timestamp ),
567 array(
568 'page_namespace' => $title->getNamespace(),
569 'page_title' => $title->getDBkey() ),
570 $fname );
571 }
572 }
573
574 /**
575 * Escape a text fragment, say from a link, for a URL
576 */
577 static function escapeFragmentForURL( $fragment ) {
578 $fragment = str_replace( ' ', '_', $fragment );
579 $fragment = urlencode( Sanitizer::decodeCharReferences( $fragment ) );
580 $replaceArray = array(
581 '%3A' => ':',
582 '%' => '.'
583 );
584 return strtr( $fragment, $replaceArray );
585 }
586
587 #----------------------------------------------------------------------------
588 # Other stuff
589 #----------------------------------------------------------------------------
590
591 /** Simple accessors */
592 /**
593 * Get the text form (spaces not underscores) of the main part
594 * @return string
595 * @access public
596 */
597 function getText() { return $this->mTextform; }
598 /**
599 * Get the URL-encoded form of the main part
600 * @return string
601 * @access public
602 */
603 function getPartialURL() { return $this->mUrlform; }
604 /**
605 * Get the main part with underscores
606 * @return string
607 * @access public
608 */
609 function getDBkey() { return $this->mDbkeyform; }
610 /**
611 * Get the namespace index, i.e. one of the NS_xxxx constants
612 * @return int
613 * @access public
614 */
615 function getNamespace() { return $this->mNamespace; }
616 /**
617 * Get the namespace text
618 * @return string
619 * @access public
620 */
621 function getNsText() {
622 global $wgContLang, $wgCanonicalNamespaceNames;
623
624 if ( '' != $this->mInterwiki ) {
625 // This probably shouldn't even happen. ohh man, oh yuck.
626 // But for interwiki transclusion it sometimes does.
627 // Shit. Shit shit shit.
628 //
629 // Use the canonical namespaces if possible to try to
630 // resolve a foreign namespace.
631 if( isset( $wgCanonicalNamespaceNames[$this->mNamespace] ) ) {
632 return $wgCanonicalNamespaceNames[$this->mNamespace];
633 }
634 }
635 return $wgContLang->getNsText( $this->mNamespace );
636 }
637 /**
638 * Get the namespace text of the subject (rather than talk) page
639 * @return string
640 * @access public
641 */
642 function getSubjectNsText() {
643 global $wgContLang;
644 return $wgContLang->getNsText( Namespace::getSubject( $this->mNamespace ) );
645 }
646
647 /**
648 * Get the namespace text of the talk page
649 * @return string
650 */
651 function getTalkNsText() {
652 global $wgContLang;
653 return( $wgContLang->getNsText( Namespace::getTalk( $this->mNamespace ) ) );
654 }
655
656 /**
657 * Could this title have a corresponding talk page?
658 * @return bool
659 */
660 function canTalk() {
661 return( Namespace::canTalk( $this->mNamespace ) );
662 }
663
664 /**
665 * Get the interwiki prefix (or null string)
666 * @return string
667 * @access public
668 */
669 function getInterwiki() { return $this->mInterwiki; }
670 /**
671 * Get the Title fragment (i.e. the bit after the #) in text form
672 * @return string
673 * @access public
674 */
675 function getFragment() { return $this->mFragment; }
676 /**
677 * Get the fragment in URL form, including the "#" character if there is one
678 *
679 * @return string
680 * @access public
681 */
682 function getFragmentForURL() {
683 if ( $this->mFragment == '' ) {
684 return '';
685 } else {
686 return '#' . Title::escapeFragmentForURL( $this->mFragment );
687 }
688 }
689 /**
690 * Get the default namespace index, for when there is no namespace
691 * @return int
692 * @access public
693 */
694 function getDefaultNamespace() { return $this->mDefaultNamespace; }
695
696 /**
697 * Get title for search index
698 * @return string a stripped-down title string ready for the
699 * search index
700 */
701 function getIndexTitle() {
702 return Title::indexTitle( $this->mNamespace, $this->mTextform );
703 }
704
705 /**
706 * Get the prefixed database key form
707 * @return string the prefixed title, with underscores and
708 * any interwiki and namespace prefixes
709 * @access public
710 */
711 function getPrefixedDBkey() {
712 $s = $this->prefix( $this->mDbkeyform );
713 $s = str_replace( ' ', '_', $s );
714 return $s;
715 }
716
717 /**
718 * Get the prefixed title with spaces.
719 * This is the form usually used for display
720 * @return string the prefixed title, with spaces
721 * @access public
722 */
723 function getPrefixedText() {
724 if ( empty( $this->mPrefixedText ) ) { // FIXME: bad usage of empty() ?
725 $s = $this->prefix( $this->mTextform );
726 $s = str_replace( '_', ' ', $s );
727 $this->mPrefixedText = $s;
728 }
729 return $this->mPrefixedText;
730 }
731
732 /**
733 * Get the prefixed title with spaces, plus any fragment
734 * (part beginning with '#')
735 * @return string the prefixed title, with spaces and
736 * the fragment, including '#'
737 * @access public
738 */
739 function getFullText() {
740 $text = $this->getPrefixedText();
741 if( '' != $this->mFragment ) {
742 $text .= '#' . $this->mFragment;
743 }
744 return $text;
745 }
746
747 /**
748 * Get the base name, i.e. the leftmost parts before the /
749 * @return string Base name
750 */
751 function getBaseText() {
752 global $wgNamespacesWithSubpages;
753 if( isset( $wgNamespacesWithSubpages[ $this->mNamespace ] ) && $wgNamespacesWithSubpages[ $this->mNamespace ] ) {
754 $parts = explode( '/', $this->getText() );
755 # Don't discard the real title if there's no subpage involved
756 if( count( $parts ) > 1 )
757 unset( $parts[ count( $parts ) - 1 ] );
758 return implode( '/', $parts );
759 } else {
760 return $this->getText();
761 }
762 }
763
764 /**
765 * Get the lowest-level subpage name, i.e. the rightmost part after /
766 * @return string Subpage name
767 */
768 function getSubpageText() {
769 global $wgNamespacesWithSubpages;
770 if( isset( $wgNamespacesWithSubpages[ $this->mNamespace ] ) && $wgNamespacesWithSubpages[ $this->mNamespace ] ) {
771 $parts = explode( '/', $this->mTextform );
772 return( $parts[ count( $parts ) - 1 ] );
773 } else {
774 return( $this->mTextform );
775 }
776 }
777
778 /**
779 * Get a URL-encoded form of the subpage text
780 * @return string URL-encoded subpage name
781 */
782 function getSubpageUrlForm() {
783 $text = $this->getSubpageText();
784 $text = wfUrlencode( str_replace( ' ', '_', $text ) );
785 $text = str_replace( '%28', '(', str_replace( '%29', ')', $text ) ); # Clean up the URL; per below, this might not be safe
786 return( $text );
787 }
788
789 /**
790 * Get a URL-encoded title (not an actual URL) including interwiki
791 * @return string the URL-encoded form
792 * @access public
793 */
794 function getPrefixedURL() {
795 $s = $this->prefix( $this->mDbkeyform );
796 $s = str_replace( ' ', '_', $s );
797
798 $s = wfUrlencode ( $s ) ;
799
800 # Cleaning up URL to make it look nice -- is this safe?
801 $s = str_replace( '%28', '(', $s );
802 $s = str_replace( '%29', ')', $s );
803
804 return $s;
805 }
806
807 /**
808 * Get a real URL referring to this title, with interwiki link and
809 * fragment
810 *
811 * @param string $query an optional query string, not used
812 * for interwiki links
813 * @param string $variant language variant of url (for sr, zh..)
814 * @return string the URL
815 * @access public
816 */
817 function getFullURL( $query = '', $variant = false ) {
818 global $wgContLang, $wgServer, $wgRequest;
819
820 if ( '' == $this->mInterwiki ) {
821 $url = $this->getLocalUrl( $query, $variant );
822
823 // Ugly quick hack to avoid duplicate prefixes (bug 4571 etc)
824 // Correct fix would be to move the prepending elsewhere.
825 if ($wgRequest->getVal('action') != 'render') {
826 $url = $wgServer . $url;
827 }
828 } else {
829 $baseUrl = $this->getInterwikiLink( $this->mInterwiki );
830
831 $namespace = wfUrlencode( $this->getNsText() );
832 if ( '' != $namespace ) {
833 # Can this actually happen? Interwikis shouldn't be parsed.
834 # Yes! It can in interwiki transclusion. But... it probably shouldn't.
835 $namespace .= ':';
836 }
837 $url = str_replace( '$1', $namespace . $this->mUrlform, $baseUrl );
838 if( $query != '' ) {
839 if( false === strpos( $url, '?' ) ) {
840 $url .= '?';
841 } else {
842 $url .= '&';
843 }
844 $url .= $query;
845 }
846 }
847
848 # Finally, add the fragment.
849 $url .= $this->getFragmentForURL();
850
851 wfRunHooks( 'GetFullURL', array( &$this, &$url, $query ) );
852 return $url;
853 }
854
855 /**
856 * Get a URL with no fragment or server name. If this page is generated
857 * with action=render, $wgServer is prepended.
858 * @param string $query an optional query string; if not specified,
859 * $wgArticlePath will be used.
860 * @param string $variant language variant of url (for sr, zh..)
861 * @return string the URL
862 * @access public
863 */
864 function getLocalURL( $query = '', $variant = false ) {
865 global $wgArticlePath, $wgScript, $wgServer, $wgRequest;
866 global $wgVariantArticlePath, $wgContLang, $wgUser;
867
868 // internal links should point to same variant as current page (only anonymous users)
869 if($variant == false && $wgContLang->hasVariants() && !$wgUser->isLoggedIn()){
870 $pref = $wgContLang->getPreferredVariant(false);
871 if($pref != $wgContLang->getCode())
872 $variant = $pref;
873 }
874
875 if ( $this->isExternal() ) {
876 $url = $this->getFullURL();
877 if ( $query ) {
878 // This is currently only used for edit section links in the
879 // context of interwiki transclusion. In theory we should
880 // append the query to the end of any existing query string,
881 // but interwiki transclusion is already broken in that case.
882 $url .= "?$query";
883 }
884 } else {
885 $dbkey = wfUrlencode( $this->getPrefixedDBkey() );
886 if ( $query == '' ) {
887 if($variant!=false && $wgContLang->hasVariants()){
888 if($wgVariantArticlePath==false)
889 $variantArticlePath = "$wgScript?title=$1&variant=$2"; // default
890 else
891 $variantArticlePath = $wgVariantArticlePath;
892
893 $url = str_replace( '$2', urlencode( $variant ), $variantArticlePath );
894 $url = str_replace( '$1', $dbkey, $url );
895
896 }
897 else
898 $url = str_replace( '$1', $dbkey, $wgArticlePath );
899 } else {
900 global $wgActionPaths;
901 $url = false;
902 $matches = array();
903 if( !empty( $wgActionPaths ) &&
904 preg_match( '/^(.*&|)action=([^&]*)(&(.*)|)$/', $query, $matches ) )
905 {
906 $action = urldecode( $matches[2] );
907 if( isset( $wgActionPaths[$action] ) ) {
908 $query = $matches[1];
909 if( isset( $matches[4] ) ) $query .= $matches[4];
910 $url = str_replace( '$1', $dbkey, $wgActionPaths[$action] );
911 if( $query != '' ) $url .= '?' . $query;
912 }
913 }
914 if ( $url === false ) {
915 if ( $query == '-' ) {
916 $query = '';
917 }
918 $url = "{$wgScript}?title={$dbkey}&{$query}";
919 }
920 }
921
922 // FIXME: this causes breakage in various places when we
923 // actually expected a local URL and end up with dupe prefixes.
924 if ($wgRequest->getVal('action') == 'render') {
925 $url = $wgServer . $url;
926 }
927 }
928 wfRunHooks( 'GetLocalURL', array( &$this, &$url, $query ) );
929 return $url;
930 }
931
932 /**
933 * Get an HTML-escaped version of the URL form, suitable for
934 * using in a link, without a server name or fragment
935 * @param string $query an optional query string
936 * @return string the URL
937 * @access public
938 */
939 function escapeLocalURL( $query = '' ) {
940 return htmlspecialchars( $this->getLocalURL( $query ) );
941 }
942
943 /**
944 * Get an HTML-escaped version of the URL form, suitable for
945 * using in a link, including the server name and fragment
946 *
947 * @return string the URL
948 * @param string $query an optional query string
949 * @access public
950 */
951 function escapeFullURL( $query = '' ) {
952 return htmlspecialchars( $this->getFullURL( $query ) );
953 }
954
955 /**
956 * Get the URL form for an internal link.
957 * - Used in various Squid-related code, in case we have a different
958 * internal hostname for the server from the exposed one.
959 *
960 * @param string $query an optional query string
961 * @param string $variant language variant of url (for sr, zh..)
962 * @return string the URL
963 * @access public
964 */
965 function getInternalURL( $query = '', $variant = false ) {
966 global $wgInternalServer;
967 $url = $wgInternalServer . $this->getLocalURL( $query, $variant );
968 wfRunHooks( 'GetInternalURL', array( &$this, &$url, $query ) );
969 return $url;
970 }
971
972 /**
973 * Get the edit URL for this Title
974 * @return string the URL, or a null string if this is an
975 * interwiki link
976 * @access public
977 */
978 function getEditURL() {
979 if ( '' != $this->mInterwiki ) { return ''; }
980 $s = $this->getLocalURL( 'action=edit' );
981
982 return $s;
983 }
984
985 /**
986 * Get the HTML-escaped displayable text form.
987 * Used for the title field in <a> tags.
988 * @return string the text, including any prefixes
989 * @access public
990 */
991 function getEscapedText() {
992 return htmlspecialchars( $this->getPrefixedText() );
993 }
994
995 /**
996 * Is this Title interwiki?
997 * @return boolean
998 * @access public
999 */
1000 function isExternal() { return ( '' != $this->mInterwiki ); }
1001
1002 /**
1003 * Is this page "semi-protected" - the *only* protection is autoconfirm?
1004 *
1005 * @param string Action to check (default: edit)
1006 * @return bool
1007 */
1008 function isSemiProtected( $action = 'edit' ) {
1009 if( $this->exists() ) {
1010 $restrictions = $this->getRestrictions( $action );
1011 if( count( $restrictions ) > 0 ) {
1012 foreach( $restrictions as $restriction ) {
1013 if( strtolower( $restriction ) != 'autoconfirmed' )
1014 return false;
1015 }
1016 } else {
1017 # Not protected
1018 return false;
1019 }
1020 return true;
1021 } else {
1022 # If it doesn't exist, it can't be protected
1023 return false;
1024 }
1025 }
1026
1027 /**
1028 * Does the title correspond to a protected article?
1029 * @param string $what the action the page is protected from,
1030 * by default checks move and edit
1031 * @return boolean
1032 * @access public
1033 */
1034 function isProtected( $action = '' ) {
1035 global $wgRestrictionLevels;
1036
1037 if ( NS_SPECIAL == $this->mNamespace ) { return true; }
1038
1039 if ( $this->isCascadeProtected() ) { return true; }
1040
1041 if( $action == 'edit' || $action == '' ) {
1042 $r = $this->getRestrictions( 'edit' );
1043 foreach( $wgRestrictionLevels as $level ) {
1044 if( in_array( $level, $r ) && $level != '' ) {
1045 return( true );
1046 }
1047 }
1048 }
1049
1050 if( $action == 'move' || $action == '' ) {
1051 $r = $this->getRestrictions( 'move' );
1052 foreach( $wgRestrictionLevels as $level ) {
1053 if( in_array( $level, $r ) && $level != '' ) {
1054 return( true );
1055 }
1056 }
1057 }
1058
1059 return false;
1060 }
1061
1062 /**
1063 * Is $wgUser is watching this page?
1064 * @return boolean
1065 * @access public
1066 */
1067 function userIsWatching() {
1068 global $wgUser;
1069
1070 if ( is_null( $this->mWatched ) ) {
1071 if ( NS_SPECIAL == $this->mNamespace || !$wgUser->isLoggedIn()) {
1072 $this->mWatched = false;
1073 } else {
1074 $this->mWatched = $wgUser->isWatched( $this );
1075 }
1076 }
1077 return $this->mWatched;
1078 }
1079
1080 /**
1081 * Can $wgUser perform $action on this page?
1082 * This skips potentially expensive cascading permission checks.
1083 *
1084 * Suitable for use for nonessential UI controls in common cases, but
1085 * _not_ for functional access control.
1086 *
1087 * May provide false positives, but should never provide a false negative.
1088 *
1089 * @param string $action action that permission needs to be checked for
1090 * @return boolean
1091 */
1092 public function quickUserCan( $action ) {
1093 return $this->userCan( $action, false );
1094 }
1095
1096 /**
1097 * Can $wgUser perform $action on this page?
1098 * @param string $action action that permission needs to be checked for
1099 * @param bool $doExpensiveQueries Set this to false to avoid doing unnecessary queries.
1100 * @return boolean
1101 */
1102 public function userCan( $action, $doExpensiveQueries = true ) {
1103 $fname = 'Title::userCan';
1104 wfProfileIn( $fname );
1105
1106 global $wgUser, $wgNamespaceProtection;
1107
1108 $result = null;
1109 wfRunHooks( 'userCan', array( &$this, &$wgUser, $action, &$result ) );
1110 if ( $result !== null ) {
1111 wfProfileOut( $fname );
1112 return $result;
1113 }
1114
1115 if( NS_SPECIAL == $this->mNamespace ) {
1116 wfProfileOut( $fname );
1117 return false;
1118 }
1119
1120 if ( array_key_exists( $this->mNamespace, $wgNamespaceProtection ) ) {
1121 $nsProt = $wgNamespaceProtection[ $this->mNamespace ];
1122 if ( !is_array($nsProt) ) $nsProt = array($nsProt);
1123 foreach( $nsProt as $right ) {
1124 if( '' != $right && !$wgUser->isAllowed( $right ) ) {
1125 wfProfileOut( $fname );
1126 return false;
1127 }
1128 }
1129 }
1130
1131 if( $this->mDbkeyform == '_' ) {
1132 # FIXME: Is this necessary? Shouldn't be allowed anyway...
1133 wfProfileOut( $fname );
1134 return false;
1135 }
1136
1137 # protect css/js subpages of user pages
1138 # XXX: this might be better using restrictions
1139 # XXX: Find a way to work around the php bug that prevents using $this->userCanEditCssJsSubpage() from working
1140 if( $this->isCssJsSubpage()
1141 && !$wgUser->isAllowed('editinterface')
1142 && !preg_match('/^'.preg_quote($wgUser->getName(), '/').'\//', $this->mTextform) ) {
1143 wfProfileOut( $fname );
1144 return false;
1145 }
1146
1147 if ( $doExpensiveQueries && $this->isCascadeProtected() ) {
1148 # We /could/ use the protection level on the source page, but it's fairly ugly
1149 # as we have to establish a precedence hierarchy for pages included by multiple
1150 # cascade-protected pages. So just restrict it to people with 'protect' permission,
1151 # as they could remove the protection anyway.
1152 if ( !$wgUser->isAllowed('protect') ) {
1153 wfProfileOut( $fname );
1154 return false;
1155 }
1156 }
1157
1158 foreach( $this->getRestrictions($action) as $right ) {
1159 // Backwards compatibility, rewrite sysop -> protect
1160 if ( $right == 'sysop' ) {
1161 $right = 'protect';
1162 }
1163 if( '' != $right && !$wgUser->isAllowed( $right ) ) {
1164 wfProfileOut( $fname );
1165 return false;
1166 }
1167 }
1168
1169 if( $action == 'move' &&
1170 !( $this->isMovable() && $wgUser->isAllowed( 'move' ) ) ) {
1171 wfProfileOut( $fname );
1172 return false;
1173 }
1174
1175 if( $action == 'create' ) {
1176 if( ( $this->isTalkPage() && !$wgUser->isAllowed( 'createtalk' ) ) ||
1177 ( !$this->isTalkPage() && !$wgUser->isAllowed( 'createpage' ) ) ) {
1178 wfProfileOut( $fname );
1179 return false;
1180 }
1181 }
1182
1183 wfProfileOut( $fname );
1184 return true;
1185 }
1186
1187 /**
1188 * Can $wgUser edit this page?
1189 * @return boolean
1190 * @deprecated use userCan('edit')
1191 */
1192 public function userCanEdit( $doExpensiveQueries = true ) {
1193 return $this->userCan( 'edit', $doExpensiveQueries );
1194 }
1195
1196 /**
1197 * Can $wgUser create this page?
1198 * @return boolean
1199 * @deprecated use userCan('create')
1200 */
1201 public function userCanCreate( $doExpensiveQueries = true ) {
1202 return $this->userCan( 'create', $doExpensiveQueries );
1203 }
1204
1205 /**
1206 * Can $wgUser move this page?
1207 * @return boolean
1208 * @deprecated use userCan('move')
1209 */
1210 public function userCanMove( $doExpensiveQueries = true ) {
1211 return $this->userCan( 'move', $doExpensiveQueries );
1212 }
1213
1214 /**
1215 * Would anybody with sufficient privileges be able to move this page?
1216 * Some pages just aren't movable.
1217 *
1218 * @return boolean
1219 * @access public
1220 */
1221 function isMovable() {
1222 return Namespace::isMovable( $this->getNamespace() )
1223 && $this->getInterwiki() == '';
1224 }
1225
1226 /**
1227 * Can $wgUser read this page?
1228 * @return boolean
1229 * @fixme fold these checks into userCan()
1230 */
1231 public function userCanRead() {
1232 global $wgUser;
1233
1234 $result = null;
1235 wfRunHooks( 'userCan', array( &$this, &$wgUser, 'read', &$result ) );
1236 if ( $result !== null ) {
1237 return $result;
1238 }
1239
1240 if( $wgUser->isAllowed('read') ) {
1241 return true;
1242 } else {
1243 global $wgWhitelistRead;
1244
1245 /**
1246 * Always grant access to the login page.
1247 * Even anons need to be able to log in.
1248 */
1249 if( $this->isSpecial( 'Userlogin' ) || $this->isSpecial( 'Resetpass' ) ) {
1250 return true;
1251 }
1252
1253 /** some pages are explicitly allowed */
1254 $name = $this->getPrefixedText();
1255 if( $wgWhitelistRead && in_array( $name, $wgWhitelistRead ) ) {
1256 return true;
1257 }
1258
1259 # Compatibility with old settings
1260 if( $wgWhitelistRead && $this->getNamespace() == NS_MAIN ) {
1261 if( in_array( ':' . $name, $wgWhitelistRead ) ) {
1262 return true;
1263 }
1264 }
1265 }
1266 return false;
1267 }
1268
1269 /**
1270 * Is this a talk page of some sort?
1271 * @return bool
1272 * @access public
1273 */
1274 function isTalkPage() {
1275 return Namespace::isTalk( $this->getNamespace() );
1276 }
1277
1278 /**
1279 * Is this a subpage?
1280 * @return bool
1281 * @access public
1282 */
1283 function isSubpage() {
1284 global $wgNamespacesWithSubpages;
1285
1286 if( isset( $wgNamespacesWithSubpages[ $this->mNamespace ] ) ) {
1287 return ( strpos( $this->getText(), '/' ) !== false && $wgNamespacesWithSubpages[ $this->mNamespace ] == true );
1288 } else {
1289 return false;
1290 }
1291 }
1292
1293 /**
1294 * Is this a .css or .js subpage of a user page?
1295 * @return bool
1296 * @access public
1297 */
1298 function isCssJsSubpage() {
1299 return ( NS_USER == $this->mNamespace and preg_match("/\\/.*\\.(css|js)$/", $this->mTextform ) );
1300 }
1301 /**
1302 * Is this a *valid* .css or .js subpage of a user page?
1303 * Check that the corresponding skin exists
1304 */
1305 function isValidCssJsSubpage() {
1306 if ( $this->isCssJsSubpage() ) {
1307 $skinNames = Skin::getSkinNames();
1308 return array_key_exists( $this->getSkinFromCssJsSubpage(), $skinNames );
1309 } else {
1310 return false;
1311 }
1312 }
1313 /**
1314 * Trim down a .css or .js subpage title to get the corresponding skin name
1315 */
1316 function getSkinFromCssJsSubpage() {
1317 $subpage = explode( '/', $this->mTextform );
1318 $subpage = $subpage[ count( $subpage ) - 1 ];
1319 return( str_replace( array( '.css', '.js' ), array( '', '' ), $subpage ) );
1320 }
1321 /**
1322 * Is this a .css subpage of a user page?
1323 * @return bool
1324 * @access public
1325 */
1326 function isCssSubpage() {
1327 return ( NS_USER == $this->mNamespace and preg_match("/\\/.*\\.css$/", $this->mTextform ) );
1328 }
1329 /**
1330 * Is this a .js subpage of a user page?
1331 * @return bool
1332 * @access public
1333 */
1334 function isJsSubpage() {
1335 return ( NS_USER == $this->mNamespace and preg_match("/\\/.*\\.js$/", $this->mTextform ) );
1336 }
1337 /**
1338 * Protect css/js subpages of user pages: can $wgUser edit
1339 * this page?
1340 *
1341 * @return boolean
1342 * @todo XXX: this might be better using restrictions
1343 * @access public
1344 */
1345 function userCanEditCssJsSubpage() {
1346 global $wgUser;
1347 return ( $wgUser->isAllowed('editinterface') or preg_match('/^'.preg_quote($wgUser->getName(), '/').'\//', $this->mTextform) );
1348 }
1349
1350 /**
1351 * Cascading protection: Return true if cascading restrictions apply to this page, false if not.
1352 *
1353 * @return bool If the page is subject to cascading restrictions.
1354 * @access public.
1355 */
1356 function isCascadeProtected() {
1357 return ( $this->getCascadeProtectionSources( false ) );
1358 }
1359
1360 /**
1361 * Cascading protection: Get the source of any cascading restrictions on this page.
1362 *
1363 * @param $get_pages bool Whether or not to retrieve the actual pages that the restrictions have come from.
1364 * @return mixed Array of the Title objects of the pages from which cascading restrictions have come, false for none, or true if such restrictions exist, but $get_pages was not set.
1365 * @access public
1366 */
1367 function getCascadeProtectionSources( $get_pages = true ) {
1368 global $wgEnableCascadingProtection;
1369 if (!$wgEnableCascadingProtection)
1370 return false;
1371
1372 if ( isset( $this->mCascadeSources ) && $get_pages ) {
1373 return $this->mCascadeSources;
1374 } else if ( isset( $this->mHasCascadingRestrictions ) && !$get_pages ) {
1375 return $this->mHasCascadingRestrictions;
1376 }
1377
1378 wfProfileIn( __METHOD__ );
1379
1380 $dbr =& wfGetDb( DB_SLAVE );
1381
1382 if ( $this->getNamespace() == NS_IMAGE ) {
1383 $cols = $get_pages ? array('pr_page', 'page_namespace', 'page_title') : array( '1' );
1384 $tables = array ('imagelinks', 'page_restrictions');
1385 $where_clauses = array( 'il_to' => $this->getDBkey(), 'il_from=pr_page', 'pr_cascade' => 1 );
1386 } else {
1387 $cols = $get_pages ? array( 'pr_page', 'page_namespace', 'page_title' ) : array( '1' );
1388 $tables = array ('templatelinks', 'page_restrictions');
1389 $where_clauses = array( 'tl_namespace' => $this->getNamespace(), 'tl_title' => $this->getDBkey(), 'tl_from=pr_page', 'pr_cascade' => 1 );
1390 }
1391
1392 $options = array ();
1393
1394 if ( $get_pages ) {
1395 $where_clauses[] = 'page_id=pr_page';
1396 $tables[] = 'page';
1397 } else {
1398 $options[] = "LIMIT 1";
1399 }
1400
1401 $res = $dbr->select( $tables, $cols, $where_clauses, __METHOD__, $options);
1402
1403 if ($dbr->numRows($res)) {
1404 if ($get_pages) {
1405 $sources = array ();
1406 while ($row = $dbr->fetchObject($res)) {
1407 $page_id = $row->pr_page;
1408 $page_ns = $row->page_namespace;
1409 $page_title = $row->page_title;
1410 $sources[$page_id] = Title::makeTitle($page_ns, $page_title);
1411 }
1412 } else {
1413 $sources = true;
1414 }
1415 } else {
1416 $sources = false;
1417 }
1418
1419 wfProfileOut( __METHOD__ );
1420
1421 if ( $get_pages ) {
1422 $this->mCascadeSources = $sources;
1423 } else {
1424 $this->mHasCascadingRestrictions = $sources;
1425 }
1426
1427 return $sources;
1428 }
1429
1430 function areRestrictionsCascading() {
1431 if (!$this->mRestrictionsLoaded) {
1432 $this->loadRestrictions();
1433 }
1434
1435 return $this->mCascadeRestriction;
1436 }
1437
1438 /**
1439 * Loads a string into mRestrictions array
1440 * @param resource $res restrictions as an SQL result.
1441 * @access public
1442 */
1443 function loadRestrictionsFromRow( $res, $oldFashionedRestrictions = NULL ) {
1444 $dbr =& wfGetDb( DB_SLAVE );
1445
1446 $this->mRestrictions['edit'] = array();
1447 $this->mRestrictions['move'] = array();
1448
1449 # Backwards-compatibility: also load the restrictions from the page record (old format).
1450
1451 if ( $oldFashionedRestrictions == NULL ) {
1452 $oldFashionedRestrictions = $dbr->selectField( 'page', 'page_restrictions', array( 'page_id' => $this->getArticleId() ), __METHOD__ );
1453 }
1454
1455 if ($oldFashionedRestrictions != '') {
1456
1457 foreach( explode( ':', trim( $oldFashionedRestrictions ) ) as $restrict ) {
1458 $temp = explode( '=', trim( $restrict ) );
1459 if(count($temp) == 1) {
1460 // old old format should be treated as edit/move restriction
1461 $this->mRestrictions["edit"] = explode( ',', trim( $temp[0] ) );
1462 $this->mRestrictions["move"] = explode( ',', trim( $temp[0] ) );
1463 } else {
1464 $this->mRestrictions[$temp[0]] = explode( ',', trim( $temp[1] ) );
1465 }
1466 }
1467
1468 $this->mOldRestrictions = true;
1469 $this->mCascadeRestriction = false;
1470
1471 }
1472
1473 if ($dbr->numRows( $res) ) {
1474 # Current system - load second to make them override.
1475 while ($row = $dbr->fetchObject( $res ) ) {
1476 # Cycle through all the restrictions.
1477
1478 $this->mRestrictions[$row->pr_type] = explode( ',', trim( $row->pr_level ) );
1479
1480 $this->mCascadeRestriction |= $row->pr_cascade;
1481 }
1482 }
1483
1484 $this->mRestrictionsLoaded = true;
1485 }
1486
1487 function loadRestrictions( $oldFashionedRestrictions = NULL ) {
1488 if( !$this->mRestrictionsLoaded ) {
1489 $dbr =& wfGetDB( DB_SLAVE );
1490
1491 $res = $dbr->select( 'page_restrictions', '*',
1492 array ( 'pr_page' => $this->getArticleId() ), __METHOD__ );
1493
1494 $this->loadRestrictionsFromRow( $res, $oldFashionedRestrictions );
1495 }
1496 }
1497
1498 /**
1499 * Accessor/initialisation for mRestrictions
1500 *
1501 * @access public
1502 * @param string $action action that permission needs to be checked for
1503 * @return array the array of groups allowed to edit this article
1504 */
1505 function getRestrictions( $action ) {
1506 if( $this->exists() ) {
1507 if( !$this->mRestrictionsLoaded ) {
1508 $this->loadRestrictions();
1509 }
1510 return isset( $this->mRestrictions[$action] )
1511 ? $this->mRestrictions[$action]
1512 : array();
1513 } else {
1514 return array();
1515 }
1516 }
1517
1518 /**
1519 * Is there a version of this page in the deletion archive?
1520 * @return int the number of archived revisions
1521 * @access public
1522 */
1523 function isDeleted() {
1524 $fname = 'Title::isDeleted';
1525 if ( $this->getNamespace() < 0 ) {
1526 $n = 0;
1527 } else {
1528 $dbr =& wfGetDB( DB_SLAVE );
1529 $n = $dbr->selectField( 'archive', 'COUNT(*)', array( 'ar_namespace' => $this->getNamespace(),
1530 'ar_title' => $this->getDBkey() ), $fname );
1531 if( $this->getNamespace() == NS_IMAGE ) {
1532 $n += $dbr->selectField( 'filearchive', 'COUNT(*)',
1533 array( 'fa_name' => $this->getDBkey() ), $fname );
1534 }
1535 }
1536 return (int)$n;
1537 }
1538
1539 /**
1540 * Get the article ID for this Title from the link cache,
1541 * adding it if necessary
1542 * @param int $flags a bit field; may be GAID_FOR_UPDATE to select
1543 * for update
1544 * @return int the ID
1545 */
1546 public function getArticleID( $flags = 0 ) {
1547 $linkCache =& LinkCache::singleton();
1548 if ( $flags & GAID_FOR_UPDATE ) {
1549 $oldUpdate = $linkCache->forUpdate( true );
1550 $this->mArticleID = $linkCache->addLinkObj( $this );
1551 $linkCache->forUpdate( $oldUpdate );
1552 } else {
1553 if ( -1 == $this->mArticleID ) {
1554 $this->mArticleID = $linkCache->addLinkObj( $this );
1555 }
1556 }
1557 return $this->mArticleID;
1558 }
1559
1560 function getLatestRevID() {
1561 if ($this->mLatestID !== false)
1562 return $this->mLatestID;
1563
1564 $db =& wfGetDB(DB_SLAVE);
1565 return $this->mLatestID = $db->selectField( 'revision',
1566 "max(rev_id)",
1567 array('rev_page' => $this->getArticleID()),
1568 'Title::getLatestRevID' );
1569 }
1570
1571 /**
1572 * This clears some fields in this object, and clears any associated
1573 * keys in the "bad links" section of the link cache.
1574 *
1575 * - This is called from Article::insertNewArticle() to allow
1576 * loading of the new page_id. It's also called from
1577 * Article::doDeleteArticle()
1578 *
1579 * @param int $newid the new Article ID
1580 * @access public
1581 */
1582 function resetArticleID( $newid ) {
1583 $linkCache =& LinkCache::singleton();
1584 $linkCache->clearBadLink( $this->getPrefixedDBkey() );
1585
1586 if ( 0 == $newid ) { $this->mArticleID = -1; }
1587 else { $this->mArticleID = $newid; }
1588 $this->mRestrictionsLoaded = false;
1589 $this->mRestrictions = array();
1590 }
1591
1592 /**
1593 * Updates page_touched for this page; called from LinksUpdate.php
1594 * @return bool true if the update succeded
1595 * @access public
1596 */
1597 function invalidateCache() {
1598 global $wgUseFileCache;
1599
1600 if ( wfReadOnly() ) {
1601 return;
1602 }
1603
1604 $dbw =& wfGetDB( DB_MASTER );
1605 $success = $dbw->update( 'page',
1606 array( /* SET */
1607 'page_touched' => $dbw->timestamp()
1608 ), array( /* WHERE */
1609 'page_namespace' => $this->getNamespace() ,
1610 'page_title' => $this->getDBkey()
1611 ), 'Title::invalidateCache'
1612 );
1613
1614 if ($wgUseFileCache) {
1615 $cache = new HTMLFileCache($this);
1616 @unlink($cache->fileCacheName());
1617 }
1618
1619 return $success;
1620 }
1621
1622 /**
1623 * Prefix some arbitrary text with the namespace or interwiki prefix
1624 * of this object
1625 *
1626 * @param string $name the text
1627 * @return string the prefixed text
1628 * @private
1629 */
1630 /* private */ function prefix( $name ) {
1631 $p = '';
1632 if ( '' != $this->mInterwiki ) {
1633 $p = $this->mInterwiki . ':';
1634 }
1635 if ( 0 != $this->mNamespace ) {
1636 $p .= $this->getNsText() . ':';
1637 }
1638 return $p . $name;
1639 }
1640
1641 /**
1642 * Secure and split - main initialisation function for this object
1643 *
1644 * Assumes that mDbkeyform has been set, and is urldecoded
1645 * and uses underscores, but not otherwise munged. This function
1646 * removes illegal characters, splits off the interwiki and
1647 * namespace prefixes, sets the other forms, and canonicalizes
1648 * everything.
1649 * @return bool true on success
1650 * @private
1651 */
1652 /* private */ function secureAndSplit() {
1653 global $wgContLang, $wgLocalInterwiki, $wgCapitalLinks;
1654
1655 # Initialisation
1656 static $rxTc = false;
1657 if( !$rxTc ) {
1658 # % is needed as well
1659 $rxTc = '/[^' . Title::legalChars() . ']|%[0-9A-Fa-f]{2}/S';
1660 }
1661
1662 $this->mInterwiki = $this->mFragment = '';
1663 $this->mNamespace = $this->mDefaultNamespace; # Usually NS_MAIN
1664
1665 $dbkey = $this->mDbkeyform;
1666
1667 # Strip Unicode bidi override characters.
1668 # Sometimes they slip into cut-n-pasted page titles, where the
1669 # override chars get included in list displays.
1670 $dbkey = str_replace( "\xE2\x80\x8E", '', $dbkey ); // 200E LEFT-TO-RIGHT MARK
1671 $dbkey = str_replace( "\xE2\x80\x8F", '', $dbkey ); // 200F RIGHT-TO-LEFT MARK
1672
1673 # Clean up whitespace
1674 #
1675 $dbkey = preg_replace( '/[ _]+/', '_', $dbkey );
1676 $dbkey = trim( $dbkey, '_' );
1677
1678 if ( '' == $dbkey ) {
1679 return false;
1680 }
1681
1682 if( false !== strpos( $dbkey, UTF8_REPLACEMENT ) ) {
1683 # Contained illegal UTF-8 sequences or forbidden Unicode chars.
1684 return false;
1685 }
1686
1687 $this->mDbkeyform = $dbkey;
1688
1689 # Initial colon indicates main namespace rather than specified default
1690 # but should not create invalid {ns,title} pairs such as {0,Project:Foo}
1691 if ( ':' == $dbkey{0} ) {
1692 $this->mNamespace = NS_MAIN;
1693 $dbkey = substr( $dbkey, 1 ); # remove the colon but continue processing
1694 }
1695
1696 # Namespace or interwiki prefix
1697 $firstPass = true;
1698 do {
1699 $m = array();
1700 if ( preg_match( "/^(.+?)_*:_*(.*)$/S", $dbkey, $m ) ) {
1701 $p = $m[1];
1702 $lowerNs = $wgContLang->lc( $p );
1703 if ( $ns = Namespace::getCanonicalIndex( $lowerNs ) ) {
1704 # Canonical namespace
1705 $dbkey = $m[2];
1706 $this->mNamespace = $ns;
1707 } elseif ( $ns = $wgContLang->getNsIndex( $lowerNs )) {
1708 # Ordinary namespace
1709 $dbkey = $m[2];
1710 $this->mNamespace = $ns;
1711 } elseif( $this->getInterwikiLink( $p ) ) {
1712 if( !$firstPass ) {
1713 # Can't make a local interwiki link to an interwiki link.
1714 # That's just crazy!
1715 return false;
1716 }
1717
1718 # Interwiki link
1719 $dbkey = $m[2];
1720 $this->mInterwiki = $wgContLang->lc( $p );
1721
1722 # Redundant interwiki prefix to the local wiki
1723 if ( 0 == strcasecmp( $this->mInterwiki, $wgLocalInterwiki ) ) {
1724 if( $dbkey == '' ) {
1725 # Can't have an empty self-link
1726 return false;
1727 }
1728 $this->mInterwiki = '';
1729 $firstPass = false;
1730 # Do another namespace split...
1731 continue;
1732 }
1733
1734 # If there's an initial colon after the interwiki, that also
1735 # resets the default namespace
1736 if ( $dbkey !== '' && $dbkey[0] == ':' ) {
1737 $this->mNamespace = NS_MAIN;
1738 $dbkey = substr( $dbkey, 1 );
1739 }
1740 }
1741 # If there's no recognized interwiki or namespace,
1742 # then let the colon expression be part of the title.
1743 }
1744 break;
1745 } while( true );
1746
1747 # We already know that some pages won't be in the database!
1748 #
1749 if ( '' != $this->mInterwiki || NS_SPECIAL == $this->mNamespace ) {
1750 $this->mArticleID = 0;
1751 }
1752 $fragment = strstr( $dbkey, '#' );
1753 if ( false !== $fragment ) {
1754 $this->setFragment( $fragment );
1755 $dbkey = substr( $dbkey, 0, strlen( $dbkey ) - strlen( $fragment ) );
1756 # remove whitespace again: prevents "Foo_bar_#"
1757 # becoming "Foo_bar_"
1758 $dbkey = preg_replace( '/_*$/', '', $dbkey );
1759 }
1760
1761 # Reject illegal characters.
1762 #
1763 if( preg_match( $rxTc, $dbkey ) ) {
1764 return false;
1765 }
1766
1767 /**
1768 * Pages with "/./" or "/../" appearing in the URLs will
1769 * often be unreachable due to the way web browsers deal
1770 * with 'relative' URLs. Forbid them explicitly.
1771 */
1772 if ( strpos( $dbkey, '.' ) !== false &&
1773 ( $dbkey === '.' || $dbkey === '..' ||
1774 strpos( $dbkey, './' ) === 0 ||
1775 strpos( $dbkey, '../' ) === 0 ||
1776 strpos( $dbkey, '/./' ) !== false ||
1777 strpos( $dbkey, '/../' ) !== false ) )
1778 {
1779 return false;
1780 }
1781
1782 /**
1783 * Limit the size of titles to 255 bytes.
1784 * This is typically the size of the underlying database field.
1785 * We make an exception for special pages, which don't need to be stored
1786 * in the database, and may edge over 255 bytes due to subpage syntax
1787 * for long titles, e.g. [[Special:Block/Long name]]
1788 */
1789 if ( ( $this->mNamespace != NS_SPECIAL && strlen( $dbkey ) > 255 ) ||
1790 strlen( $dbkey ) > 512 )
1791 {
1792 return false;
1793 }
1794
1795 /**
1796 * Normally, all wiki links are forced to have
1797 * an initial capital letter so [[foo]] and [[Foo]]
1798 * point to the same place.
1799 *
1800 * Don't force it for interwikis, since the other
1801 * site might be case-sensitive.
1802 */
1803 if( $wgCapitalLinks && $this->mInterwiki == '') {
1804 $dbkey = $wgContLang->ucfirst( $dbkey );
1805 }
1806
1807 /**
1808 * Can't make a link to a namespace alone...
1809 * "empty" local links can only be self-links
1810 * with a fragment identifier.
1811 */
1812 if( $dbkey == '' &&
1813 $this->mInterwiki == '' &&
1814 $this->mNamespace != NS_MAIN ) {
1815 return false;
1816 }
1817
1818 // Any remaining initial :s are illegal.
1819 if ( $dbkey !== '' && ':' == $dbkey{0} ) {
1820 return false;
1821 }
1822
1823 # Fill fields
1824 $this->mDbkeyform = $dbkey;
1825 $this->mUrlform = wfUrlencode( $dbkey );
1826
1827 $this->mTextform = str_replace( '_', ' ', $dbkey );
1828
1829 return true;
1830 }
1831
1832 /**
1833 * Set the fragment for this title
1834 * This is kind of bad, since except for this rarely-used function, Title objects
1835 * are immutable. The reason this is here is because it's better than setting the
1836 * members directly, which is what Linker::formatComment was doing previously.
1837 *
1838 * @param string $fragment text
1839 * @access kind of public
1840 */
1841 function setFragment( $fragment ) {
1842 $this->mFragment = str_replace( '_', ' ', substr( $fragment, 1 ) );
1843 }
1844
1845 /**
1846 * Get a Title object associated with the talk page of this article
1847 * @return Title the object for the talk page
1848 * @access public
1849 */
1850 function getTalkPage() {
1851 return Title::makeTitle( Namespace::getTalk( $this->getNamespace() ), $this->getDBkey() );
1852 }
1853
1854 /**
1855 * Get a title object associated with the subject page of this
1856 * talk page
1857 *
1858 * @return Title the object for the subject page
1859 * @access public
1860 */
1861 function getSubjectPage() {
1862 return Title::makeTitle( Namespace::getSubject( $this->getNamespace() ), $this->getDBkey() );
1863 }
1864
1865 /**
1866 * Get an array of Title objects linking to this Title
1867 * Also stores the IDs in the link cache.
1868 *
1869 * WARNING: do not use this function on arbitrary user-supplied titles!
1870 * On heavily-used templates it will max out the memory.
1871 *
1872 * @param string $options may be FOR UPDATE
1873 * @return array the Title objects linking here
1874 * @access public
1875 */
1876 function getLinksTo( $options = '', $table = 'pagelinks', $prefix = 'pl' ) {
1877 $linkCache =& LinkCache::singleton();
1878
1879 if ( $options ) {
1880 $db =& wfGetDB( DB_MASTER );
1881 } else {
1882 $db =& wfGetDB( DB_SLAVE );
1883 }
1884
1885 $res = $db->select( array( 'page', $table ),
1886 array( 'page_namespace', 'page_title', 'page_id' ),
1887 array(
1888 "{$prefix}_from=page_id",
1889 "{$prefix}_namespace" => $this->getNamespace(),
1890 "{$prefix}_title" => $this->getDbKey() ),
1891 'Title::getLinksTo',
1892 $options );
1893
1894 $retVal = array();
1895 if ( $db->numRows( $res ) ) {
1896 while ( $row = $db->fetchObject( $res ) ) {
1897 if ( $titleObj = Title::makeTitle( $row->page_namespace, $row->page_title ) ) {
1898 $linkCache->addGoodLinkObj( $row->page_id, $titleObj );
1899 $retVal[] = $titleObj;
1900 }
1901 }
1902 }
1903 $db->freeResult( $res );
1904 return $retVal;
1905 }
1906
1907 /**
1908 * Get an array of Title objects using this Title as a template
1909 * Also stores the IDs in the link cache.
1910 *
1911 * WARNING: do not use this function on arbitrary user-supplied titles!
1912 * On heavily-used templates it will max out the memory.
1913 *
1914 * @param string $options may be FOR UPDATE
1915 * @return array the Title objects linking here
1916 * @access public
1917 */
1918 function getTemplateLinksTo( $options = '' ) {
1919 return $this->getLinksTo( $options, 'templatelinks', 'tl' );
1920 }
1921
1922 /**
1923 * Get an array of Title objects referring to non-existent articles linked from this page
1924 *
1925 * @param string $options may be FOR UPDATE
1926 * @return array the Title objects
1927 * @access public
1928 */
1929 function getBrokenLinksFrom( $options = '' ) {
1930 if ( $options ) {
1931 $db =& wfGetDB( DB_MASTER );
1932 } else {
1933 $db =& wfGetDB( DB_SLAVE );
1934 }
1935
1936 $res = $db->safeQuery(
1937 "SELECT pl_namespace, pl_title
1938 FROM !
1939 LEFT JOIN !
1940 ON pl_namespace=page_namespace
1941 AND pl_title=page_title
1942 WHERE pl_from=?
1943 AND page_namespace IS NULL
1944 !",
1945 $db->tableName( 'pagelinks' ),
1946 $db->tableName( 'page' ),
1947 $this->getArticleId(),
1948 $options );
1949
1950 $retVal = array();
1951 if ( $db->numRows( $res ) ) {
1952 while ( $row = $db->fetchObject( $res ) ) {
1953 $retVal[] = Title::makeTitle( $row->pl_namespace, $row->pl_title );
1954 }
1955 }
1956 $db->freeResult( $res );
1957 return $retVal;
1958 }
1959
1960
1961 /**
1962 * Get a list of URLs to purge from the Squid cache when this
1963 * page changes
1964 *
1965 * @return array the URLs
1966 * @access public
1967 */
1968 function getSquidURLs() {
1969 global $wgContLang;
1970
1971 $urls = array(
1972 $this->getInternalURL(),
1973 $this->getInternalURL( 'action=history' )
1974 );
1975
1976 // purge variant urls as well
1977 if($wgContLang->hasVariants()){
1978 $variants = $wgContLang->getVariants();
1979 foreach($variants as $vCode){
1980 if($vCode==$wgContLang->getCode()) continue; // we don't want default variant
1981 $urls[] = $this->getInternalURL('',$vCode);
1982 }
1983 }
1984
1985 return $urls;
1986 }
1987
1988 function purgeSquid() {
1989 global $wgUseSquid;
1990 if ( $wgUseSquid ) {
1991 $urls = $this->getSquidURLs();
1992 $u = new SquidUpdate( $urls );
1993 $u->doUpdate();
1994 }
1995 }
1996
1997 /**
1998 * Move this page without authentication
1999 * @param Title &$nt the new page Title
2000 * @access public
2001 */
2002 function moveNoAuth( &$nt ) {
2003 return $this->moveTo( $nt, false );
2004 }
2005
2006 /**
2007 * Check whether a given move operation would be valid.
2008 * Returns true if ok, or a message key string for an error message
2009 * if invalid. (Scarrrrry ugly interface this.)
2010 * @param Title &$nt the new title
2011 * @param bool $auth indicates whether $wgUser's permissions
2012 * should be checked
2013 * @return mixed true on success, message name on failure
2014 * @access public
2015 */
2016 function isValidMoveOperation( &$nt, $auth = true ) {
2017 if( !$this or !$nt ) {
2018 return 'badtitletext';
2019 }
2020 if( $this->equals( $nt ) ) {
2021 return 'selfmove';
2022 }
2023 if( !$this->isMovable() || !$nt->isMovable() ) {
2024 return 'immobile_namespace';
2025 }
2026
2027 $oldid = $this->getArticleID();
2028 $newid = $nt->getArticleID();
2029
2030 if ( strlen( $nt->getDBkey() ) < 1 ) {
2031 return 'articleexists';
2032 }
2033 if ( ( '' == $this->getDBkey() ) ||
2034 ( !$oldid ) ||
2035 ( '' == $nt->getDBkey() ) ) {
2036 return 'badarticleerror';
2037 }
2038
2039 if ( $auth && (
2040 !$this->userCanEdit() || !$nt->userCanEdit() ||
2041 !$this->userCanMove() || !$nt->userCanMove() ) ) {
2042 return 'protectedpage';
2043 }
2044
2045 # The move is allowed only if (1) the target doesn't exist, or
2046 # (2) the target is a redirect to the source, and has no history
2047 # (so we can undo bad moves right after they're done).
2048
2049 if ( 0 != $newid ) { # Target exists; check for validity
2050 if ( ! $this->isValidMoveTarget( $nt ) ) {
2051 return 'articleexists';
2052 }
2053 }
2054 return true;
2055 }
2056
2057 /**
2058 * Move a title to a new location
2059 * @param Title &$nt the new title
2060 * @param bool $auth indicates whether $wgUser's permissions
2061 * should be checked
2062 * @return mixed true on success, message name on failure
2063 * @access public
2064 */
2065 function moveTo( &$nt, $auth = true, $reason = '' ) {
2066 $err = $this->isValidMoveOperation( $nt, $auth );
2067 if( is_string( $err ) ) {
2068 return $err;
2069 }
2070
2071 $pageid = $this->getArticleID();
2072 if( $nt->exists() ) {
2073 $this->moveOverExistingRedirect( $nt, $reason );
2074 $pageCountChange = 0;
2075 } else { # Target didn't exist, do normal move.
2076 $this->moveToNewTitle( $nt, $reason );
2077 $pageCountChange = 1;
2078 }
2079 $redirid = $this->getArticleID();
2080
2081 # Fixing category links (those without piped 'alternate' names) to be sorted under the new title
2082 $dbw =& wfGetDB( DB_MASTER );
2083 $categorylinks = $dbw->tableName( 'categorylinks' );
2084 $sql = "UPDATE $categorylinks SET cl_sortkey=" . $dbw->addQuotes( $nt->getPrefixedText() ) .
2085 " WHERE cl_from=" . $dbw->addQuotes( $pageid ) .
2086 " AND cl_sortkey=" . $dbw->addQuotes( $this->getPrefixedText() );
2087 $dbw->query( $sql, 'SpecialMovepage::doSubmit' );
2088
2089 # Update watchlists
2090
2091 $oldnamespace = $this->getNamespace() & ~1;
2092 $newnamespace = $nt->getNamespace() & ~1;
2093 $oldtitle = $this->getDBkey();
2094 $newtitle = $nt->getDBkey();
2095
2096 if( $oldnamespace != $newnamespace || $oldtitle != $newtitle ) {
2097 WatchedItem::duplicateEntries( $this, $nt );
2098 }
2099
2100 # Update search engine
2101 $u = new SearchUpdate( $pageid, $nt->getPrefixedDBkey() );
2102 $u->doUpdate();
2103 $u = new SearchUpdate( $redirid, $this->getPrefixedDBkey(), '' );
2104 $u->doUpdate();
2105
2106 # Update site_stats
2107 if( $this->isContentPage() && !$nt->isContentPage() ) {
2108 # No longer a content page
2109 # Not viewed, edited, removing
2110 $u = new SiteStatsUpdate( 0, 1, -1, $pageCountChange );
2111 } elseif( !$this->isContentPage() && $nt->isContentPage() ) {
2112 # Now a content page
2113 # Not viewed, edited, adding
2114 $u = new SiteStatsUpdate( 0, 1, +1, $pageCountChange );
2115 } elseif( $pageCountChange ) {
2116 # Redirect added
2117 $u = new SiteStatsUpdate( 0, 0, 0, 1 );
2118 } else {
2119 # Nothing special
2120 $u = false;
2121 }
2122 if( $u )
2123 $u->doUpdate();
2124
2125 global $wgUser;
2126 wfRunHooks( 'TitleMoveComplete', array( &$this, &$nt, &$wgUser, $pageid, $redirid ) );
2127 return true;
2128 }
2129
2130 /**
2131 * Move page to a title which is at present a redirect to the
2132 * source page
2133 *
2134 * @param Title &$nt the page to move to, which should currently
2135 * be a redirect
2136 * @private
2137 */
2138 function moveOverExistingRedirect( &$nt, $reason = '' ) {
2139 global $wgUseSquid;
2140 $fname = 'Title::moveOverExistingRedirect';
2141 $comment = wfMsgForContent( '1movedto2', $this->getPrefixedText(), $nt->getPrefixedText() );
2142
2143 if ( $reason ) {
2144 $comment .= ": $reason";
2145 }
2146
2147 $now = wfTimestampNow();
2148 $newid = $nt->getArticleID();
2149 $oldid = $this->getArticleID();
2150 $dbw =& wfGetDB( DB_MASTER );
2151 $linkCache =& LinkCache::singleton();
2152
2153 # Delete the old redirect. We don't save it to history since
2154 # by definition if we've got here it's rather uninteresting.
2155 # We have to remove it so that the next step doesn't trigger
2156 # a conflict on the unique namespace+title index...
2157 $dbw->delete( 'page', array( 'page_id' => $newid ), $fname );
2158
2159 # Save a null revision in the page's history notifying of the move
2160 $nullRevision = Revision::newNullRevision( $dbw, $oldid, $comment, true );
2161 $nullRevId = $nullRevision->insertOn( $dbw );
2162
2163 # Change the name of the target page:
2164 $dbw->update( 'page',
2165 /* SET */ array(
2166 'page_touched' => $dbw->timestamp($now),
2167 'page_namespace' => $nt->getNamespace(),
2168 'page_title' => $nt->getDBkey(),
2169 'page_latest' => $nullRevId,
2170 ),
2171 /* WHERE */ array( 'page_id' => $oldid ),
2172 $fname
2173 );
2174 $linkCache->clearLink( $nt->getPrefixedDBkey() );
2175
2176 # Recreate the redirect, this time in the other direction.
2177 $mwRedir = MagicWord::get( 'redirect' );
2178 $redirectText = $mwRedir->getSynonym( 0 ) . ' [[' . $nt->getPrefixedText() . "]]\n";
2179 $redirectArticle = new Article( $this );
2180 $newid = $redirectArticle->insertOn( $dbw );
2181 $redirectRevision = new Revision( array(
2182 'page' => $newid,
2183 'comment' => $comment,
2184 'text' => $redirectText ) );
2185 $redirectRevision->insertOn( $dbw );
2186 $redirectArticle->updateRevisionOn( $dbw, $redirectRevision, 0 );
2187 $linkCache->clearLink( $this->getPrefixedDBkey() );
2188
2189 # Log the move
2190 $log = new LogPage( 'move' );
2191 $log->addEntry( 'move_redir', $this, $reason, array( 1 => $nt->getPrefixedText() ) );
2192
2193 # Now, we record the link from the redirect to the new title.
2194 # It should have no other outgoing links...
2195 $dbw->delete( 'pagelinks', array( 'pl_from' => $newid ), $fname );
2196 $dbw->insert( 'pagelinks',
2197 array(
2198 'pl_from' => $newid,
2199 'pl_namespace' => $nt->getNamespace(),
2200 'pl_title' => $nt->getDbKey() ),
2201 $fname );
2202
2203 # Purge squid
2204 if ( $wgUseSquid ) {
2205 $urls = array_merge( $nt->getSquidURLs(), $this->getSquidURLs() );
2206 $u = new SquidUpdate( $urls );
2207 $u->doUpdate();
2208 }
2209 }
2210
2211 /**
2212 * Move page to non-existing title.
2213 * @param Title &$nt the new Title
2214 * @private
2215 */
2216 function moveToNewTitle( &$nt, $reason = '' ) {
2217 global $wgUseSquid;
2218 $fname = 'MovePageForm::moveToNewTitle';
2219 $comment = wfMsgForContent( '1movedto2', $this->getPrefixedText(), $nt->getPrefixedText() );
2220 if ( $reason ) {
2221 $comment .= ": $reason";
2222 }
2223
2224 $newid = $nt->getArticleID();
2225 $oldid = $this->getArticleID();
2226 $dbw =& wfGetDB( DB_MASTER );
2227 $now = $dbw->timestamp();
2228 $linkCache =& LinkCache::singleton();
2229
2230 # Save a null revision in the page's history notifying of the move
2231 $nullRevision = Revision::newNullRevision( $dbw, $oldid, $comment, true );
2232 $nullRevId = $nullRevision->insertOn( $dbw );
2233
2234 # Rename cur entry
2235 $dbw->update( 'page',
2236 /* SET */ array(
2237 'page_touched' => $now,
2238 'page_namespace' => $nt->getNamespace(),
2239 'page_title' => $nt->getDBkey(),
2240 'page_latest' => $nullRevId,
2241 ),
2242 /* WHERE */ array( 'page_id' => $oldid ),
2243 $fname
2244 );
2245
2246 $linkCache->clearLink( $nt->getPrefixedDBkey() );
2247
2248 # Insert redirect
2249 $mwRedir = MagicWord::get( 'redirect' );
2250 $redirectText = $mwRedir->getSynonym( 0 ) . ' [[' . $nt->getPrefixedText() . "]]\n";
2251 $redirectArticle = new Article( $this );
2252 $newid = $redirectArticle->insertOn( $dbw );
2253 $redirectRevision = new Revision( array(
2254 'page' => $newid,
2255 'comment' => $comment,
2256 'text' => $redirectText ) );
2257 $redirectRevision->insertOn( $dbw );
2258 $redirectArticle->updateRevisionOn( $dbw, $redirectRevision, 0 );
2259 $linkCache->clearLink( $this->getPrefixedDBkey() );
2260
2261 # Log the move
2262 $log = new LogPage( 'move' );
2263 $log->addEntry( 'move', $this, $reason, array( 1 => $nt->getPrefixedText()) );
2264
2265 # Purge caches as per article creation
2266 Article::onArticleCreate( $nt );
2267
2268 # Record the just-created redirect's linking to the page
2269 $dbw->insert( 'pagelinks',
2270 array(
2271 'pl_from' => $newid,
2272 'pl_namespace' => $nt->getNamespace(),
2273 'pl_title' => $nt->getDBkey() ),
2274 $fname );
2275
2276 # Purge old title from squid
2277 # The new title, and links to the new title, are purged in Article::onArticleCreate()
2278 $this->purgeSquid();
2279 }
2280
2281 /**
2282 * Checks if $this can be moved to a given Title
2283 * - Selects for update, so don't call it unless you mean business
2284 *
2285 * @param Title &$nt the new title to check
2286 * @access public
2287 */
2288 function isValidMoveTarget( $nt ) {
2289
2290 $fname = 'Title::isValidMoveTarget';
2291 $dbw =& wfGetDB( DB_MASTER );
2292
2293 # Is it a redirect?
2294 $id = $nt->getArticleID();
2295 $obj = $dbw->selectRow( array( 'page', 'revision', 'text'),
2296 array( 'page_is_redirect','old_text','old_flags' ),
2297 array( 'page_id' => $id, 'page_latest=rev_id', 'rev_text_id=old_id' ),
2298 $fname, 'FOR UPDATE' );
2299
2300 if ( !$obj || 0 == $obj->page_is_redirect ) {
2301 # Not a redirect
2302 wfDebug( __METHOD__ . ": not a redirect\n" );
2303 return false;
2304 }
2305 $text = Revision::getRevisionText( $obj );
2306
2307 # Does the redirect point to the source?
2308 # Or is it a broken self-redirect, usually caused by namespace collisions?
2309 $m = array();
2310 if ( preg_match( "/\\[\\[\\s*([^\\]\\|]*)]]/", $text, $m ) ) {
2311 $redirTitle = Title::newFromText( $m[1] );
2312 if( !is_object( $redirTitle ) ||
2313 ( $redirTitle->getPrefixedDBkey() != $this->getPrefixedDBkey() &&
2314 $redirTitle->getPrefixedDBkey() != $nt->getPrefixedDBkey() ) ) {
2315 wfDebug( __METHOD__ . ": redirect points to other page\n" );
2316 return false;
2317 }
2318 } else {
2319 # Fail safe
2320 wfDebug( __METHOD__ . ": failsafe\n" );
2321 return false;
2322 }
2323
2324 # Does the article have a history?
2325 $row = $dbw->selectRow( array( 'page', 'revision'),
2326 array( 'rev_id' ),
2327 array( 'page_namespace' => $nt->getNamespace(),
2328 'page_title' => $nt->getDBkey(),
2329 'page_id=rev_page AND page_latest != rev_id'
2330 ), $fname, 'FOR UPDATE'
2331 );
2332
2333 # Return true if there was no history
2334 return $row === false;
2335 }
2336
2337 /**
2338 * Create a redirect; fails if the title already exists; does
2339 * not notify RC
2340 *
2341 * @param Title $dest the destination of the redirect
2342 * @param string $comment the comment string describing the move
2343 * @return bool true on success
2344 * @access public
2345 */
2346 function createRedirect( $dest, $comment ) {
2347 if ( $this->getArticleID() ) {
2348 return false;
2349 }
2350
2351 $fname = 'Title::createRedirect';
2352 $dbw =& wfGetDB( DB_MASTER );
2353
2354 $article = new Article( $this );
2355 $newid = $article->insertOn( $dbw );
2356 $revision = new Revision( array(
2357 'page' => $newid,
2358 'comment' => $comment,
2359 'text' => "#REDIRECT [[" . $dest->getPrefixedText() . "]]\n",
2360 ) );
2361 $revision->insertOn( $dbw );
2362 $article->updateRevisionOn( $dbw, $revision, 0 );
2363
2364 # Link table
2365 $dbw->insert( 'pagelinks',
2366 array(
2367 'pl_from' => $newid,
2368 'pl_namespace' => $dest->getNamespace(),
2369 'pl_title' => $dest->getDbKey()
2370 ), $fname
2371 );
2372
2373 Article::onArticleCreate( $this );
2374 return true;
2375 }
2376
2377 /**
2378 * Get categories to which this Title belongs and return an array of
2379 * categories' names.
2380 *
2381 * @return array an array of parents in the form:
2382 * $parent => $currentarticle
2383 * @access public
2384 */
2385 function getParentCategories() {
2386 global $wgContLang;
2387
2388 $titlekey = $this->getArticleId();
2389 $dbr =& wfGetDB( DB_SLAVE );
2390 $categorylinks = $dbr->tableName( 'categorylinks' );
2391
2392 # NEW SQL
2393 $sql = "SELECT * FROM $categorylinks"
2394 ." WHERE cl_from='$titlekey'"
2395 ." AND cl_from <> '0'"
2396 ." ORDER BY cl_sortkey";
2397
2398 $res = $dbr->query ( $sql ) ;
2399
2400 if($dbr->numRows($res) > 0) {
2401 while ( $x = $dbr->fetchObject ( $res ) )
2402 //$data[] = Title::newFromText($wgContLang->getNSText ( NS_CATEGORY ).':'.$x->cl_to);
2403 $data[$wgContLang->getNSText ( NS_CATEGORY ).':'.$x->cl_to] = $this->getFullText();
2404 $dbr->freeResult ( $res ) ;
2405 } else {
2406 $data = '';
2407 }
2408 return $data;
2409 }
2410
2411 /**
2412 * Get a tree of parent categories
2413 * @param array $children an array with the children in the keys, to check for circular refs
2414 * @return array
2415 * @access public
2416 */
2417 function getParentCategoryTree( $children = array() ) {
2418 $parents = $this->getParentCategories();
2419
2420 if($parents != '') {
2421 foreach($parents as $parent => $current) {
2422 if ( array_key_exists( $parent, $children ) ) {
2423 # Circular reference
2424 $stack[$parent] = array();
2425 } else {
2426 $nt = Title::newFromText($parent);
2427 if ( $nt ) {
2428 $stack[$parent] = $nt->getParentCategoryTree( $children + array($parent => 1) );
2429 }
2430 }
2431 }
2432 return $stack;
2433 } else {
2434 return array();
2435 }
2436 }
2437
2438
2439 /**
2440 * Get an associative array for selecting this title from
2441 * the "page" table
2442 *
2443 * @return array
2444 * @access public
2445 */
2446 function pageCond() {
2447 return array( 'page_namespace' => $this->mNamespace, 'page_title' => $this->mDbkeyform );
2448 }
2449
2450 /**
2451 * Get the revision ID of the previous revision
2452 *
2453 * @param integer $revision Revision ID. Get the revision that was before this one.
2454 * @return integer $oldrevision|false
2455 */
2456 function getPreviousRevisionID( $revision ) {
2457 $dbr =& wfGetDB( DB_SLAVE );
2458 return $dbr->selectField( 'revision', 'rev_id',
2459 'rev_page=' . intval( $this->getArticleId() ) .
2460 ' AND rev_id<' . intval( $revision ) . ' ORDER BY rev_id DESC' );
2461 }
2462
2463 /**
2464 * Get the revision ID of the next revision
2465 *
2466 * @param integer $revision Revision ID. Get the revision that was after this one.
2467 * @return integer $oldrevision|false
2468 */
2469 function getNextRevisionID( $revision ) {
2470 $dbr =& wfGetDB( DB_SLAVE );
2471 return $dbr->selectField( 'revision', 'rev_id',
2472 'rev_page=' . intval( $this->getArticleId() ) .
2473 ' AND rev_id>' . intval( $revision ) . ' ORDER BY rev_id' );
2474 }
2475
2476 /**
2477 * Get the number of revisions between the given revision IDs.
2478 *
2479 * @param integer $old Revision ID.
2480 * @param integer $new Revision ID.
2481 * @return integer Number of revisions between these IDs.
2482 */
2483 function countRevisionsBetween( $old, $new ) {
2484 $dbr =& wfGetDB( DB_SLAVE );
2485 return $dbr->selectField( 'revision', 'count(*)',
2486 'rev_page = ' . intval( $this->getArticleId() ) .
2487 ' AND rev_id > ' . intval( $old ) .
2488 ' AND rev_id < ' . intval( $new ) );
2489 }
2490
2491 /**
2492 * Compare with another title.
2493 *
2494 * @param Title $title
2495 * @return bool
2496 */
2497 function equals( $title ) {
2498 // Note: === is necessary for proper matching of number-like titles.
2499 return $this->getInterwiki() === $title->getInterwiki()
2500 && $this->getNamespace() == $title->getNamespace()
2501 && $this->getDbkey() === $title->getDbkey();
2502 }
2503
2504 /**
2505 * Check if page exists
2506 * @return bool
2507 */
2508 function exists() {
2509 return $this->getArticleId() != 0;
2510 }
2511
2512 /**
2513 * Should a link should be displayed as a known link, just based on its title?
2514 *
2515 * Currently, a self-link with a fragment and special pages are in
2516 * this category. Special pages never exist in the database.
2517 */
2518 function isAlwaysKnown() {
2519 return $this->isExternal() || ( 0 == $this->mNamespace && "" == $this->mDbkeyform )
2520 || NS_SPECIAL == $this->mNamespace;
2521 }
2522
2523 /**
2524 * Update page_touched timestamps and send squid purge messages for
2525 * pages linking to this title. May be sent to the job queue depending
2526 * on the number of links. Typically called on create and delete.
2527 */
2528 function touchLinks() {
2529 $u = new HTMLCacheUpdate( $this, 'pagelinks' );
2530 $u->doUpdate();
2531
2532 if ( $this->getNamespace() == NS_CATEGORY ) {
2533 $u = new HTMLCacheUpdate( $this, 'categorylinks' );
2534 $u->doUpdate();
2535 }
2536 }
2537
2538 /**
2539 * Get the last touched timestamp
2540 */
2541 function getTouched() {
2542 $dbr =& wfGetDB( DB_SLAVE );
2543 $touched = $dbr->selectField( 'page', 'page_touched',
2544 array(
2545 'page_namespace' => $this->getNamespace(),
2546 'page_title' => $this->getDBkey()
2547 ), __METHOD__
2548 );
2549 return $touched;
2550 }
2551
2552 /**
2553 * Get a cached value from a global cache that is invalidated when this page changes
2554 * @param string $key the key
2555 * @param callback $callback A callback function which generates the value on cache miss
2556 *
2557 * @deprecated use DependencyWrapper
2558 */
2559 function getRelatedCache( $memc, $key, $expiry, $callback, $params = array() ) {
2560 return DependencyWrapper::getValueFromCache( $memc, $key, $expiry, $callback,
2561 $params, new TitleDependency( $this ) );
2562 }
2563
2564 function trackbackURL() {
2565 global $wgTitle, $wgScriptPath, $wgServer;
2566
2567 return "$wgServer$wgScriptPath/trackback.php?article="
2568 . htmlspecialchars(urlencode($wgTitle->getPrefixedDBkey()));
2569 }
2570
2571 function trackbackRDF() {
2572 $url = htmlspecialchars($this->getFullURL());
2573 $title = htmlspecialchars($this->getText());
2574 $tburl = $this->trackbackURL();
2575
2576 return "
2577 <rdf:RDF xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\"
2578 xmlns:dc=\"http://purl.org/dc/elements/1.1/\"
2579 xmlns:trackback=\"http://madskills.com/public/xml/rss/module/trackback/\">
2580 <rdf:Description
2581 rdf:about=\"$url\"
2582 dc:identifier=\"$url\"
2583 dc:title=\"$title\"
2584 trackback:ping=\"$tburl\" />
2585 </rdf:RDF>";
2586 }
2587
2588 /**
2589 * Generate strings used for xml 'id' names in monobook tabs
2590 * @return string
2591 */
2592 function getNamespaceKey() {
2593 global $wgContLang;
2594 switch ($this->getNamespace()) {
2595 case NS_MAIN:
2596 case NS_TALK:
2597 return 'nstab-main';
2598 case NS_USER:
2599 case NS_USER_TALK:
2600 return 'nstab-user';
2601 case NS_MEDIA:
2602 return 'nstab-media';
2603 case NS_SPECIAL:
2604 return 'nstab-special';
2605 case NS_PROJECT:
2606 case NS_PROJECT_TALK:
2607 return 'nstab-project';
2608 case NS_IMAGE:
2609 case NS_IMAGE_TALK:
2610 return 'nstab-image';
2611 case NS_MEDIAWIKI:
2612 case NS_MEDIAWIKI_TALK:
2613 return 'nstab-mediawiki';
2614 case NS_TEMPLATE:
2615 case NS_TEMPLATE_TALK:
2616 return 'nstab-template';
2617 case NS_HELP:
2618 case NS_HELP_TALK:
2619 return 'nstab-help';
2620 case NS_CATEGORY:
2621 case NS_CATEGORY_TALK:
2622 return 'nstab-category';
2623 default:
2624 return 'nstab-' . $wgContLang->lc( $this->getSubjectNsText() );
2625 }
2626 }
2627
2628 /**
2629 * Returns true if this title resolves to the named special page
2630 * @param string $name The special page name
2631 * @access public
2632 */
2633 function isSpecial( $name ) {
2634 if ( $this->getNamespace() == NS_SPECIAL ) {
2635 list( $thisName, /* $subpage */ ) = SpecialPage::resolveAliasWithSubpage( $this->getDBkey() );
2636 if ( $name == $thisName ) {
2637 return true;
2638 }
2639 }
2640 return false;
2641 }
2642
2643 /**
2644 * If the Title refers to a special page alias which is not the local default,
2645 * returns a new Title which points to the local default. Otherwise, returns $this.
2646 */
2647 function fixSpecialName() {
2648 if ( $this->getNamespace() == NS_SPECIAL ) {
2649 $canonicalName = SpecialPage::resolveAlias( $this->mDbkeyform );
2650 if ( $canonicalName ) {
2651 $localName = SpecialPage::getLocalNameFor( $canonicalName );
2652 if ( $localName != $this->mDbkeyform ) {
2653 return Title::makeTitle( NS_SPECIAL, $localName );
2654 }
2655 }
2656 }
2657 return $this;
2658 }
2659
2660 /**
2661 * Is this Title in a namespace which contains content?
2662 * In other words, is this a content page, for the purposes of calculating
2663 * statistics, etc?
2664 *
2665 * @return bool
2666 */
2667 public function isContentPage() {
2668 return Namespace::isContent( $this->getNamespace() );
2669 }
2670
2671 }
2672
2673 ?>