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