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