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