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