Avoid 'undefined index' notices
[lhc/web/wiklou.git] / includes / Title.php
1 <?php
2 /**
3 * $Id$
4 * See title.doc
5 *
6 * @package MediaWiki
7 */
8
9 /** */
10 require_once( 'normal/UtfNormal.php' );
11
12 $wgTitleInterwikiCache = array();
13 define ( 'GAID_FOR_UPDATE', 1 );
14
15 /**
16 * Title class
17 * - Represents a title, which may contain an interwiki designation or namespace
18 * - Can fetch various kinds of data from the database, albeit inefficiently.
19 *
20 * @package MediaWiki
21 */
22 class Title {
23 /**
24 * All member variables should be considered private
25 * Please use the accessor functions
26 */
27
28 /**#@+
29 * @access private
30 */
31
32 var $mTextform; # Text form (spaces not underscores) of the main part
33 var $mUrlform; # URL-encoded form of the main part
34 var $mDbkeyform; # Main part with underscores
35 var $mNamespace; # Namespace index, i.e. one of the NS_xxxx constants
36 var $mInterwiki; # Interwiki prefix (or null string)
37 var $mFragment; # Title fragment (i.e. the bit after the #)
38 var $mArticleID; # Article ID, fetched from the link cache on demand
39 var $mRestrictions; # Array of groups allowed to edit this article
40 # Only null or "sysop" are supported
41 var $mRestrictionsLoaded; # Boolean for initialisation on demand
42 var $mPrefixedText; # Text form including namespace/interwiki, initialised on demand
43 var $mDefaultNamespace; # Namespace index when there is no namespace
44 # Zero except in {{transclusion}} tags
45 /**#@-*/
46
47
48 /**
49 * Constructor
50 * @access private
51 */
52 /* private */ function Title() {
53 $this->mInterwiki = $this->mUrlform =
54 $this->mTextform = $this->mDbkeyform = '';
55 $this->mArticleID = -1;
56 $this->mNamespace = 0;
57 $this->mRestrictionsLoaded = false;
58 $this->mRestrictions = array();
59 $this->mDefaultNamespace = 0;
60 }
61
62 /**
63 * Create a new Title from a prefixed DB key
64 * @param string $key The database key, which has underscores
65 * instead of spaces, possibly including namespace and
66 * interwiki prefixes
67 * @return Title the new object, or NULL on an error
68 * @static
69 * @access public
70 */
71 /* static */ function newFromDBkey( $key ) {
72 $t = new Title();
73 $t->mDbkeyform = $key;
74 if( $t->secureAndSplit() )
75 return $t;
76 else
77 return NULL;
78 }
79
80 /**
81 * Create a new Title from text, such as what one would
82 * find in a link. Decodes any HTML entities in the text.
83 *
84 * @param string $text the link text; spaces, prefixes,
85 * and an initial ':' indicating the main namespace
86 * are accepted
87 * @param int $defaultNamespace the namespace to use if
88 * none is specified by a prefix
89 * @return Title the new object, or NULL on an error
90 * @static
91 * @access public
92 */
93 /* static */ function &newFromText( $text, $defaultNamespace = 0 ) {
94 $fname = 'Title::newFromText';
95 wfProfileIn( $fname );
96
97 /**
98 * Convert things like &eacute; into real text...
99 */
100 global $wgInputEncoding;
101 $text = do_html_entity_decode( $text, ENT_COMPAT, $wgInputEncoding );
102
103 /**
104 * Convert things like &#257; or &#x3017; into real text...
105 * WARNING: Not friendly to internal links on a latin-1 wiki.
106 */
107 $text = wfMungeToUtf8( $text );
108
109 # What was this for? TS 2004-03-03
110 # $text = urldecode( $text );
111
112 $t =& new Title();
113 $t->mDbkeyform = str_replace( ' ', '_', $text );
114 $t->mDefaultNamespace = $defaultNamespace;
115
116 if( $t->secureAndSplit() ) {
117 wfProfileOut( $fname );
118 return $t;
119 } else {
120 wfProfileOut( $fname );
121 return NULL;
122 }
123 }
124
125 /**
126 * Create a new Title from URL-encoded text. Ensures that
127 * the given title's length does not exceed the maximum.
128 * @param string $url the title, as might be taken from a URL
129 * @return Title the new object, or NULL on an error
130 * @static
131 * @access public
132 */
133 /* static */ function newFromURL( $url ) {
134 global $wgLang, $wgServer;
135 $t = new Title();
136
137 # For compatibility with old buggy URLs. "+" is not valid in titles,
138 # but some URLs used it as a space replacement and they still come
139 # from some external search tools.
140 $s = str_replace( '+', ' ', $url );
141
142 $t->mDbkeyform = str_replace( ' ', '_', $s );
143 if( $t->secureAndSplit() ) {
144 return $t;
145 } else {
146 return NULL;
147 }
148 }
149
150 /**
151 * Create a new Title from an article ID
152 * @todo This is inefficiently implemented, the cur row is requested
153 * but not used for anything else
154 * @param int $id the cur_id corresponding to the Title to create
155 * @return Title the new object, or NULL on an error
156 * @access public
157 */
158 /* static */ function newFromID( $id ) {
159 $fname = 'Title::newFromID';
160 $dbr =& wfGetDB( DB_SLAVE );
161 $row = $dbr->selectRow( 'cur', array( 'cur_namespace', 'cur_title' ),
162 array( 'cur_id' => $id ), $fname );
163 if ( $row !== false ) {
164 $title = Title::makeTitle( $row->cur_namespace, $row->cur_title );
165 } else {
166 $title = NULL;
167 }
168 return $title;
169 }
170
171 /**
172 * Create a new Title from a namespace index and a DB key.
173 * It's assumed that $ns and $title are *valid*, for instance when
174 * they came directly from the database or a special page name.
175 * For convenience, spaces are converted to underscores so that
176 * eg user_text fields can be used directly.
177 *
178 * @param int $ns the namespace of the article
179 * @param string $title the unprefixed database key form
180 * @return Title the new object
181 * @static
182 * @access public
183 */
184 /* static */ function &makeTitle( $ns, $title ) {
185 $t =& new Title();
186 $t->mInterwiki = '';
187 $t->mFragment = '';
188 $t->mNamespace = IntVal( $ns );
189 $t->mDbkeyform = str_replace( ' ', '_', $title );
190 $t->mArticleID = ( $ns >= 0 ) ? -1 : 0;
191 $t->mUrlform = wfUrlencode( $t->mDbkeyform );
192 $t->mTextform = str_replace( '_', ' ', $title );
193 return $t;
194 }
195
196 /**
197 * Create a new Title frrom a namespace index and a DB key.
198 * The parameters will be checked for validity, which is a bit slower
199 * than makeTitle() but safer for user-provided data.
200 * @param int $ns the namespace of the article
201 * @param string $title the database key form
202 * @return Title the new object, or NULL on an error
203 * @static
204 * @access public
205 */
206 /* static */ function makeTitleSafe( $ns, $title ) {
207 $t = new Title();
208 $t->mDbkeyform = Title::makeName( $ns, $title );
209 if( $t->secureAndSplit() ) {
210 return $t;
211 } else {
212 return NULL;
213 }
214 }
215
216 /**
217 * Create a new Title for the Main Page
218 * @static
219 * @return Title the new object
220 * @access public
221 */
222 /* static */ function newMainPage() {
223 return Title::newFromText( wfMsgForContent( 'mainpage' ) );
224 }
225
226 /**
227 * Create a new Title for a redirect
228 * @param string $text the redirect title text
229 * @return Title the new object, or NULL if the text is not a
230 * valid redirect
231 * @static
232 * @access public
233 */
234 /* static */ function newFromRedirect( $text ) {
235 global $wgMwRedir;
236 $rt = NULL;
237 if ( $wgMwRedir->matchStart( $text ) ) {
238 if ( preg_match( '/\\[\\[([^\\]\\|]+)[\\]\\|]/', $text, $m ) ) {
239 # categories are escaped using : for example one can enter:
240 # #REDIRECT [[:Category:Music]]. Need to remove it.
241 if ( substr($m[1],0,1) == ':') {
242 # We don't want to keep the ':'
243 $m[1] = substr( $m[1], 1 );
244 }
245
246 $rt = Title::newFromText( $m[1] );
247 # Disallow redirects to Special:Userlogout
248 if ( !is_null($rt) && $rt->getNamespace() == NS_SPECIAL && preg_match( '/^Userlogout/i', $rt->getText() ) ) {
249 $rt = NULL;
250 }
251 }
252 }
253 return $rt;
254 }
255
256 #----------------------------------------------------------------------------
257 # Static functions
258 #----------------------------------------------------------------------------
259
260 /**
261 * Get the prefixed DB key associated with an ID
262 * @param int $id the cur_id of the article
263 * @return Title an object representing the article, or NULL
264 * if no such article was found
265 * @static
266 * @access public
267 */
268 /* static */ function nameOf( $id ) {
269 $fname = 'Title::nameOf';
270 $dbr =& wfGetDB( DB_SLAVE );
271
272 $s = $dbr->selectRow( 'cur', array( 'cur_namespace','cur_title' ), array( 'cur_id' => $id ), $fname );
273 if ( $s === false ) { return NULL; }
274
275 $n = Title::makeName( $s->cur_namespace, $s->cur_title );
276 return $n;
277 }
278
279 /**
280 * Get a regex character class describing the legal characters in a link
281 * @return string the list of characters, not delimited
282 * @static
283 * @access public
284 */
285 /* static */ function legalChars() {
286 # Missing characters:
287 # * []|# Needed for link syntax
288 # * % and + are corrupted by Apache when they appear in the path
289 #
290 # % seems to work though
291 #
292 # The problem with % is that URLs are double-unescaped: once by Apache's
293 # path conversion code, and again by PHP. So %253F, for example, becomes "?".
294 # Our code does not double-escape to compensate for this, indeed double escaping
295 # would break if the double-escaped title was passed in the query string
296 # rather than the path. This is a minor security issue because articles can be
297 # created such that they are hard to view or edit. -- TS
298 #
299 # Theoretically 0x80-0x9F of ISO 8859-1 should be disallowed, but
300 # this breaks interlanguage links
301
302 $set = " %!\"$&'()*,\\-.\\/0-9:;=?@A-Z\\\\^_`a-z~\\x80-\\xFF";
303 return $set;
304 }
305
306 /**
307 * Get a string representation of a title suitable for
308 * including in a search index
309 *
310 * @param int $ns a namespace index
311 * @param string $title text-form main part
312 * @return string a stripped-down title string ready for the
313 * search index
314 */
315 /* static */ function indexTitle( $ns, $title ) {
316 global $wgDBminWordLen, $wgContLang;
317 require_once( 'SearchEngine.php' );
318
319 $lc = SearchEngine::legalSearchChars() . '&#;';
320 $t = $wgContLang->stripForSearch( $title );
321 $t = preg_replace( "/[^{$lc}]+/", ' ', $t );
322 $t = strtolower( $t );
323
324 # Handle 's, s'
325 $t = preg_replace( "/([{$lc}]+)'s( |$)/", "\\1 \\1's ", $t );
326 $t = preg_replace( "/([{$lc}]+)s'( |$)/", "\\1s ", $t );
327
328 $t = preg_replace( "/\\s+/", ' ', $t );
329
330 if ( $ns == NS_IMAGE ) {
331 $t = preg_replace( "/ (png|gif|jpg|jpeg|ogg)$/", "", $t );
332 }
333 return trim( $t );
334 }
335
336 /*
337 * Make a prefixed DB key from a DB key and a namespace index
338 * @param int $ns numerical representation of the namespace
339 * @param string $title the DB key form the title
340 * @return string the prefixed form of the title
341 */
342 /* static */ function makeName( $ns, $title ) {
343 global $wgContLang;
344
345 $n = $wgContLang->getNsText( $ns );
346 if ( '' == $n ) { return $title; }
347 else { return $n.':'.$title; }
348 }
349
350 /**
351 * Returns the URL associated with an interwiki prefix
352 * @param string $key the interwiki prefix (e.g. "MeatBall")
353 * @return the associated URL, containing "$1", which should be
354 * replaced by an article title
355 * @static (arguably)
356 * @access public
357 */
358 function getInterwikiLink( $key ) {
359 global $wgMemc, $wgDBname, $wgInterwikiExpiry, $wgTitleInterwikiCache;
360 $fname = 'Title::getInterwikiLink';
361
362 wfProfileIn( $fname );
363
364 $k = $wgDBname.':interwiki:'.$key;
365 if( array_key_exists( $k, $wgTitleInterwikiCache ) ) {
366 wfProfileOut( $fname );
367 return $wgTitleInterwikiCache[$k]->iw_url;
368 }
369
370 $s = $wgMemc->get( $k );
371 # Ignore old keys with no iw_local
372 if( $s && isset( $s->iw_local ) ) {
373 $wgTitleInterwikiCache[$k] = $s;
374 wfProfileOut( $fname );
375 return $s->iw_url;
376 }
377
378 $dbr =& wfGetDB( DB_SLAVE );
379 $res = $dbr->select( 'interwiki',
380 array( 'iw_url', 'iw_local' ),
381 array( 'iw_prefix' => $key ), $fname );
382 if( !$res ) {
383 wfProfileOut( $fname );
384 return '';
385 }
386
387 $s = $dbr->fetchObject( $res );
388 if( !$s ) {
389 # Cache non-existence: create a blank object and save it to memcached
390 $s = (object)false;
391 $s->iw_url = '';
392 $s->iw_local = 0;
393 }
394 $wgMemc->set( $k, $s, $wgInterwikiExpiry );
395 $wgTitleInterwikiCache[$k] = $s;
396
397 wfProfileOut( $fname );
398 return $s->iw_url;
399 }
400
401 /**
402 * Determine whether the object refers to a page within
403 * this project.
404 *
405 * @return bool TRUE if this is an in-project interwiki link
406 * or a wikilink, FALSE otherwise
407 * @access public
408 */
409 function isLocal() {
410 global $wgTitleInterwikiCache, $wgDBname;
411
412 if ( $this->mInterwiki != '' ) {
413 # Make sure key is loaded into cache
414 $this->getInterwikiLink( $this->mInterwiki );
415 $k = $wgDBname.':interwiki:' . $this->mInterwiki;
416 return (bool)($wgTitleInterwikiCache[$k]->iw_local);
417 } else {
418 return true;
419 }
420 }
421
422 /**
423 * Update the cur_touched field for an array of title objects
424 * @todo Inefficient unless the IDs are already loaded into the
425 * link cache
426 * @param array $titles an array of Title objects to be touched
427 * @param string $timestamp the timestamp to use instead of the
428 * default current time
429 * @static
430 * @access public
431 */
432 /* static */ function touchArray( $titles, $timestamp = '' ) {
433 if ( count( $titles ) == 0 ) {
434 return;
435 }
436 $dbw =& wfGetDB( DB_MASTER );
437 if ( $timestamp == '' ) {
438 $timestamp = $dbw->timestamp();
439 }
440 $cur = $dbw->tableName( 'cur' );
441 $sql = "UPDATE $cur SET cur_touched='{$timestamp}' WHERE cur_id IN (";
442 $first = true;
443
444 foreach ( $titles as $title ) {
445 if ( ! $first ) {
446 $sql .= ',';
447 }
448 $first = false;
449 $sql .= $title->getArticleID();
450 }
451 $sql .= ')';
452 if ( ! $first ) {
453 $dbw->query( $sql, 'Title::touchArray' );
454 }
455 }
456
457 #----------------------------------------------------------------------------
458 # Other stuff
459 #----------------------------------------------------------------------------
460
461 /** Simple accessors */
462 /**
463 * Get the text form (spaces not underscores) of the main part
464 * @return string
465 * @access public
466 */
467 function getText() { return $this->mTextform; }
468 /**
469 * Get the URL-encoded form of the main part
470 * @return string
471 * @access public
472 */
473 function getPartialURL() { return $this->mUrlform; }
474 /**
475 * Get the main part with underscores
476 * @return string
477 * @access public
478 */
479 function getDBkey() { return $this->mDbkeyform; }
480 /**
481 * Get the namespace index, i.e. one of the NS_xxxx constants
482 * @return int
483 * @access public
484 */
485 function getNamespace() { return $this->mNamespace; }
486 /**
487 * Get the interwiki prefix (or null string)
488 * @return string
489 * @access public
490 */
491 function getInterwiki() { return $this->mInterwiki; }
492 /**
493 * Get the Title fragment (i.e. the bit after the #)
494 * @return string
495 * @access public
496 */
497 function getFragment() { return $this->mFragment; }
498 /**
499 * Get the default namespace index, for when there is no namespace
500 * @return int
501 * @access public
502 */
503 function getDefaultNamespace() { return $this->mDefaultNamespace; }
504
505 /**
506 * Get title for search index
507 * @return string a stripped-down title string ready for the
508 * search index
509 */
510 function getIndexTitle() {
511 return Title::indexTitle( $this->mNamespace, $this->mTextform );
512 }
513
514 /**
515 * Get the prefixed database key form
516 * @return string the prefixed title, with underscores and
517 * any interwiki and namespace prefixes
518 * @access public
519 */
520 function getPrefixedDBkey() {
521 $s = $this->prefix( $this->mDbkeyform );
522 $s = str_replace( ' ', '_', $s );
523 return $s;
524 }
525
526 /**
527 * Get the prefixed title with spaces.
528 * This is the form usually used for display
529 * @return string the prefixed title, with spaces
530 * @access public
531 */
532 function getPrefixedText() {
533 global $wgContLang;
534 if ( empty( $this->mPrefixedText ) ) {
535 $s = $this->prefix( $this->mTextform );
536 $s = str_replace( '_', ' ', $s );
537 $this->mPrefixedText = $s;
538 }
539 return $this->mPrefixedText;
540 }
541
542 /**
543 * Get the prefixed title with spaces, plus any fragment
544 * (part beginning with '#')
545 * @return string the prefixed title, with spaces and
546 * the fragment, including '#'
547 * @access public
548 */
549 function getFullText() {
550 global $wgContLang;
551 $text = $this->getPrefixedText();
552 if( '' != $this->mFragment ) {
553 $text .= '#' . $this->mFragment;
554 }
555 return $text;
556 }
557
558 /**
559 * Get a URL-encoded title (not an actual URL) including interwiki
560 * @return string the URL-encoded form
561 * @access public
562 */
563 function getPrefixedURL() {
564 $s = $this->prefix( $this->mDbkeyform );
565 $s = str_replace( ' ', '_', $s );
566
567 $s = wfUrlencode ( $s ) ;
568
569 # Cleaning up URL to make it look nice -- is this safe?
570 $s = preg_replace( '/%3[Aa]/', ':', $s );
571 $s = preg_replace( '/%2[Ff]/', '/', $s );
572 $s = str_replace( '%28', '(', $s );
573 $s = str_replace( '%29', ')', $s );
574
575 return $s;
576 }
577
578 /**
579 * Get a real URL referring to this title, with interwiki link and
580 * fragment
581 *
582 * @param string $query an optional query string, not used
583 * for interwiki links
584 * @return string the URL
585 * @access public
586 */
587 function getFullURL( $query = '' ) {
588 global $wgContLang, $wgArticlePath, $wgServer, $wgScript;
589
590 if ( '' == $this->mInterwiki ) {
591 $p = $wgArticlePath;
592 return $wgServer . $this->getLocalUrl( $query );
593 } else {
594 $baseUrl = $this->getInterwikiLink( $this->mInterwiki );
595 $namespace = $wgContLang->getNsText( $this->mNamespace );
596 if ( '' != $namespace ) {
597 # Can this actually happen? Interwikis shouldn't be parsed.
598 $namepace .= ':';
599 }
600 $url = str_replace( '$1', $namespace . $this->mUrlform, $baseUrl );
601 if ( '' != $this->mFragment ) {
602 $url .= '#' . $this->mFragment;
603 }
604 return $url;
605 }
606 }
607
608 /**
609 * Get a URL with no fragment or server name
610 * @param string $query an optional query string; if not specified,
611 * $wgArticlePath will be used.
612 * @return string the URL
613 * @access public
614 */
615 function getLocalURL( $query = '' ) {
616 global $wgLang, $wgArticlePath, $wgScript;
617
618 if ( $this->isExternal() ) {
619 return $this->getFullURL();
620 }
621
622 $dbkey = wfUrlencode( $this->getPrefixedDBkey() );
623 if ( $query == '' ) {
624 $url = str_replace( '$1', $dbkey, $wgArticlePath );
625 } else {
626 if ( $query == '-' ) {
627 $query = '';
628 }
629 $url = "{$wgScript}?title={$dbkey}&{$query}";
630 }
631 return $url;
632 }
633
634 /**
635 * Get an HTML-escaped version of the URL form, suitable for
636 * using in a link, without a server name or fragment
637 * @param string $query an optional query string
638 * @return string the URL
639 * @access public
640 */
641 function escapeLocalURL( $query = '' ) {
642 return htmlspecialchars( $this->getLocalURL( $query ) );
643 }
644
645 /**
646 * Get an HTML-escaped version of the URL form, suitable for
647 * using in a link, including the server name and fragment
648 *
649 * @return string the URL
650 * @param string $query an optional query string
651 * @access public
652 */
653 function escapeFullURL( $query = '' ) {
654 return htmlspecialchars( $this->getFullURL( $query ) );
655 }
656
657 /**
658 * Get the URL form for an internal link.
659 * - Used in various Squid-related code, in case we have a different
660 * internal hostname for the server from the exposed one.
661 *
662 * @param string $query an optional query string
663 * @return string the URL
664 * @access public
665 */
666 function getInternalURL( $query = '' ) {
667 global $wgInternalServer;
668 return $wgInternalServer . $this->getLocalURL( $query );
669 }
670
671 /**
672 * Get the edit URL for this Title
673 * @return string the URL, or a null string if this is an
674 * interwiki link
675 * @access public
676 */
677 function getEditURL() {
678 global $wgServer, $wgScript;
679
680 if ( '' != $this->mInterwiki ) { return ''; }
681 $s = $this->getLocalURL( 'action=edit' );
682
683 return $s;
684 }
685
686 /**
687 * Get the HTML-escaped displayable text form.
688 * Used for the title field in <a> tags.
689 * @return string the text, including any prefixes
690 * @access public
691 */
692 function getEscapedText() {
693 return htmlspecialchars( $this->getPrefixedText() );
694 }
695
696 /**
697 * Is this Title interwiki?
698 * @return boolean
699 * @access public
700 */
701 function isExternal() { return ( '' != $this->mInterwiki ); }
702
703 /**
704 * Does the title correspond to a protected article?
705 * @param string $what the action the page is protected from,
706 * by default checks move and edit
707 * @return boolean
708 * @access public
709 */
710 function isProtected($action = '') {
711 if ( -1 == $this->mNamespace ) { return true; }
712 if($action == 'edit' || $action == '') {
713 $a = $this->getRestrictions("edit");
714 if ( in_array( 'sysop', $a ) ) { return true; }
715 }
716 if($action == 'move' || $action == '') {
717 $a = $this->getRestrictions("move");
718 if ( in_array( 'sysop', $a ) ) { return true; }
719 }
720 return false;
721 }
722
723 /**
724 * Is $wgUser is watching this page?
725 * @return boolean
726 * @access public
727 */
728 function userIsWatching() {
729 global $wgUser;
730
731 if ( -1 == $this->mNamespace ) { return false; }
732 if ( 0 == $wgUser->getID() ) { return false; }
733
734 return $wgUser->isWatched( $this );
735 }
736
737 /**
738 * Is $wgUser perform $action this page?
739 * @param string $action action that permission needs to be checked for
740 * @return boolean
741 * @access private
742 */
743 function userCan($action) {
744 $fname = 'Title::userCanEdit';
745 wfProfileIn( $fname );
746
747 global $wgUser;
748 if( NS_SPECIAL == $this->mNamespace ) {
749 wfProfileOut( $fname );
750 return false;
751 }
752 if( NS_MEDIAWIKI == $this->mNamespace &&
753 !$wgUser->isAllowed('editinterface') ) {
754 wfProfileOut( $fname );
755 return false;
756 }
757 if( $this->mDbkeyform == '_' ) {
758 # FIXME: Is this necessary? Shouldn't be allowed anyway...
759 wfProfileOut( $fname );
760 return false;
761 }
762
763 # protect global styles and js
764 if ( NS_MEDIAWIKI == $this->mNamespace
765 && preg_match("/\\.(css|js)$/", $this->mTextform )
766 && !$wgUser->isAllowed('editinterface') ) {
767 wfProfileOut( $fname );
768 return false;
769 }
770
771 # protect css/js subpages of user pages
772 # XXX: this might be better using restrictions
773 # XXX: Find a way to work around the php bug that prevents using $this->userCanEditCssJsSubpage() from working
774 if( NS_USER == $this->mNamespace
775 && preg_match("/\\.(css|js)$/", $this->mTextform )
776 && !$wgUser->isAllowed('editinterface')
777 && !preg_match('/^'.preg_quote($wgUser->getName(), '/').'\//', $this->mTextform) ) {
778 wfProfileOut( $fname );
779 return false;
780 }
781
782 foreach( $this->getRestrictions($action) as $right ) {
783 if( '' != $right && !$wgUser->isAllowed( $right ) ) {
784 wfProfileOut( $fname );
785 return false;
786 }
787 }
788 wfProfileOut( $fname );
789 return true;
790 }
791
792 /**
793 * Can $wgUser edit this page?
794 * @return boolean
795 * @access public
796 */
797 function userCanEdit() {
798 return $this->userCan('edit');
799 }
800
801 /**
802 * Can $wgUser move this page?
803 * @return boolean
804 * @access public
805 */
806 function userCanMove() {
807 return $this->userCan('move');
808 }
809
810 /**
811 * Can $wgUser read this page?
812 * @return boolean
813 * @access public
814 */
815 function userCanRead() {
816 global $wgUser;
817
818 if( $wgUser->isAllowed('read') ) {
819 return true;
820 } else {
821 global $wgWhitelistRead;
822
823 /** If anon users can create an account,
824 they need to reach the login page first! */
825 if( $wgUser->isAllowed( 'createaccount' )
826 && $this->mId == NS_SPECIAL
827 && $this->getText() == 'Userlogin' ) {
828 return true;
829 }
830
831 /** some pages are explicitly allowed */
832 $name = $this->getPrefixedText();
833 if( in_array( $name, $wgWhitelistRead ) ) {
834 return true;
835 }
836
837 # Compatibility with old settings
838 if( $this->getNamespace() == NS_MAIN ) {
839 if( in_array( ':' . $name, $wgWhitelistRead ) ) {
840 return true;
841 }
842 }
843 }
844 return false;
845 }
846
847 /**
848 * Is this a .css or .js subpage of a user page?
849 * @return bool
850 * @access public
851 */
852 function isCssJsSubpage() {
853 return ( NS_USER == $this->mNamespace and preg_match("/\\.(css|js)$/", $this->mTextform ) );
854 }
855 /**
856 * Is this a .css subpage of a user page?
857 * @return bool
858 * @access public
859 */
860 function isCssSubpage() {
861 return ( NS_USER == $this->mNamespace and preg_match("/\\.css$/", $this->mTextform ) );
862 }
863 /**
864 * Is this a .js subpage of a user page?
865 * @return bool
866 * @access public
867 */
868 function isJsSubpage() {
869 return ( NS_USER == $this->mNamespace and preg_match("/\\.js$/", $this->mTextform ) );
870 }
871 /**
872 * Protect css/js subpages of user pages: can $wgUser edit
873 * this page?
874 *
875 * @return boolean
876 * @todo XXX: this might be better using restrictions
877 * @access public
878 */
879 function userCanEditCssJsSubpage() {
880 global $wgUser;
881 return ( $wgUser->isAllowed('editinterface') or preg_match('/^'.preg_quote($wgUser->getName(), '/').'\//', $this->mTextform) );
882 }
883
884 /**
885 * Loads a string into mRestrictions array
886 * @param string $res restrictions in string format
887 * @access public
888 */
889 function loadRestrictions( $res ) {
890 foreach( explode( ':', trim( $res ) ) as $restrict ) {
891 $temp = explode( '=', trim( $restrict ) );
892 if(count($temp) == 1) {
893 // old format should be treated as edit/move restriction
894 $this->mRestrictions["edit"] = explode( ',', trim( $temp[0] ) );
895 $this->mRestrictions["move"] = explode( ',', trim( $temp[0] ) );
896 } else {
897 $this->mRestrictions[$temp[0]] = explode( ',', trim( $temp[1] ) );
898 }
899 }
900 $this->mRestrictionsLoaded = true;
901 }
902
903 /**
904 * Accessor/initialisation for mRestrictions
905 * @param string $action action that permission needs to be checked for
906 * @return array the array of groups allowed to edit this article
907 * @access public
908 */
909 function getRestrictions($action) {
910 $id = $this->getArticleID();
911 if ( 0 == $id ) { return array(); }
912
913 if ( ! $this->mRestrictionsLoaded ) {
914 $dbr =& wfGetDB( DB_SLAVE );
915 $res = $dbr->selectField( 'cur', 'cur_restrictions', 'cur_id='.$id );
916 $this->loadRestrictions( $res );
917 }
918 if( isset( $this->mRestrictions[$action] ) ) {
919 return $this->mRestrictions[$action];
920 }
921 return array();
922 }
923
924 /**
925 * Is there a version of this page in the deletion archive?
926 * @return int the number of archived revisions
927 * @access public
928 */
929 function isDeleted() {
930 $fname = 'Title::isDeleted';
931 $dbr =& wfGetDB( DB_SLAVE );
932 $n = $dbr->selectField( 'archive', 'COUNT(*)', array( 'ar_namespace' => $this->getNamespace(),
933 'ar_title' => $this->getDBkey() ), $fname );
934 return (int)$n;
935 }
936
937 /**
938 * Get the article ID for this Title from the link cache,
939 * adding it if necessary
940 * @param int $flags a bit field; may be GAID_FOR_UPDATE to select
941 * for update
942 * @return int the ID
943 * @access public
944 */
945 function getArticleID( $flags = 0 ) {
946 global $wgLinkCache;
947
948 if ( $flags & GAID_FOR_UPDATE ) {
949 $oldUpdate = $wgLinkCache->forUpdate( true );
950 $this->mArticleID = $wgLinkCache->addLinkObj( $this );
951 $wgLinkCache->forUpdate( $oldUpdate );
952 } else {
953 if ( -1 == $this->mArticleID ) {
954 $this->mArticleID = $wgLinkCache->addLinkObj( $this );
955 }
956 }
957 return $this->mArticleID;
958 }
959
960 /**
961 * This clears some fields in this object, and clears any associated
962 * keys in the "bad links" section of $wgLinkCache.
963 *
964 * - This is called from Article::insertNewArticle() to allow
965 * loading of the new cur_id. It's also called from
966 * Article::doDeleteArticle()
967 *
968 * @param int $newid the new Article ID
969 * @access public
970 */
971 function resetArticleID( $newid ) {
972 global $wgLinkCache;
973 $wgLinkCache->clearBadLink( $this->getPrefixedDBkey() );
974
975 if ( 0 == $newid ) { $this->mArticleID = -1; }
976 else { $this->mArticleID = $newid; }
977 $this->mRestrictionsLoaded = false;
978 $this->mRestrictions = array();
979 }
980
981 /**
982 * Updates cur_touched for this page; called from LinksUpdate.php
983 * @return bool true if the update succeded
984 * @access public
985 */
986 function invalidateCache() {
987 $now = wfTimestampNow();
988 $dbw =& wfGetDB( DB_MASTER );
989 $success = $dbw->update( 'cur',
990 array( /* SET */
991 'cur_touched' => $dbw->timestamp()
992 ), array( /* WHERE */
993 'cur_namespace' => $this->getNamespace() ,
994 'cur_title' => $this->getDBkey()
995 ), 'Title::invalidateCache'
996 );
997 return $success;
998 }
999
1000 /**
1001 * Prefix some arbitrary text with the namespace or interwiki prefix
1002 * of this object
1003 *
1004 * @param string $name the text
1005 * @return string the prefixed text
1006 * @access private
1007 */
1008 /* private */ function prefix( $name ) {
1009 global $wgContLang;
1010
1011 $p = '';
1012 if ( '' != $this->mInterwiki ) {
1013 $p = $this->mInterwiki . ':';
1014 }
1015 if ( 0 != $this->mNamespace ) {
1016 $p .= $wgContLang->getNsText( $this->mNamespace ) . ':';
1017 }
1018 return $p . $name;
1019 }
1020
1021 /**
1022 * Secure and split - main initialisation function for this object
1023 *
1024 * Assumes that mDbkeyform has been set, and is urldecoded
1025 * and uses underscores, but not otherwise munged. This function
1026 * removes illegal characters, splits off the interwiki and
1027 * namespace prefixes, sets the other forms, and canonicalizes
1028 * everything.
1029 * @return bool true on success
1030 * @access private
1031 */
1032 /* private */ function secureAndSplit() {
1033 global $wgContLang, $wgLocalInterwiki, $wgCapitalLinks;
1034 $fname = 'Title::secureAndSplit';
1035 wfProfileIn( $fname );
1036
1037 static $imgpre = false;
1038 static $rxTc = false;
1039
1040 # Initialisation
1041 if ( $imgpre === false ) {
1042 $imgpre = ':' . $wgContLang->getNsText( NS_IMAGE ) . ':';
1043 # % is needed as well
1044 $rxTc = '/[^' . Title::legalChars() . ']|%[0-9A-Fa-f]{2}/S';
1045 }
1046
1047 $this->mInterwiki = $this->mFragment = '';
1048 $this->mNamespace = $this->mDefaultNamespace; # Usually NS_MAIN
1049
1050 # Clean up whitespace
1051 #
1052 $t = preg_replace( "/[\\s_]+/", '_', $this->mDbkeyform );
1053 $t = preg_replace( '/^_*(.*?)_*$/', '$1', $t );
1054
1055 if ( '' == $t ) {
1056 wfProfileOut( $fname );
1057 return false;
1058 }
1059
1060 global $wgUseLatin1;
1061 if( !$wgUseLatin1 && false !== strpos( $t, UTF8_REPLACEMENT ) ) {
1062 # Contained illegal UTF-8 sequences or forbidden Unicode chars.
1063 wfProfileOut( $fname );
1064 return false;
1065 }
1066
1067 $this->mDbkeyform = $t;
1068 $done = false;
1069
1070 # :Image: namespace
1071 if ( 0 == strncasecmp( $imgpre, $t, strlen( $imgpre ) ) ) {
1072 $t = substr( $t, 1 );
1073 }
1074
1075 # Initial colon indicating main namespace
1076 if ( ':' == $t{0} ) {
1077 $r = substr( $t, 1 );
1078 $this->mNamespace = NS_MAIN;
1079 } else {
1080 # Namespace or interwiki prefix
1081 if ( preg_match( "/^(.+?)_*:_*(.*)$/S", $t, $m ) ) {
1082 #$p = strtolower( $m[1] );
1083 $p = $m[1];
1084 $lowerNs = strtolower( $p );
1085 if ( $ns = Namespace::getCanonicalIndex( $lowerNs ) ) {
1086 # Canonical namespace
1087 $t = $m[2];
1088 $this->mNamespace = $ns;
1089 } elseif ( $ns = $wgContLang->getNsIndex( $lowerNs )) {
1090 # Ordinary namespace
1091 $t = $m[2];
1092 $this->mNamespace = $ns;
1093 } elseif ( $this->getInterwikiLink( $p ) ) {
1094 # Interwiki link
1095 $t = $m[2];
1096 $this->mInterwiki = $p;
1097
1098 if ( !preg_match( "/^([A-Za-z0-9_\\x80-\\xff]+):(.*)$/", $t, $m ) ) {
1099 $done = true;
1100 } elseif($this->mInterwiki != $wgLocalInterwiki) {
1101 $done = true;
1102 }
1103 }
1104 }
1105 $r = $t;
1106 }
1107
1108 # Redundant interwiki prefix to the local wiki
1109 if ( 0 == strcmp( $this->mInterwiki, $wgLocalInterwiki ) ) {
1110 $this->mInterwiki = '';
1111 }
1112 # We already know that some pages won't be in the database!
1113 #
1114 if ( '' != $this->mInterwiki || -1 == $this->mNamespace ) {
1115 $this->mArticleID = 0;
1116 }
1117 $f = strstr( $r, '#' );
1118 if ( false !== $f ) {
1119 $this->mFragment = substr( $f, 1 );
1120 $r = substr( $r, 0, strlen( $r ) - strlen( $f ) );
1121 # remove whitespace again: prevents "Foo_bar_#"
1122 # becoming "Foo_bar_"
1123 $r = preg_replace( '/_*$/', '', $r );
1124 }
1125
1126 # Reject illegal characters.
1127 #
1128 if( preg_match( $rxTc, $r ) ) {
1129 wfProfileOut( $fname );
1130 return false;
1131 }
1132
1133 /**
1134 * Pages with "/./" or "/../" appearing in the URLs will
1135 * often be unreachable due to the way web browsers deal
1136 * with 'relative' URLs. Forbid them explicitly.
1137 */
1138 if ( strpos( $r, '.' ) !== false &&
1139 ( $r === '.' || $r === '..' ||
1140 strpos( $r, './' ) === 0 ||
1141 strpos( $r, '../' ) === 0 ||
1142 strpos( $r, '/./' ) !== false ||
1143 strpos( $r, '/../' ) !== false ) )
1144 {
1145 wfProfileOut( $fname );
1146 return false;
1147 }
1148
1149 # We shouldn't need to query the DB for the size.
1150 #$maxSize = $dbr->textFieldSize( 'cur', 'cur_title' );
1151 if ( strlen( $r ) > 255 ) {
1152 return false;
1153 }
1154
1155 /**
1156 * Normally, all wiki links are forced to have
1157 * an initial capital letter so [[foo]] and [[Foo]]
1158 * point to the same place.
1159 *
1160 * Don't force it for interwikis, since the other
1161 * site might be case-sensitive.
1162 */
1163 if( $wgCapitalLinks && $this->mInterwiki == '') {
1164 $t = $wgContLang->ucfirst( $r );
1165 } else {
1166 $t = $r;
1167 }
1168
1169 # Fill fields
1170 $this->mDbkeyform = $t;
1171 $this->mUrlform = wfUrlencode( $t );
1172
1173 $this->mTextform = str_replace( '_', ' ', $t );
1174
1175 wfProfileOut( $fname );
1176 return true;
1177 }
1178
1179 /**
1180 * Get a Title object associated with the talk page of this article
1181 * @return Title the object for the talk page
1182 * @access public
1183 */
1184 function getTalkPage() {
1185 return Title::makeTitle( Namespace::getTalk( $this->getNamespace() ), $this->getDBkey() );
1186 }
1187
1188 /**
1189 * Get a title object associated with the subject page of this
1190 * talk page
1191 *
1192 * @return Title the object for the subject page
1193 * @access public
1194 */
1195 function getSubjectPage() {
1196 return Title::makeTitle( Namespace::getSubject( $this->getNamespace() ), $this->getDBkey() );
1197 }
1198
1199 /**
1200 * Get an array of Title objects linking to this Title
1201 * - Also stores the IDs in the link cache.
1202 *
1203 * @param string $options may be FOR UPDATE
1204 * @return array the Title objects linking here
1205 * @access public
1206 */
1207 function getLinksTo( $options = '' ) {
1208 global $wgLinkCache;
1209 $id = $this->getArticleID();
1210
1211 if ( $options ) {
1212 $db =& wfGetDB( DB_MASTER );
1213 } else {
1214 $db =& wfGetDB( DB_SLAVE );
1215 }
1216 $cur = $db->tableName( 'cur' );
1217 $links = $db->tableName( 'links' );
1218
1219 $sql = "SELECT cur_namespace,cur_title,cur_id FROM $cur,$links WHERE l_from=cur_id AND l_to={$id} $options";
1220 $res = $db->query( $sql, 'Title::getLinksTo' );
1221 $retVal = array();
1222 if ( $db->numRows( $res ) ) {
1223 while ( $row = $db->fetchObject( $res ) ) {
1224 if ( $titleObj = Title::makeTitle( $row->cur_namespace, $row->cur_title ) ) {
1225 $wgLinkCache->addGoodLink( $row->cur_id, $titleObj->getPrefixedDBkey() );
1226 $retVal[] = $titleObj;
1227 }
1228 }
1229 }
1230 $db->freeResult( $res );
1231 return $retVal;
1232 }
1233
1234 /**
1235 * Get an array of Title objects linking to this non-existent title.
1236 * - Also stores the IDs in the link cache.
1237 *
1238 * @param string $options may be FOR UPDATE
1239 * @return array the Title objects linking here
1240 * @access public
1241 */
1242 function getBrokenLinksTo( $options = '' ) {
1243 global $wgLinkCache;
1244
1245 if ( $options ) {
1246 $db =& wfGetDB( DB_MASTER );
1247 } else {
1248 $db =& wfGetDB( DB_SLAVE );
1249 }
1250 $cur = $db->tableName( 'cur' );
1251 $brokenlinks = $db->tableName( 'brokenlinks' );
1252 $encTitle = $db->strencode( $this->getPrefixedDBkey() );
1253
1254 $sql = "SELECT cur_namespace,cur_title,cur_id FROM $brokenlinks,$cur " .
1255 "WHERE bl_from=cur_id AND bl_to='$encTitle' $options";
1256 $res = $db->query( $sql, "Title::getBrokenLinksTo" );
1257 $retVal = array();
1258 if ( $db->numRows( $res ) ) {
1259 while ( $row = $db->fetchObject( $res ) ) {
1260 $titleObj = Title::makeTitle( $row->cur_namespace, $row->cur_title );
1261 $wgLinkCache->addGoodLink( $row->cur_id, $titleObj->getPrefixedDBkey() );
1262 $retVal[] = $titleObj;
1263 }
1264 }
1265 $db->freeResult( $res );
1266 return $retVal;
1267 }
1268
1269 /**
1270 * Get a list of URLs to purge from the Squid cache when this
1271 * page changes
1272 *
1273 * @return array the URLs
1274 * @access public
1275 */
1276 function getSquidURLs() {
1277 return array(
1278 $this->getInternalURL(),
1279 $this->getInternalURL( 'action=history' )
1280 );
1281 }
1282
1283 /**
1284 * Move this page without authentication
1285 * @param Title &$nt the new page Title
1286 * @access public
1287 */
1288 function moveNoAuth( &$nt ) {
1289 return $this->moveTo( $nt, false );
1290 }
1291
1292 /**
1293 * Move a title to a new location
1294 * @param Title &$nt the new title
1295 * @param bool $auth indicates whether $wgUser's permissions
1296 * should be checked
1297 * @return mixed true on success, message name on failure
1298 * @access public
1299 */
1300 function moveTo( &$nt, $auth = true ) {
1301 if( !$this or !$nt ) {
1302 return 'badtitletext';
1303 }
1304
1305 $fname = 'Title::move';
1306 $oldid = $this->getArticleID();
1307 $newid = $nt->getArticleID();
1308
1309 if ( strlen( $nt->getDBkey() ) < 1 ) {
1310 return 'articleexists';
1311 }
1312 if ( ( ! Namespace::isMovable( $this->getNamespace() ) ) ||
1313 ( '' == $this->getDBkey() ) ||
1314 ( '' != $this->getInterwiki() ) ||
1315 ( !$oldid ) ||
1316 ( ! Namespace::isMovable( $nt->getNamespace() ) ) ||
1317 ( '' == $nt->getDBkey() ) ||
1318 ( '' != $nt->getInterwiki() ) ) {
1319 return 'badarticleerror';
1320 }
1321
1322 if ( $auth && ( !$this->userCanEdit() || !$nt->userCanEdit() ) ) {
1323 return 'protectedpage';
1324 }
1325
1326 # The move is allowed only if (1) the target doesn't exist, or
1327 # (2) the target is a redirect to the source, and has no history
1328 # (so we can undo bad moves right after they're done).
1329
1330 if ( 0 != $newid ) { # Target exists; check for validity
1331 if ( ! $this->isValidMoveTarget( $nt ) ) {
1332 return 'articleexists';
1333 }
1334 $this->moveOverExistingRedirect( $nt );
1335 } else { # Target didn't exist, do normal move.
1336 $this->moveToNewTitle( $nt, $newid );
1337 }
1338
1339 # Fixing category links (those without piped 'alternate' names) to be sorted under the new title
1340
1341 $dbw =& wfGetDB( DB_MASTER );
1342 $sql = "UPDATE categorylinks SET cl_sortkey=" . $dbw->addQuotes( $nt->getPrefixedText() ) .
1343 " WHERE cl_from=" . $dbw->addQuotes( $this->getArticleID() ) .
1344 " AND cl_sortkey=" . $dbw->addQuotes( $this->getPrefixedText() );
1345 $dbw->query( $sql, 'SpecialMovepage::doSubmit' );
1346
1347 # Update watchlists
1348
1349 $oldnamespace = $this->getNamespace() & ~1;
1350 $newnamespace = $nt->getNamespace() & ~1;
1351 $oldtitle = $this->getDBkey();
1352 $newtitle = $nt->getDBkey();
1353
1354 if( $oldnamespace != $newnamespace || $oldtitle != $newtitle ) {
1355 WatchedItem::duplicateEntries( $this, $nt );
1356 }
1357
1358 # Update search engine
1359 $u = new SearchUpdate( $oldid, $nt->getPrefixedDBkey() );
1360 $u->doUpdate();
1361 $u = new SearchUpdate( $newid, $this->getPrefixedDBkey(), '' );
1362 $u->doUpdate();
1363
1364 return true;
1365 }
1366
1367 /**
1368 * Move page to a title which is at present a redirect to the
1369 * source page
1370 *
1371 * @param Title &$nt the page to move to, which should currently
1372 * be a redirect
1373 * @access private
1374 */
1375 /* private */ function moveOverExistingRedirect( &$nt ) {
1376 global $wgUser, $wgLinkCache, $wgUseSquid, $wgMwRedir;
1377 $fname = 'Title::moveOverExistingRedirect';
1378 $comment = wfMsg( '1movedto2', $this->getPrefixedText(), $nt->getPrefixedText() );
1379
1380 $now = wfTimestampNow();
1381 $won = wfInvertTimestamp( $now );
1382 $newid = $nt->getArticleID();
1383 $oldid = $this->getArticleID();
1384 $dbw =& wfGetDB( DB_MASTER );
1385 $links = $dbw->tableName( 'links' );
1386
1387 # Change the name of the target page:
1388 $dbw->update( 'cur',
1389 /* SET */ array(
1390 'cur_touched' => $dbw->timestamp($now),
1391 'cur_namespace' => $nt->getNamespace(),
1392 'cur_title' => $nt->getDBkey()
1393 ),
1394 /* WHERE */ array( 'cur_id' => $oldid ),
1395 $fname
1396 );
1397 $wgLinkCache->clearLink( $nt->getPrefixedDBkey() );
1398
1399 # Repurpose the old redirect. We don't save it to history since
1400 # by definition if we've got here it's rather uninteresting.
1401
1402 $redirectText = $wgMwRedir->getSynonym( 0 ) . ' [[' . $nt->getPrefixedText() . "]]\n";
1403 $dbw->update( 'cur',
1404 /* SET */ array(
1405 'cur_touched' => $dbw->timestamp($now),
1406 'cur_timestamp' => $dbw->timestamp($now),
1407 'inverse_timestamp' => $won,
1408 'cur_namespace' => $this->getNamespace(),
1409 'cur_title' => $this->getDBkey(),
1410 'cur_text' => $wgMwRedir->getSynonym( 0 ) . ' [[' . $nt->getPrefixedText() . "]]\n",
1411 'cur_comment' => $comment,
1412 'cur_user' => $wgUser->getID(),
1413 'cur_minor_edit' => 0,
1414 'cur_counter' => 0,
1415 'cur_restrictions' => '',
1416 'cur_user_text' => $wgUser->getName(),
1417 'cur_is_redirect' => 1,
1418 'cur_is_new' => 1
1419 ),
1420 /* WHERE */ array( 'cur_id' => $newid ),
1421 $fname
1422 );
1423
1424 $wgLinkCache->clearLink( $this->getPrefixedDBkey() );
1425
1426 # Fix the redundant names for the past revisions of the target page.
1427 # The redirect should have no old revisions.
1428 $dbw->update(
1429 /* table */ 'old',
1430 /* SET */ array(
1431 'old_namespace' => $nt->getNamespace(),
1432 'old_title' => $nt->getDBkey(),
1433 ),
1434 /* WHERE */ array(
1435 'old_namespace' => $this->getNamespace(),
1436 'old_title' => $this->getDBkey(),
1437 ),
1438 $fname
1439 );
1440
1441 RecentChange::notifyMoveOverRedirect( $now, $this, $nt, $wgUser, $comment );
1442
1443 # Swap links
1444
1445 # Load titles and IDs
1446 $linksToOld = $this->getLinksTo( 'FOR UPDATE' );
1447 $linksToNew = $nt->getLinksTo( 'FOR UPDATE' );
1448
1449 # Delete them all
1450 $sql = "DELETE FROM $links WHERE l_to=$oldid OR l_to=$newid";
1451 $dbw->query( $sql, $fname );
1452
1453 # Reinsert
1454 if ( count( $linksToOld ) || count( $linksToNew )) {
1455 $sql = "INSERT INTO $links (l_from,l_to) VALUES ";
1456 $first = true;
1457
1458 # Insert links to old title
1459 foreach ( $linksToOld as $linkTitle ) {
1460 if ( $first ) {
1461 $first = false;
1462 } else {
1463 $sql .= ',';
1464 }
1465 $id = $linkTitle->getArticleID();
1466 $sql .= "($id,$newid)";
1467 }
1468
1469 # Insert links to new title
1470 foreach ( $linksToNew as $linkTitle ) {
1471 if ( $first ) {
1472 $first = false;
1473 } else {
1474 $sql .= ',';
1475 }
1476 $id = $linkTitle->getArticleID();
1477 $sql .= "($id, $oldid)";
1478 }
1479
1480 $dbw->query( $sql, DB_MASTER, $fname );
1481 }
1482
1483 # Now, we record the link from the redirect to the new title.
1484 # It should have no other outgoing links...
1485 $dbw->delete( 'links', array( 'l_from' => $newid ) );
1486 $dbw->insert( 'links', array( 'l_from' => $newid, 'l_to' => $oldid ) );
1487
1488 # Clear linkscc
1489 LinkCache::linksccClearLinksTo( $oldid );
1490 LinkCache::linksccClearLinksTo( $newid );
1491
1492 # Purge squid
1493 if ( $wgUseSquid ) {
1494 $urls = array_merge( $nt->getSquidURLs(), $this->getSquidURLs() );
1495 $u = new SquidUpdate( $urls );
1496 $u->doUpdate();
1497 }
1498 }
1499
1500 /**
1501 * Move page to non-existing title.
1502 * @param Title &$nt the new Title
1503 * @param int &$newid set to be the new article ID
1504 * @access private
1505 */
1506 /* private */ function moveToNewTitle( &$nt, &$newid ) {
1507 global $wgUser, $wgLinkCache, $wgUseSquid;
1508 $fname = 'MovePageForm::moveToNewTitle';
1509 $comment = wfMsg( '1movedto2', $this->getPrefixedText(), $nt->getPrefixedText() );
1510
1511 $newid = $nt->getArticleID();
1512 $oldid = $this->getArticleID();
1513 $dbw =& wfGetDB( DB_MASTER );
1514 $now = $dbw->timestamp();
1515 $won = wfInvertTimestamp( wfTimestamp(TS_MW,$now) );
1516 wfSeedRandom();
1517 $rand = wfRandom();
1518
1519 # Rename cur entry
1520 $dbw->update( 'cur',
1521 /* SET */ array(
1522 'cur_touched' => $now,
1523 'cur_namespace' => $nt->getNamespace(),
1524 'cur_title' => $nt->getDBkey()
1525 ),
1526 /* WHERE */ array( 'cur_id' => $oldid ),
1527 $fname
1528 );
1529
1530 $wgLinkCache->clearLink( $nt->getPrefixedDBkey() );
1531
1532 # Insert redirect
1533 $dbw->insert( 'cur', array(
1534 'cur_id' => $dbw->nextSequenceValue('cur_cur_id_seq'),
1535 'cur_namespace' => $this->getNamespace(),
1536 'cur_title' => $this->getDBkey(),
1537 'cur_comment' => $comment,
1538 'cur_user' => $wgUser->getID(),
1539 'cur_user_text' => $wgUser->getName(),
1540 'cur_timestamp' => $now,
1541 'inverse_timestamp' => $won,
1542 'cur_touched' => $now,
1543 'cur_is_redirect' => 1,
1544 'cur_random' => $rand,
1545 'cur_is_new' => 1,
1546 'cur_text' => "#REDIRECT [[" . $nt->getPrefixedText() . "]]\n" ), $fname
1547 );
1548 $newid = $dbw->insertId();
1549 $wgLinkCache->clearLink( $this->getPrefixedDBkey() );
1550
1551 # Rename old entries
1552 $dbw->update(
1553 /* table */ 'old',
1554 /* SET */ array(
1555 'old_namespace' => $nt->getNamespace(),
1556 'old_title' => $nt->getDBkey()
1557 ),
1558 /* WHERE */ array(
1559 'old_namespace' => $this->getNamespace(),
1560 'old_title' => $this->getDBkey()
1561 ), $fname
1562 );
1563
1564 # Record in RC
1565 RecentChange::notifyMoveToNew( $now, $this, $nt, $wgUser, $comment );
1566
1567 # Purge squid and linkscc as per article creation
1568 Article::onArticleCreate( $nt );
1569
1570 # Any text links to the old title must be reassigned to the redirect
1571 $dbw->update( 'links', array( 'l_to' => $newid ), array( 'l_to' => $oldid ), $fname );
1572 LinkCache::linksccClearLinksTo( $oldid );
1573
1574 # Record the just-created redirect's linking to the page
1575 $dbw->insert( 'links', array( 'l_from' => $newid, 'l_to' => $oldid ), $fname );
1576
1577 # Non-existent target may have had broken links to it; these must
1578 # now be removed and made into good links.
1579 $update = new LinksUpdate( $oldid, $nt->getPrefixedDBkey() );
1580 $update->fixBrokenLinks();
1581
1582 # Purge old title from squid
1583 # The new title, and links to the new title, are purged in Article::onArticleCreate()
1584 $titles = $nt->getLinksTo();
1585 if ( $wgUseSquid ) {
1586 $urls = $this->getSquidURLs();
1587 foreach ( $titles as $linkTitle ) {
1588 $urls[] = $linkTitle->getInternalURL();
1589 }
1590 $u = new SquidUpdate( $urls );
1591 $u->doUpdate();
1592 }
1593 }
1594
1595 /**
1596 * Checks if $this can be moved to a given Title
1597 * - Selects for update, so don't call it unless you mean business
1598 *
1599 * @param Title &$nt the new title to check
1600 * @access public
1601 */
1602 function isValidMoveTarget( $nt ) {
1603 $fname = 'Title::isValidMoveTarget';
1604 $dbw =& wfGetDB( DB_MASTER );
1605
1606 # Is it a redirect?
1607 $id = $nt->getArticleID();
1608 $obj = $dbw->selectRow( 'cur', array( 'cur_is_redirect','cur_text' ),
1609 array( 'cur_id' => $id ), $fname, 'FOR UPDATE' );
1610
1611 if ( !$obj || 0 == $obj->cur_is_redirect ) {
1612 # Not a redirect
1613 return false;
1614 }
1615
1616 # Does the redirect point to the source?
1617 if ( preg_match( "/\\[\\[\\s*([^\\]\\|]*)]]/", $obj->cur_text, $m ) ) {
1618 $redirTitle = Title::newFromText( $m[1] );
1619 if( !is_object( $redirTitle ) ||
1620 $redirTitle->getPrefixedDBkey() != $this->getPrefixedDBkey() ) {
1621 return false;
1622 }
1623 }
1624
1625 # Does the article have a history?
1626 $row = $dbw->selectRow( 'old', array( 'old_id' ),
1627 array(
1628 'old_namespace' => $nt->getNamespace(),
1629 'old_title' => $nt->getDBkey()
1630 ), $fname, 'FOR UPDATE'
1631 );
1632
1633 # Return true if there was no history
1634 return $row === false;
1635 }
1636
1637 /**
1638 * Create a redirect; fails if the title already exists; does
1639 * not notify RC
1640 *
1641 * @param Title $dest the destination of the redirect
1642 * @param string $comment the comment string describing the move
1643 * @return bool true on success
1644 * @access public
1645 */
1646 function createRedirect( $dest, $comment ) {
1647 global $wgUser;
1648 if ( $this->getArticleID() ) {
1649 return false;
1650 }
1651
1652 $fname = 'Title::createRedirect';
1653 $dbw =& wfGetDB( DB_MASTER );
1654 $now = wfTimestampNow();
1655 $won = wfInvertTimestamp( $now );
1656 $seqVal = $dbw->nextSequenceValue( 'cur_cur_id_seq' );
1657
1658 $dbw->insert( 'cur', array(
1659 'cur_id' => $seqVal,
1660 'cur_namespace' => $this->getNamespace(),
1661 'cur_title' => $this->getDBkey(),
1662 'cur_comment' => $comment,
1663 'cur_user' => $wgUser->getID(),
1664 'cur_user_text' => $wgUser->getName(),
1665 'cur_timestamp' => $now,
1666 'inverse_timestamp' => $won,
1667 'cur_touched' => $now,
1668 'cur_is_redirect' => 1,
1669 'cur_is_new' => 1,
1670 'cur_text' => "#REDIRECT [[" . $dest->getPrefixedText() . "]]\n"
1671 ), $fname );
1672 $newid = $dbw->insertId();
1673 $this->resetArticleID( $newid );
1674
1675 # Link table
1676 if ( $dest->getArticleID() ) {
1677 $dbw->insert( 'links',
1678 array(
1679 'l_to' => $dest->getArticleID(),
1680 'l_from' => $newid
1681 ), $fname
1682 );
1683 } else {
1684 $dbw->insert( 'brokenlinks',
1685 array(
1686 'bl_to' => $dest->getPrefixedDBkey(),
1687 'bl_from' => $newid
1688 ), $fname
1689 );
1690 }
1691
1692 Article::onArticleCreate( $this );
1693 return true;
1694 }
1695
1696 /**
1697 * Get categories to which this Title belongs and return an array of
1698 * categories' names.
1699 *
1700 * @return array an array of parents in the form:
1701 * $parent => $currentarticle
1702 * @access public
1703 */
1704 function getParentCategories() {
1705 global $wgContLang,$wgUser;
1706
1707 $titlekey = $this->getArticleId();
1708 $sk =& $wgUser->getSkin();
1709 $parents = array();
1710 $dbr =& wfGetDB( DB_SLAVE );
1711 $categorylinks = $dbr->tableName( 'categorylinks' );
1712
1713 # NEW SQL
1714 $sql = "SELECT * FROM $categorylinks"
1715 ." WHERE cl_from='$titlekey'"
1716 ." AND cl_from <> '0'"
1717 ." ORDER BY cl_sortkey";
1718
1719 $res = $dbr->query ( $sql ) ;
1720
1721 if($dbr->numRows($res) > 0) {
1722 while ( $x = $dbr->fetchObject ( $res ) )
1723 //$data[] = Title::newFromText($wgContLang->getNSText ( NS_CATEGORY ).':'.$x->cl_to);
1724 $data[$wgContLang->getNSText ( NS_CATEGORY ).':'.$x->cl_to] = $this->getFullText();
1725 $dbr->freeResult ( $res ) ;
1726 } else {
1727 $data = '';
1728 }
1729 return $data;
1730 }
1731
1732 /**
1733 * Get a tree of parent categories
1734 * @param array $children an array with the children in the keys, to check for circular refs
1735 * @return array
1736 * @access public
1737 */
1738 function getParentCategoryTree( $children = array() ) {
1739 $parents = $this->getParentCategories();
1740
1741 if($parents != '') {
1742 foreach($parents as $parent => $current)
1743 {
1744 if ( array_key_exists( $parent, $children ) ) {
1745 # Circular reference
1746 $stack[$parent] = array();
1747 } else {
1748 $nt = Title::newFromText($parent);
1749 $stack[$parent] = $nt->getParentCategoryTree( $children + array($parent => 1) );
1750 }
1751 }
1752 return $stack;
1753 } else {
1754 return array();
1755 }
1756 }
1757
1758
1759 /**
1760 * Get an associative array for selecting this title from
1761 * the "cur" table
1762 *
1763 * @return array
1764 * @access public
1765 */
1766 function curCond() {
1767 return array( 'cur_namespace' => $this->mNamespace, 'cur_title' => $this->mDbkeyform );
1768 }
1769
1770 /**
1771 * Get an associative array for selecting this title from the
1772 * "old" table
1773 *
1774 * @return array
1775 * @access public
1776 */
1777 function oldCond() {
1778 return array( 'old_namespace' => $this->mNamespace, 'old_title' => $this->mDbkeyform );
1779 }
1780
1781 /**
1782 * Get the revision ID of the previous revision
1783 *
1784 * @param integer $revision Revision ID. Get the revision that was before this one.
1785 * @return interger $oldrevision|false
1786 */
1787 function getPreviousRevisionID( $revision ) {
1788 $dbr =& wfGetDB( DB_SLAVE );
1789 return $dbr->selectField( 'old', 'old_id',
1790 'old_title=' . $dbr->addQuotes( $this->getDBkey() ) .
1791 ' AND old_namespace=' . IntVal( $this->getNamespace() ) .
1792 ' AND old_id<' . IntVal( $revision ) . ' ORDER BY old_id DESC' );
1793 }
1794
1795 /**
1796 * Get the revision ID of the next revision
1797 *
1798 * @param integer $revision Revision ID. Get the revision that was after this one.
1799 * @return interger $oldrevision|false
1800 */
1801 function getNextRevisionID( $revision ) {
1802 $dbr =& wfGetDB( DB_SLAVE );
1803 return $dbr->selectField( 'old', 'old_id',
1804 'old_title=' . $dbr->addQuotes( $this->getDBkey() ) .
1805 ' AND old_namespace=' . IntVal( $this->getNamespace() ) .
1806 ' AND old_id>' . IntVal( $revision ) . ' ORDER BY old_id' );
1807 }
1808
1809 }
1810 ?>