9 require_once( 'normal/UtfNormal.php' );
11 define ( 'GAID_FOR_UPDATE', 1 );
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,
18 define( 'MW_TITLECACHE_MAX', 1000 );
22 * - Represents a title, which may contain an interwiki designation or namespace
23 * - Can fetch various kinds of data from the database, albeit inefficiently.
29 * Static cache variables
31 static private $titleCache=array();
32 static private $interwikiCache=array();
36 * All member variables should be considered private
37 * Please use the accessor functions
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()
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
75 $this->mDefaultNamespace
= NS_MAIN
;
76 $this->mWatched
= NULL;
77 $this->mLatestID
= false;
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
85 * @return Title the new object, or NULL on an error
89 /* static */ function newFromDBkey( $key ) {
91 $t->mDbkeyform
= $key;
92 if( $t->secureAndSplit() )
99 * Create a new Title from text, such as what one would
100 * find in a link. Decodes any HTML entities in the text.
102 * @param string $text the link text; spaces, prefixes,
103 * and an initial ':' indicating the main namespace
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
111 public static function newFromText( $text, $defaultNamespace = NS_MAIN
) {
112 $fname = 'Title::newFromText';
114 if( is_object( $text ) ) {
115 throw new MWException( 'Title::newFromText given an object' );
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
124 * In theory these are value objects and won't get changed...
126 if( $defaultNamespace == NS_MAIN
&& isset( Title
::$titleCache[$text] ) ) {
127 return Title
::$titleCache[$text];
131 * Convert things like é ā or 〗 into real text...
133 $filteredText = Sanitizer
::decodeCharReferences( $text );
136 $t->mDbkeyform
= str_replace( ' ', '_', $filteredText );
137 $t->mDefaultNamespace
= $defaultNamespace;
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();
148 Title
::$titleCache[$text] =& $t;
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
165 function newFromURL( $url ) {
166 global $wgLegalTitleChars;
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 );
176 $t->mDbkeyform
= str_replace( ' ', '_', $url );
177 if( $t->secureAndSplit() ) {
185 * Create a new Title from an article ID
187 * @todo This is inefficiently implemented, the page row is requested
188 * but not used for anything else
190 * @param int $id the page_id corresponding to the Title to create
191 * @return Title the new object, or NULL on an error
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
);
209 * Make an array of titles from an array of IDs
211 function newFromIDs( $ids ) {
212 $dbr =& wfGetDB( DB_SLAVE
);
213 $res = $dbr->select( 'page', array( 'page_namespace', 'page_title' ),
214 'page_id IN (' . $dbr->makeList( $ids ) . ')', __METHOD__
);
217 while ( $row = $dbr->fetchObject( $res ) ) {
218 $titles[] = Title
::makeTitle( $row->page_namespace
, $row->page_title
);
224 * Create a new Title from a namespace index and a DB key.
225 * It's assumed that $ns and $title are *valid*, for instance when
226 * they came directly from the database or a special page name.
227 * For convenience, spaces are converted to underscores so that
228 * eg user_text fields can be used directly.
230 * @param int $ns the namespace of the article
231 * @param string $title the unprefixed database key form
232 * @return Title the new object
236 public static function &makeTitle( $ns, $title ) {
240 $t->mNamespace
= intval( $ns );
241 $t->mDbkeyform
= str_replace( ' ', '_', $title );
242 $t->mArticleID
= ( $ns >= 0 ) ?
-1 : 0;
243 $t->mUrlform
= wfUrlencode( $t->mDbkeyform
);
244 $t->mTextform
= str_replace( '_', ' ', $title );
249 * Create a new Title from a namespace index and a DB key.
250 * The parameters will be checked for validity, which is a bit slower
251 * than makeTitle() but safer for user-provided data.
253 * @param int $ns the namespace of the article
254 * @param string $title the database key form
255 * @return Title the new object, or NULL on an error
259 public static function makeTitleSafe( $ns, $title ) {
261 $t->mDbkeyform
= Title
::makeName( $ns, $title );
262 if( $t->secureAndSplit() ) {
270 * Create a new Title for the Main Page
273 * @return Title the new object
276 public static function newMainPage() {
277 return Title
::newFromText( wfMsgForContent( 'mainpage' ) );
281 * Create a new Title for a redirect
282 * @param string $text the redirect title text
283 * @return Title the new object, or NULL if the text is not a
288 public static function newFromRedirect( $text ) {
289 $mwRedir = MagicWord
::get( 'redirect' );
291 if ( $mwRedir->matchStart( $text ) ) {
292 if ( preg_match( '/\[{2}(.*?)(?:\||\]{2})/', $text, $m ) ) {
293 # categories are escaped using : for example one can enter:
294 # #REDIRECT [[:Category:Music]]. Need to remove it.
295 if ( substr($m[1],0,1) == ':') {
296 # We don't want to keep the ':'
297 $m[1] = substr( $m[1], 1 );
300 $rt = Title
::newFromText( $m[1] );
301 # Disallow redirects to Special:Userlogout
302 if ( !is_null($rt) && $rt->getNamespace() == NS_SPECIAL
&& preg_match( '/^Userlogout/i', $rt->getText() ) ) {
310 #----------------------------------------------------------------------------
312 #----------------------------------------------------------------------------
315 * Get the prefixed DB key associated with an ID
316 * @param int $id the page_id of the article
317 * @return Title an object representing the article, or NULL
318 * if no such article was found
322 function nameOf( $id ) {
323 $fname = 'Title::nameOf';
324 $dbr =& wfGetDB( DB_SLAVE
);
326 $s = $dbr->selectRow( 'page', array( 'page_namespace','page_title' ), array( 'page_id' => $id ), $fname );
327 if ( $s === false ) { return NULL; }
329 $n = Title
::makeName( $s->page_namespace
, $s->page_title
);
334 * Get a regex character class describing the legal characters in a link
335 * @return string the list of characters, not delimited
339 public static function legalChars() {
340 global $wgLegalTitleChars;
341 return $wgLegalTitleChars;
345 * Get a string representation of a title suitable for
346 * including in a search index
348 * @param int $ns a namespace index
349 * @param string $title text-form main part
350 * @return string a stripped-down title string ready for the
353 /* static */ function indexTitle( $ns, $title ) {
356 $lc = SearchEngine
::legalSearchChars() . '&#;';
357 $t = $wgContLang->stripForSearch( $title );
358 $t = preg_replace( "/[^{$lc}]+/", ' ', $t );
359 $t = strtolower( $t );
362 $t = preg_replace( "/([{$lc}]+)'s( |$)/", "\\1 \\1's ", $t );
363 $t = preg_replace( "/([{$lc}]+)s'( |$)/", "\\1s ", $t );
365 $t = preg_replace( "/\\s+/", ' ', $t );
367 if ( $ns == NS_IMAGE
) {
368 $t = preg_replace( "/ (png|gif|jpg|jpeg|ogg)$/", "", $t );
374 * Make a prefixed DB key from a DB key and a namespace index
375 * @param int $ns numerical representation of the namespace
376 * @param string $title the DB key form the title
377 * @return string the prefixed form of the title
379 public static function makeName( $ns, $title ) {
382 $n = $wgContLang->getNsText( $ns );
383 return $n == '' ?
$title : "$n:$title";
387 * Returns the URL associated with an interwiki prefix
388 * @param string $key the interwiki prefix (e.g. "MeatBall")
389 * @return the associated URL, containing "$1", which should be
390 * replaced by an article title
394 function getInterwikiLink( $key ) {
395 global $wgMemc, $wgDBname, $wgInterwikiExpiry;
396 global $wgInterwikiCache;
397 $fname = 'Title::getInterwikiLink';
399 $key = strtolower( $key );
401 $k = $wgDBname.':interwiki:'.$key;
402 if( array_key_exists( $k, Title
::$interwikiCache ) ) {
403 return Title
::$interwikiCache[$k]->iw_url
;
406 if ($wgInterwikiCache) {
407 return Title
::getInterwikiCached( $key );
410 $s = $wgMemc->get( $k );
411 # Ignore old keys with no iw_local
412 if( $s && isset( $s->iw_local
) && isset($s->iw_trans
)) {
413 Title
::$interwikiCache[$k] = $s;
417 $dbr =& wfGetDB( DB_SLAVE
);
418 $res = $dbr->select( 'interwiki',
419 array( 'iw_url', 'iw_local', 'iw_trans' ),
420 array( 'iw_prefix' => $key ), $fname );
425 $s = $dbr->fetchObject( $res );
427 # Cache non-existence: create a blank object and save it to memcached
433 $wgMemc->set( $k, $s, $wgInterwikiExpiry );
434 Title
::$interwikiCache[$k] = $s;
440 * Fetch interwiki prefix data from local cache in constant database
442 * More logic is explained in DefaultSettings
444 * @return string URL of interwiki site
447 function getInterwikiCached( $key ) {
448 global $wgDBname, $wgInterwikiCache, $wgInterwikiScopes, $wgInterwikiFallbackSite;
452 $db=dba_open($wgInterwikiCache,'r','cdb');
453 /* Resolve site name */
454 if ($wgInterwikiScopes>=3 and !$site) {
455 $site = dba_fetch("__sites:{$wgDBname}", $db);
457 $site = $wgInterwikiFallbackSite;
459 $value = dba_fetch("{$wgDBname}:{$key}", $db);
460 if ($value=='' and $wgInterwikiScopes>=3) {
462 $value = dba_fetch("_{$site}:{$key}", $db);
464 if ($value=='' and $wgInterwikiScopes>=2) {
466 $value = dba_fetch("__global:{$key}", $db);
475 list($local,$url)=explode(' ',$value,2);
477 $s->iw_local
=(int)$local;
479 Title
::$interwikiCache[$wgDBname.':interwiki:'.$key] = $s;
483 * Determine whether the object refers to a page within
486 * @return bool TRUE if this is an in-project interwiki link
487 * or a wikilink, FALSE otherwise
493 if ( $this->mInterwiki
!= '' ) {
494 # Make sure key is loaded into cache
495 $this->getInterwikiLink( $this->mInterwiki
);
496 $k = $wgDBname.':interwiki:' . $this->mInterwiki
;
497 return (bool)(Title
::$interwikiCache[$k]->iw_local
);
504 * Determine whether the object refers to a page within
505 * this project and is transcludable.
507 * @return bool TRUE if this is transcludable
513 if ($this->mInterwiki
== '')
515 # Make sure key is loaded into cache
516 $this->getInterwikiLink( $this->mInterwiki
);
517 $k = $wgDBname.':interwiki:' . $this->mInterwiki
;
518 return (bool)(Title
::$interwikiCache[$k]->iw_trans
);
522 * Update the page_touched field for an array of title objects
523 * @todo Inefficient unless the IDs are already loaded into the
525 * @param array $titles an array of Title objects to be touched
526 * @param string $timestamp the timestamp to use instead of the
527 * default current time
531 function touchArray( $titles, $timestamp = '' ) {
533 if ( count( $titles ) == 0 ) {
536 $dbw =& wfGetDB( DB_MASTER
);
537 if ( $timestamp == '' ) {
538 $timestamp = $dbw->timestamp();
541 $page = $dbw->tableName( 'page' );
542 $sql = "UPDATE $page SET page_touched='{$timestamp}' WHERE page_id IN (";
545 foreach ( $titles as $title ) {
546 if ( $wgUseFileCache ) {
547 $cm = new CacheManager($title);
548 @unlink($cm->fileCacheName());
555 $sql .= $title->getArticleID();
559 $dbw->query( $sql, 'Title::touchArray' );
562 // hack hack hack -- brion 2005-07-11. this was unfriendly to db.
563 // do them in small chunks:
564 $fname = 'Title::touchArray';
565 foreach( $titles as $title ) {
566 $dbw->update( 'page',
567 array( 'page_touched' => $timestamp ),
569 'page_namespace' => $title->getNamespace(),
570 'page_title' => $title->getDBkey() ),
575 #----------------------------------------------------------------------------
577 #----------------------------------------------------------------------------
579 /** Simple accessors */
581 * Get the text form (spaces not underscores) of the main part
585 function getText() { return $this->mTextform
; }
587 * Get the URL-encoded form of the main part
591 function getPartialURL() { return $this->mUrlform
; }
593 * Get the main part with underscores
597 function getDBkey() { return $this->mDbkeyform
; }
599 * Get the namespace index, i.e. one of the NS_xxxx constants
603 function getNamespace() { return $this->mNamespace
; }
605 * Get the namespace text
609 function getNsText() {
611 return $wgContLang->getNsText( $this->mNamespace
);
614 * Get the namespace text of the subject (rather than talk) page
618 function getSubjectNsText() {
620 return $wgContLang->getNsText( Namespace::getSubject( $this->mNamespace
) );
624 * Get the namespace text of the talk page
627 function getTalkNsText() {
629 return( $wgContLang->getNsText( Namespace::getTalk( $this->mNamespace
) ) );
633 * Could this title have a corresponding talk page?
637 return( Namespace::canTalk( $this->mNamespace
) );
641 * Get the interwiki prefix (or null string)
645 function getInterwiki() { return $this->mInterwiki
; }
647 * Get the Title fragment (i.e. the bit after the #)
651 function getFragment() { return $this->mFragment
; }
653 * Get the default namespace index, for when there is no namespace
657 function getDefaultNamespace() { return $this->mDefaultNamespace
; }
660 * Get title for search index
661 * @return string a stripped-down title string ready for the
664 function getIndexTitle() {
665 return Title
::indexTitle( $this->mNamespace
, $this->mTextform
);
669 * Get the prefixed database key form
670 * @return string the prefixed title, with underscores and
671 * any interwiki and namespace prefixes
674 function getPrefixedDBkey() {
675 $s = $this->prefix( $this->mDbkeyform
);
676 $s = str_replace( ' ', '_', $s );
681 * Get the prefixed title with spaces.
682 * This is the form usually used for display
683 * @return string the prefixed title, with spaces
686 function getPrefixedText() {
687 if ( empty( $this->mPrefixedText
) ) { // FIXME: bad usage of empty() ?
688 $s = $this->prefix( $this->mTextform
);
689 $s = str_replace( '_', ' ', $s );
690 $this->mPrefixedText
= $s;
692 return $this->mPrefixedText
;
696 * Get the prefixed title with spaces, plus any fragment
697 * (part beginning with '#')
698 * @return string the prefixed title, with spaces and
699 * the fragment, including '#'
702 function getFullText() {
703 $text = $this->getPrefixedText();
704 if( '' != $this->mFragment
) {
705 $text .= '#' . $this->mFragment
;
711 * Get the base name, i.e. the leftmost parts before the /
712 * @return string Base name
714 function getBaseText() {
715 global $wgNamespacesWithSubpages;
716 if( isset( $wgNamespacesWithSubpages[ $this->mNamespace
] ) && $wgNamespacesWithSubpages[ $this->mNamespace
] ) {
717 $parts = explode( '/', $this->getText() );
718 # Don't discard the real title if there's no subpage involved
719 if( count( $parts ) > 1 )
720 unset( $parts[ count( $parts ) - 1 ] );
721 return implode( '/', $parts );
723 return $this->getText();
728 * Get the lowest-level subpage name, i.e. the rightmost part after /
729 * @return string Subpage name
731 function getSubpageText() {
732 global $wgNamespacesWithSubpages;
733 if( isset( $wgNamespacesWithSubpages[ $this->mNamespace
] ) && $wgNamespacesWithSubpages[ $this->mNamespace
] ) {
734 $parts = explode( '/', $this->mTextform
);
735 return( $parts[ count( $parts ) - 1 ] );
737 return( $this->mTextform
);
742 * Get a URL-encoded form of the subpage text
743 * @return string URL-encoded subpage name
745 function getSubpageUrlForm() {
746 $text = $this->getSubpageText();
747 $text = wfUrlencode( str_replace( ' ', '_', $text ) );
748 $text = str_replace( '%28', '(', str_replace( '%29', ')', $text ) ); # Clean up the URL; per below, this might not be safe
753 * Get a URL-encoded title (not an actual URL) including interwiki
754 * @return string the URL-encoded form
757 function getPrefixedURL() {
758 $s = $this->prefix( $this->mDbkeyform
);
759 $s = str_replace( ' ', '_', $s );
761 $s = wfUrlencode ( $s ) ;
763 # Cleaning up URL to make it look nice -- is this safe?
764 $s = str_replace( '%28', '(', $s );
765 $s = str_replace( '%29', ')', $s );
771 * Get a real URL referring to this title, with interwiki link and
774 * @param string $query an optional query string, not used
775 * for interwiki links
776 * @return string the URL
779 function getFullURL( $query = '' ) {
780 global $wgContLang, $wgServer, $wgRequest;
782 if ( '' == $this->mInterwiki
) {
783 $url = $this->getLocalUrl( $query );
785 // Ugly quick hack to avoid duplicate prefixes (bug 4571 etc)
786 // Correct fix would be to move the prepending elsewhere.
787 if ($wgRequest->getVal('action') != 'render') {
788 $url = $wgServer . $url;
791 $baseUrl = $this->getInterwikiLink( $this->mInterwiki
);
793 $namespace = $wgContLang->getNsText( $this->mNamespace
);
794 if ( '' != $namespace ) {
795 # Can this actually happen? Interwikis shouldn't be parsed.
798 $url = str_replace( '$1', $namespace . $this->mUrlform
, $baseUrl );
800 if( false === strpos( $url, '?' ) ) {
809 # Finally, add the fragment.
810 if ( '' != $this->mFragment
) {
811 $url .= '#' . $this->mFragment
;
814 wfRunHooks( 'GetFullURL', array( &$this, &$url, $query ) );
819 * Get a URL with no fragment or server name. If this page is generated
820 * with action=render, $wgServer is prepended.
821 * @param string $query an optional query string; if not specified,
822 * $wgArticlePath will be used.
823 * @return string the URL
826 function getLocalURL( $query = '' ) {
827 global $wgArticlePath, $wgScript, $wgServer, $wgRequest;
829 if ( $this->isExternal() ) {
830 $url = $this->getFullURL();
832 // This is currently only used for edit section links in the
833 // context of interwiki transclusion. In theory we should
834 // append the query to the end of any existing query string,
835 // but interwiki transclusion is already broken in that case.
839 $dbkey = wfUrlencode( $this->getPrefixedDBkey() );
840 if ( $query == '' ) {
841 $url = str_replace( '$1', $dbkey, $wgArticlePath );
843 global $wgActionPaths;
845 if( !empty( $wgActionPaths ) &&
846 preg_match( '/^(.*&|)action=([^&]*)(&(.*)|)$/', $query, $matches ) )
848 $action = urldecode( $matches[2] );
849 if( isset( $wgActionPaths[$action] ) ) {
850 $query = $matches[1];
851 if( isset( $matches[4] ) ) $query .= $matches[4];
852 $url = str_replace( '$1', $dbkey, $wgActionPaths[$action] );
853 if( $query != '' ) $url .= '?' . $query;
856 if ( $url === false ) {
857 if ( $query == '-' ) {
860 $url = "{$wgScript}?title={$dbkey}&{$query}";
864 // FIXME: this causes breakage in various places when we
865 // actually expected a local URL and end up with dupe prefixes.
866 if ($wgRequest->getVal('action') == 'render') {
867 $url = $wgServer . $url;
870 wfRunHooks( 'GetLocalURL', array( &$this, &$url, $query ) );
875 * Get an HTML-escaped version of the URL form, suitable for
876 * using in a link, without a server name or fragment
877 * @param string $query an optional query string
878 * @return string the URL
881 function escapeLocalURL( $query = '' ) {
882 return htmlspecialchars( $this->getLocalURL( $query ) );
886 * Get an HTML-escaped version of the URL form, suitable for
887 * using in a link, including the server name and fragment
889 * @return string the URL
890 * @param string $query an optional query string
893 function escapeFullURL( $query = '' ) {
894 return htmlspecialchars( $this->getFullURL( $query ) );
898 * Get the URL form for an internal link.
899 * - Used in various Squid-related code, in case we have a different
900 * internal hostname for the server from the exposed one.
902 * @param string $query an optional query string
903 * @return string the URL
906 function getInternalURL( $query = '' ) {
907 global $wgInternalServer;
908 $url = $wgInternalServer . $this->getLocalURL( $query );
909 wfRunHooks( 'GetInternalURL', array( &$this, &$url, $query ) );
914 * Get the edit URL for this Title
915 * @return string the URL, or a null string if this is an
919 function getEditURL() {
920 if ( '' != $this->mInterwiki
) { return ''; }
921 $s = $this->getLocalURL( 'action=edit' );
927 * Get the HTML-escaped displayable text form.
928 * Used for the title field in <a> tags.
929 * @return string the text, including any prefixes
932 function getEscapedText() {
933 return htmlspecialchars( $this->getPrefixedText() );
937 * Is this Title interwiki?
941 function isExternal() { return ( '' != $this->mInterwiki
); }
944 * Is this page "semi-protected" - the *only* protection is autoconfirm?
946 * @param string Action to check (default: edit)
949 function isSemiProtected( $action = 'edit' ) {
950 $restrictions = $this->getRestrictions( $action );
951 # We do a full compare because this could be an array
952 foreach( $restrictions as $restriction ) {
953 if( strtolower( $restriction ) != 'autoconfirmed' ) {
961 * Does the title correspond to a protected article?
962 * @param string $what the action the page is protected from,
963 * by default checks move and edit
967 function isProtected( $action = '' ) {
968 global $wgRestrictionLevels;
969 if ( -1 == $this->mNamespace
) { return true; }
971 if( $action == 'edit' ||
$action == '' ) {
972 $r = $this->getRestrictions( 'edit' );
973 foreach( $wgRestrictionLevels as $level ) {
974 if( in_array( $level, $r ) && $level != '' ) {
980 if( $action == 'move' ||
$action == '' ) {
981 $r = $this->getRestrictions( 'move' );
982 foreach( $wgRestrictionLevels as $level ) {
983 if( in_array( $level, $r ) && $level != '' ) {
993 * Is $wgUser is watching this page?
997 function userIsWatching() {
1000 if ( is_null( $this->mWatched
) ) {
1001 if ( -1 == $this->mNamespace ||
0 == $wgUser->getID()) {
1002 $this->mWatched
= false;
1004 $this->mWatched
= $wgUser->isWatched( $this );
1007 return $this->mWatched
;
1011 * Can $wgUser perform $action this page?
1012 * @param string $action action that permission needs to be checked for
1016 function userCan($action) {
1017 $fname = 'Title::userCan';
1018 wfProfileIn( $fname );
1023 wfRunHooks( 'userCan', array( &$this, &$wgUser, $action, &$result ) );
1024 if ( $result !== null ) {
1025 wfProfileOut( $fname );
1029 if( NS_SPECIAL
== $this->mNamespace
) {
1030 wfProfileOut( $fname );
1033 // XXX: This is the code that prevents unprotecting a page in NS_MEDIAWIKI
1034 // from taking effect -ævar
1035 if( NS_MEDIAWIKI
== $this->mNamespace
&&
1036 !$wgUser->isAllowed('editinterface') ) {
1037 wfProfileOut( $fname );
1041 if( $this->mDbkeyform
== '_' ) {
1042 # FIXME: Is this necessary? Shouldn't be allowed anyway...
1043 wfProfileOut( $fname );
1047 # protect css/js subpages of user pages
1048 # XXX: this might be better using restrictions
1049 # XXX: Find a way to work around the php bug that prevents using $this->userCanEditCssJsSubpage() from working
1050 if( NS_USER
== $this->mNamespace
1051 && preg_match("/\\.(css|js)$/", $this->mTextform
)
1052 && !$wgUser->isAllowed('editinterface')
1053 && !preg_match('/^'.preg_quote($wgUser->getName(), '/').'\//', $this->mTextform
) ) {
1054 wfProfileOut( $fname );
1058 foreach( $this->getRestrictions($action) as $right ) {
1059 // Backwards compatibility, rewrite sysop -> protect
1060 if ( $right == 'sysop' ) {
1063 if( '' != $right && !$wgUser->isAllowed( $right ) ) {
1064 wfProfileOut( $fname );
1069 if( $action == 'move' &&
1070 !( $this->isMovable() && $wgUser->isAllowed( 'move' ) ) ) {
1071 wfProfileOut( $fname );
1075 if( $action == 'create' ) {
1076 if( ( $this->isTalkPage() && !$wgUser->isAllowed( 'createtalk' ) ) ||
1077 ( !$this->isTalkPage() && !$wgUser->isAllowed( 'createpage' ) ) ) {
1082 wfProfileOut( $fname );
1087 * Can $wgUser edit this page?
1091 function userCanEdit() {
1092 return $this->userCan('edit');
1096 * Can $wgUser create this page?
1100 function userCanCreate() {
1101 return $this->userCan('create');
1105 * Can $wgUser move this page?
1109 function userCanMove() {
1110 return $this->userCan('move');
1114 * Would anybody with sufficient privileges be able to move this page?
1115 * Some pages just aren't movable.
1120 function isMovable() {
1121 return Namespace::isMovable( $this->getNamespace() )
1122 && $this->getInterwiki() == '';
1126 * Can $wgUser read this page?
1130 function userCanRead() {
1134 wfRunHooks( 'userCan', array( &$this, &$wgUser, 'read', &$result ) );
1135 if ( $result !== null ) {
1139 if( $wgUser->isAllowed('read') ) {
1142 global $wgWhitelistRead;
1144 /** If anon users can create an account,
1145 they need to reach the login page first! */
1146 if( $wgUser->isAllowed( 'createaccount' )
1147 && $this->getNamespace() == NS_SPECIAL
1148 && $this->getText() == 'Userlogin' ) {
1152 /** some pages are explicitly allowed */
1153 $name = $this->getPrefixedText();
1154 if( $wgWhitelistRead && in_array( $name, $wgWhitelistRead ) ) {
1158 # Compatibility with old settings
1159 if( $wgWhitelistRead && $this->getNamespace() == NS_MAIN
) {
1160 if( in_array( ':' . $name, $wgWhitelistRead ) ) {
1169 * Is this a talk page of some sort?
1173 function isTalkPage() {
1174 return Namespace::isTalk( $this->getNamespace() );
1178 * Is this a .css or .js subpage of a user page?
1182 function isCssJsSubpage() {
1183 return ( NS_USER
== $this->mNamespace
and preg_match("/\\.(css|js)$/", $this->mTextform
) );
1186 * Is this a *valid* .css or .js subpage of a user page?
1187 * Check that the corresponding skin exists
1189 function isValidCssJsSubpage() {
1190 if ( $this->isCssJsSubpage() ) {
1191 $skinNames = Skin
::getSkinNames();
1192 return array_key_exists( $this->getSkinFromCssJsSubpage(), $skinNames );
1198 * Trim down a .css or .js subpage title to get the corresponding skin name
1200 function getSkinFromCssJsSubpage() {
1201 $subpage = explode( '/', $this->mTextform
);
1202 $subpage = $subpage[ count( $subpage ) - 1 ];
1203 return( str_replace( array( '.css', '.js' ), array( '', '' ), $subpage ) );
1206 * Is this a .css subpage of a user page?
1210 function isCssSubpage() {
1211 return ( NS_USER
== $this->mNamespace
and preg_match("/\\.css$/", $this->mTextform
) );
1214 * Is this a .js subpage of a user page?
1218 function isJsSubpage() {
1219 return ( NS_USER
== $this->mNamespace
and preg_match("/\\.js$/", $this->mTextform
) );
1222 * Protect css/js subpages of user pages: can $wgUser edit
1226 * @todo XXX: this might be better using restrictions
1229 function userCanEditCssJsSubpage() {
1231 return ( $wgUser->isAllowed('editinterface') or preg_match('/^'.preg_quote($wgUser->getName(), '/').'\//', $this->mTextform
) );
1235 * Loads a string into mRestrictions array
1236 * @param string $res restrictions in string format
1239 function loadRestrictions( $res ) {
1240 foreach( explode( ':', trim( $res ) ) as $restrict ) {
1241 $temp = explode( '=', trim( $restrict ) );
1242 if(count($temp) == 1) {
1243 // old format should be treated as edit/move restriction
1244 $this->mRestrictions
["edit"] = explode( ',', trim( $temp[0] ) );
1245 $this->mRestrictions
["move"] = explode( ',', trim( $temp[0] ) );
1247 $this->mRestrictions
[$temp[0]] = explode( ',', trim( $temp[1] ) );
1250 $this->mRestrictionsLoaded
= true;
1254 * Accessor/initialisation for mRestrictions
1255 * @param string $action action that permission needs to be checked for
1256 * @return array the array of groups allowed to edit this article
1259 function getRestrictions($action) {
1260 $id = $this->getArticleID();
1261 if ( 0 == $id ) { return array(); }
1263 if ( ! $this->mRestrictionsLoaded
) {
1264 $dbr =& wfGetDB( DB_SLAVE
);
1265 $res = $dbr->selectField( 'page', 'page_restrictions', 'page_id='.$id );
1266 $this->loadRestrictions( $res );
1268 if( isset( $this->mRestrictions
[$action] ) ) {
1269 return $this->mRestrictions
[$action];
1275 * Is there a version of this page in the deletion archive?
1276 * @return int the number of archived revisions
1279 function isDeleted() {
1280 $fname = 'Title::isDeleted';
1281 if ( $this->getNamespace() < 0 ) {
1284 $dbr =& wfGetDB( DB_SLAVE
);
1285 $n = $dbr->selectField( 'archive', 'COUNT(*)', array( 'ar_namespace' => $this->getNamespace(),
1286 'ar_title' => $this->getDBkey() ), $fname );
1287 if( $this->getNamespace() == NS_IMAGE
) {
1288 $n +
= $dbr->selectField( 'filearchive', 'COUNT(*)',
1289 array( 'fa_name' => $this->getDBkey() ), $fname );
1296 * Get the article ID for this Title from the link cache,
1297 * adding it if necessary
1298 * @param int $flags a bit field; may be GAID_FOR_UPDATE to select
1300 * @return int the ID
1303 function getArticleID( $flags = 0 ) {
1304 $linkCache =& LinkCache
::singleton();
1305 if ( $flags & GAID_FOR_UPDATE
) {
1306 $oldUpdate = $linkCache->forUpdate( true );
1307 $this->mArticleID
= $linkCache->addLinkObj( $this );
1308 $linkCache->forUpdate( $oldUpdate );
1310 if ( -1 == $this->mArticleID
) {
1311 $this->mArticleID
= $linkCache->addLinkObj( $this );
1314 return $this->mArticleID
;
1317 function getLatestRevID() {
1318 if ($this->mLatestID
!== false)
1319 return $this->mLatestID
;
1321 $db =& wfGetDB(DB_SLAVE
);
1322 return $this->mLatestID
= $db->selectField( 'revision',
1324 array('rev_page' => $this->getArticleID()),
1325 'Title::getLatestRevID' );
1329 * This clears some fields in this object, and clears any associated
1330 * keys in the "bad links" section of the link cache.
1332 * - This is called from Article::insertNewArticle() to allow
1333 * loading of the new page_id. It's also called from
1334 * Article::doDeleteArticle()
1336 * @param int $newid the new Article ID
1339 function resetArticleID( $newid ) {
1340 $linkCache =& LinkCache
::singleton();
1341 $linkCache->clearBadLink( $this->getPrefixedDBkey() );
1343 if ( 0 == $newid ) { $this->mArticleID
= -1; }
1344 else { $this->mArticleID
= $newid; }
1345 $this->mRestrictionsLoaded
= false;
1346 $this->mRestrictions
= array();
1350 * Updates page_touched for this page; called from LinksUpdate.php
1351 * @return bool true if the update succeded
1354 function invalidateCache() {
1355 global $wgUseFileCache;
1357 if ( wfReadOnly() ) {
1361 $dbw =& wfGetDB( DB_MASTER
);
1362 $success = $dbw->update( 'page',
1364 'page_touched' => $dbw->timestamp()
1365 ), array( /* WHERE */
1366 'page_namespace' => $this->getNamespace() ,
1367 'page_title' => $this->getDBkey()
1368 ), 'Title::invalidateCache'
1371 if ($wgUseFileCache) {
1372 $cache = new CacheManager($this);
1373 @unlink
($cache->fileCacheName());
1380 * Prefix some arbitrary text with the namespace or interwiki prefix
1383 * @param string $name the text
1384 * @return string the prefixed text
1387 /* private */ function prefix( $name ) {
1391 if ( '' != $this->mInterwiki
) {
1392 $p = $this->mInterwiki
. ':';
1394 if ( 0 != $this->mNamespace
) {
1395 $p .= $wgContLang->getNsText( $this->mNamespace
) . ':';
1401 * Secure and split - main initialisation function for this object
1403 * Assumes that mDbkeyform has been set, and is urldecoded
1404 * and uses underscores, but not otherwise munged. This function
1405 * removes illegal characters, splits off the interwiki and
1406 * namespace prefixes, sets the other forms, and canonicalizes
1408 * @return bool true on success
1411 /* private */ function secureAndSplit() {
1412 global $wgContLang, $wgLocalInterwiki, $wgCapitalLinks;
1413 $fname = 'Title::secureAndSplit';
1416 static $rxTc = false;
1418 # % is needed as well
1419 $rxTc = '/[^' . Title
::legalChars() . ']|%[0-9A-Fa-f]{2}/S';
1422 $this->mInterwiki
= $this->mFragment
= '';
1423 $this->mNamespace
= $this->mDefaultNamespace
; # Usually NS_MAIN
1425 # Clean up whitespace
1427 $t = preg_replace( '/[ _]+/', '_', $this->mDbkeyform
);
1428 $t = trim( $t, '_' );
1434 if( false !== strpos( $t, UTF8_REPLACEMENT
) ) {
1435 # Contained illegal UTF-8 sequences or forbidden Unicode chars.
1439 $this->mDbkeyform
= $t;
1441 # Initial colon indicates main namespace rather than specified default
1442 # but should not create invalid {ns,title} pairs such as {0,Project:Foo}
1443 if ( ':' == $t{0} ) {
1444 $this->mNamespace
= NS_MAIN
;
1445 $t = substr( $t, 1 ); # remove the colon but continue processing
1448 # Namespace or interwiki prefix
1451 if ( preg_match( "/^(.+?)_*:_*(.*)$/S", $t, $m ) ) {
1453 $lowerNs = strtolower( $p );
1454 if ( $ns = Namespace::getCanonicalIndex( $lowerNs ) ) {
1455 # Canonical namespace
1457 $this->mNamespace
= $ns;
1458 } elseif ( $ns = $wgContLang->getNsIndex( $lowerNs )) {
1459 # Ordinary namespace
1461 $this->mNamespace
= $ns;
1462 } elseif( $this->getInterwikiLink( $p ) ) {
1464 # Can't make a local interwiki link to an interwiki link.
1465 # That's just crazy!
1471 $this->mInterwiki
= strtolower( $p );
1473 # Redundant interwiki prefix to the local wiki
1474 if ( 0 == strcasecmp( $this->mInterwiki
, $wgLocalInterwiki ) ) {
1476 # Can't have an empty self-link
1479 $this->mInterwiki
= '';
1481 # Do another namespace split...
1485 # If there's an initial colon after the interwiki, that also
1486 # resets the default namespace
1487 if ( $t !== '' && $t[0] == ':' ) {
1488 $this->mNamespace
= NS_MAIN
;
1489 $t = substr( $t, 1 );
1492 # If there's no recognized interwiki or namespace,
1493 # then let the colon expression be part of the title.
1499 # We already know that some pages won't be in the database!
1501 if ( '' != $this->mInterwiki ||
-1 == $this->mNamespace
) {
1502 $this->mArticleID
= 0;
1504 $f = strstr( $r, '#' );
1505 if ( false !== $f ) {
1506 $this->mFragment
= substr( $f, 1 );
1507 $r = substr( $r, 0, strlen( $r ) - strlen( $f ) );
1508 # remove whitespace again: prevents "Foo_bar_#"
1509 # becoming "Foo_bar_"
1510 $r = preg_replace( '/_*$/', '', $r );
1513 # Reject illegal characters.
1515 if( preg_match( $rxTc, $r ) ) {
1520 * Pages with "/./" or "/../" appearing in the URLs will
1521 * often be unreachable due to the way web browsers deal
1522 * with 'relative' URLs. Forbid them explicitly.
1524 if ( strpos( $r, '.' ) !== false &&
1525 ( $r === '.' ||
$r === '..' ||
1526 strpos( $r, './' ) === 0 ||
1527 strpos( $r, '../' ) === 0 ||
1528 strpos( $r, '/./' ) !== false ||
1529 strpos( $r, '/../' ) !== false ) )
1534 # We shouldn't need to query the DB for the size.
1535 #$maxSize = $dbr->textFieldSize( 'page', 'page_title' );
1536 if ( strlen( $r ) > 255 ) {
1541 * Normally, all wiki links are forced to have
1542 * an initial capital letter so [[foo]] and [[Foo]]
1543 * point to the same place.
1545 * Don't force it for interwikis, since the other
1546 * site might be case-sensitive.
1548 if( $wgCapitalLinks && $this->mInterwiki
== '') {
1549 $t = $wgContLang->ucfirst( $r );
1555 * Can't make a link to a namespace alone...
1556 * "empty" local links can only be self-links
1557 * with a fragment identifier.
1560 $this->mInterwiki
== '' &&
1561 $this->mNamespace
!= NS_MAIN
) {
1565 // Any remaining initial :s are illegal.
1566 if ( $t !== '' && ':' == $t{0} ) {
1571 $this->mDbkeyform
= $t;
1572 $this->mUrlform
= wfUrlencode( $t );
1574 $this->mTextform
= str_replace( '_', ' ', $t );
1580 * Get a Title object associated with the talk page of this article
1581 * @return Title the object for the talk page
1584 function getTalkPage() {
1585 return Title
::makeTitle( Namespace::getTalk( $this->getNamespace() ), $this->getDBkey() );
1589 * Get a title object associated with the subject page of this
1592 * @return Title the object for the subject page
1595 function getSubjectPage() {
1596 return Title
::makeTitle( Namespace::getSubject( $this->getNamespace() ), $this->getDBkey() );
1600 * Get an array of Title objects linking to this Title
1601 * Also stores the IDs in the link cache.
1603 * WARNING: do not use this function on arbitrary user-supplied titles!
1604 * On heavily-used templates it will max out the memory.
1606 * @param string $options may be FOR UPDATE
1607 * @return array the Title objects linking here
1610 function getLinksTo( $options = '', $table = 'pagelinks', $prefix = 'pl' ) {
1611 $linkCache =& LinkCache
::singleton();
1612 $id = $this->getArticleID();
1615 $db =& wfGetDB( DB_MASTER
);
1617 $db =& wfGetDB( DB_SLAVE
);
1620 $res = $db->select( array( 'page', $table ),
1621 array( 'page_namespace', 'page_title', 'page_id' ),
1623 "{$prefix}_from=page_id",
1624 "{$prefix}_namespace" => $this->getNamespace(),
1625 "{$prefix}_title" => $this->getDbKey() ),
1626 'Title::getLinksTo',
1630 if ( $db->numRows( $res ) ) {
1631 while ( $row = $db->fetchObject( $res ) ) {
1632 if ( $titleObj = Title
::makeTitle( $row->page_namespace
, $row->page_title
) ) {
1633 $linkCache->addGoodLinkObj( $row->page_id
, $titleObj );
1634 $retVal[] = $titleObj;
1638 $db->freeResult( $res );
1643 * Get an array of Title objects using this Title as a template
1644 * Also stores the IDs in the link cache.
1646 * WARNING: do not use this function on arbitrary user-supplied titles!
1647 * On heavily-used templates it will max out the memory.
1649 * @param string $options may be FOR UPDATE
1650 * @return array the Title objects linking here
1653 function getTemplateLinksTo( $options = '' ) {
1654 return $this->getLinksTo( $options, 'templatelinks', 'tl' );
1658 * Get an array of Title objects referring to non-existent articles linked from this page
1660 * @param string $options may be FOR UPDATE
1661 * @return array the Title objects
1664 function getBrokenLinksFrom( $options = '' ) {
1666 $db =& wfGetDB( DB_MASTER
);
1668 $db =& wfGetDB( DB_SLAVE
);
1671 $res = $db->safeQuery(
1672 "SELECT pl_namespace, pl_title
1675 ON pl_namespace=page_namespace
1676 AND pl_title=page_title
1678 AND page_namespace IS NULL
1680 $db->tableName( 'pagelinks' ),
1681 $db->tableName( 'page' ),
1682 $this->getArticleId(),
1686 if ( $db->numRows( $res ) ) {
1687 while ( $row = $db->fetchObject( $res ) ) {
1688 $retVal[] = Title
::makeTitle( $row->pl_namespace
, $row->pl_title
);
1691 $db->freeResult( $res );
1697 * Get a list of URLs to purge from the Squid cache when this
1700 * @return array the URLs
1703 function getSquidURLs() {
1705 $this->getInternalURL(),
1706 $this->getInternalURL( 'action=history' )
1710 function purgeSquid() {
1712 if ( $wgUseSquid ) {
1713 $urls = $this->getSquidURLs();
1714 $u = new SquidUpdate( $urls );
1720 * Move this page without authentication
1721 * @param Title &$nt the new page Title
1724 function moveNoAuth( &$nt ) {
1725 return $this->moveTo( $nt, false );
1729 * Check whether a given move operation would be valid.
1730 * Returns true if ok, or a message key string for an error message
1731 * if invalid. (Scarrrrry ugly interface this.)
1732 * @param Title &$nt the new title
1733 * @param bool $auth indicates whether $wgUser's permissions
1735 * @return mixed true on success, message name on failure
1738 function isValidMoveOperation( &$nt, $auth = true ) {
1739 if( !$this or !$nt ) {
1740 return 'badtitletext';
1742 if( $this->equals( $nt ) ) {
1745 if( !$this->isMovable() ||
!$nt->isMovable() ) {
1746 return 'immobile_namespace';
1749 $oldid = $this->getArticleID();
1750 $newid = $nt->getArticleID();
1752 if ( strlen( $nt->getDBkey() ) < 1 ) {
1753 return 'articleexists';
1755 if ( ( '' == $this->getDBkey() ) ||
1757 ( '' == $nt->getDBkey() ) ) {
1758 return 'badarticleerror';
1762 !$this->userCanEdit() ||
!$nt->userCanEdit() ||
1763 !$this->userCanMove() ||
!$nt->userCanMove() ) ) {
1764 return 'protectedpage';
1767 # The move is allowed only if (1) the target doesn't exist, or
1768 # (2) the target is a redirect to the source, and has no history
1769 # (so we can undo bad moves right after they're done).
1771 if ( 0 != $newid ) { # Target exists; check for validity
1772 if ( ! $this->isValidMoveTarget( $nt ) ) {
1773 return 'articleexists';
1780 * Move a title to a new location
1781 * @param Title &$nt the new title
1782 * @param bool $auth indicates whether $wgUser's permissions
1784 * @return mixed true on success, message name on failure
1787 function moveTo( &$nt, $auth = true, $reason = '' ) {
1788 $err = $this->isValidMoveOperation( $nt, $auth );
1789 if( is_string( $err ) ) {
1793 $pageid = $this->getArticleID();
1794 if( $nt->exists() ) {
1795 $this->moveOverExistingRedirect( $nt, $reason );
1796 $pageCountChange = 0;
1797 } else { # Target didn't exist, do normal move.
1798 $this->moveToNewTitle( $nt, $reason );
1799 $pageCountChange = 1;
1801 $redirid = $this->getArticleID();
1803 # Fixing category links (those without piped 'alternate' names) to be sorted under the new title
1804 $dbw =& wfGetDB( DB_MASTER
);
1805 $categorylinks = $dbw->tableName( 'categorylinks' );
1806 $sql = "UPDATE $categorylinks SET cl_sortkey=" . $dbw->addQuotes( $nt->getPrefixedText() ) .
1807 " WHERE cl_from=" . $dbw->addQuotes( $pageid ) .
1808 " AND cl_sortkey=" . $dbw->addQuotes( $this->getPrefixedText() );
1809 $dbw->query( $sql, 'SpecialMovepage::doSubmit' );
1813 $oldnamespace = $this->getNamespace() & ~
1;
1814 $newnamespace = $nt->getNamespace() & ~
1;
1815 $oldtitle = $this->getDBkey();
1816 $newtitle = $nt->getDBkey();
1818 if( $oldnamespace != $newnamespace ||
$oldtitle != $newtitle ) {
1819 WatchedItem
::duplicateEntries( $this, $nt );
1822 # Update search engine
1823 $u = new SearchUpdate( $pageid, $nt->getPrefixedDBkey() );
1825 $u = new SearchUpdate( $redirid, $this->getPrefixedDBkey(), '' );
1829 if ( $this->getNamespace() == NS_MAIN
and $nt->getNamespace() != NS_MAIN
) {
1830 # Moved out of main namespace
1831 # not viewed, edited, removing
1832 $u = new SiteStatsUpdate( 0, 1, -1, $pageCountChange);
1833 } elseif ( $this->getNamespace() != NS_MAIN
and $nt->getNamespace() == NS_MAIN
) {
1834 # Moved into main namespace
1835 # not viewed, edited, adding
1836 $u = new SiteStatsUpdate( 0, 1, +
1, $pageCountChange );
1837 } elseif ( $pageCountChange ) {
1839 $u = new SiteStatsUpdate( 0, 0, 0, 1 );
1848 wfRunHooks( 'TitleMoveComplete', array( &$this, &$nt, &$wgUser, $pageid, $redirid ) );
1853 * Move page to a title which is at present a redirect to the
1856 * @param Title &$nt the page to move to, which should currently
1860 function moveOverExistingRedirect( &$nt, $reason = '' ) {
1862 $fname = 'Title::moveOverExistingRedirect';
1863 $comment = wfMsgForContent( '1movedto2', $this->getPrefixedText(), $nt->getPrefixedText() );
1866 $comment .= ": $reason";
1869 $now = wfTimestampNow();
1871 $newid = $nt->getArticleID();
1872 $oldid = $this->getArticleID();
1873 $dbw =& wfGetDB( DB_MASTER
);
1874 $linkCache =& LinkCache
::singleton();
1876 # Delete the old redirect. We don't save it to history since
1877 # by definition if we've got here it's rather uninteresting.
1878 # We have to remove it so that the next step doesn't trigger
1879 # a conflict on the unique namespace+title index...
1880 $dbw->delete( 'page', array( 'page_id' => $newid ), $fname );
1882 # Save a null revision in the page's history notifying of the move
1883 $nullRevision = Revision
::newNullRevision( $dbw, $oldid, $comment, true );
1884 $nullRevId = $nullRevision->insertOn( $dbw );
1886 # Change the name of the target page:
1887 $dbw->update( 'page',
1889 'page_touched' => $dbw->timestamp($now),
1890 'page_namespace' => $nt->getNamespace(),
1891 'page_title' => $nt->getDBkey(),
1892 'page_latest' => $nullRevId,
1894 /* WHERE */ array( 'page_id' => $oldid ),
1897 $linkCache->clearLink( $nt->getPrefixedDBkey() );
1899 # Recreate the redirect, this time in the other direction.
1900 $mwRedir = MagicWord
::get( 'redirect' );
1901 $redirectText = $mwRedir->getSynonym( 0 ) . ' [[' . $nt->getPrefixedText() . "]]\n";
1902 $redirectArticle = new Article( $this );
1903 $newid = $redirectArticle->insertOn( $dbw );
1904 $redirectRevision = new Revision( array(
1906 'comment' => $comment,
1907 'text' => $redirectText ) );
1908 $revid = $redirectRevision->insertOn( $dbw );
1909 $redirectArticle->updateRevisionOn( $dbw, $redirectRevision, 0 );
1910 $linkCache->clearLink( $this->getPrefixedDBkey() );
1913 $log = new LogPage( 'move' );
1914 $log->addEntry( 'move_redir', $this, $reason, array( 1 => $nt->getPrefixedText() ) );
1916 # Now, we record the link from the redirect to the new title.
1917 # It should have no other outgoing links...
1918 $dbw->delete( 'pagelinks', array( 'pl_from' => $newid ), $fname );
1919 $dbw->insert( 'pagelinks',
1921 'pl_from' => $newid,
1922 'pl_namespace' => $nt->getNamespace(),
1923 'pl_title' => $nt->getDbKey() ),
1927 if ( $wgUseSquid ) {
1928 $urls = array_merge( $nt->getSquidURLs(), $this->getSquidURLs() );
1929 $u = new SquidUpdate( $urls );
1935 * Move page to non-existing title.
1936 * @param Title &$nt the new Title
1939 function moveToNewTitle( &$nt, $reason = '' ) {
1941 $fname = 'MovePageForm::moveToNewTitle';
1942 $comment = wfMsgForContent( '1movedto2', $this->getPrefixedText(), $nt->getPrefixedText() );
1944 $comment .= ": $reason";
1947 $newid = $nt->getArticleID();
1948 $oldid = $this->getArticleID();
1949 $dbw =& wfGetDB( DB_MASTER
);
1950 $now = $dbw->timestamp();
1952 $linkCache =& LinkCache
::singleton();
1954 # Save a null revision in the page's history notifying of the move
1955 $nullRevision = Revision
::newNullRevision( $dbw, $oldid, $comment, true );
1956 $nullRevId = $nullRevision->insertOn( $dbw );
1959 $dbw->update( 'page',
1961 'page_touched' => $now,
1962 'page_namespace' => $nt->getNamespace(),
1963 'page_title' => $nt->getDBkey(),
1964 'page_latest' => $nullRevId,
1966 /* WHERE */ array( 'page_id' => $oldid ),
1970 $linkCache->clearLink( $nt->getPrefixedDBkey() );
1973 $mwRedir = MagicWord
::get( 'redirect' );
1974 $redirectText = $mwRedir->getSynonym( 0 ) . ' [[' . $nt->getPrefixedText() . "]]\n";
1975 $redirectArticle = new Article( $this );
1976 $newid = $redirectArticle->insertOn( $dbw );
1977 $redirectRevision = new Revision( array(
1979 'comment' => $comment,
1980 'text' => $redirectText ) );
1981 $revid = $redirectRevision->insertOn( $dbw );
1982 $redirectArticle->updateRevisionOn( $dbw, $redirectRevision, 0 );
1983 $linkCache->clearLink( $this->getPrefixedDBkey() );
1986 $log = new LogPage( 'move' );
1987 $log->addEntry( 'move', $this, $reason, array( 1 => $nt->getPrefixedText()) );
1989 # Purge caches as per article creation
1990 Article
::onArticleCreate( $nt );
1992 # Record the just-created redirect's linking to the page
1993 $dbw->insert( 'pagelinks',
1995 'pl_from' => $newid,
1996 'pl_namespace' => $nt->getNamespace(),
1997 'pl_title' => $nt->getDBkey() ),
2000 # Purge old title from squid
2001 # The new title, and links to the new title, are purged in Article::onArticleCreate()
2002 $this->purgeSquid();
2006 * Checks if $this can be moved to a given Title
2007 * - Selects for update, so don't call it unless you mean business
2009 * @param Title &$nt the new title to check
2012 function isValidMoveTarget( $nt ) {
2014 $fname = 'Title::isValidMoveTarget';
2015 $dbw =& wfGetDB( DB_MASTER
);
2018 $id = $nt->getArticleID();
2019 $obj = $dbw->selectRow( array( 'page', 'revision', 'text'),
2020 array( 'page_is_redirect','old_text','old_flags' ),
2021 array( 'page_id' => $id, 'page_latest=rev_id', 'rev_text_id=old_id' ),
2022 $fname, 'FOR UPDATE' );
2024 if ( !$obj ||
0 == $obj->page_is_redirect
) {
2026 wfDebug( __METHOD__
. ": not a redirect\n" );
2029 $text = Revision
::getRevisionText( $obj );
2031 # Does the redirect point to the source?
2032 # Or is it a broken self-redirect, usually caused by namespace collisions?
2033 if ( preg_match( "/\\[\\[\\s*([^\\]\\|]*)]]/", $text, $m ) ) {
2034 $redirTitle = Title
::newFromText( $m[1] );
2035 if( !is_object( $redirTitle ) ||
2036 ( $redirTitle->getPrefixedDBkey() != $this->getPrefixedDBkey() &&
2037 $redirTitle->getPrefixedDBkey() != $nt->getPrefixedDBkey() ) ) {
2038 wfDebug( __METHOD__
. ": redirect points to other page\n" );
2043 wfDebug( __METHOD__
. ": failsafe\n" );
2047 # Does the article have a history?
2048 $row = $dbw->selectRow( array( 'page', 'revision'),
2050 array( 'page_namespace' => $nt->getNamespace(),
2051 'page_title' => $nt->getDBkey(),
2052 'page_id=rev_page AND page_latest != rev_id'
2053 ), $fname, 'FOR UPDATE'
2056 # Return true if there was no history
2057 return $row === false;
2061 * Create a redirect; fails if the title already exists; does
2064 * @param Title $dest the destination of the redirect
2065 * @param string $comment the comment string describing the move
2066 * @return bool true on success
2069 function createRedirect( $dest, $comment ) {
2070 if ( $this->getArticleID() ) {
2074 $fname = 'Title::createRedirect';
2075 $dbw =& wfGetDB( DB_MASTER
);
2077 $article = new Article( $this );
2078 $newid = $article->insertOn( $dbw );
2079 $revision = new Revision( array(
2081 'comment' => $comment,
2082 'text' => "#REDIRECT [[" . $dest->getPrefixedText() . "]]\n",
2084 $revisionId = $revision->insertOn( $dbw );
2085 $article->updateRevisionOn( $dbw, $revision, 0 );
2088 $dbw->insert( 'pagelinks',
2090 'pl_from' => $newid,
2091 'pl_namespace' => $dest->getNamespace(),
2092 'pl_title' => $dest->getDbKey()
2096 Article
::onArticleCreate( $this );
2101 * Get categories to which this Title belongs and return an array of
2102 * categories' names.
2104 * @return array an array of parents in the form:
2105 * $parent => $currentarticle
2108 function getParentCategories() {
2111 $titlekey = $this->getArticleId();
2112 $dbr =& wfGetDB( DB_SLAVE
);
2113 $categorylinks = $dbr->tableName( 'categorylinks' );
2116 $sql = "SELECT * FROM $categorylinks"
2117 ." WHERE cl_from='$titlekey'"
2118 ." AND cl_from <> '0'"
2119 ." ORDER BY cl_sortkey";
2121 $res = $dbr->query ( $sql ) ;
2123 if($dbr->numRows($res) > 0) {
2124 while ( $x = $dbr->fetchObject ( $res ) )
2125 //$data[] = Title::newFromText($wgContLang->getNSText ( NS_CATEGORY ).':'.$x->cl_to);
2126 $data[$wgContLang->getNSText ( NS_CATEGORY
).':'.$x->cl_to
] = $this->getFullText();
2127 $dbr->freeResult ( $res ) ;
2135 * Get a tree of parent categories
2136 * @param array $children an array with the children in the keys, to check for circular refs
2140 function getParentCategoryTree( $children = array() ) {
2141 $parents = $this->getParentCategories();
2143 if($parents != '') {
2144 foreach($parents as $parent => $current) {
2145 if ( array_key_exists( $parent, $children ) ) {
2146 # Circular reference
2147 $stack[$parent] = array();
2149 $nt = Title
::newFromText($parent);
2150 $stack[$parent] = $nt->getParentCategoryTree( $children +
array($parent => 1) );
2161 * Get an associative array for selecting this title from
2167 function pageCond() {
2168 return array( 'page_namespace' => $this->mNamespace
, 'page_title' => $this->mDbkeyform
);
2172 * Get the revision ID of the previous revision
2174 * @param integer $revision Revision ID. Get the revision that was before this one.
2175 * @return interger $oldrevision|false
2177 function getPreviousRevisionID( $revision ) {
2178 $dbr =& wfGetDB( DB_SLAVE
);
2179 return $dbr->selectField( 'revision', 'rev_id',
2180 'rev_page=' . intval( $this->getArticleId() ) .
2181 ' AND rev_id<' . intval( $revision ) . ' ORDER BY rev_id DESC' );
2185 * Get the revision ID of the next revision
2187 * @param integer $revision Revision ID. Get the revision that was after this one.
2188 * @return interger $oldrevision|false
2190 function getNextRevisionID( $revision ) {
2191 $dbr =& wfGetDB( DB_SLAVE
);
2192 return $dbr->selectField( 'revision', 'rev_id',
2193 'rev_page=' . intval( $this->getArticleId() ) .
2194 ' AND rev_id>' . intval( $revision ) . ' ORDER BY rev_id' );
2198 * Compare with another title.
2200 * @param Title $title
2203 function equals( $title ) {
2204 // Note: === is necessary for proper matching of number-like titles.
2205 return $this->getInterwiki() === $title->getInterwiki()
2206 && $this->getNamespace() == $title->getNamespace()
2207 && $this->getDbkey() === $title->getDbkey();
2211 * Check if page exists
2215 return $this->getArticleId() != 0;
2219 * Should a link should be displayed as a known link, just based on its title?
2221 * Currently, a self-link with a fragment and special pages are in
2222 * this category. Special pages never exist in the database.
2224 function isAlwaysKnown() {
2225 return $this->isExternal() ||
( 0 == $this->mNamespace
&& "" == $this->mDbkeyform
)
2226 || NS_SPECIAL
== $this->mNamespace
;
2230 * Update page_touched timestamps and send squid purge messages for
2231 * pages linking to this title. May be sent to the job queue depending
2232 * on the number of links. Typically called on create and delete.
2234 function touchLinks() {
2235 $u = new HTMLCacheUpdate( $this, 'pagelinks' );
2238 if ( $this->getNamespace() == NS_CATEGORY
) {
2239 $u = new HTMLCacheUpdate( $this, 'categorylinks' );
2244 function trackbackURL() {
2245 global $wgTitle, $wgScriptPath, $wgServer;
2247 return "$wgServer$wgScriptPath/trackback.php?article="
2248 . htmlspecialchars(urlencode($wgTitle->getPrefixedDBkey()));
2251 function trackbackRDF() {
2252 $url = htmlspecialchars($this->getFullURL());
2253 $title = htmlspecialchars($this->getText());
2254 $tburl = $this->trackbackURL();
2257 <rdf:RDF xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\"
2258 xmlns:dc=\"http://purl.org/dc/elements/1.1/\"
2259 xmlns:trackback=\"http://madskills.com/public/xml/rss/module/trackback/\">
2262 dc:identifier=\"$url\"
2264 trackback:ping=\"$tburl\" />
2269 * Generate strings used for xml 'id' names in monobook tabs
2272 function getNamespaceKey() {
2273 switch ($this->getNamespace()) {
2276 return 'nstab-main';
2279 return 'nstab-user';
2281 return 'nstab-media';
2283 return 'nstab-special';
2285 case NS_PROJECT_TALK
:
2286 return 'nstab-project';
2289 return 'nstab-image';
2291 case NS_MEDIAWIKI_TALK
:
2292 return 'nstab-mediawiki';
2294 case NS_TEMPLATE_TALK
:
2295 return 'nstab-template';
2298 return 'nstab-help';
2300 case NS_CATEGORY_TALK
:
2301 return 'nstab-category';
2303 return 'nstab-' . strtolower( $this->getSubjectNsText() );