Kill Article::$mCurID, not set anywhere, not used anywhere (including extensions)
[lhc/web/wiklou.git] / includes / Article.php
1 <?php
2 /**
3 * File for articles
4 * @file
5 */
6
7 /**
8 * Class representing a MediaWiki article and history.
9 *
10 * See design.txt for an overview.
11 * Note: edit user interface and cache support functions have been
12 * moved to separate EditPage and HTMLFileCache classes.
13 *
14 * @internal documentation reviewed 15 Mar 2010
15 */
16 class Article {
17 /**@{{
18 * @private
19 */
20 var $mComment = ''; // !<
21 var $mContent; // !<
22 var $mContentLoaded = false; // !<
23 var $mCounter = -1; // !< Not loaded
24 var $mDataLoaded = false; // !<
25 var $mForUpdate = false; // !<
26 var $mGoodAdjustment = 0; // !<
27 var $mIsRedirect = false; // !<
28 var $mLatest = false; // !<
29 var $mMinorEdit; // !<
30 var $mOldId; // !<
31 var $mPreparedEdit = false; // !< Title object if set
32 var $mRedirectedFrom = null; // !< Title object if set
33 var $mRedirectTarget = null; // !< Title object if set
34 var $mRedirectUrl = false; // !<
35 var $mRevIdFetched = 0; // !<
36 var $mRevision; // !< Revision object if set
37 var $mTimestamp = ''; // !<
38 var $mTitle; // !< Title object
39 var $mTotalAdjustment = 0; // !<
40 var $mTouched = '19700101000000'; // !<
41 var $mUser = -1; // !< Not loaded
42 var $mUserText = ''; // !< username from Revision if set
43 var $mParserOptions; // !< ParserOptions object for $wgUser articles
44 var $mParserOutput; // !< ParserCache object if set
45 /**@}}*/
46
47 /**
48 * Constructor and clear the article
49 * @param $title Reference to a Title object.
50 * @param $oldId Integer revision ID, null to fetch from request, zero for current
51 */
52 public function __construct( Title $title, $oldId = null ) {
53 // FIXME: does the reference play any role here?
54 $this->mTitle =& $title;
55 $this->mOldId = $oldId;
56 }
57
58 /**
59 * Constructor from an page id
60 * @param $id Int article ID to load
61 */
62 public static function newFromID( $id ) {
63 $t = Title::newFromID( $id );
64 # FIXME: doesn't inherit right
65 return $t == null ? null : new self( $t );
66 # return $t == null ? null : new static( $t ); // PHP 5.3
67 }
68
69 /**
70 * Tell the page view functions that this view was redirected
71 * from another page on the wiki.
72 * @param $from Title object.
73 */
74 public function setRedirectedFrom( Title $from ) {
75 $this->mRedirectedFrom = $from;
76 }
77
78 /**
79 * If this page is a redirect, get its target
80 *
81 * The target will be fetched from the redirect table if possible.
82 * If this page doesn't have an entry there, call insertRedirect()
83 * @return mixed Title object, or null if this page is not a redirect
84 */
85 public function getRedirectTarget() {
86 if ( !$this->mTitle->isRedirect() ) {
87 return null;
88 }
89
90 if ( $this->mRedirectTarget !== null ) {
91 return $this->mRedirectTarget;
92 }
93
94 # Query the redirect table
95 $dbr = wfGetDB( DB_SLAVE );
96 $row = $dbr->selectRow( 'redirect',
97 array( 'rd_namespace', 'rd_title', 'rd_fragment', 'rd_interwiki' ),
98 array( 'rd_from' => $this->getID() ),
99 __METHOD__
100 );
101
102 // rd_fragment and rd_interwiki were added later, populate them if empty
103 if ( $row && !is_null( $row->rd_fragment ) && !is_null( $row->rd_interwiki ) ) {
104 return $this->mRedirectTarget = Title::makeTitle(
105 $row->rd_namespace, $row->rd_title,
106 $row->rd_fragment, $row->rd_interwiki );
107 }
108
109 # This page doesn't have an entry in the redirect table
110 return $this->mRedirectTarget = $this->insertRedirect();
111 }
112
113 /**
114 * Insert an entry for this page into the redirect table.
115 *
116 * Don't call this function directly unless you know what you're doing.
117 * @return Title object or null if not a redirect
118 */
119 public function insertRedirect() {
120 // recurse through to only get the final target
121 $retval = Title::newFromRedirectRecurse( $this->getRawText() );
122 if ( !$retval ) {
123 return null;
124 }
125 $this->insertRedirectEntry( $retval );
126 return $retval;
127 }
128
129 /**
130 * Insert or update the redirect table entry for this page to indicate
131 * it redirects to $rt .
132 * @param $rt Title redirect target
133 */
134 public function insertRedirectEntry( $rt ) {
135 $dbw = wfGetDB( DB_MASTER );
136 $dbw->replace( 'redirect', array( 'rd_from' ),
137 array(
138 'rd_from' => $this->getID(),
139 'rd_namespace' => $rt->getNamespace(),
140 'rd_title' => $rt->getDBkey(),
141 'rd_fragment' => $rt->getFragment(),
142 'rd_interwiki' => $rt->getInterwiki(),
143 ),
144 __METHOD__
145 );
146 }
147
148 /**
149 * Get the Title object or URL this page redirects to
150 *
151 * @return mixed false, Title of in-wiki target, or string with URL
152 */
153 public function followRedirect() {
154 return $this->getRedirectURL( $this->getRedirectTarget() );
155 }
156
157 /**
158 * Get the Title object this text redirects to
159 *
160 * @param $text string article content containing redirect info
161 * @return mixed false, Title of in-wiki target, or string with URL
162 * @deprecated @since 1.17
163 */
164 public function followRedirectText( $text ) {
165 // recurse through to only get the final target
166 return $this->getRedirectURL( Title::newFromRedirectRecurse( $text ) );
167 }
168
169 /**
170 * Get the Title object or URL to use for a redirect. We use Title
171 * objects for same-wiki, non-special redirects and URLs for everything
172 * else.
173 * @param $rt Title Redirect target
174 * @return mixed false, Title object of local target, or string with URL
175 */
176 public function getRedirectURL( $rt ) {
177 if ( $rt ) {
178 if ( $rt->getInterwiki() != '' ) {
179 if ( $rt->isLocal() ) {
180 // Offsite wikis need an HTTP redirect.
181 //
182 // This can be hard to reverse and may produce loops,
183 // so they may be disabled in the site configuration.
184 $source = $this->mTitle->getFullURL( 'redirect=no' );
185 return $rt->getFullURL( 'rdfrom=' . urlencode( $source ) );
186 }
187 } else {
188 if ( $rt->getNamespace() == NS_SPECIAL ) {
189 // Gotta handle redirects to special pages differently:
190 // Fill the HTTP response "Location" header and ignore
191 // the rest of the page we're on.
192 //
193 // This can be hard to reverse, so they may be disabled.
194 if ( $rt->isSpecial( 'Userlogout' ) ) {
195 // rolleyes
196 } else {
197 return $rt->getFullURL();
198 }
199 }
200
201 return $rt;
202 }
203 }
204
205 // No or invalid redirect
206 return false;
207 }
208
209 /**
210 * Get the title object of the article
211 * @return Title object of this page
212 */
213 public function getTitle() {
214 return $this->mTitle;
215 }
216
217 /**
218 * Clear the object
219 * FIXME: shouldn't this be public?
220 * @private
221 */
222 public function clear() {
223 $this->mDataLoaded = false;
224 $this->mContentLoaded = false;
225
226 $this->mUser = $this->mCounter = -1; # Not loaded
227 $this->mRedirectedFrom = null; # Title object if set
228 $this->mRedirectTarget = null; # Title object if set
229 $this->mUserText =
230 $this->mTimestamp = $this->mComment = '';
231 $this->mGoodAdjustment = $this->mTotalAdjustment = 0;
232 $this->mTouched = '19700101000000';
233 $this->mForUpdate = false;
234 $this->mIsRedirect = false;
235 $this->mRevIdFetched = 0;
236 $this->mRedirectUrl = false;
237 $this->mLatest = false;
238 $this->mPreparedEdit = false;
239 }
240
241 /**
242 * Note that getContent/loadContent do not follow redirects anymore.
243 * If you need to fetch redirectable content easily, try
244 * the shortcut in Article::followRedirect()
245 *
246 * This function has side effects! Do not use this function if you
247 * only want the real revision text if any.
248 *
249 * @return Return the text of this revision
250 */
251 public function getContent() {
252 global $wgUser, $wgContLang, $wgMessageCache;
253
254 wfProfileIn( __METHOD__ );
255
256 if ( $this->getID() === 0 ) {
257 # If this is a MediaWiki:x message, then load the messages
258 # and return the message value for x.
259 if ( $this->mTitle->getNamespace() == NS_MEDIAWIKI ) {
260 # If this is a system message, get the default text.
261 list( $message, $lang ) = $wgMessageCache->figureMessage( $wgContLang->lcfirst( $this->mTitle->getText() ) );
262 $text = wfMsgGetKey( $message, false, $lang, false );
263
264 if ( wfEmptyMsg( $message, $text ) )
265 $text = '';
266 } else {
267 $text = wfMsgExt( $wgUser->isLoggedIn() ? 'noarticletext' : 'noarticletextanon', 'parsemag' );
268 }
269 wfProfileOut( __METHOD__ );
270
271 return $text;
272 } else {
273 $this->loadContent();
274 wfProfileOut( __METHOD__ );
275
276 return $this->mContent;
277 }
278 }
279
280 /**
281 * Get the text of the current revision. No side-effects...
282 *
283 * @return Return the text of the current revision
284 */
285 public function getRawText() {
286 // Check process cache for current revision
287 if ( $this->mContentLoaded && $this->mOldId == 0 ) {
288 return $this->mContent;
289 }
290
291 $rev = Revision::newFromTitle( $this->mTitle );
292 $text = $rev ? $rev->getRawText() : false;
293
294 return $text;
295 }
296
297 /**
298 * This function returns the text of a section, specified by a number ($section).
299 * A section is text under a heading like == Heading == or \<h1\>Heading\</h1\>, or
300 * the first section before any such heading (section 0).
301 *
302 * If a section contains subsections, these are also returned.
303 *
304 * @param $text String: text to look in
305 * @param $section Integer: section number
306 * @return string text of the requested section
307 * @deprecated
308 */
309 public function getSection( $text, $section ) {
310 global $wgParser;
311 return $wgParser->getSection( $text, $section );
312 }
313
314 /**
315 * Get the text that needs to be saved in order to undo all revisions
316 * between $undo and $undoafter. Revisions must belong to the same page,
317 * must exist and must not be deleted
318 * @param $undo Revision
319 * @param $undoafter Revision Must be an earlier revision than $undo
320 * @return mixed string on success, false on failure
321 */
322 public function getUndoText( Revision $undo, Revision $undoafter = null ) {
323 $currentRev = Revision::newFromTitle( $this->mTitle );
324 if ( !$currentRev ) {
325 return false; // no page
326 }
327 $undo_text = $undo->getText();
328 $undoafter_text = $undoafter->getText();
329 $cur_text = $currentRev->getText();
330
331 if ( $cur_text == $undo_text ) {
332 # No use doing a merge if it's just a straight revert.
333 return $undoafter_text;
334 }
335
336 $undone_text = '';
337
338 if ( !wfMerge( $undo_text, $undoafter_text, $cur_text, $undone_text ) ) {
339 return false;
340 }
341
342 return $undone_text;
343 }
344
345 /**
346 * @return int The oldid of the article that is to be shown, 0 for the
347 * current revision
348 */
349 public function getOldID() {
350 if ( is_null( $this->mOldId ) ) {
351 $this->mOldId = $this->getOldIDFromRequest();
352 }
353
354 return $this->mOldId;
355 }
356
357 /**
358 * Sets $this->mRedirectUrl to a correct URL if the query parameters are incorrect
359 *
360 * @return int The old id for the request
361 */
362 public function getOldIDFromRequest() {
363 global $wgRequest;
364
365 $this->mRedirectUrl = false;
366
367 $oldid = $wgRequest->getVal( 'oldid' );
368
369 if ( isset( $oldid ) ) {
370 $oldid = intval( $oldid );
371 if ( $wgRequest->getVal( 'direction' ) == 'next' ) {
372 $nextid = $this->mTitle->getNextRevisionID( $oldid );
373 if ( $nextid ) {
374 $oldid = $nextid;
375 } else {
376 $this->mRedirectUrl = $this->mTitle->getFullURL( 'redirect=no' );
377 }
378 } elseif ( $wgRequest->getVal( 'direction' ) == 'prev' ) {
379 $previd = $this->mTitle->getPreviousRevisionID( $oldid );
380 if ( $previd ) {
381 $oldid = $previd;
382 }
383 }
384 }
385
386 if ( !$oldid ) {
387 $oldid = 0;
388 }
389
390 return $oldid;
391 }
392
393 /**
394 * Load the revision (including text) into this object
395 */
396 function loadContent() {
397 if ( $this->mContentLoaded ) {
398 return;
399 }
400
401 wfProfileIn( __METHOD__ );
402
403 $this->fetchContent( $this->getOldID() );
404
405 wfProfileOut( __METHOD__ );
406 }
407
408 /**
409 * Fetch a page record with the given conditions
410 * @param $dbr Database object
411 * @param $conditions Array
412 * @return mixed Database result resource, or false on failure
413 */
414 protected function pageData( $dbr, $conditions ) {
415 $fields = array(
416 'page_id',
417 'page_namespace',
418 'page_title',
419 'page_restrictions',
420 'page_counter',
421 'page_is_redirect',
422 'page_is_new',
423 'page_random',
424 'page_touched',
425 'page_latest',
426 'page_len',
427 );
428
429 wfRunHooks( 'ArticlePageDataBefore', array( &$this, &$fields ) );
430
431 $row = $dbr->selectRow( 'page', $fields, $conditions, __METHOD__ );
432
433 wfRunHooks( 'ArticlePageDataAfter', array( &$this, &$row ) );
434
435 return $row;
436 }
437
438 /**
439 * Fetch a page record matching the Title object's namespace and title
440 * using a sanitized title string
441 *
442 * @param $dbr Database object
443 * @param $title Title object
444 * @return mixed Database result resource, or false on failure
445 */
446 public function pageDataFromTitle( $dbr, $title ) {
447 return $this->pageData( $dbr, array(
448 'page_namespace' => $title->getNamespace(),
449 'page_title' => $title->getDBkey() ) );
450 }
451
452 /**
453 * Fetch a page record matching the requested ID
454 *
455 * @param $dbr Database
456 * @param $id Integer
457 */
458 protected function pageDataFromId( $dbr, $id ) {
459 return $this->pageData( $dbr, array( 'page_id' => $id ) );
460 }
461
462 /**
463 * Set the general counter, title etc data loaded from
464 * some source.
465 *
466 * @param $data Database row object or "fromdb"
467 */
468 public function loadPageData( $data = 'fromdb' ) {
469 if ( $data === 'fromdb' ) {
470 $dbr = wfGetDB( DB_SLAVE );
471 $data = $this->pageDataFromTitle( $dbr, $this->mTitle );
472 }
473
474 $lc = LinkCache::singleton();
475
476 if ( $data ) {
477 $lc->addGoodLinkObj( $data->page_id, $this->mTitle, $data->page_len, $data->page_is_redirect, $data->page_latest );
478
479 $this->mTitle->mArticleID = intval( $data->page_id );
480
481 # Old-fashioned restrictions
482 $this->mTitle->loadRestrictions( $data->page_restrictions );
483
484 $this->mCounter = intval( $data->page_counter );
485 $this->mTouched = wfTimestamp( TS_MW, $data->page_touched );
486 $this->mIsRedirect = intval( $data->page_is_redirect );
487 $this->mLatest = intval( $data->page_latest );
488 } else {
489 $lc->addBadLinkObj( $this->mTitle );
490 $this->mTitle->mArticleID = 0;
491 }
492
493 $this->mDataLoaded = true;
494 }
495
496 /**
497 * Get text of an article from database
498 * Does *NOT* follow redirects.
499 *
500 * @param $oldid Int: 0 for whatever the latest revision is
501 * @return mixed string containing article contents, or false if null
502 */
503 function fetchContent( $oldid = 0 ) {
504 if ( $this->mContentLoaded ) {
505 return $this->mContent;
506 }
507
508 # Pre-fill content with error message so that if something
509 # fails we'll have something telling us what we intended.
510 $t = $this->mTitle->getPrefixedText();
511 $d = $oldid ? wfMsgExt( 'missingarticle-rev', array( 'escape' ), $oldid ) : '';
512 $this->mContent = wfMsgNoTrans( 'missing-article', $t, $d ) ;
513
514 if ( $oldid ) {
515 $revision = Revision::newFromId( $oldid );
516 if ( $revision === null ) {
517 wfDebug( __METHOD__ . " failed to retrieve specified revision, id $oldid\n" );
518 return false;
519 }
520
521 if ( !$this->mDataLoaded || $this->getID() != $revision->getPage() ) {
522 $data = $this->pageDataFromId( wfGetDB( DB_SLAVE ), $revision->getPage() );
523
524 if ( !$data ) {
525 wfDebug( __METHOD__ . " failed to get page data linked to revision id $oldid\n" );
526 return false;
527 }
528
529 $this->mTitle = Title::makeTitle( $data->page_namespace, $data->page_title );
530 $this->loadPageData( $data );
531 }
532 } else {
533 if ( !$this->mDataLoaded ) {
534 $this->loadPageData();
535 }
536
537 if ( $this->mLatest === false ) {
538 wfDebug( __METHOD__ . " failed to find page data for title " . $this->mTitle->getPrefixedText() . "\n" );
539 return false;
540 }
541
542 $revision = Revision::newFromId( $this->mLatest );
543 if ( $revision === null ) {
544 wfDebug( __METHOD__ . " failed to retrieve current page, rev_id {$this->mLatest}\n" );
545 return false;
546 }
547 }
548
549 // FIXME: Horrible, horrible! This content-loading interface just plain sucks.
550 // We should instead work with the Revision object when we need it...
551 $this->mContent = $revision->getText( Revision::FOR_THIS_USER ); // Loads if user is allowed
552
553 if ( $revision->getId() == $this->mLatest ) {
554 $this->setLastEdit( $revision );
555 }
556
557 $this->mRevIdFetched = $revision->getId();
558 $this->mContentLoaded = true;
559 $this->mRevision =& $revision;
560
561 wfRunHooks( 'ArticleAfterFetchContent', array( &$this, &$this->mContent ) );
562
563 return $this->mContent;
564 }
565
566 /**
567 * Read/write accessor to select FOR UPDATE
568 *
569 * @param $x Mixed: FIXME
570 * @return mixed value of $x, or value stored in Article::mForUpdate
571 */
572 public function forUpdate( $x = null ) {
573 return wfSetVar( $this->mForUpdate, $x );
574 }
575
576 /**
577 * Get options for all SELECT statements
578 *
579 * @param $options Array: an optional options array which'll be appended to
580 * the default
581 * @return Array: options
582 */
583 protected function getSelectOptions( $options = '' ) {
584 if ( $this->mForUpdate ) {
585 if ( is_array( $options ) ) {
586 $options[] = 'FOR UPDATE';
587 } else {
588 $options = 'FOR UPDATE';
589 }
590 }
591
592 return $options;
593 }
594
595 /**
596 * @return int Page ID
597 */
598 public function getID() {
599 return $this->mTitle->getArticleID();
600 }
601
602 /**
603 * @return bool Whether or not the page exists in the database
604 */
605 public function exists() {
606 return $this->getId() > 0;
607 }
608
609 /**
610 * Check if this page is something we're going to be showing
611 * some sort of sensible content for. If we return false, page
612 * views (plain action=view) will return an HTTP 404 response,
613 * so spiders and robots can know they're following a bad link.
614 *
615 * @return bool
616 */
617 public function hasViewableContent() {
618 return $this->exists() || $this->mTitle->isAlwaysKnown();
619 }
620
621 /**
622 * @return int The view count for the page
623 */
624 public function getCount() {
625 if ( -1 == $this->mCounter ) {
626 $id = $this->getID();
627
628 if ( $id == 0 ) {
629 $this->mCounter = 0;
630 } else {
631 $dbr = wfGetDB( DB_SLAVE );
632 $this->mCounter = $dbr->selectField( 'page',
633 'page_counter',
634 array( 'page_id' => $id ),
635 __METHOD__,
636 $this->getSelectOptions()
637 );
638 }
639 }
640
641 return $this->mCounter;
642 }
643
644 /**
645 * Determine whether a page would be suitable for being counted as an
646 * article in the site_stats table based on the title & its content
647 *
648 * @param $text String: text to analyze
649 * @return bool
650 */
651 public function isCountable( $text ) {
652 global $wgUseCommaCount;
653
654 $token = $wgUseCommaCount ? ',' : '[[';
655
656 return $this->mTitle->isContentPage() && !$this->isRedirect( $text ) && in_string( $token, $text );
657 }
658
659 /**
660 * Tests if the article text represents a redirect
661 *
662 * @param $text mixed string containing article contents, or boolean
663 * @return bool
664 */
665 public function isRedirect( $text = false ) {
666 if ( $text === false ) {
667 if ( !$this->mDataLoaded ) {
668 $this->loadPageData();
669 }
670
671 return (bool)$this->mIsRedirect;
672 } else {
673 return Title::newFromRedirect( $text ) !== null;
674 }
675 }
676
677 /**
678 * Returns true if the currently-referenced revision is the current edit
679 * to this page (and it exists).
680 * @return bool
681 */
682 public function isCurrent() {
683 # If no oldid, this is the current version.
684 if ( $this->getOldID() == 0 ) {
685 return true;
686 }
687
688 return $this->exists() && isset( $this->mRevision ) && $this->mRevision->isCurrent();
689 }
690
691 /**
692 * Loads everything except the text
693 * This isn't necessary for all uses, so it's only done if needed.
694 */
695 protected function loadLastEdit() {
696 if ( -1 != $this->mUser ) {
697 return;
698 }
699
700 # New or non-existent articles have no user information
701 $id = $this->getID();
702 if ( 0 == $id ) {
703 return;
704 }
705
706 $revision = Revision::loadFromPageId( wfGetDB( DB_MASTER ), $id );
707 if ( !is_null( $revision ) ) {
708 $this->setLastEdit( $revision );
709 }
710 }
711
712 /**
713 * Set the latest revision
714 */
715 protected function setLastEdit( Revision $revision ) {
716 $this->mLastRevision = $revision;
717 $this->mUser = $revision->getUser();
718 $this->mUserText = $revision->getUserText();
719 $this->mTimestamp = $revision->getTimestamp();
720 $this->mComment = $revision->getComment();
721 $this->mMinorEdit = $revision->isMinor();
722 $this->mRevIdFetched = $revision->getId();
723 }
724
725 /**
726 * @return string GMT timestamp of last article revision
727 **/
728
729 public function getTimestamp() {
730 // Check if the field has been filled by ParserCache::get()
731 if ( !$this->mTimestamp ) {
732 $this->loadLastEdit();
733 }
734
735 return wfTimestamp( TS_MW, $this->mTimestamp );
736 }
737
738 /**
739 * @return int user ID for the user that made the last article revision
740 */
741 public function getUser() {
742 $this->loadLastEdit();
743 return $this->mUser;
744 }
745
746 /**
747 * @return string username of the user that made the last article revision
748 */
749 public function getUserText() {
750 $this->loadLastEdit();
751 return $this->mUserText;
752 }
753
754 /**
755 * @return string Comment stored for the last article revision
756 */
757 public function getComment() {
758 $this->loadLastEdit();
759 return $this->mComment;
760 }
761
762 /**
763 * Returns true if last revision was marked as "minor edit"
764 *
765 * @return boolean Minor edit indicator for the last article revision.
766 */
767 public function getMinorEdit() {
768 $this->loadLastEdit();
769 return $this->mMinorEdit;
770 }
771
772 /**
773 * Use this to fetch the rev ID used on page views
774 *
775 * @return int revision ID of last article revision
776 */
777 public function getRevIdFetched() {
778 $this->loadLastEdit();
779 return $this->mRevIdFetched;
780 }
781
782 /**
783 * FIXME: this does what?
784 * @param $limit Integer: default 0.
785 * @param $offset Integer: default 0.
786 * @return UserArrayFromResult object with User objects of article contributors for requested range
787 */
788 public function getContributors( $limit = 0, $offset = 0 ) {
789 # FIXME: this is expensive; cache this info somewhere.
790
791 $dbr = wfGetDB( DB_SLAVE );
792 $revTable = $dbr->tableName( 'revision' );
793 $userTable = $dbr->tableName( 'user' );
794
795 $pageId = $this->getId();
796
797 $user = $this->getUser();
798
799 if ( $user ) {
800 $excludeCond = "AND rev_user != $user";
801 } else {
802 $userText = $dbr->addQuotes( $this->getUserText() );
803 $excludeCond = "AND rev_user_text != $userText";
804 }
805
806 $deletedBit = $dbr->bitAnd( 'rev_deleted', Revision::DELETED_USER ); // username hidden?
807
808 $sql = "SELECT {$userTable}.*, rev_user_text as user_name, MAX(rev_timestamp) as timestamp
809 FROM $revTable LEFT JOIN $userTable ON rev_user = user_id
810 WHERE rev_page = $pageId
811 $excludeCond
812 AND $deletedBit = 0
813 GROUP BY rev_user, rev_user_text
814 ORDER BY timestamp DESC";
815
816 if ( $limit > 0 ) {
817 $sql = $dbr->limitResult( $sql, $limit, $offset );
818 }
819
820 $sql .= ' ' . $this->getSelectOptions();
821 $res = $dbr->query( $sql, __METHOD__ );
822
823 return new UserArrayFromResult( $res );
824 }
825
826 /**
827 * This is the default action of the index.php entry point: just view the
828 * page of the given title.
829 */
830 public function view() {
831 global $wgUser, $wgOut, $wgRequest, $wgParser;
832 global $wgUseFileCache, $wgUseETag;
833
834 wfProfileIn( __METHOD__ );
835
836 # Get variables from query string
837 $oldid = $this->getOldID();
838 $parserCache = ParserCache::singleton();
839
840 $parserOptions = $this->getParserOptions();
841 # Render printable version, use printable version cache
842 if ( $wgOut->isPrintable() ) {
843 $parserOptions->setIsPrintable( true );
844 $parserOptions->setEditSection( false );
845 } else if ( $wgUseETag && !$this->mTitle->quickUserCan( 'edit' ) ) {
846 $parserOptions->setEditSection( false );
847 }
848
849 # Try client and file cache
850 if ( $oldid === 0 && $this->checkTouched() ) {
851 if ( $wgUseETag ) {
852 $wgOut->setETag( $parserCache->getETag( $this, $parserOptions ) );
853 }
854
855 # Is it client cached?
856 if ( $wgOut->checkLastModified( $this->getTouched() ) ) {
857 wfDebug( __METHOD__ . ": done 304\n" );
858 wfProfileOut( __METHOD__ );
859
860 return;
861 # Try file cache
862 } else if ( $wgUseFileCache && $this->tryFileCache() ) {
863 wfDebug( __METHOD__ . ": done file cache\n" );
864 # tell wgOut that output is taken care of
865 $wgOut->disable();
866 $this->viewUpdates();
867 wfProfileOut( __METHOD__ );
868
869 return;
870 }
871 }
872
873 # getOldID may want us to redirect somewhere else
874 if ( $this->mRedirectUrl ) {
875 $wgOut->redirect( $this->mRedirectUrl );
876 wfDebug( __METHOD__ . ": redirecting due to oldid\n" );
877 wfProfileOut( __METHOD__ );
878
879 return;
880 }
881
882 $wgOut->setArticleFlag( true );
883 # Set page title (may be overridden by DISPLAYTITLE)
884 $wgOut->setPageTitle( $this->mTitle->getPrefixedText() );
885
886 # If we got diff in the query, we want to see a diff page instead of the article.
887 if ( $wgRequest->getCheck( 'diff' ) ) {
888 wfDebug( __METHOD__ . ": showing diff page\n" );
889 $this->showDiffPage();
890 wfProfileOut( __METHOD__ );
891
892 return;
893 }
894
895 # Allow frames by default
896 $wgOut->allowClickjacking();
897
898 if ( !$wgUseETag && !$this->mTitle->quickUserCan( 'edit' ) ) {
899 $parserOptions->setEditSection( false );
900 }
901
902 # Should the parser cache be used?
903 $useParserCache = $this->useParserCache( $oldid );
904 wfDebug( 'Article::view using parser cache: ' . ( $useParserCache ? 'yes' : 'no' ) . "\n" );
905 if ( $wgUser->getStubThreshold() ) {
906 wfIncrStats( 'pcache_miss_stub' );
907 }
908
909 $wasRedirected = $this->showRedirectedFromHeader();
910 $this->showNamespaceHeader();
911
912 # Iterate through the possible ways of constructing the output text.
913 # Keep going until $outputDone is set, or we run out of things to do.
914 $pass = 0;
915 $outputDone = false;
916 $this->mParserOutput = false;
917
918 while ( !$outputDone && ++$pass ) {
919 switch( $pass ) {
920 case 1:
921 wfRunHooks( 'ArticleViewHeader', array( &$this, &$outputDone, &$useParserCache ) );
922 break;
923 case 2:
924 # Try the parser cache
925 if ( $useParserCache ) {
926 $this->mParserOutput = $parserCache->get( $this, $parserOptions );
927
928 if ( $this->mParserOutput !== false ) {
929 wfDebug( __METHOD__ . ": showing parser cache contents\n" );
930 $wgOut->addParserOutput( $this->mParserOutput );
931 # Ensure that UI elements requiring revision ID have
932 # the correct version information.
933 $wgOut->setRevisionId( $this->mLatest );
934 $outputDone = true;
935 }
936 }
937 break;
938 case 3:
939 $text = $this->getContent();
940 if ( $text === false || $this->getID() == 0 ) {
941 wfDebug( __METHOD__ . ": showing missing article\n" );
942 $this->showMissingArticle();
943 wfProfileOut( __METHOD__ );
944 return;
945 }
946
947 # Another whitelist check in case oldid is altering the title
948 if ( !$this->mTitle->userCanRead() ) {
949 wfDebug( __METHOD__ . ": denied on secondary read check\n" );
950 $wgOut->loginToUse();
951 $wgOut->output();
952 $wgOut->disable();
953 wfProfileOut( __METHOD__ );
954 return;
955 }
956
957 # Are we looking at an old revision
958 if ( $oldid && !is_null( $this->mRevision ) ) {
959 $this->setOldSubtitle( $oldid );
960
961 if ( !$this->showDeletedRevisionHeader() ) {
962 wfDebug( __METHOD__ . ": cannot view deleted revision\n" );
963 wfProfileOut( __METHOD__ );
964 return;
965 }
966
967 # If this "old" version is the current, then try the parser cache...
968 if ( $oldid === $this->getLatest() && $this->useParserCache( false ) ) {
969 $this->mParserOutput = $parserCache->get( $this, $parserOptions );
970 if ( $this->mParserOutput ) {
971 wfDebug( __METHOD__ . ": showing parser cache for current rev permalink\n" );
972 $wgOut->addParserOutput( $this->mParserOutput );
973 $wgOut->setRevisionId( $this->mLatest );
974 $outputDone = true;
975 break;
976 }
977 }
978 }
979
980 # Ensure that UI elements requiring revision ID have
981 # the correct version information.
982 $wgOut->setRevisionId( $this->getRevIdFetched() );
983
984 # Pages containing custom CSS or JavaScript get special treatment
985 if ( $this->mTitle->isCssOrJsPage() || $this->mTitle->isCssJsSubpage() ) {
986 wfDebug( __METHOD__ . ": showing CSS/JS source\n" );
987 $this->showCssOrJsPage();
988 $outputDone = true;
989 } else {
990 $rt = Title::newFromRedirectArray( $text );
991 if ( $rt ) {
992 wfDebug( __METHOD__ . ": showing redirect=no page\n" );
993 # Viewing a redirect page (e.g. with parameter redirect=no)
994 # Don't append the subtitle if this was an old revision
995 $wgOut->addHTML( $this->viewRedirect( $rt, !$wasRedirected && $this->isCurrent() ) );
996 # Parse just to get categories, displaytitle, etc.
997 $this->mParserOutput = $wgParser->parse( $text, $this->mTitle, $parserOptions );
998 $wgOut->addParserOutputNoText( $this->mParserOutput );
999 $outputDone = true;
1000 }
1001 }
1002 break;
1003 case 4:
1004 # Run the parse, protected by a pool counter
1005 wfDebug( __METHOD__ . ": doing uncached parse\n" );
1006
1007 $key = $parserCache->getKey( $this, $parserOptions );
1008 $poolArticleView = new PoolWorkArticleView( $this, $key, $useParserCache, $parserOptions );
1009
1010 if ( !$poolArticleView->execute() ) {
1011 # Connection or timeout error
1012 wfProfileOut( __METHOD__ );
1013 return;
1014 } else {
1015 $outputDone = true;
1016 }
1017 break;
1018 # Should be unreachable, but just in case...
1019 default:
1020 break 2;
1021 }
1022 }
1023
1024 # Adjust the title if it was set by displaytitle, -{T|}- or language conversion
1025 if ( $this->mParserOutput ) {
1026 $titleText = $this->mParserOutput->getTitleText();
1027
1028 if ( strval( $titleText ) !== '' ) {
1029 $wgOut->setPageTitle( $titleText );
1030 }
1031 }
1032
1033 # For the main page, overwrite the <title> element with the con-
1034 # tents of 'pagetitle-view-mainpage' instead of the default (if
1035 # that's not empty).
1036 # This message always exists because it is in the i18n files
1037 if ( $this->mTitle->equals( Title::newMainPage() )
1038 && ( $m = wfMsgForContent( 'pagetitle-view-mainpage' ) ) !== '' )
1039 {
1040 $wgOut->setHTMLTitle( $m );
1041 }
1042
1043 # Now that we've filled $this->mParserOutput, we know whether
1044 # there are any __NOINDEX__ tags on the page
1045 $policy = $this->getRobotPolicy( 'view' );
1046 $wgOut->setIndexPolicy( $policy['index'] );
1047 $wgOut->setFollowPolicy( $policy['follow'] );
1048
1049 $this->showViewFooter();
1050 $this->viewUpdates();
1051 wfProfileOut( __METHOD__ );
1052 }
1053
1054 /**
1055 * Show a diff page according to current request variables. For use within
1056 * Article::view() only, other callers should use the DifferenceEngine class.
1057 */
1058 public function showDiffPage() {
1059 global $wgRequest, $wgUser;
1060
1061 $diff = $wgRequest->getVal( 'diff' );
1062 $rcid = $wgRequest->getVal( 'rcid' );
1063 $diffOnly = $wgRequest->getBool( 'diffonly', $wgUser->getOption( 'diffonly' ) );
1064 $purge = $wgRequest->getVal( 'action' ) == 'purge';
1065 $unhide = $wgRequest->getInt( 'unhide' ) == 1;
1066 $oldid = $this->getOldID();
1067
1068 $de = new DifferenceEngine( $this->mTitle, $oldid, $diff, $rcid, $purge, $unhide );
1069 // DifferenceEngine directly fetched the revision:
1070 $this->mRevIdFetched = $de->mNewid;
1071 $de->showDiffPage( $diffOnly );
1072
1073 // Needed to get the page's current revision
1074 $this->loadPageData();
1075 if ( $diff == 0 || $diff == $this->mLatest ) {
1076 # Run view updates for current revision only
1077 $this->viewUpdates();
1078 }
1079 }
1080
1081 /**
1082 * Show a page view for a page formatted as CSS or JavaScript. To be called by
1083 * Article::view() only.
1084 *
1085 * This is hooked by SyntaxHighlight_GeSHi to do syntax highlighting of these
1086 * page views.
1087 */
1088 protected function showCssOrJsPage() {
1089 global $wgOut;
1090
1091 $wgOut->wrapWikiMsg( "<div id='mw-clearyourcache'>\n$1\n</div>", 'clearyourcache' );
1092
1093 // Give hooks a chance to customise the output
1094 if ( wfRunHooks( 'ShowRawCssJs', array( $this->mContent, $this->mTitle, $wgOut ) ) ) {
1095 // Wrap the whole lot in a <pre> and don't parse
1096 $m = array();
1097 preg_match( '!\.(css|js)$!u', $this->mTitle->getText(), $m );
1098 $wgOut->addHTML( "<pre class=\"mw-code mw-{$m[1]}\" dir=\"ltr\">\n" );
1099 $wgOut->addHTML( htmlspecialchars( $this->mContent ) );
1100 $wgOut->addHTML( "\n</pre>\n" );
1101 }
1102 }
1103
1104 /**
1105 * Get the robot policy to be used for the current view
1106 * @param $action String the action= GET parameter
1107 * @return Array the policy that should be set
1108 * TODO: actions other than 'view'
1109 */
1110 public function getRobotPolicy( $action ) {
1111 global $wgOut, $wgArticleRobotPolicies, $wgNamespaceRobotPolicies;
1112 global $wgDefaultRobotPolicy, $wgRequest;
1113
1114 $ns = $this->mTitle->getNamespace();
1115
1116 if ( $ns == NS_USER || $ns == NS_USER_TALK ) {
1117 # Don't index user and user talk pages for blocked users (bug 11443)
1118 if ( !$this->mTitle->isSubpage() ) {
1119 $block = new Block();
1120 if ( $block->load( $this->mTitle->getText() ) ) {
1121 return array(
1122 'index' => 'noindex',
1123 'follow' => 'nofollow'
1124 );
1125 }
1126 }
1127 }
1128
1129 if ( $this->getID() === 0 || $this->getOldID() ) {
1130 # Non-articles (special pages etc), and old revisions
1131 return array(
1132 'index' => 'noindex',
1133 'follow' => 'nofollow'
1134 );
1135 } elseif ( $wgOut->isPrintable() ) {
1136 # Discourage indexing of printable versions, but encourage following
1137 return array(
1138 'index' => 'noindex',
1139 'follow' => 'follow'
1140 );
1141 } elseif ( $wgRequest->getInt( 'curid' ) ) {
1142 # For ?curid=x urls, disallow indexing
1143 return array(
1144 'index' => 'noindex',
1145 'follow' => 'follow'
1146 );
1147 }
1148
1149 # Otherwise, construct the policy based on the various config variables.
1150 $policy = self::formatRobotPolicy( $wgDefaultRobotPolicy );
1151
1152 if ( isset( $wgNamespaceRobotPolicies[$ns] ) ) {
1153 # Honour customised robot policies for this namespace
1154 $policy = array_merge(
1155 $policy,
1156 self::formatRobotPolicy( $wgNamespaceRobotPolicies[$ns] )
1157 );
1158 }
1159 if ( $this->mTitle->canUseNoindex() && is_object( $this->mParserOutput ) && $this->mParserOutput->getIndexPolicy() ) {
1160 # __INDEX__ and __NOINDEX__ magic words, if allowed. Incorporates
1161 # a final sanity check that we have really got the parser output.
1162 $policy = array_merge(
1163 $policy,
1164 array( 'index' => $this->mParserOutput->getIndexPolicy() )
1165 );
1166 }
1167
1168 if ( isset( $wgArticleRobotPolicies[$this->mTitle->getPrefixedText()] ) ) {
1169 # (bug 14900) site config can override user-defined __INDEX__ or __NOINDEX__
1170 $policy = array_merge(
1171 $policy,
1172 self::formatRobotPolicy( $wgArticleRobotPolicies[$this->mTitle->getPrefixedText()] )
1173 );
1174 }
1175
1176 return $policy;
1177 }
1178
1179 /**
1180 * Converts a String robot policy into an associative array, to allow
1181 * merging of several policies using array_merge().
1182 * @param $policy Mixed, returns empty array on null/false/'', transparent
1183 * to already-converted arrays, converts String.
1184 * @return Array: 'index' => <indexpolicy>, 'follow' => <followpolicy>
1185 */
1186 public static function formatRobotPolicy( $policy ) {
1187 if ( is_array( $policy ) ) {
1188 return $policy;
1189 } elseif ( !$policy ) {
1190 return array();
1191 }
1192
1193 $policy = explode( ',', $policy );
1194 $policy = array_map( 'trim', $policy );
1195
1196 $arr = array();
1197 foreach ( $policy as $var ) {
1198 if ( in_array( $var, array( 'index', 'noindex' ) ) ) {
1199 $arr['index'] = $var;
1200 } elseif ( in_array( $var, array( 'follow', 'nofollow' ) ) ) {
1201 $arr['follow'] = $var;
1202 }
1203 }
1204
1205 return $arr;
1206 }
1207
1208 /**
1209 * If this request is a redirect view, send "redirected from" subtitle to
1210 * $wgOut. Returns true if the header was needed, false if this is not a
1211 * redirect view. Handles both local and remote redirects.
1212 *
1213 * @return boolean
1214 */
1215 public function showRedirectedFromHeader() {
1216 global $wgOut, $wgUser, $wgRequest, $wgRedirectSources;
1217
1218 $rdfrom = $wgRequest->getVal( 'rdfrom' );
1219 $sk = $wgUser->getSkin();
1220
1221 if ( isset( $this->mRedirectedFrom ) ) {
1222 // This is an internally redirected page view.
1223 // We'll need a backlink to the source page for navigation.
1224 if ( wfRunHooks( 'ArticleViewRedirect', array( &$this ) ) ) {
1225 $redir = $sk->link(
1226 $this->mRedirectedFrom,
1227 null,
1228 array(),
1229 array( 'redirect' => 'no' ),
1230 array( 'known', 'noclasses' )
1231 );
1232
1233 $s = wfMsgExt( 'redirectedfrom', array( 'parseinline', 'replaceafter' ), $redir );
1234 $wgOut->setSubtitle( $s );
1235
1236 // Set the fragment if one was specified in the redirect
1237 if ( strval( $this->mTitle->getFragment() ) != '' ) {
1238 $fragment = Xml::escapeJsString( $this->mTitle->getFragmentForURL() );
1239 $wgOut->addInlineScript( "redirectToFragment(\"$fragment\");" );
1240 }
1241
1242 // Add a <link rel="canonical"> tag
1243 $wgOut->addLink( array( 'rel' => 'canonical',
1244 'href' => $this->mTitle->getLocalURL() )
1245 );
1246
1247 return true;
1248 }
1249 } elseif ( $rdfrom ) {
1250 // This is an externally redirected view, from some other wiki.
1251 // If it was reported from a trusted site, supply a backlink.
1252 if ( $wgRedirectSources && preg_match( $wgRedirectSources, $rdfrom ) ) {
1253 $redir = $sk->makeExternalLink( $rdfrom, $rdfrom );
1254 $s = wfMsgExt( 'redirectedfrom', array( 'parseinline', 'replaceafter' ), $redir );
1255 $wgOut->setSubtitle( $s );
1256
1257 return true;
1258 }
1259 }
1260
1261 return false;
1262 }
1263
1264 /**
1265 * Show a header specific to the namespace currently being viewed, like
1266 * [[MediaWiki:Talkpagetext]]. For Article::view().
1267 */
1268 public function showNamespaceHeader() {
1269 global $wgOut;
1270
1271 if ( $this->mTitle->isTalkPage() ) {
1272 $msg = wfMsgNoTrans( 'talkpageheader' );
1273 if ( $msg !== '-' && !wfEmptyMsg( 'talkpageheader', $msg ) ) {
1274 $wgOut->wrapWikiMsg( "<div class=\"mw-talkpageheader\">\n$1\n</div>", array( 'talkpageheader' ) );
1275 }
1276 }
1277 }
1278
1279 /**
1280 * Show the footer section of an ordinary page view
1281 */
1282 public function showViewFooter() {
1283 global $wgOut, $wgUseTrackbacks;
1284
1285 # check if we're displaying a [[User talk:x.x.x.x]] anonymous talk page
1286 if ( $this->mTitle->getNamespace() == NS_USER_TALK && IP::isValid( $this->mTitle->getText() ) ) {
1287 $wgOut->addWikiMsg( 'anontalkpagetext' );
1288 }
1289
1290 # If we have been passed an &rcid= parameter, we want to give the user a
1291 # chance to mark this new article as patrolled.
1292 $this->showPatrolFooter();
1293
1294 # Trackbacks
1295 if ( $wgUseTrackbacks ) {
1296 $this->addTrackbacks();
1297 }
1298 }
1299
1300 /**
1301 * If patrol is possible, output a patrol UI box. This is called from the
1302 * footer section of ordinary page views. If patrol is not possible or not
1303 * desired, does nothing.
1304 */
1305 public function showPatrolFooter() {
1306 global $wgOut, $wgRequest, $wgUser;
1307
1308 $rcid = $wgRequest->getVal( 'rcid' );
1309
1310 if ( !$rcid || !$this->mTitle->quickUserCan( 'patrol' ) ) {
1311 return;
1312 }
1313
1314 $sk = $wgUser->getSkin();
1315 $token = $wgUser->editToken( $rcid );
1316 $wgOut->preventClickjacking();
1317
1318 $wgOut->addHTML(
1319 "<div class='patrollink'>" .
1320 wfMsgHtml(
1321 'markaspatrolledlink',
1322 $sk->link(
1323 $this->mTitle,
1324 wfMsgHtml( 'markaspatrolledtext' ),
1325 array(),
1326 array(
1327 'action' => 'markpatrolled',
1328 'rcid' => $rcid,
1329 'token' => $token,
1330 ),
1331 array( 'known', 'noclasses' )
1332 )
1333 ) .
1334 '</div>'
1335 );
1336 }
1337
1338 /**
1339 * Show the error text for a missing article. For articles in the MediaWiki
1340 * namespace, show the default message text. To be called from Article::view().
1341 */
1342 public function showMissingArticle() {
1343 global $wgOut, $wgRequest, $wgUser;
1344
1345 # Show info in user (talk) namespace. Does the user exist? Is he blocked?
1346 if ( $this->mTitle->getNamespace() == NS_USER || $this->mTitle->getNamespace() == NS_USER_TALK ) {
1347 $parts = explode( '/', $this->mTitle->getText() );
1348 $rootPart = $parts[0];
1349 $user = User::newFromName( $rootPart, false /* allow IP users*/ );
1350 $ip = User::isIP( $rootPart );
1351
1352 if ( !$user->isLoggedIn() && !$ip ) { # User does not exist
1353 $wgOut->wrapWikiMsg( "<div class=\"mw-userpage-userdoesnotexist error\">\n\$1\n</div>",
1354 array( 'userpage-userdoesnotexist-view', $rootPart ) );
1355 } else if ( $user->isBlocked() ) { # Show log extract if the user is currently blocked
1356 LogEventsList::showLogExtract(
1357 $wgOut,
1358 'block',
1359 $user->getUserPage()->getPrefixedText(),
1360 '',
1361 array(
1362 'lim' => 1,
1363 'showIfEmpty' => false,
1364 'msgKey' => array(
1365 'blocked-notice-logextract',
1366 $user->getName() # Support GENDER in notice
1367 )
1368 )
1369 );
1370 }
1371 }
1372
1373 wfRunHooks( 'ShowMissingArticle', array( $this ) );
1374
1375 # Show delete and move logs
1376 LogEventsList::showLogExtract( $wgOut, array( 'delete', 'move' ), $this->mTitle->getPrefixedText(), '',
1377 array( 'lim' => 10,
1378 'conds' => array( "log_action != 'revision'" ),
1379 'showIfEmpty' => false,
1380 'msgKey' => array( 'moveddeleted-notice' ) )
1381 );
1382
1383 # Show error message
1384 $oldid = $this->getOldID();
1385 if ( $oldid ) {
1386 $text = wfMsgNoTrans( 'missing-article',
1387 $this->mTitle->getPrefixedText(),
1388 wfMsgNoTrans( 'missingarticle-rev', $oldid ) );
1389 } elseif ( $this->mTitle->getNamespace() === NS_MEDIAWIKI ) {
1390 // Use the default message text
1391 $text = $this->getContent();
1392 } else {
1393 $createErrors = $this->mTitle->getUserPermissionsErrors( 'create', $wgUser );
1394 $editErrors = $this->mTitle->getUserPermissionsErrors( 'edit', $wgUser );
1395 $errors = array_merge( $createErrors, $editErrors );
1396
1397 if ( !count( $errors ) ) {
1398 $text = wfMsgNoTrans( 'noarticletext' );
1399 } else {
1400 $text = wfMsgNoTrans( 'noarticletext-nopermission' );
1401 }
1402 }
1403 $text = "<div class='noarticletext'>\n$text\n</div>";
1404
1405 if ( !$this->hasViewableContent() ) {
1406 // If there's no backing content, send a 404 Not Found
1407 // for better machine handling of broken links.
1408 $wgRequest->response()->header( "HTTP/1.x 404 Not Found" );
1409 }
1410
1411 $wgOut->addWikiText( $text );
1412 }
1413
1414 /**
1415 * If the revision requested for view is deleted, check permissions.
1416 * Send either an error message or a warning header to $wgOut.
1417 *
1418 * @return boolean true if the view is allowed, false if not.
1419 */
1420 public function showDeletedRevisionHeader() {
1421 global $wgOut, $wgRequest;
1422
1423 if ( !$this->mRevision->isDeleted( Revision::DELETED_TEXT ) ) {
1424 // Not deleted
1425 return true;
1426 }
1427
1428 // If the user is not allowed to see it...
1429 if ( !$this->mRevision->userCan( Revision::DELETED_TEXT ) ) {
1430 $wgOut->wrapWikiMsg( "<div class='mw-warning plainlinks'>\n$1\n</div>\n",
1431 'rev-deleted-text-permission' );
1432
1433 return false;
1434 // If the user needs to confirm that they want to see it...
1435 } else if ( $wgRequest->getInt( 'unhide' ) != 1 ) {
1436 # Give explanation and add a link to view the revision...
1437 $oldid = intval( $this->getOldID() );
1438 $link = $this->mTitle->getFullUrl( "oldid={$oldid}&unhide=1" );
1439 $msg = $this->mRevision->isDeleted( Revision::DELETED_RESTRICTED ) ?
1440 'rev-suppressed-text-unhide' : 'rev-deleted-text-unhide';
1441 $wgOut->wrapWikiMsg( "<div class='mw-warning plainlinks'>\n$1\n</div>\n",
1442 array( $msg, $link ) );
1443
1444 return false;
1445 // We are allowed to see...
1446 } else {
1447 $msg = $this->mRevision->isDeleted( Revision::DELETED_RESTRICTED ) ?
1448 'rev-suppressed-text-view' : 'rev-deleted-text-view';
1449 $wgOut->wrapWikiMsg( "<div class='mw-warning plainlinks'>\n$1\n</div>\n", $msg );
1450
1451 return true;
1452 }
1453 }
1454
1455 /**
1456 * Should the parser cache be used?
1457 *
1458 * @return boolean
1459 */
1460 public function useParserCache( $oldid ) {
1461 global $wgUser, $wgEnableParserCache;
1462
1463 return $wgEnableParserCache
1464 && $wgUser->getStubThreshold() == 0
1465 && $this->exists()
1466 && empty( $oldid )
1467 && !$this->mTitle->isCssOrJsPage()
1468 && !$this->mTitle->isCssJsSubpage();
1469 }
1470
1471 /**
1472 * Execute the uncached parse for action=view
1473 */
1474 public function doViewParse() {
1475 global $wgOut;
1476
1477 $oldid = $this->getOldID();
1478 $parserOptions = $this->getParserOptions();
1479
1480 # Render printable version, use printable version cache
1481 $parserOptions->setIsPrintable( $wgOut->isPrintable() );
1482
1483 # Don't show section-edit links on old revisions... this way lies madness.
1484 if ( !$this->isCurrent() || $wgOut->isPrintable() || !$this->mTitle->quickUserCan( 'edit' ) ) {
1485 $parserOptions->setEditSection( false );
1486 }
1487
1488 $useParserCache = $this->useParserCache( $oldid );
1489 $this->outputWikiText( $this->getContent(), $useParserCache, $parserOptions );
1490
1491 return true;
1492 }
1493
1494 /**
1495 * Try to fetch an expired entry from the parser cache. If it is present,
1496 * output it and return true. If it is not present, output nothing and
1497 * return false. This is used as a callback function for
1498 * PoolCounter::executeProtected().
1499 *
1500 * @return boolean
1501 */
1502 public function tryDirtyCache() {
1503 global $wgOut;
1504 $parserCache = ParserCache::singleton();
1505 $options = $this->getParserOptions();
1506
1507 if ( $wgOut->isPrintable() ) {
1508 $options->setIsPrintable( true );
1509 $options->setEditSection( false );
1510 }
1511
1512 $output = $parserCache->getDirty( $this, $options );
1513
1514 if ( $output ) {
1515 wfDebug( __METHOD__ . ": sending dirty output\n" );
1516 wfDebugLog( 'dirty', "dirty output " . $parserCache->getKey( $this, $options ) . "\n" );
1517 $wgOut->setSquidMaxage( 0 );
1518 $this->mParserOutput = $output;
1519 $wgOut->addParserOutput( $output );
1520 $wgOut->addHTML( "<!-- parser cache is expired, sending anyway due to pool overload-->\n" );
1521
1522 return true;
1523 } else {
1524 wfDebugLog( 'dirty', "dirty missing\n" );
1525 wfDebug( __METHOD__ . ": no dirty cache\n" );
1526
1527 return false;
1528 }
1529 }
1530
1531 /**
1532 * View redirect
1533 *
1534 * @param $target Title|Array of destination(s) to redirect
1535 * @param $appendSubtitle Boolean [optional]
1536 * @param $forceKnown Boolean: should the image be shown as a bluelink regardless of existence?
1537 * @return string containing HMTL with redirect link
1538 */
1539 public function viewRedirect( $target, $appendSubtitle = true, $forceKnown = false ) {
1540 global $wgOut, $wgContLang, $wgStylePath, $wgUser;
1541
1542 if ( !is_array( $target ) ) {
1543 $target = array( $target );
1544 }
1545
1546 $imageDir = $wgContLang->getDir();
1547
1548 if ( $appendSubtitle ) {
1549 $wgOut->appendSubtitle( wfMsgHtml( 'redirectpagesub' ) );
1550 }
1551
1552 $sk = $wgUser->getSkin();
1553 // the loop prepends the arrow image before the link, so the first case needs to be outside
1554 $title = array_shift( $target );
1555
1556 if ( $forceKnown ) {
1557 $link = $sk->linkKnown( $title, htmlspecialchars( $title->getFullText() ) );
1558 } else {
1559 $link = $sk->link( $title, htmlspecialchars( $title->getFullText() ) );
1560 }
1561
1562 $nextRedirect = $wgStylePath . '/common/images/nextredirect' . $imageDir . '.png';
1563 $alt = $wgContLang->isRTL() ? '←' : '→';
1564 // Automatically append redirect=no to each link, since most of them are redirect pages themselves.
1565 // FIXME: where this happens?
1566 foreach ( $target as $rt ) {
1567 $link .= Html::element( 'img', array( 'src' => $nextRedirect, 'alt' => $alt ) );
1568 if ( $forceKnown ) {
1569 $link .= $sk->linkKnown( $rt, htmlspecialchars( $rt->getFullText() ) );
1570 } else {
1571 $link .= $sk->link( $rt, htmlspecialchars( $rt->getFullText() ) );
1572 }
1573 }
1574
1575 $imageUrl = $wgStylePath . '/common/images/redirect' . $imageDir . '.png';
1576 return '<div class="redirectMsg">' .
1577 Html::element( 'img', array( 'src' => $imageUrl, 'alt' => '#REDIRECT' ) ) .
1578 '<span class="redirectText">' . $link . '</span></div>';
1579 }
1580
1581 /**
1582 * Builds trackback links for article display if $wgUseTrackbacks is set to true
1583 */
1584 public function addTrackbacks() {
1585 global $wgOut, $wgUser;
1586
1587 $dbr = wfGetDB( DB_SLAVE );
1588 $tbs = $dbr->select( 'trackbacks',
1589 array( 'tb_id', 'tb_title', 'tb_url', 'tb_ex', 'tb_name' ),
1590 array( 'tb_page' => $this->getID() )
1591 );
1592
1593 if ( !$dbr->numRows( $tbs ) ) {
1594 return;
1595 }
1596
1597 $wgOut->preventClickjacking();
1598
1599 $tbtext = "";
1600 foreach ( $tbs as $o ) {
1601 $rmvtxt = "";
1602
1603 if ( $wgUser->isAllowed( 'trackback' ) ) {
1604 $delurl = $this->mTitle->getFullURL( "action=deletetrackback&tbid=" .
1605 $o->tb_id . "&token=" . urlencode( $wgUser->editToken() ) );
1606 $rmvtxt = wfMsg( 'trackbackremove', htmlspecialchars( $delurl ) );
1607 }
1608
1609 $tbtext .= "\n";
1610 $tbtext .= wfMsgNoTrans( strlen( $o->tb_ex ) ? 'trackbackexcerpt' : 'trackback',
1611 $o->tb_title,
1612 $o->tb_url,
1613 $o->tb_ex,
1614 $o->tb_name,
1615 $rmvtxt );
1616 }
1617
1618 $wgOut->wrapWikiMsg( "<div id='mw_trackbacks'>\n$1\n</div>\n", array( 'trackbackbox', $tbtext ) );
1619 }
1620
1621 /**
1622 * Removes trackback record for current article from trackbacks table
1623 */
1624 public function deletetrackback() {
1625 global $wgUser, $wgRequest, $wgOut;
1626
1627 if ( !$wgUser->matchEditToken( $wgRequest->getVal( 'token' ) ) ) {
1628 $wgOut->addWikiMsg( 'sessionfailure' );
1629
1630 return;
1631 }
1632
1633 $permission_errors = $this->mTitle->getUserPermissionsErrors( 'delete', $wgUser );
1634
1635 if ( count( $permission_errors ) ) {
1636 $wgOut->showPermissionsErrorPage( $permission_errors );
1637
1638 return;
1639 }
1640
1641 $db = wfGetDB( DB_MASTER );
1642 $db->delete( 'trackbacks', array( 'tb_id' => $wgRequest->getInt( 'tbid' ) ) );
1643
1644 $wgOut->addWikiMsg( 'trackbackdeleteok' );
1645 $this->mTitle->invalidateCache();
1646 }
1647
1648 /**
1649 * Handle action=render
1650 */
1651
1652 public function render() {
1653 global $wgOut;
1654
1655 $wgOut->setArticleBodyOnly( true );
1656 $this->view();
1657 }
1658
1659 /**
1660 * Handle action=purge
1661 */
1662 public function purge() {
1663 global $wgUser, $wgRequest, $wgOut;
1664
1665 if ( $wgUser->isAllowed( 'purge' ) || $wgRequest->wasPosted() ) {
1666 //FIXME: shouldn't this be in doPurge()?
1667 if ( wfRunHooks( 'ArticlePurge', array( &$this ) ) ) {
1668 $this->doPurge();
1669 $this->view();
1670 }
1671 } else {
1672 $formParams = array(
1673 'method' => 'post',
1674 'action' => $wgRequest->getRequestURL(),
1675 );
1676
1677 $wgOut->addWikiMsg( 'confirm-purge-top' );
1678
1679 $form = Html::openElement( 'form', $formParams );
1680 $form .= Xml::submitButton( wfMsg( 'confirm_purge_button' ) );
1681 $form .= Html::closeElement( 'form' );
1682
1683 $wgOut->addHTML( $form );
1684 $wgOut->addWikiMsg( 'confirm-purge-bottom' );
1685
1686 $wgOut->setPageTitle( $this->mTitle->getPrefixedText() );
1687 $wgOut->setRobotPolicy( 'noindex,nofollow' );
1688 }
1689 }
1690
1691 /**
1692 * Perform the actions of a page purging
1693 */
1694 public function doPurge() {
1695 global $wgUseSquid;
1696
1697 // Invalidate the cache
1698 $this->mTitle->invalidateCache();
1699 $this->clear();
1700
1701 if ( $wgUseSquid ) {
1702 // Commit the transaction before the purge is sent
1703 $dbw = wfGetDB( DB_MASTER );
1704 $dbw->commit();
1705
1706 // Send purge
1707 $update = SquidUpdate::newSimplePurge( $this->mTitle );
1708 $update->doUpdate();
1709 }
1710
1711 if ( $this->mTitle->getNamespace() == NS_MEDIAWIKI ) {
1712 global $wgMessageCache;
1713
1714 if ( $this->getID() == 0 ) {
1715 $text = false;
1716 } else {
1717 $text = $this->getRawText();
1718 }
1719
1720 $wgMessageCache->replace( $this->mTitle->getDBkey(), $text );
1721 }
1722 }
1723
1724 /**
1725 * Insert a new empty page record for this article.
1726 * This *must* be followed up by creating a revision
1727 * and running $this->updateRevisionOn( ... );
1728 * or else the record will be left in a funky state.
1729 * Best if all done inside a transaction.
1730 *
1731 * @param $dbw Database
1732 * @return int The newly created page_id key, or false if the title already existed
1733 * @private
1734 */
1735 public function insertOn( $dbw ) {
1736 wfProfileIn( __METHOD__ );
1737
1738 $page_id = $dbw->nextSequenceValue( 'page_page_id_seq' );
1739 $dbw->insert( 'page', array(
1740 'page_id' => $page_id,
1741 'page_namespace' => $this->mTitle->getNamespace(),
1742 'page_title' => $this->mTitle->getDBkey(),
1743 'page_counter' => 0,
1744 'page_restrictions' => '',
1745 'page_is_redirect' => 0, # Will set this shortly...
1746 'page_is_new' => 1,
1747 'page_random' => wfRandom(),
1748 'page_touched' => $dbw->timestamp(),
1749 'page_latest' => 0, # Fill this in shortly...
1750 'page_len' => 0, # Fill this in shortly...
1751 ), __METHOD__, 'IGNORE' );
1752
1753 $affected = $dbw->affectedRows();
1754
1755 if ( $affected ) {
1756 $newid = $dbw->insertId();
1757 $this->mTitle->resetArticleId( $newid );
1758 }
1759 wfProfileOut( __METHOD__ );
1760
1761 return $affected ? $newid : false;
1762 }
1763
1764 /**
1765 * Update the page record to point to a newly saved revision.
1766 *
1767 * @param $dbw DatabaseBase: object
1768 * @param $revision Revision: For ID number, and text used to set
1769 length and redirect status fields
1770 * @param $lastRevision Integer: if given, will not overwrite the page field
1771 * when different from the currently set value.
1772 * Giving 0 indicates the new page flag should be set
1773 * on.
1774 * @param $lastRevIsRedirect Boolean: if given, will optimize adding and
1775 * removing rows in redirect table.
1776 * @param $setNewFlag Boolean: Set to true if a page flag should be set
1777 * Needed when $lastRevision has to be set to sth. !=0
1778 * @return bool true on success, false on failure
1779 * @private
1780 */
1781 public function updateRevisionOn( &$dbw, $revision, $lastRevision = null, $lastRevIsRedirect = null, $setNewFlag = false ) {
1782 wfProfileIn( __METHOD__ );
1783
1784 $text = $revision->getText();
1785 $rt = Title::newFromRedirectRecurse( $text );
1786
1787 $conditions = array( 'page_id' => $this->getId() );
1788
1789 if ( !is_null( $lastRevision ) ) {
1790 # An extra check against threads stepping on each other
1791 $conditions['page_latest'] = $lastRevision;
1792 }
1793
1794 if ( !$setNewFlag ) {
1795 $setNewFlag = ( $lastRevision === 0 );
1796 }
1797
1798 $dbw->update( 'page',
1799 array( /* SET */
1800 'page_latest' => $revision->getId(),
1801 'page_touched' => $dbw->timestamp(),
1802 'page_is_new' => $setNewFlag,
1803 'page_is_redirect' => $rt !== null ? 1 : 0,
1804 'page_len' => strlen( $text ),
1805 ),
1806 $conditions,
1807 __METHOD__ );
1808
1809 $result = $dbw->affectedRows() != 0;
1810 if ( $result ) {
1811 $this->updateRedirectOn( $dbw, $rt, $lastRevIsRedirect );
1812 }
1813
1814 wfProfileOut( __METHOD__ );
1815 return $result;
1816 }
1817
1818 /**
1819 * Add row to the redirect table if this is a redirect, remove otherwise.
1820 *
1821 * @param $dbw Database
1822 * @param $redirectTitle Title object pointing to the redirect target,
1823 * or NULL if this is not a redirect
1824 * @param $lastRevIsRedirect If given, will optimize adding and
1825 * removing rows in redirect table.
1826 * @return bool true on success, false on failure
1827 * @private
1828 */
1829 public function updateRedirectOn( &$dbw, $redirectTitle, $lastRevIsRedirect = null ) {
1830 // Always update redirects (target link might have changed)
1831 // Update/Insert if we don't know if the last revision was a redirect or not
1832 // Delete if changing from redirect to non-redirect
1833 $isRedirect = !is_null( $redirectTitle );
1834
1835 if ( $isRedirect || is_null( $lastRevIsRedirect ) || $lastRevIsRedirect !== $isRedirect ) {
1836 wfProfileIn( __METHOD__ );
1837 if ( $isRedirect ) {
1838 $this->insertRedirectEntry( $redirectTitle );
1839 } else {
1840 // This is not a redirect, remove row from redirect table
1841 $where = array( 'rd_from' => $this->getId() );
1842 $dbw->delete( 'redirect', $where, __METHOD__ );
1843 }
1844
1845 if ( $this->getTitle()->getNamespace() == NS_FILE ) {
1846 RepoGroup::singleton()->getLocalRepo()->invalidateImageRedirect( $this->getTitle() );
1847 }
1848 wfProfileOut( __METHOD__ );
1849
1850 return ( $dbw->affectedRows() != 0 );
1851 }
1852
1853 return true;
1854 }
1855
1856 /**
1857 * If the given revision is newer than the currently set page_latest,
1858 * update the page record. Otherwise, do nothing.
1859 *
1860 * @param $dbw Database object
1861 * @param $revision Revision object
1862 * @return mixed
1863 */
1864 public function updateIfNewerOn( &$dbw, $revision ) {
1865 wfProfileIn( __METHOD__ );
1866
1867 $row = $dbw->selectRow(
1868 array( 'revision', 'page' ),
1869 array( 'rev_id', 'rev_timestamp', 'page_is_redirect' ),
1870 array(
1871 'page_id' => $this->getId(),
1872 'page_latest=rev_id' ),
1873 __METHOD__ );
1874
1875 if ( $row ) {
1876 if ( wfTimestamp( TS_MW, $row->rev_timestamp ) >= $revision->getTimestamp() ) {
1877 wfProfileOut( __METHOD__ );
1878 return false;
1879 }
1880 $prev = $row->rev_id;
1881 $lastRevIsRedirect = (bool)$row->page_is_redirect;
1882 } else {
1883 # No or missing previous revision; mark the page as new
1884 $prev = 0;
1885 $lastRevIsRedirect = null;
1886 }
1887
1888 $ret = $this->updateRevisionOn( $dbw, $revision, $prev, $lastRevIsRedirect );
1889
1890 wfProfileOut( __METHOD__ );
1891 return $ret;
1892 }
1893
1894 /**
1895 * @param $section empty/null/false or a section number (0, 1, 2, T1, T2...)
1896 * @param $text String: new text of the section
1897 * @param $summary String: new section's subject, only if $section is 'new'
1898 * @param $edittime String: revision timestamp or null to use the current revision
1899 * @return string Complete article text, or null if error
1900 */
1901 public function replaceSection( $section, $text, $summary = '', $edittime = null ) {
1902 wfProfileIn( __METHOD__ );
1903
1904 if ( strval( $section ) == '' ) {
1905 // Whole-page edit; let the whole text through
1906 } else {
1907 if ( is_null( $edittime ) ) {
1908 $rev = Revision::newFromTitle( $this->mTitle );
1909 } else {
1910 $dbw = wfGetDB( DB_MASTER );
1911 $rev = Revision::loadFromTimestamp( $dbw, $this->mTitle, $edittime );
1912 }
1913
1914 if ( !$rev ) {
1915 wfDebug( "Article::replaceSection asked for bogus section (page: " .
1916 $this->getId() . "; section: $section; edittime: $edittime)\n" );
1917 return null;
1918 }
1919
1920 $oldtext = $rev->getText();
1921
1922 if ( $section == 'new' ) {
1923 # Inserting a new section
1924 $subject = $summary ? wfMsgForContent( 'newsectionheaderdefaultlevel', $summary ) . "\n\n" : '';
1925 $text = strlen( trim( $oldtext ) ) > 0
1926 ? "{$oldtext}\n\n{$subject}{$text}"
1927 : "{$subject}{$text}";
1928 } else {
1929 # Replacing an existing section; roll out the big guns
1930 global $wgParser;
1931
1932 $text = $wgParser->replaceSection( $oldtext, $section, $text );
1933 }
1934 }
1935
1936 wfProfileOut( __METHOD__ );
1937 return $text;
1938 }
1939
1940 /**
1941 * This function is not deprecated until somebody fixes the core not to use
1942 * it. Nevertheless, use Article::doEdit() instead.
1943 * @deprecated @since 1.7
1944 */
1945 function insertNewArticle( $text, $summary, $isminor, $watchthis, $suppressRC = false, $comment = false, $bot = false ) {
1946 $flags = EDIT_NEW | EDIT_DEFER_UPDATES | EDIT_AUTOSUMMARY |
1947 ( $isminor ? EDIT_MINOR : 0 ) |
1948 ( $suppressRC ? EDIT_SUPPRESS_RC : 0 ) |
1949 ( $bot ? EDIT_FORCE_BOT : 0 );
1950
1951 # If this is a comment, add the summary as headline
1952 if ( $comment && $summary != "" ) {
1953 $text = wfMsgForContent( 'newsectionheaderdefaultlevel', $summary ) . "\n\n" . $text;
1954 }
1955 $this->doEdit( $text, $summary, $flags );
1956
1957 $dbw = wfGetDB( DB_MASTER );
1958 if ( $watchthis ) {
1959 if ( !$this->mTitle->userIsWatching() ) {
1960 $dbw->begin();
1961 $this->doWatch();
1962 $dbw->commit();
1963 }
1964 } else {
1965 if ( $this->mTitle->userIsWatching() ) {
1966 $dbw->begin();
1967 $this->doUnwatch();
1968 $dbw->commit();
1969 }
1970 }
1971 $this->doRedirect( $this->isRedirect( $text ) );
1972 }
1973
1974 /**
1975 * @deprecated @since 1.7 use Article::doEdit()
1976 */
1977 function updateArticle( $text, $summary, $minor, $watchthis, $forceBot = false, $sectionanchor = '' ) {
1978 $flags = EDIT_UPDATE | EDIT_DEFER_UPDATES | EDIT_AUTOSUMMARY |
1979 ( $minor ? EDIT_MINOR : 0 ) |
1980 ( $forceBot ? EDIT_FORCE_BOT : 0 );
1981
1982 $status = $this->doEdit( $text, $summary, $flags );
1983
1984 if ( !$status->isOK() ) {
1985 return false;
1986 }
1987
1988 $dbw = wfGetDB( DB_MASTER );
1989 if ( $watchthis ) {
1990 if ( !$this->mTitle->userIsWatching() ) {
1991 $dbw->begin();
1992 $this->doWatch();
1993 $dbw->commit();
1994 }
1995 } else {
1996 if ( $this->mTitle->userIsWatching() ) {
1997 $dbw->begin();
1998 $this->doUnwatch();
1999 $dbw->commit();
2000 }
2001 }
2002
2003 $extraQuery = ''; // Give extensions a chance to modify URL query on update
2004 wfRunHooks( 'ArticleUpdateBeforeRedirect', array( $this, &$sectionanchor, &$extraQuery ) );
2005
2006 $this->doRedirect( $this->isRedirect( $text ), $sectionanchor, $extraQuery );
2007 return true;
2008 }
2009
2010 /**
2011 * Check flags and add EDIT_NEW or EDIT_UPDATE to them as needed.
2012 * @param $flags Int
2013 * @return Int updated $flags
2014 */
2015 function checkFlags( $flags ) {
2016 if ( !( $flags & EDIT_NEW ) && !( $flags & EDIT_UPDATE ) ) {
2017 if ( $this->mTitle->getArticleID() ) {
2018 $flags |= EDIT_UPDATE;
2019 } else {
2020 $flags |= EDIT_NEW;
2021 }
2022 }
2023
2024 return $flags;
2025 }
2026
2027 /**
2028 * Article::doEdit()
2029 *
2030 * Change an existing article or create a new article. Updates RC and all necessary caches,
2031 * optionally via the deferred update array.
2032 *
2033 * $wgUser must be set before calling this function.
2034 *
2035 * @param $text String: new text
2036 * @param $summary String: edit summary
2037 * @param $flags Integer bitfield:
2038 * EDIT_NEW
2039 * Article is known or assumed to be non-existent, create a new one
2040 * EDIT_UPDATE
2041 * Article is known or assumed to be pre-existing, update it
2042 * EDIT_MINOR
2043 * Mark this edit minor, if the user is allowed to do so
2044 * EDIT_SUPPRESS_RC
2045 * Do not log the change in recentchanges
2046 * EDIT_FORCE_BOT
2047 * Mark the edit a "bot" edit regardless of user rights
2048 * EDIT_DEFER_UPDATES
2049 * Defer some of the updates until the end of index.php
2050 * EDIT_AUTOSUMMARY
2051 * Fill in blank summaries with generated text where possible
2052 *
2053 * If neither EDIT_NEW nor EDIT_UPDATE is specified, the status of the article will be detected.
2054 * If EDIT_UPDATE is specified and the article doesn't exist, the function will an
2055 * edit-gone-missing error. If EDIT_NEW is specified and the article does exist, an
2056 * edit-already-exists error will be returned. These two conditions are also possible with
2057 * auto-detection due to MediaWiki's performance-optimised locking strategy.
2058 *
2059 * @param $baseRevId the revision ID this edit was based off, if any
2060 * @param $user User (optional), $wgUser will be used if not passed
2061 *
2062 * @return Status object. Possible errors:
2063 * edit-hook-aborted: The ArticleSave hook aborted the edit but didn't set the fatal flag of $status
2064 * edit-gone-missing: In update mode, but the article didn't exist
2065 * edit-conflict: In update mode, the article changed unexpectedly
2066 * edit-no-change: Warning that the text was the same as before
2067 * edit-already-exists: In creation mode, but the article already exists
2068 *
2069 * Extensions may define additional errors.
2070 *
2071 * $return->value will contain an associative array with members as follows:
2072 * new: Boolean indicating if the function attempted to create a new article
2073 * revision: The revision object for the inserted revision, or null
2074 *
2075 * Compatibility note: this function previously returned a boolean value indicating success/failure
2076 */
2077 public function doEdit( $text, $summary, $flags = 0, $baseRevId = false, $user = null ) {
2078 global $wgUser, $wgDBtransactions, $wgUseAutomaticEditSummaries;
2079
2080 # Low-level sanity check
2081 if ( $this->mTitle->getText() === '' ) {
2082 throw new MWException( 'Something is trying to edit an article with an empty title' );
2083 }
2084
2085 wfProfileIn( __METHOD__ );
2086
2087 $user = is_null( $user ) ? $wgUser : $user;
2088 $status = Status::newGood( array() );
2089
2090 # Load $this->mTitle->getArticleID() and $this->mLatest if it's not already
2091 $this->loadPageData();
2092
2093 $flags = $this->checkFlags( $flags );
2094
2095 if ( !wfRunHooks( 'ArticleSave', array( &$this, &$user, &$text, &$summary,
2096 $flags & EDIT_MINOR, null, null, &$flags, &$status ) ) )
2097 {
2098 wfDebug( __METHOD__ . ": ArticleSave hook aborted save!\n" );
2099 wfProfileOut( __METHOD__ );
2100
2101 if ( $status->isOK() ) {
2102 $status->fatal( 'edit-hook-aborted' );
2103 }
2104
2105 return $status;
2106 }
2107
2108 # Silently ignore EDIT_MINOR if not allowed
2109 $isminor = ( $flags & EDIT_MINOR ) && $user->isAllowed( 'minoredit' );
2110 $bot = $flags & EDIT_FORCE_BOT;
2111
2112 $oldtext = $this->getRawText(); // current revision
2113 $oldsize = strlen( $oldtext );
2114
2115 # Provide autosummaries if one is not provided and autosummaries are enabled.
2116 if ( $wgUseAutomaticEditSummaries && $flags & EDIT_AUTOSUMMARY && $summary == '' ) {
2117 $summary = $this->getAutosummary( $oldtext, $text, $flags );
2118 }
2119
2120 $editInfo = $this->prepareTextForEdit( $text, null, $user );
2121 $text = $editInfo->pst;
2122 $newsize = strlen( $text );
2123
2124 $dbw = wfGetDB( DB_MASTER );
2125 $now = wfTimestampNow();
2126 $this->mTimestamp = $now;
2127
2128 if ( $flags & EDIT_UPDATE ) {
2129 # Update article, but only if changed.
2130 $status->value['new'] = false;
2131
2132 # Make sure the revision is either completely inserted or not inserted at all
2133 if ( !$wgDBtransactions ) {
2134 $userAbort = ignore_user_abort( true );
2135 }
2136
2137 $changed = ( strcmp( $text, $oldtext ) != 0 );
2138
2139 if ( $changed ) {
2140 $this->mGoodAdjustment = (int)$this->isCountable( $text )
2141 - (int)$this->isCountable( $oldtext );
2142 $this->mTotalAdjustment = 0;
2143
2144 if ( !$this->mLatest ) {
2145 # Article gone missing
2146 wfDebug( __METHOD__ . ": EDIT_UPDATE specified but article doesn't exist\n" );
2147 $status->fatal( 'edit-gone-missing' );
2148
2149 wfProfileOut( __METHOD__ );
2150 return $status;
2151 }
2152
2153 $revision = new Revision( array(
2154 'page' => $this->getId(),
2155 'comment' => $summary,
2156 'minor_edit' => $isminor,
2157 'text' => $text,
2158 'parent_id' => $this->mLatest,
2159 'user' => $user->getId(),
2160 'user_text' => $user->getName(),
2161 'timestamp' => $now
2162 ) );
2163
2164 $dbw->begin();
2165 $revisionId = $revision->insertOn( $dbw );
2166
2167 # Update page
2168 #
2169 # Note that we use $this->mLatest instead of fetching a value from the master DB
2170 # during the course of this function. This makes sure that EditPage can detect
2171 # edit conflicts reliably, either by $ok here, or by $article->getTimestamp()
2172 # before this function is called. A previous function used a separate query, this
2173 # creates a window where concurrent edits can cause an ignored edit conflict.
2174 $ok = $this->updateRevisionOn( $dbw, $revision, $this->mLatest );
2175
2176 if ( !$ok ) {
2177 /* Belated edit conflict! Run away!! */
2178 $status->fatal( 'edit-conflict' );
2179
2180 # Delete the invalid revision if the DB is not transactional
2181 if ( !$wgDBtransactions ) {
2182 $dbw->delete( 'revision', array( 'rev_id' => $revisionId ), __METHOD__ );
2183 }
2184
2185 $revisionId = 0;
2186 $dbw->rollback();
2187 } else {
2188 global $wgUseRCPatrol;
2189 wfRunHooks( 'NewRevisionFromEditComplete', array( $this, $revision, $baseRevId, $user ) );
2190 # Update recentchanges
2191 if ( !( $flags & EDIT_SUPPRESS_RC ) ) {
2192 # Mark as patrolled if the user can do so
2193 $patrolled = $wgUseRCPatrol && !count(
2194 $this->mTitle->getUserPermissionsErrors( 'autopatrol', $user ) );
2195 # Add RC row to the DB
2196 $rc = RecentChange::notifyEdit( $now, $this->mTitle, $isminor, $user, $summary,
2197 $this->mLatest, $this->getTimestamp(), $bot, '', $oldsize, $newsize,
2198 $revisionId, $patrolled
2199 );
2200
2201 # Log auto-patrolled edits
2202 if ( $patrolled ) {
2203 PatrolLog::record( $rc, true );
2204 }
2205 }
2206 $user->incEditCount();
2207 $dbw->commit();
2208 }
2209 } else {
2210 $status->warning( 'edit-no-change' );
2211 $revision = null;
2212 // Keep the same revision ID, but do some updates on it
2213 $revisionId = $this->getRevIdFetched();
2214 // Update page_touched, this is usually implicit in the page update
2215 // Other cache updates are done in onArticleEdit()
2216 $this->mTitle->invalidateCache();
2217 }
2218
2219 if ( !$wgDBtransactions ) {
2220 ignore_user_abort( $userAbort );
2221 }
2222
2223 // Now that ignore_user_abort is restored, we can respond to fatal errors
2224 if ( !$status->isOK() ) {
2225 wfProfileOut( __METHOD__ );
2226 return $status;
2227 }
2228
2229 # Invalidate cache of this article and all pages using this article
2230 # as a template. Partly deferred.
2231 Article::onArticleEdit( $this->mTitle );
2232 # Update links tables, site stats, etc.
2233 $this->editUpdates( $text, $summary, $isminor, $now, $revisionId, $changed, $user );
2234 } else {
2235 # Create new article
2236 $status->value['new'] = true;
2237
2238 # Set statistics members
2239 # We work out if it's countable after PST to avoid counter drift
2240 # when articles are created with {{subst:}}
2241 $this->mGoodAdjustment = (int)$this->isCountable( $text );
2242 $this->mTotalAdjustment = 1;
2243
2244 $dbw->begin();
2245
2246 # Add the page record; stake our claim on this title!
2247 # This will return false if the article already exists
2248 $newid = $this->insertOn( $dbw );
2249
2250 if ( $newid === false ) {
2251 $dbw->rollback();
2252 $status->fatal( 'edit-already-exists' );
2253
2254 wfProfileOut( __METHOD__ );
2255 return $status;
2256 }
2257
2258 # Save the revision text...
2259 $revision = new Revision( array(
2260 'page' => $newid,
2261 'comment' => $summary,
2262 'minor_edit' => $isminor,
2263 'text' => $text,
2264 'user' => $user->getId(),
2265 'user_text' => $user->getName(),
2266 'timestamp' => $now
2267 ) );
2268 $revisionId = $revision->insertOn( $dbw );
2269
2270 $this->mTitle->resetArticleID( $newid );
2271
2272 # Update the page record with revision data
2273 $this->updateRevisionOn( $dbw, $revision, 0 );
2274
2275 wfRunHooks( 'NewRevisionFromEditComplete', array( $this, $revision, false, $user ) );
2276
2277 # Update recentchanges
2278 if ( !( $flags & EDIT_SUPPRESS_RC ) ) {
2279 global $wgUseRCPatrol, $wgUseNPPatrol;
2280
2281 # Mark as patrolled if the user can do so
2282 $patrolled = ( $wgUseRCPatrol || $wgUseNPPatrol ) && !count(
2283 $this->mTitle->getUserPermissionsErrors( 'autopatrol', $user ) );
2284 # Add RC row to the DB
2285 $rc = RecentChange::notifyNew( $now, $this->mTitle, $isminor, $user, $summary, $bot,
2286 '', strlen( $text ), $revisionId, $patrolled );
2287
2288 # Log auto-patrolled edits
2289 if ( $patrolled ) {
2290 PatrolLog::record( $rc, true );
2291 }
2292 }
2293 $user->incEditCount();
2294 $dbw->commit();
2295
2296 # Update links, etc.
2297 $this->editUpdates( $text, $summary, $isminor, $now, $revisionId, true, $user );
2298
2299 # Clear caches
2300 Article::onArticleCreate( $this->mTitle );
2301
2302 wfRunHooks( 'ArticleInsertComplete', array( &$this, &$user, $text, $summary,
2303 $flags & EDIT_MINOR, null, null, &$flags, $revision ) );
2304 }
2305
2306 # Do updates right now unless deferral was requested
2307 if ( !( $flags & EDIT_DEFER_UPDATES ) ) {
2308 wfDoUpdates();
2309 }
2310
2311 // Return the new revision (or null) to the caller
2312 $status->value['revision'] = $revision;
2313
2314 wfRunHooks( 'ArticleSaveComplete', array( &$this, &$user, $text, $summary,
2315 $flags & EDIT_MINOR, null, null, &$flags, $revision, &$status, $baseRevId ) );
2316
2317 wfProfileOut( __METHOD__ );
2318 return $status;
2319 }
2320
2321 /**
2322 * Output a redirect back to the article.
2323 * This is typically used after an edit.
2324 *
2325 * @param $noRedir Boolean: add redirect=no
2326 * @param $sectionAnchor String: section to redirect to, including "#"
2327 * @param $extraQuery String: extra query params
2328 */
2329 public function doRedirect( $noRedir = false, $sectionAnchor = '', $extraQuery = '' ) {
2330 global $wgOut;
2331
2332 if ( $noRedir ) {
2333 $query = 'redirect=no';
2334 if ( $extraQuery )
2335 $query .= "&$extraQuery";
2336 } else {
2337 $query = $extraQuery;
2338 }
2339
2340 $wgOut->redirect( $this->mTitle->getFullURL( $query ) . $sectionAnchor );
2341 }
2342
2343 /**
2344 * Mark this particular edit/page as patrolled
2345 */
2346 public function markpatrolled() {
2347 global $wgOut, $wgUser, $wgRequest;
2348
2349 $wgOut->setRobotPolicy( 'noindex,nofollow' );
2350
2351 # If we haven't been given an rc_id value, we can't do anything
2352 $rcid = (int) $wgRequest->getVal( 'rcid' );
2353
2354 if ( !$wgUser->matchEditToken( $wgRequest->getVal( 'token' ), $rcid ) ) {
2355 $wgOut->showErrorPage( 'sessionfailure-title', 'sessionfailure' );
2356 return;
2357 }
2358
2359 $rc = RecentChange::newFromId( $rcid );
2360
2361 if ( is_null( $rc ) ) {
2362 $wgOut->showErrorPage( 'markedaspatrollederror', 'markedaspatrollederrortext' );
2363 return;
2364 }
2365
2366 # It would be nice to see where the user had actually come from, but for now just guess
2367 $returnto = $rc->getAttribute( 'rc_type' ) == RC_NEW ? 'Newpages' : 'Recentchanges';
2368 $return = SpecialPage::getTitleFor( $returnto );
2369
2370 $errors = $rc->doMarkPatrolled();
2371
2372 if ( in_array( array( 'rcpatroldisabled' ), $errors ) ) {
2373 $wgOut->showErrorPage( 'rcpatroldisabled', 'rcpatroldisabledtext' );
2374
2375 return;
2376 }
2377
2378 if ( in_array( array( 'hookaborted' ), $errors ) ) {
2379 // The hook itself has handled any output
2380 return;
2381 }
2382
2383 if ( in_array( array( 'markedaspatrollederror-noautopatrol' ), $errors ) ) {
2384 $wgOut->setPageTitle( wfMsg( 'markedaspatrollederror' ) );
2385 $wgOut->addWikiMsg( 'markedaspatrollederror-noautopatrol' );
2386 $wgOut->returnToMain( false, $return );
2387
2388 return;
2389 }
2390
2391 if ( !empty( $errors ) ) {
2392 $wgOut->showPermissionsErrorPage( $errors );
2393
2394 return;
2395 }
2396
2397 # Inform the user
2398 $wgOut->setPageTitle( wfMsg( 'markedaspatrolled' ) );
2399 $wgOut->addWikiMsg( 'markedaspatrolledtext', $rc->getTitle()->getPrefixedText() );
2400 $wgOut->returnToMain( false, $return );
2401 }
2402
2403 /**
2404 * User-interface handler for the "watch" action
2405 */
2406 public function watch() {
2407 global $wgUser, $wgOut;
2408
2409 if ( $wgUser->isAnon() ) {
2410 $wgOut->showErrorPage( 'watchnologin', 'watchnologintext' );
2411 return;
2412 }
2413
2414 if ( wfReadOnly() ) {
2415 $wgOut->readOnlyPage();
2416 return;
2417 }
2418
2419 if ( $this->doWatch() ) {
2420 $wgOut->setPagetitle( wfMsg( 'addedwatch' ) );
2421 $wgOut->setRobotPolicy( 'noindex,nofollow' );
2422 $wgOut->addWikiMsg( 'addedwatchtext', $this->mTitle->getPrefixedText() );
2423 }
2424
2425 $wgOut->returnToMain( true, $this->mTitle->getPrefixedText() );
2426 }
2427
2428 /**
2429 * Add this page to $wgUser's watchlist
2430 * @return bool true on successful watch operation
2431 */
2432 public function doWatch() {
2433 global $wgUser;
2434
2435 if ( $wgUser->isAnon() ) {
2436 return false;
2437 }
2438
2439 if ( wfRunHooks( 'WatchArticle', array( &$wgUser, &$this ) ) ) {
2440 $wgUser->addWatch( $this->mTitle );
2441 return wfRunHooks( 'WatchArticleComplete', array( &$wgUser, &$this ) );
2442 }
2443
2444 return false;
2445 }
2446
2447 /**
2448 * User interface handler for the "unwatch" action.
2449 */
2450 public function unwatch() {
2451 global $wgUser, $wgOut;
2452
2453 if ( $wgUser->isAnon() ) {
2454 $wgOut->showErrorPage( 'watchnologin', 'watchnologintext' );
2455 return;
2456 }
2457
2458 if ( wfReadOnly() ) {
2459 $wgOut->readOnlyPage();
2460 return;
2461 }
2462
2463 if ( $this->doUnwatch() ) {
2464 $wgOut->setPagetitle( wfMsg( 'removedwatch' ) );
2465 $wgOut->setRobotPolicy( 'noindex,nofollow' );
2466 $wgOut->addWikiMsg( 'removedwatchtext', $this->mTitle->getPrefixedText() );
2467 }
2468
2469 $wgOut->returnToMain( true, $this->mTitle->getPrefixedText() );
2470 }
2471
2472 /**
2473 * Stop watching a page
2474 * @return bool true on successful unwatch
2475 */
2476 public function doUnwatch() {
2477 global $wgUser;
2478
2479 if ( $wgUser->isAnon() ) {
2480 return false;
2481 }
2482
2483 if ( wfRunHooks( 'UnwatchArticle', array( &$wgUser, &$this ) ) ) {
2484 $wgUser->removeWatch( $this->mTitle );
2485 return wfRunHooks( 'UnwatchArticleComplete', array( &$wgUser, &$this ) );
2486 }
2487
2488 return false;
2489 }
2490
2491 /**
2492 * action=protect handler
2493 */
2494 public function protect() {
2495 $form = new ProtectionForm( $this );
2496 $form->execute();
2497 }
2498
2499 /**
2500 * action=unprotect handler (alias)
2501 */
2502 public function unprotect() {
2503 $this->protect();
2504 }
2505
2506 /**
2507 * Update the article's restriction field, and leave a log entry.
2508 *
2509 * @param $limit Array: set of restriction keys
2510 * @param $reason String
2511 * @param &$cascade Integer. Set to false if cascading protection isn't allowed.
2512 * @param $expiry Array: per restriction type expiration
2513 * @return bool true on success
2514 */
2515 public function updateRestrictions( $limit = array(), $reason = '', &$cascade = 0, $expiry = array() ) {
2516 global $wgUser, $wgContLang;
2517
2518 $restrictionTypes = $this->mTitle->getRestrictionTypes();
2519
2520 $id = $this->mTitle->getArticleID();
2521
2522 if ( $id <= 0 ) {
2523 wfDebug( "updateRestrictions failed: article id $id <= 0\n" );
2524 return false;
2525 }
2526
2527 if ( wfReadOnly() ) {
2528 wfDebug( "updateRestrictions failed: read-only\n" );
2529 return false;
2530 }
2531
2532 if ( !$this->mTitle->userCan( 'protect' ) ) {
2533 wfDebug( "updateRestrictions failed: insufficient permissions\n" );
2534 return false;
2535 }
2536
2537 if ( !$cascade ) {
2538 $cascade = false;
2539 }
2540
2541 // Take this opportunity to purge out expired restrictions
2542 Title::purgeExpiredRestrictions();
2543
2544 # FIXME: Same limitations as described in ProtectionForm.php (line 37);
2545 # we expect a single selection, but the schema allows otherwise.
2546 $current = array();
2547 $updated = Article::flattenRestrictions( $limit );
2548 $changed = false;
2549
2550 foreach ( $restrictionTypes as $action ) {
2551 if ( isset( $expiry[$action] ) ) {
2552 # Get current restrictions on $action
2553 $aLimits = $this->mTitle->getRestrictions( $action );
2554 $current[$action] = implode( '', $aLimits );
2555 # Are any actual restrictions being dealt with here?
2556 $aRChanged = count( $aLimits ) || !empty( $limit[$action] );
2557
2558 # If something changed, we need to log it. Checking $aRChanged
2559 # assures that "unprotecting" a page that is not protected does
2560 # not log just because the expiry was "changed".
2561 if ( $aRChanged && $this->mTitle->mRestrictionsExpiry[$action] != $expiry[$action] ) {
2562 $changed = true;
2563 }
2564 }
2565 }
2566
2567 $current = Article::flattenRestrictions( $current );
2568
2569 $changed = ( $changed || $current != $updated );
2570 $changed = $changed || ( $updated && $this->mTitle->areRestrictionsCascading() != $cascade );
2571 $protect = ( $updated != '' );
2572
2573 # If nothing's changed, do nothing
2574 if ( $changed ) {
2575 if ( wfRunHooks( 'ArticleProtect', array( &$this, &$wgUser, $limit, $reason ) ) ) {
2576 $dbw = wfGetDB( DB_MASTER );
2577
2578 # Prepare a null revision to be added to the history
2579 $modified = $current != '' && $protect;
2580
2581 if ( $protect ) {
2582 $comment_type = $modified ? 'modifiedarticleprotection' : 'protectedarticle';
2583 } else {
2584 $comment_type = 'unprotectedarticle';
2585 }
2586
2587 $comment = $wgContLang->ucfirst( wfMsgForContent( $comment_type, $this->mTitle->getPrefixedText() ) );
2588
2589 # Only restrictions with the 'protect' right can cascade...
2590 # Otherwise, people who cannot normally protect can "protect" pages via transclusion
2591 $editrestriction = isset( $limit['edit'] ) ? array( $limit['edit'] ) : $this->mTitle->getRestrictions( 'edit' );
2592
2593 # The schema allows multiple restrictions
2594 if ( !in_array( 'protect', $editrestriction ) && !in_array( 'sysop', $editrestriction ) ) {
2595 $cascade = false;
2596 }
2597
2598 $cascade_description = '';
2599
2600 if ( $cascade ) {
2601 $cascade_description = ' [' . wfMsgForContent( 'protect-summary-cascade' ) . ']';
2602 }
2603
2604 if ( $reason ) {
2605 $comment .= ": $reason";
2606 }
2607
2608 $editComment = $comment;
2609 $encodedExpiry = array();
2610 $protect_description = '';
2611 foreach ( $limit as $action => $restrictions ) {
2612 if ( !isset( $expiry[$action] ) )
2613 $expiry[$action] = Block::infinity();
2614
2615 $encodedExpiry[$action] = Block::encodeExpiry( $expiry[$action], $dbw );
2616 if ( $restrictions != '' ) {
2617 $protect_description .= "[$action=$restrictions] (";
2618 if ( $encodedExpiry[$action] != 'infinity' ) {
2619 $protect_description .= wfMsgForContent( 'protect-expiring',
2620 $wgContLang->timeanddate( $expiry[$action], false, false ) ,
2621 $wgContLang->date( $expiry[$action], false, false ) ,
2622 $wgContLang->time( $expiry[$action], false, false ) );
2623 } else {
2624 $protect_description .= wfMsgForContent( 'protect-expiry-indefinite' );
2625 }
2626
2627 $protect_description .= ') ';
2628 }
2629 }
2630 $protect_description = trim( $protect_description );
2631
2632 if ( $protect_description && $protect ) {
2633 $editComment .= " ($protect_description)";
2634 }
2635
2636 if ( $cascade ) {
2637 $editComment .= "$cascade_description";
2638 }
2639
2640 # Update restrictions table
2641 foreach ( $limit as $action => $restrictions ) {
2642 if ( $restrictions != '' ) {
2643 $dbw->replace( 'page_restrictions', array( array( 'pr_page', 'pr_type' ) ),
2644 array( 'pr_page' => $id,
2645 'pr_type' => $action,
2646 'pr_level' => $restrictions,
2647 'pr_cascade' => ( $cascade && $action == 'edit' ) ? 1 : 0,
2648 'pr_expiry' => $encodedExpiry[$action]
2649 ),
2650 __METHOD__
2651 );
2652 } else {
2653 $dbw->delete( 'page_restrictions', array( 'pr_page' => $id,
2654 'pr_type' => $action ), __METHOD__ );
2655 }
2656 }
2657
2658 # Insert a null revision
2659 $nullRevision = Revision::newNullRevision( $dbw, $id, $editComment, true );
2660 $nullRevId = $nullRevision->insertOn( $dbw );
2661
2662 $latest = $this->getLatest();
2663 # Update page record
2664 $dbw->update( 'page',
2665 array( /* SET */
2666 'page_touched' => $dbw->timestamp(),
2667 'page_restrictions' => '',
2668 'page_latest' => $nullRevId
2669 ), array( /* WHERE */
2670 'page_id' => $id
2671 ), 'Article::protect'
2672 );
2673
2674 wfRunHooks( 'NewRevisionFromEditComplete', array( $this, $nullRevision, $latest, $wgUser ) );
2675 wfRunHooks( 'ArticleProtectComplete', array( &$this, &$wgUser, $limit, $reason ) );
2676
2677 # Update the protection log
2678 $log = new LogPage( 'protect' );
2679 if ( $protect ) {
2680 $params = array( $protect_description, $cascade ? 'cascade' : '' );
2681 $log->addEntry( $modified ? 'modify' : 'protect', $this->mTitle, trim( $reason ), $params );
2682 } else {
2683 $log->addEntry( 'unprotect', $this->mTitle, $reason );
2684 }
2685 } # End hook
2686 } # End "changed" check
2687
2688 return true;
2689 }
2690
2691 /**
2692 * Take an array of page restrictions and flatten it to a string
2693 * suitable for insertion into the page_restrictions field.
2694 * @param $limit Array
2695 * @return String
2696 */
2697 protected static function flattenRestrictions( $limit ) {
2698 if ( !is_array( $limit ) ) {
2699 throw new MWException( 'Article::flattenRestrictions given non-array restriction set' );
2700 }
2701
2702 $bits = array();
2703 ksort( $limit );
2704
2705 foreach ( $limit as $action => $restrictions ) {
2706 if ( $restrictions != '' ) {
2707 $bits[] = "$action=$restrictions";
2708 }
2709 }
2710
2711 return implode( ':', $bits );
2712 }
2713
2714 /**
2715 * Auto-generates a deletion reason
2716 *
2717 * @param &$hasHistory Boolean: whether the page has a history
2718 * @return mixed String containing deletion reason or empty string, or boolean false
2719 * if no revision occurred
2720 */
2721 public function generateReason( &$hasHistory ) {
2722 global $wgContLang;
2723
2724 $dbw = wfGetDB( DB_MASTER );
2725 // Get the last revision
2726 $rev = Revision::newFromTitle( $this->mTitle );
2727
2728 if ( is_null( $rev ) ) {
2729 return false;
2730 }
2731
2732 // Get the article's contents
2733 $contents = $rev->getText();
2734 $blank = false;
2735
2736 // If the page is blank, use the text from the previous revision,
2737 // which can only be blank if there's a move/import/protect dummy revision involved
2738 if ( $contents == '' ) {
2739 $prev = $rev->getPrevious();
2740
2741 if ( $prev ) {
2742 $contents = $prev->getText();
2743 $blank = true;
2744 }
2745 }
2746
2747 // Find out if there was only one contributor
2748 // Only scan the last 20 revisions
2749 $res = $dbw->select( 'revision', 'rev_user_text',
2750 array( 'rev_page' => $this->getID(), $dbw->bitAnd( 'rev_deleted', Revision::DELETED_USER ) . ' = 0' ),
2751 __METHOD__,
2752 array( 'LIMIT' => 20 )
2753 );
2754
2755 if ( $res === false ) {
2756 // This page has no revisions, which is very weird
2757 return false;
2758 }
2759
2760 $hasHistory = ( $res->numRows() > 1 );
2761 $row = $dbw->fetchObject( $res );
2762
2763 if ( $row ) { // $row is false if the only contributor is hidden
2764 $onlyAuthor = $row->rev_user_text;
2765 // Try to find a second contributor
2766 foreach ( $res as $row ) {
2767 if ( $row->rev_user_text != $onlyAuthor ) { // Bug 22999
2768 $onlyAuthor = false;
2769 break;
2770 }
2771 }
2772 } else {
2773 $onlyAuthor = false;
2774 }
2775
2776 // Generate the summary with a '$1' placeholder
2777 if ( $blank ) {
2778 // The current revision is blank and the one before is also
2779 // blank. It's just not our lucky day
2780 $reason = wfMsgForContent( 'exbeforeblank', '$1' );
2781 } else {
2782 if ( $onlyAuthor ) {
2783 $reason = wfMsgForContent( 'excontentauthor', '$1', $onlyAuthor );
2784 } else {
2785 $reason = wfMsgForContent( 'excontent', '$1' );
2786 }
2787 }
2788
2789 if ( $reason == '-' ) {
2790 // Allow these UI messages to be blanked out cleanly
2791 return '';
2792 }
2793
2794 // Replace newlines with spaces to prevent uglyness
2795 $contents = preg_replace( "/[\n\r]/", ' ', $contents );
2796 // Calculate the maximum amount of chars to get
2797 // Max content length = max comment length - length of the comment (excl. $1) - '...'
2798 $maxLength = 255 - ( strlen( $reason ) - 2 ) - 3;
2799 $contents = $wgContLang->truncate( $contents, $maxLength );
2800 // Remove possible unfinished links
2801 $contents = preg_replace( '/\[\[([^\]]*)\]?$/', '$1', $contents );
2802 // Now replace the '$1' placeholder
2803 $reason = str_replace( '$1', $contents, $reason );
2804
2805 return $reason;
2806 }
2807
2808
2809 /*
2810 * UI entry point for page deletion
2811 */
2812 public function delete() {
2813 global $wgUser, $wgOut, $wgRequest;
2814
2815 $confirm = $wgRequest->wasPosted() &&
2816 $wgUser->matchEditToken( $wgRequest->getVal( 'wpEditToken' ) );
2817
2818 $this->DeleteReasonList = $wgRequest->getText( 'wpDeleteReasonList', 'other' );
2819 $this->DeleteReason = $wgRequest->getText( 'wpReason' );
2820
2821 $reason = $this->DeleteReasonList;
2822
2823 if ( $reason != 'other' && $this->DeleteReason != '' ) {
2824 // Entry from drop down menu + additional comment
2825 $reason .= wfMsgForContent( 'colon-separator' ) . $this->DeleteReason;
2826 } elseif ( $reason == 'other' ) {
2827 $reason = $this->DeleteReason;
2828 }
2829
2830 # Flag to hide all contents of the archived revisions
2831 $suppress = $wgRequest->getVal( 'wpSuppress' ) && $wgUser->isAllowed( 'suppressrevision' );
2832
2833 # This code desperately needs to be totally rewritten
2834
2835 # Read-only check...
2836 if ( wfReadOnly() ) {
2837 $wgOut->readOnlyPage();
2838
2839 return;
2840 }
2841
2842 # Check permissions
2843 $permission_errors = $this->mTitle->getUserPermissionsErrors( 'delete', $wgUser );
2844
2845 if ( count( $permission_errors ) > 0 ) {
2846 $wgOut->showPermissionsErrorPage( $permission_errors );
2847
2848 return;
2849 }
2850
2851 $wgOut->setPagetitle( wfMsg( 'delete-confirm', $this->mTitle->getPrefixedText() ) );
2852
2853 # Better double-check that it hasn't been deleted yet!
2854 $dbw = wfGetDB( DB_MASTER );
2855 $conds = $this->mTitle->pageCond();
2856 $latest = $dbw->selectField( 'page', 'page_latest', $conds, __METHOD__ );
2857 if ( $latest === false ) {
2858 $wgOut->showFatalError(
2859 Html::rawElement(
2860 'div',
2861 array( 'class' => 'error mw-error-cannotdelete' ),
2862 wfMsgExt( 'cannotdelete', array( 'parse' ), $this->mTitle->getPrefixedText() )
2863 )
2864 );
2865 $wgOut->addHTML( Xml::element( 'h2', null, LogPage::logName( 'delete' ) ) );
2866 LogEventsList::showLogExtract(
2867 $wgOut,
2868 'delete',
2869 $this->mTitle->getPrefixedText()
2870 );
2871
2872 return;
2873 }
2874
2875 # Hack for big sites
2876 $bigHistory = $this->isBigDeletion();
2877 if ( $bigHistory && !$this->mTitle->userCan( 'bigdelete' ) ) {
2878 global $wgLang, $wgDeleteRevisionsLimit;
2879
2880 $wgOut->wrapWikiMsg( "<div class='error'>\n$1\n</div>\n",
2881 array( 'delete-toobig', $wgLang->formatNum( $wgDeleteRevisionsLimit ) ) );
2882
2883 return;
2884 }
2885
2886 if ( $confirm ) {
2887 $this->doDelete( $reason, $suppress );
2888
2889 if ( $wgRequest->getCheck( 'wpWatch' ) && $wgUser->isLoggedIn() ) {
2890 $this->doWatch();
2891 } elseif ( $this->mTitle->userIsWatching() ) {
2892 $this->doUnwatch();
2893 }
2894
2895 return;
2896 }
2897
2898 // Generate deletion reason
2899 $hasHistory = false;
2900 if ( !$reason ) {
2901 $reason = $this->generateReason( $hasHistory );
2902 }
2903
2904 // If the page has a history, insert a warning
2905 if ( $hasHistory && !$confirm ) {
2906 global $wgLang;
2907
2908 $skin = $wgUser->getSkin();
2909 $revisions = $this->estimateRevisionCount();
2910 //FIXME: lego
2911 $wgOut->addHTML( '<strong class="mw-delete-warning-revisions">' .
2912 wfMsgExt( 'historywarning', array( 'parseinline' ), $wgLang->formatNum( $revisions ) ) .
2913 wfMsgHtml( 'word-separator' ) . $skin->historyLink() .
2914 '</strong>'
2915 );
2916
2917 if ( $bigHistory ) {
2918 global $wgDeleteRevisionsLimit;
2919 $wgOut->wrapWikiMsg( "<div class='error'>\n$1\n</div>\n",
2920 array( 'delete-warning-toobig', $wgLang->formatNum( $wgDeleteRevisionsLimit ) ) );
2921 }
2922 }
2923
2924 return $this->confirmDelete( $reason );
2925 }
2926
2927 /**
2928 * @return bool whether or not the page surpasses $wgDeleteRevisionsLimit revisions
2929 */
2930 public function isBigDeletion() {
2931 global $wgDeleteRevisionsLimit;
2932
2933 if ( $wgDeleteRevisionsLimit ) {
2934 $revCount = $this->estimateRevisionCount();
2935
2936 return $revCount > $wgDeleteRevisionsLimit;
2937 }
2938
2939 return false;
2940 }
2941
2942 /**
2943 * @return int approximate revision count
2944 */
2945 public function estimateRevisionCount() {
2946 $dbr = wfGetDB( DB_SLAVE );
2947
2948 // For an exact count...
2949 // return $dbr->selectField( 'revision', 'COUNT(*)',
2950 // array( 'rev_page' => $this->getId() ), __METHOD__ );
2951 return $dbr->estimateRowCount( 'revision', '*',
2952 array( 'rev_page' => $this->getId() ), __METHOD__ );
2953 }
2954
2955 /**
2956 * Get the last N authors
2957 * @param $num Integer: number of revisions to get
2958 * @param $revLatest String: the latest rev_id, selected from the master (optional)
2959 * @return array Array of authors, duplicates not removed
2960 */
2961 public function getLastNAuthors( $num, $revLatest = 0 ) {
2962 wfProfileIn( __METHOD__ );
2963 // First try the slave
2964 // If that doesn't have the latest revision, try the master
2965 $continue = 2;
2966 $db = wfGetDB( DB_SLAVE );
2967
2968 do {
2969 $res = $db->select( array( 'page', 'revision' ),
2970 array( 'rev_id', 'rev_user_text' ),
2971 array(
2972 'page_namespace' => $this->mTitle->getNamespace(),
2973 'page_title' => $this->mTitle->getDBkey(),
2974 'rev_page = page_id'
2975 ), __METHOD__, $this->getSelectOptions( array(
2976 'ORDER BY' => 'rev_timestamp DESC',
2977 'LIMIT' => $num
2978 ) )
2979 );
2980
2981 if ( !$res ) {
2982 wfProfileOut( __METHOD__ );
2983 return array();
2984 }
2985
2986 $row = $db->fetchObject( $res );
2987
2988 if ( $continue == 2 && $revLatest && $row->rev_id != $revLatest ) {
2989 $db = wfGetDB( DB_MASTER );
2990 $continue--;
2991 } else {
2992 $continue = 0;
2993 }
2994 } while ( $continue );
2995
2996 $authors = array( $row->rev_user_text );
2997
2998 foreach ( $res as $row ) {
2999 $authors[] = $row->rev_user_text;
3000 }
3001
3002 wfProfileOut( __METHOD__ );
3003 return $authors;
3004 }
3005
3006 /**
3007 * Output deletion confirmation dialog
3008 * FIXME: Move to another file?
3009 * @param $reason String: prefilled reason
3010 */
3011 public function confirmDelete( $reason ) {
3012 global $wgOut, $wgUser;
3013
3014 wfDebug( "Article::confirmDelete\n" );
3015
3016 $deleteBackLink = $wgUser->getSkin()->linkKnown( $this->mTitle );
3017 $wgOut->setSubtitle( wfMsgHtml( 'delete-backlink', $deleteBackLink ) );
3018 $wgOut->setRobotPolicy( 'noindex,nofollow' );
3019 $wgOut->addWikiMsg( 'confirmdeletetext' );
3020
3021 wfRunHooks( 'ArticleConfirmDelete', array( $this, $wgOut, &$reason ) );
3022
3023 if ( $wgUser->isAllowed( 'suppressrevision' ) ) {
3024 $suppress = "<tr id=\"wpDeleteSuppressRow\">
3025 <td></td>
3026 <td class='mw-input'><strong>" .
3027 Xml::checkLabel( wfMsg( 'revdelete-suppress' ),
3028 'wpSuppress', 'wpSuppress', false, array( 'tabindex' => '4' ) ) .
3029 "</strong></td>
3030 </tr>";
3031 } else {
3032 $suppress = '';
3033 }
3034 $checkWatch = $wgUser->getBoolOption( 'watchdeletion' ) || $this->mTitle->userIsWatching();
3035
3036 $form = Xml::openElement( 'form', array( 'method' => 'post',
3037 'action' => $this->mTitle->getLocalURL( 'action=delete' ), 'id' => 'deleteconfirm' ) ) .
3038 Xml::openElement( 'fieldset', array( 'id' => 'mw-delete-table' ) ) .
3039 Xml::tags( 'legend', null, wfMsgExt( 'delete-legend', array( 'parsemag', 'escapenoentities' ) ) ) .
3040 Xml::openElement( 'table', array( 'id' => 'mw-deleteconfirm-table' ) ) .
3041 "<tr id=\"wpDeleteReasonListRow\">
3042 <td class='mw-label'>" .
3043 Xml::label( wfMsg( 'deletecomment' ), 'wpDeleteReasonList' ) .
3044 "</td>
3045 <td class='mw-input'>" .
3046 Xml::listDropDown( 'wpDeleteReasonList',
3047 wfMsgForContent( 'deletereason-dropdown' ),
3048 wfMsgForContent( 'deletereasonotherlist' ), '', 'wpReasonDropDown', 1 ) .
3049 "</td>
3050 </tr>
3051 <tr id=\"wpDeleteReasonRow\">
3052 <td class='mw-label'>" .
3053 Xml::label( wfMsg( 'deleteotherreason' ), 'wpReason' ) .
3054 "</td>
3055 <td class='mw-input'>" .
3056 Html::input( 'wpReason', $reason, 'text', array(
3057 'size' => '60',
3058 'maxlength' => '255',
3059 'tabindex' => '2',
3060 'id' => 'wpReason',
3061 'autofocus'
3062 ) ) .
3063 "</td>
3064 </tr>";
3065
3066 # Disallow watching if user is not logged in
3067 if ( $wgUser->isLoggedIn() ) {
3068 $form .= "
3069 <tr>
3070 <td></td>
3071 <td class='mw-input'>" .
3072 Xml::checkLabel( wfMsg( 'watchthis' ),
3073 'wpWatch', 'wpWatch', $checkWatch, array( 'tabindex' => '3' ) ) .
3074 "</td>
3075 </tr>";
3076 }
3077
3078 $form .= "
3079 $suppress
3080 <tr>
3081 <td></td>
3082 <td class='mw-submit'>" .
3083 Xml::submitButton( wfMsg( 'deletepage' ),
3084 array( 'name' => 'wpConfirmB', 'id' => 'wpConfirmB', 'tabindex' => '5' ) ) .
3085 "</td>
3086 </tr>" .
3087 Xml::closeElement( 'table' ) .
3088 Xml::closeElement( 'fieldset' ) .
3089 Html::hidden( 'wpEditToken', $wgUser->editToken() ) .
3090 Xml::closeElement( 'form' );
3091
3092 if ( $wgUser->isAllowed( 'editinterface' ) ) {
3093 $skin = $wgUser->getSkin();
3094 $title = Title::makeTitle( NS_MEDIAWIKI, 'Deletereason-dropdown' );
3095 $link = $skin->link(
3096 $title,
3097 wfMsgHtml( 'delete-edit-reasonlist' ),
3098 array(),
3099 array( 'action' => 'edit' )
3100 );
3101 $form .= '<p class="mw-delete-editreasons">' . $link . '</p>';
3102 }
3103
3104 $wgOut->addHTML( $form );
3105 $wgOut->addHTML( Xml::element( 'h2', null, LogPage::logName( 'delete' ) ) );
3106 LogEventsList::showLogExtract( $wgOut, 'delete',
3107 $this->mTitle->getPrefixedText()
3108 );
3109 }
3110
3111 /**
3112 * Perform a deletion and output success or failure messages
3113 */
3114 public function doDelete( $reason, $suppress = false ) {
3115 global $wgOut, $wgUser;
3116
3117 $id = $this->mTitle->getArticleID( Title::GAID_FOR_UPDATE );
3118
3119 $error = '';
3120 if ( wfRunHooks( 'ArticleDelete', array( &$this, &$wgUser, &$reason, &$error ) ) ) {
3121 if ( $this->doDeleteArticle( $reason, $suppress, $id ) ) {
3122 $deleted = $this->mTitle->getPrefixedText();
3123
3124 $wgOut->setPagetitle( wfMsg( 'actioncomplete' ) );
3125 $wgOut->setRobotPolicy( 'noindex,nofollow' );
3126
3127 $loglink = '[[Special:Log/delete|' . wfMsgNoTrans( 'deletionlog' ) . ']]';
3128
3129 $wgOut->addWikiMsg( 'deletedtext', $deleted, $loglink );
3130 $wgOut->returnToMain( false );
3131 wfRunHooks( 'ArticleDeleteComplete', array( &$this, &$wgUser, $reason, $id ) );
3132 }
3133 } else {
3134 if ( $error == '' ) {
3135 $wgOut->showFatalError(
3136 Html::rawElement(
3137 'div',
3138 array( 'class' => 'error mw-error-cannotdelete' ),
3139 wfMsgExt( 'cannotdelete', array( 'parse' ), $this->mTitle->getPrefixedText() )
3140 )
3141 );
3142
3143 $wgOut->addHTML( Xml::element( 'h2', null, LogPage::logName( 'delete' ) ) );
3144
3145 LogEventsList::showLogExtract(
3146 $wgOut,
3147 'delete',
3148 $this->mTitle->getPrefixedText()
3149 );
3150 } else {
3151 $wgOut->showFatalError( $error );
3152 }
3153 }
3154 }
3155
3156 /**
3157 * Back-end article deletion
3158 * Deletes the article with database consistency, writes logs, purges caches
3159 *
3160 * @param $reason string delete reason for deletion log
3161 * @param suppress bitfield
3162 * Revision::DELETED_TEXT
3163 * Revision::DELETED_COMMENT
3164 * Revision::DELETED_USER
3165 * Revision::DELETED_RESTRICTED
3166 * @param $id int article ID
3167 * @param $commit boolean defaults to true, triggers transaction end
3168 * @return boolean true if successful
3169 */
3170 public function doDeleteArticle( $reason, $suppress = false, $id = 0, $commit = true ) {
3171 global $wgDeferredUpdateList, $wgUseTrackbacks;
3172
3173 wfDebug( __METHOD__ . "\n" );
3174
3175 $dbw = wfGetDB( DB_MASTER );
3176 $t = $this->mTitle->getDBkey();
3177 $id = $id ? $id : $this->mTitle->getArticleID( Title::GAID_FOR_UPDATE );
3178
3179 if ( $t === '' || $id == 0 ) {
3180 return false;
3181 }
3182
3183 $u = new SiteStatsUpdate( 0, 1, - (int)$this->isCountable( $this->getRawText() ), -1 );
3184 array_push( $wgDeferredUpdateList, $u );
3185
3186 // Bitfields to further suppress the content
3187 if ( $suppress ) {
3188 $bitfield = 0;
3189 // This should be 15...
3190 $bitfield |= Revision::DELETED_TEXT;
3191 $bitfield |= Revision::DELETED_COMMENT;
3192 $bitfield |= Revision::DELETED_USER;
3193 $bitfield |= Revision::DELETED_RESTRICTED;
3194 } else {
3195 $bitfield = 'rev_deleted';
3196 }
3197
3198 $dbw->begin();
3199 // For now, shunt the revision data into the archive table.
3200 // Text is *not* removed from the text table; bulk storage
3201 // is left intact to avoid breaking block-compression or
3202 // immutable storage schemes.
3203 //
3204 // For backwards compatibility, note that some older archive
3205 // table entries will have ar_text and ar_flags fields still.
3206 //
3207 // In the future, we may keep revisions and mark them with
3208 // the rev_deleted field, which is reserved for this purpose.
3209 $dbw->insertSelect( 'archive', array( 'page', 'revision' ),
3210 array(
3211 'ar_namespace' => 'page_namespace',
3212 'ar_title' => 'page_title',
3213 'ar_comment' => 'rev_comment',
3214 'ar_user' => 'rev_user',
3215 'ar_user_text' => 'rev_user_text',
3216 'ar_timestamp' => 'rev_timestamp',
3217 'ar_minor_edit' => 'rev_minor_edit',
3218 'ar_rev_id' => 'rev_id',
3219 'ar_text_id' => 'rev_text_id',
3220 'ar_text' => '\'\'', // Be explicit to appease
3221 'ar_flags' => '\'\'', // MySQL's "strict mode"...
3222 'ar_len' => 'rev_len',
3223 'ar_page_id' => 'page_id',
3224 'ar_deleted' => $bitfield
3225 ), array(
3226 'page_id' => $id,
3227 'page_id = rev_page'
3228 ), __METHOD__
3229 );
3230
3231 # Delete restrictions for it
3232 $dbw->delete( 'page_restrictions', array ( 'pr_page' => $id ), __METHOD__ );
3233
3234 # Now that it's safely backed up, delete it
3235 $dbw->delete( 'page', array( 'page_id' => $id ), __METHOD__ );
3236 $ok = ( $dbw->affectedRows() > 0 ); // getArticleId() uses slave, could be laggy
3237
3238 if ( !$ok ) {
3239 $dbw->rollback();
3240 return false;
3241 }
3242
3243 # Fix category table counts
3244 $cats = array();
3245 $res = $dbw->select( 'categorylinks', 'cl_to', array( 'cl_from' => $id ), __METHOD__ );
3246
3247 foreach ( $res as $row ) {
3248 $cats [] = $row->cl_to;
3249 }
3250
3251 $this->updateCategoryCounts( array(), $cats );
3252
3253 # If using cascading deletes, we can skip some explicit deletes
3254 if ( !$dbw->cascadingDeletes() ) {
3255 $dbw->delete( 'revision', array( 'rev_page' => $id ), __METHOD__ );
3256
3257 if ( $wgUseTrackbacks )
3258 $dbw->delete( 'trackbacks', array( 'tb_page' => $id ), __METHOD__ );
3259
3260 # Delete outgoing links
3261 $dbw->delete( 'pagelinks', array( 'pl_from' => $id ) );
3262 $dbw->delete( 'imagelinks', array( 'il_from' => $id ) );
3263 $dbw->delete( 'categorylinks', array( 'cl_from' => $id ) );
3264 $dbw->delete( 'templatelinks', array( 'tl_from' => $id ) );
3265 $dbw->delete( 'externallinks', array( 'el_from' => $id ) );
3266 $dbw->delete( 'langlinks', array( 'll_from' => $id ) );
3267 $dbw->delete( 'redirect', array( 'rd_from' => $id ) );
3268 }
3269
3270 # If using cleanup triggers, we can skip some manual deletes
3271 if ( !$dbw->cleanupTriggers() ) {
3272 # Clean up recentchanges entries...
3273 $dbw->delete( 'recentchanges',
3274 array( 'rc_type != ' . RC_LOG,
3275 'rc_namespace' => $this->mTitle->getNamespace(),
3276 'rc_title' => $this->mTitle->getDBkey() ),
3277 __METHOD__ );
3278 $dbw->delete( 'recentchanges',
3279 array( 'rc_type != ' . RC_LOG, 'rc_cur_id' => $id ),
3280 __METHOD__ );
3281 }
3282
3283 # Clear caches
3284 Article::onArticleDelete( $this->mTitle );
3285
3286 # Clear the cached article id so the interface doesn't act like we exist
3287 $this->mTitle->resetArticleID( 0 );
3288
3289 # Log the deletion, if the page was suppressed, log it at Oversight instead
3290 $logtype = $suppress ? 'suppress' : 'delete';
3291 $log = new LogPage( $logtype );
3292
3293 # Make sure logging got through
3294 $log->addEntry( 'delete', $this->mTitle, $reason, array() );
3295
3296 if ( $commit ) {
3297 $dbw->commit();
3298 }
3299
3300 return true;
3301 }
3302
3303 /**
3304 * Roll back the most recent consecutive set of edits to a page
3305 * from the same user; fails if there are no eligible edits to
3306 * roll back to, e.g. user is the sole contributor. This function
3307 * performs permissions checks on $wgUser, then calls commitRollback()
3308 * to do the dirty work
3309 *
3310 * @param $fromP String: Name of the user whose edits to rollback.
3311 * @param $summary String: Custom summary. Set to default summary if empty.
3312 * @param $token String: Rollback token.
3313 * @param $bot Boolean: If true, mark all reverted edits as bot.
3314 *
3315 * @param $resultDetails Array: contains result-specific array of additional values
3316 * 'alreadyrolled' : 'current' (rev)
3317 * success : 'summary' (str), 'current' (rev), 'target' (rev)
3318 *
3319 * @return array of errors, each error formatted as
3320 * array(messagekey, param1, param2, ...).
3321 * On success, the array is empty. This array can also be passed to
3322 * OutputPage::showPermissionsErrorPage().
3323 */
3324 public function doRollback( $fromP, $summary, $token, $bot, &$resultDetails ) {
3325 global $wgUser;
3326
3327 $resultDetails = null;
3328
3329 # Check permissions
3330 $editErrors = $this->mTitle->getUserPermissionsErrors( 'edit', $wgUser );
3331 $rollbackErrors = $this->mTitle->getUserPermissionsErrors( 'rollback', $wgUser );
3332 $errors = array_merge( $editErrors, wfArrayDiff2( $rollbackErrors, $editErrors ) );
3333
3334 if ( !$wgUser->matchEditToken( $token, array( $this->mTitle->getPrefixedText(), $fromP ) ) ) {
3335 $errors[] = array( 'sessionfailure' );
3336 }
3337
3338 if ( $wgUser->pingLimiter( 'rollback' ) || $wgUser->pingLimiter() ) {
3339 $errors[] = array( 'actionthrottledtext' );
3340 }
3341
3342 # If there were errors, bail out now
3343 if ( !empty( $errors ) ) {
3344 return $errors;
3345 }
3346
3347 return $this->commitRollback( $fromP, $summary, $bot, $resultDetails );
3348 }
3349
3350 /**
3351 * Backend implementation of doRollback(), please refer there for parameter
3352 * and return value documentation
3353 *
3354 * NOTE: This function does NOT check ANY permissions, it just commits the
3355 * rollback to the DB Therefore, you should only call this function direct-
3356 * ly if you want to use custom permissions checks. If you don't, use
3357 * doRollback() instead.
3358 */
3359 public function commitRollback( $fromP, $summary, $bot, &$resultDetails ) {
3360 global $wgUseRCPatrol, $wgUser, $wgLang;
3361
3362 $dbw = wfGetDB( DB_MASTER );
3363
3364 if ( wfReadOnly() ) {
3365 return array( array( 'readonlytext' ) );
3366 }
3367
3368 # Get the last editor
3369 $current = Revision::newFromTitle( $this->mTitle );
3370 if ( is_null( $current ) ) {
3371 # Something wrong... no page?
3372 return array( array( 'notanarticle' ) );
3373 }
3374
3375 $from = str_replace( '_', ' ', $fromP );
3376 # User name given should match up with the top revision.
3377 # If the user was deleted then $from should be empty.
3378 if ( $from != $current->getUserText() ) {
3379 $resultDetails = array( 'current' => $current );
3380 return array( array( 'alreadyrolled',
3381 htmlspecialchars( $this->mTitle->getPrefixedText() ),
3382 htmlspecialchars( $fromP ),
3383 htmlspecialchars( $current->getUserText() )
3384 ) );
3385 }
3386
3387 # Get the last edit not by this guy...
3388 # Note: these may not be public values
3389 $user = intval( $current->getRawUser() );
3390 $user_text = $dbw->addQuotes( $current->getRawUserText() );
3391 $s = $dbw->selectRow( 'revision',
3392 array( 'rev_id', 'rev_timestamp', 'rev_deleted' ),
3393 array( 'rev_page' => $current->getPage(),
3394 "rev_user != {$user} OR rev_user_text != {$user_text}"
3395 ), __METHOD__,
3396 array( 'USE INDEX' => 'page_timestamp',
3397 'ORDER BY' => 'rev_timestamp DESC' )
3398 );
3399 if ( $s === false ) {
3400 # No one else ever edited this page
3401 return array( array( 'cantrollback' ) );
3402 } else if ( $s->rev_deleted & Revision::DELETED_TEXT || $s->rev_deleted & Revision::DELETED_USER ) {
3403 # Only admins can see this text
3404 return array( array( 'notvisiblerev' ) );
3405 }
3406
3407 $set = array();
3408 if ( $bot && $wgUser->isAllowed( 'markbotedits' ) ) {
3409 # Mark all reverted edits as bot
3410 $set['rc_bot'] = 1;
3411 }
3412
3413 if ( $wgUseRCPatrol ) {
3414 # Mark all reverted edits as patrolled
3415 $set['rc_patrolled'] = 1;
3416 }
3417
3418 if ( count( $set ) ) {
3419 $dbw->update( 'recentchanges', $set,
3420 array( /* WHERE */
3421 'rc_cur_id' => $current->getPage(),
3422 'rc_user_text' => $current->getUserText(),
3423 "rc_timestamp > '{$s->rev_timestamp}'",
3424 ), __METHOD__
3425 );
3426 }
3427
3428 # Generate the edit summary if necessary
3429 $target = Revision::newFromId( $s->rev_id );
3430 if ( empty( $summary ) ) {
3431 if ( $from == '' ) { // no public user name
3432 $summary = wfMsgForContent( 'revertpage-nouser' );
3433 } else {
3434 $summary = wfMsgForContent( 'revertpage' );
3435 }
3436 }
3437
3438 # Allow the custom summary to use the same args as the default message
3439 $args = array(
3440 $target->getUserText(), $from, $s->rev_id,
3441 $wgLang->timeanddate( wfTimestamp( TS_MW, $s->rev_timestamp ), true ),
3442 $current->getId(), $wgLang->timeanddate( $current->getTimestamp() )
3443 );
3444 $summary = wfMsgReplaceArgs( $summary, $args );
3445
3446 # Save
3447 $flags = EDIT_UPDATE;
3448
3449 if ( $wgUser->isAllowed( 'minoredit' ) ) {
3450 $flags |= EDIT_MINOR;
3451 }
3452
3453 if ( $bot && ( $wgUser->isAllowed( 'markbotedits' ) || $wgUser->isAllowed( 'bot' ) ) ) {
3454 $flags |= EDIT_FORCE_BOT;
3455 }
3456
3457 # Actually store the edit
3458 $status = $this->doEdit( $target->getText(), $summary, $flags, $target->getId() );
3459 if ( !empty( $status->value['revision'] ) ) {
3460 $revId = $status->value['revision']->getId();
3461 } else {
3462 $revId = false;
3463 }
3464
3465 wfRunHooks( 'ArticleRollbackComplete', array( $this, $wgUser, $target, $current ) );
3466
3467 $resultDetails = array(
3468 'summary' => $summary,
3469 'current' => $current,
3470 'target' => $target,
3471 'newid' => $revId
3472 );
3473
3474 return array();
3475 }
3476
3477 /**
3478 * User interface for rollback operations
3479 */
3480 public function rollback() {
3481 global $wgUser, $wgOut, $wgRequest;
3482
3483 $details = null;
3484
3485 $result = $this->doRollback(
3486 $wgRequest->getVal( 'from' ),
3487 $wgRequest->getText( 'summary' ),
3488 $wgRequest->getVal( 'token' ),
3489 $wgRequest->getBool( 'bot' ),
3490 $details
3491 );
3492
3493 if ( in_array( array( 'actionthrottledtext' ), $result ) ) {
3494 $wgOut->rateLimited();
3495 return;
3496 }
3497
3498 if ( isset( $result[0][0] ) && ( $result[0][0] == 'alreadyrolled' || $result[0][0] == 'cantrollback' ) ) {
3499 $wgOut->setPageTitle( wfMsg( 'rollbackfailed' ) );
3500 $errArray = $result[0];
3501 $errMsg = array_shift( $errArray );
3502 $wgOut->addWikiMsgArray( $errMsg, $errArray );
3503
3504 if ( isset( $details['current'] ) ) {
3505 $current = $details['current'];
3506
3507 if ( $current->getComment() != '' ) {
3508 $wgOut->addWikiMsgArray( 'editcomment', array(
3509 $wgUser->getSkin()->formatComment( $current->getComment() ) ), array( 'replaceafter' ) );
3510 }
3511 }
3512
3513 return;
3514 }
3515
3516 # Display permissions errors before read-only message -- there's no
3517 # point in misleading the user into thinking the inability to rollback
3518 # is only temporary.
3519 if ( !empty( $result ) && $result !== array( array( 'readonlytext' ) ) ) {
3520 # array_diff is completely broken for arrays of arrays, sigh.
3521 # Remove any 'readonlytext' error manually.
3522 $out = array();
3523 foreach ( $result as $error ) {
3524 if ( $error != array( 'readonlytext' ) ) {
3525 $out [] = $error;
3526 }
3527 }
3528 $wgOut->showPermissionsErrorPage( $out );
3529
3530 return;
3531 }
3532
3533 if ( $result == array( array( 'readonlytext' ) ) ) {
3534 $wgOut->readOnlyPage();
3535
3536 return;
3537 }
3538
3539 $current = $details['current'];
3540 $target = $details['target'];
3541 $newId = $details['newid'];
3542 $wgOut->setPageTitle( wfMsg( 'actioncomplete' ) );
3543 $wgOut->setRobotPolicy( 'noindex,nofollow' );
3544
3545 if ( $current->getUserText() === '' ) {
3546 $old = wfMsg( 'rev-deleted-user' );
3547 } else {
3548 $old = $wgUser->getSkin()->userLink( $current->getUser(), $current->getUserText() )
3549 . $wgUser->getSkin()->userToolLinks( $current->getUser(), $current->getUserText() );
3550 }
3551
3552 $new = $wgUser->getSkin()->userLink( $target->getUser(), $target->getUserText() )
3553 . $wgUser->getSkin()->userToolLinks( $target->getUser(), $target->getUserText() );
3554 $wgOut->addHTML( wfMsgExt( 'rollback-success', array( 'parse', 'replaceafter' ), $old, $new ) );
3555 $wgOut->returnToMain( false, $this->mTitle );
3556
3557 if ( !$wgRequest->getBool( 'hidediff', false ) && !$wgUser->getBoolOption( 'norollbackdiff', false ) ) {
3558 $de = new DifferenceEngine( $this->mTitle, $current->getId(), $newId, false, true );
3559 $de->showDiff( '', '' );
3560 }
3561 }
3562
3563 /**
3564 * Do standard deferred updates after page view
3565 */
3566 public function viewUpdates() {
3567 global $wgDeferredUpdateList, $wgDisableCounters, $wgUser;
3568 if ( wfReadOnly() ) {
3569 return;
3570 }
3571
3572 # Don't update page view counters on views from bot users (bug 14044)
3573 if ( !$wgDisableCounters && !$wgUser->isAllowed( 'bot' ) && $this->getID() ) {
3574 $wgDeferredUpdateList[] = new ViewCountUpdate( $this->getID() );
3575 $wgDeferredUpdateList[] = new SiteStatsUpdate( 1, 0, 0 );
3576 }
3577
3578 # Update newtalk / watchlist notification status
3579 $wgUser->clearNotification( $this->mTitle );
3580 }
3581
3582 /**
3583 * Prepare text which is about to be saved.
3584 * Returns a stdclass with source, pst and output members
3585 */
3586 public function prepareTextForEdit( $text, $revid = null, User $user = null ) {
3587 if ( $this->mPreparedEdit && $this->mPreparedEdit->newText == $text && $this->mPreparedEdit->revid == $revid ) {
3588 // Already prepared
3589 return $this->mPreparedEdit;
3590 }
3591
3592 global $wgParser;
3593
3594 $edit = (object)array();
3595 $edit->revid = $revid;
3596 $edit->newText = $text;
3597 $edit->pst = $this->preSaveTransform( $text, $user );
3598 $edit->popts = $this->getParserOptions( true );
3599 $edit->output = $wgParser->parse( $edit->pst, $this->mTitle, $edit->popts, true, true, $revid );
3600 $edit->oldText = $this->getRawText();
3601
3602 $this->mPreparedEdit = $edit;
3603
3604 return $edit;
3605 }
3606
3607 /**
3608 * Do standard deferred updates after page edit.
3609 * Update links tables, site stats, search index and message cache.
3610 * Purges pages that include this page if the text was changed here.
3611 * Every 100th edit, prune the recent changes table.
3612 *
3613 * @private
3614 * @param $text String: New text of the article
3615 * @param $summary String: Edit summary
3616 * @param $minoredit Boolean: Minor edit
3617 * @param $timestamp_of_pagechange String timestamp associated with the page change
3618 * @param $newid Integer: rev_id value of the new revision
3619 * @param $changed Boolean: Whether or not the content actually changed
3620 * @param $user User object: User doing the edit
3621 */
3622 public function editUpdates( $text, $summary, $minoredit, $timestamp_of_pagechange, $newid, $changed = true, User $user = null ) {
3623 global $wgDeferredUpdateList, $wgMessageCache, $wgUser, $wgEnableParserCache;
3624
3625 wfProfileIn( __METHOD__ );
3626
3627 # Parse the text
3628 # Be careful not to double-PST: $text is usually already PST-ed once
3629 if ( !$this->mPreparedEdit || $this->mPreparedEdit->output->getFlag( 'vary-revision' ) ) {
3630 wfDebug( __METHOD__ . ": No prepared edit or vary-revision is set...\n" );
3631 $editInfo = $this->prepareTextForEdit( $text, $newid, $user );
3632 } else {
3633 wfDebug( __METHOD__ . ": No vary-revision, using prepared edit...\n" );
3634 $editInfo = $this->mPreparedEdit;
3635 }
3636
3637 # Save it to the parser cache
3638 if ( $wgEnableParserCache ) {
3639 $parserCache = ParserCache::singleton();
3640 $parserCache->save( $editInfo->output, $this, $editInfo->popts );
3641 }
3642
3643 # Update the links tables
3644 $u = new LinksUpdate( $this->mTitle, $editInfo->output );
3645 $u->doUpdate();
3646
3647 wfRunHooks( 'ArticleEditUpdates', array( &$this, &$editInfo, $changed ) );
3648
3649 if ( wfRunHooks( 'ArticleEditUpdatesDeleteFromRecentchanges', array( &$this ) ) ) {
3650 if ( 0 == mt_rand( 0, 99 ) ) {
3651 // Flush old entries from the `recentchanges` table; we do this on
3652 // random requests so as to avoid an increase in writes for no good reason
3653 global $wgRCMaxAge;
3654
3655 $dbw = wfGetDB( DB_MASTER );
3656 $cutoff = $dbw->timestamp( time() - $wgRCMaxAge );
3657 $recentchanges = $dbw->tableName( 'recentchanges' );
3658 $sql = "DELETE FROM $recentchanges WHERE rc_timestamp < '{$cutoff}'";
3659
3660 $dbw->query( $sql );
3661 }
3662 }
3663
3664 $id = $this->getID();
3665 $title = $this->mTitle->getPrefixedDBkey();
3666 $shortTitle = $this->mTitle->getDBkey();
3667
3668 if ( 0 == $id ) {
3669 wfProfileOut( __METHOD__ );
3670 return;
3671 }
3672
3673 $u = new SiteStatsUpdate( 0, 1, $this->mGoodAdjustment, $this->mTotalAdjustment );
3674 array_push( $wgDeferredUpdateList, $u );
3675 $u = new SearchUpdate( $id, $title, $text );
3676 array_push( $wgDeferredUpdateList, $u );
3677
3678 # If this is another user's talk page, update newtalk
3679 # Don't do this if $changed = false otherwise some idiot can null-edit a
3680 # load of user talk pages and piss people off, nor if it's a minor edit
3681 # by a properly-flagged bot.
3682 if ( $this->mTitle->getNamespace() == NS_USER_TALK && $shortTitle != $wgUser->getTitleKey() && $changed
3683 && !( $minoredit && $wgUser->isAllowed( 'nominornewtalk' ) )
3684 ) {
3685 if ( wfRunHooks( 'ArticleEditUpdateNewTalk', array( &$this ) ) ) {
3686 $other = User::newFromName( $shortTitle, false );
3687 if ( !$other ) {
3688 wfDebug( __METHOD__ . ": invalid username\n" );
3689 } elseif ( User::isIP( $shortTitle ) ) {
3690 // An anonymous user
3691 $other->setNewtalk( true );
3692 } elseif ( $other->isLoggedIn() ) {
3693 $other->setNewtalk( true );
3694 } else {
3695 wfDebug( __METHOD__ . ": don't need to notify a nonexistent user\n" );
3696 }
3697 }
3698 }
3699
3700 if ( $this->mTitle->getNamespace() == NS_MEDIAWIKI ) {
3701 $wgMessageCache->replace( $shortTitle, $text );
3702 }
3703
3704 wfProfileOut( __METHOD__ );
3705 }
3706
3707 /**
3708 * Perform article updates on a special page creation.
3709 *
3710 * @param $rev Revision object
3711 *
3712 * @todo This is a shitty interface function. Kill it and replace the
3713 * other shitty functions like editUpdates and such so it's not needed
3714 * anymore.
3715 */
3716 public function createUpdates( $rev ) {
3717 $this->mGoodAdjustment = $this->isCountable( $rev->getText() );
3718 $this->mTotalAdjustment = 1;
3719 $this->editUpdates( $rev->getText(), $rev->getComment(),
3720 $rev->isMinor(), wfTimestamp(), $rev->getId(), true );
3721 }
3722
3723 /**
3724 * Generate the navigation links when browsing through an article revisions
3725 * It shows the information as:
3726 * Revision as of \<date\>; view current revision
3727 * \<- Previous version | Next Version -\>
3728 *
3729 * @param $oldid String: revision ID of this article revision
3730 */
3731 public function setOldSubtitle( $oldid = 0 ) {
3732 global $wgLang, $wgOut, $wgUser, $wgRequest;
3733
3734 if ( !wfRunHooks( 'DisplayOldSubtitle', array( &$this, &$oldid ) ) ) {
3735 return;
3736 }
3737
3738 $unhide = $wgRequest->getInt( 'unhide' ) == 1;
3739
3740 # Cascade unhide param in links for easy deletion browsing
3741 $extraParams = array();
3742 if ( $wgRequest->getVal( 'unhide' ) ) {
3743 $extraParams['unhide'] = 1;
3744 }
3745
3746 $revision = Revision::newFromId( $oldid );
3747
3748 $current = ( $oldid == $this->mLatest );
3749 $td = $wgLang->timeanddate( $this->mTimestamp, true );
3750 $tddate = $wgLang->date( $this->mTimestamp, true );
3751 $tdtime = $wgLang->time( $this->mTimestamp, true );
3752 $sk = $wgUser->getSkin();
3753 $lnk = $current
3754 ? wfMsgHtml( 'currentrevisionlink' )
3755 : $sk->link(
3756 $this->mTitle,
3757 wfMsgHtml( 'currentrevisionlink' ),
3758 array(),
3759 $extraParams,
3760 array( 'known', 'noclasses' )
3761 );
3762 $curdiff = $current
3763 ? wfMsgHtml( 'diff' )
3764 : $sk->link(
3765 $this->mTitle,
3766 wfMsgHtml( 'diff' ),
3767 array(),
3768 array(
3769 'diff' => 'cur',
3770 'oldid' => $oldid
3771 ) + $extraParams,
3772 array( 'known', 'noclasses' )
3773 );
3774 $prev = $this->mTitle->getPreviousRevisionID( $oldid ) ;
3775 $prevlink = $prev
3776 ? $sk->link(
3777 $this->mTitle,
3778 wfMsgHtml( 'previousrevision' ),
3779 array(),
3780 array(
3781 'direction' => 'prev',
3782 'oldid' => $oldid
3783 ) + $extraParams,
3784 array( 'known', 'noclasses' )
3785 )
3786 : wfMsgHtml( 'previousrevision' );
3787 $prevdiff = $prev
3788 ? $sk->link(
3789 $this->mTitle,
3790 wfMsgHtml( 'diff' ),
3791 array(),
3792 array(
3793 'diff' => 'prev',
3794 'oldid' => $oldid
3795 ) + $extraParams,
3796 array( 'known', 'noclasses' )
3797 )
3798 : wfMsgHtml( 'diff' );
3799 $nextlink = $current
3800 ? wfMsgHtml( 'nextrevision' )
3801 : $sk->link(
3802 $this->mTitle,
3803 wfMsgHtml( 'nextrevision' ),
3804 array(),
3805 array(
3806 'direction' => 'next',
3807 'oldid' => $oldid
3808 ) + $extraParams,
3809 array( 'known', 'noclasses' )
3810 );
3811 $nextdiff = $current
3812 ? wfMsgHtml( 'diff' )
3813 : $sk->link(
3814 $this->mTitle,
3815 wfMsgHtml( 'diff' ),
3816 array(),
3817 array(
3818 'diff' => 'next',
3819 'oldid' => $oldid
3820 ) + $extraParams,
3821 array( 'known', 'noclasses' )
3822 );
3823
3824 $cdel = '';
3825
3826 // User can delete revisions or view deleted revisions...
3827 $canHide = $wgUser->isAllowed( 'deleterevision' );
3828 if ( $canHide || ( $revision->getVisibility() && $wgUser->isAllowed( 'deletedhistory' ) ) ) {
3829 if ( !$revision->userCan( Revision::DELETED_RESTRICTED ) ) {
3830 $cdel = $sk->revDeleteLinkDisabled( $canHide ); // rev was hidden from Sysops
3831 } else {
3832 $query = array(
3833 'type' => 'revision',
3834 'target' => $this->mTitle->getPrefixedDbkey(),
3835 'ids' => $oldid
3836 );
3837 $cdel = $sk->revDeleteLink( $query, $revision->isDeleted( File::DELETED_RESTRICTED ), $canHide );
3838 }
3839 $cdel .= ' ';
3840 }
3841
3842 # Show user links if allowed to see them. If hidden, then show them only if requested...
3843 $userlinks = $sk->revUserTools( $revision, !$unhide );
3844
3845 $m = wfMsg( 'revision-info-current' );
3846 $infomsg = $current && !wfEmptyMsg( 'revision-info-current', $m ) && $m != '-'
3847 ? 'revision-info-current'
3848 : 'revision-info';
3849
3850 $r = "\n\t\t\t\t<div id=\"mw-{$infomsg}\">" .
3851 wfMsgExt(
3852 $infomsg,
3853 array( 'parseinline', 'replaceafter' ),
3854 $td,
3855 $userlinks,
3856 $revision->getID(),
3857 $tddate,
3858 $tdtime,
3859 $revision->getUser()
3860 ) .
3861 "</div>\n" .
3862 "\n\t\t\t\t<div id=\"mw-revision-nav\">" . $cdel . wfMsgExt( 'revision-nav', array( 'escapenoentities', 'parsemag', 'replaceafter' ),
3863 $prevdiff, $prevlink, $lnk, $curdiff, $nextlink, $nextdiff ) . "</div>\n\t\t\t";
3864
3865 $wgOut->setSubtitle( $r );
3866 }
3867
3868 /**
3869 * This function is called right before saving the wikitext,
3870 * so we can do things like signatures and links-in-context.
3871 *
3872 * @param $text String article contents
3873 * @param $user User object: user doing the edit, $wgUser will be used if
3874 * null is given
3875 * @return string article contents with altered wikitext markup (signatures
3876 * converted, {{subst:}}, templates, etc.)
3877 */
3878 public function preSaveTransform( $text, User $user = null ) {
3879 global $wgParser;
3880
3881 if ( $user === null ) {
3882 global $wgUser;
3883 $user = $wgUser;
3884 }
3885
3886 return $wgParser->preSaveTransform( $text, $this->mTitle, $user, ParserOptions::newFromUser( $user ) );
3887 }
3888
3889 /* Caching functions */
3890
3891 /**
3892 * checkLastModified returns true if it has taken care of all
3893 * output to the client that is necessary for this request.
3894 * (that is, it has sent a cached version of the page)
3895 *
3896 * @return boolean true if cached version send, false otherwise
3897 */
3898 protected function tryFileCache() {
3899 static $called = false;
3900
3901 if ( $called ) {
3902 wfDebug( "Article::tryFileCache(): called twice!?\n" );
3903 return false;
3904 }
3905
3906 $called = true;
3907 if ( $this->isFileCacheable() ) {
3908 $cache = new HTMLFileCache( $this->mTitle );
3909 if ( $cache->isFileCacheGood( $this->mTouched ) ) {
3910 wfDebug( "Article::tryFileCache(): about to load file\n" );
3911 $cache->loadFromFileCache();
3912 return true;
3913 } else {
3914 wfDebug( "Article::tryFileCache(): starting buffer\n" );
3915 ob_start( array( &$cache, 'saveToFileCache' ) );
3916 }
3917 } else {
3918 wfDebug( "Article::tryFileCache(): not cacheable\n" );
3919 }
3920
3921 return false;
3922 }
3923
3924 /**
3925 * Check if the page can be cached
3926 * @return bool
3927 */
3928 public function isFileCacheable() {
3929 $cacheable = false;
3930
3931 if ( HTMLFileCache::useFileCache() ) {
3932 $cacheable = $this->getID() && !$this->mRedirectedFrom && !$this->mTitle->isRedirect();
3933 // Extension may have reason to disable file caching on some pages.
3934 if ( $cacheable ) {
3935 $cacheable = wfRunHooks( 'IsFileCacheable', array( &$this ) );
3936 }
3937 }
3938
3939 return $cacheable;
3940 }
3941
3942 /**
3943 * Loads page_touched and returns a value indicating if it should be used
3944 * @return boolean true if not a redirect
3945 */
3946 public function checkTouched() {
3947 if ( !$this->mDataLoaded ) {
3948 $this->loadPageData();
3949 }
3950
3951 return !$this->mIsRedirect;
3952 }
3953
3954 /**
3955 * Get the page_touched field
3956 * @return string containing GMT timestamp
3957 */
3958 public function getTouched() {
3959 if ( !$this->mDataLoaded ) {
3960 $this->loadPageData();
3961 }
3962
3963 return $this->mTouched;
3964 }
3965
3966 /**
3967 * Get the page_latest field
3968 * @return integer rev_id of current revision
3969 */
3970 public function getLatest() {
3971 if ( !$this->mDataLoaded ) {
3972 $this->loadPageData();
3973 }
3974
3975 return (int)$this->mLatest;
3976 }
3977
3978 /**
3979 * Edit an article without doing all that other stuff
3980 * The article must already exist; link tables etc
3981 * are not updated, caches are not flushed.
3982 *
3983 * @param $text String: text submitted
3984 * @param $comment String: comment submitted
3985 * @param $minor Boolean: whereas it's a minor modification
3986 */
3987 public function quickEdit( $text, $comment = '', $minor = 0 ) {
3988 wfProfileIn( __METHOD__ );
3989
3990 $dbw = wfGetDB( DB_MASTER );
3991 $revision = new Revision( array(
3992 'page' => $this->getId(),
3993 'text' => $text,
3994 'comment' => $comment,
3995 'minor_edit' => $minor ? 1 : 0,
3996 ) );
3997 $revision->insertOn( $dbw );
3998 $this->updateRevisionOn( $dbw, $revision );
3999
4000 global $wgUser;
4001 wfRunHooks( 'NewRevisionFromEditComplete', array( $this, $revision, false, $wgUser ) );
4002
4003 wfProfileOut( __METHOD__ );
4004 }
4005
4006 /**
4007 * The onArticle*() functions are supposed to be a kind of hooks
4008 * which should be called whenever any of the specified actions
4009 * are done.
4010 *
4011 * This is a good place to put code to clear caches, for instance.
4012 *
4013 * This is called on page move and undelete, as well as edit
4014 *
4015 * @param $title Title object
4016 */
4017 public static function onArticleCreate( $title ) {
4018 # Update existence markers on article/talk tabs...
4019 if ( $title->isTalkPage() ) {
4020 $other = $title->getSubjectPage();
4021 } else {
4022 $other = $title->getTalkPage();
4023 }
4024
4025 $other->invalidateCache();
4026 $other->purgeSquid();
4027
4028 $title->touchLinks();
4029 $title->purgeSquid();
4030 $title->deleteTitleProtection();
4031 }
4032
4033 /**
4034 * Clears caches when article is deleted
4035 */
4036 public static function onArticleDelete( $title ) {
4037 global $wgMessageCache;
4038
4039 # Update existence markers on article/talk tabs...
4040 if ( $title->isTalkPage() ) {
4041 $other = $title->getSubjectPage();
4042 } else {
4043 $other = $title->getTalkPage();
4044 }
4045
4046 $other->invalidateCache();
4047 $other->purgeSquid();
4048
4049 $title->touchLinks();
4050 $title->purgeSquid();
4051
4052 # File cache
4053 HTMLFileCache::clearFileCache( $title );
4054
4055 # Messages
4056 if ( $title->getNamespace() == NS_MEDIAWIKI ) {
4057 $wgMessageCache->replace( $title->getDBkey(), false );
4058 }
4059
4060 # Images
4061 if ( $title->getNamespace() == NS_FILE ) {
4062 $update = new HTMLCacheUpdate( $title, 'imagelinks' );
4063 $update->doUpdate();
4064 }
4065
4066 # User talk pages
4067 if ( $title->getNamespace() == NS_USER_TALK ) {
4068 $user = User::newFromName( $title->getText(), false );
4069 $user->setNewtalk( false );
4070 }
4071
4072 # Image redirects
4073 RepoGroup::singleton()->getLocalRepo()->invalidateImageRedirect( $title );
4074 }
4075
4076 /**
4077 * Purge caches on page update etc
4078 *
4079 * @param $title Title object
4080 * @todo: verify that $title is always a Title object (and never false or null), add Title hint to parameter $title
4081 */
4082 public static function onArticleEdit( $title ) {
4083 global $wgDeferredUpdateList;
4084
4085 // Invalidate caches of articles which include this page
4086 $wgDeferredUpdateList[] = new HTMLCacheUpdate( $title, 'templatelinks' );
4087
4088 // Invalidate the caches of all pages which redirect here
4089 $wgDeferredUpdateList[] = new HTMLCacheUpdate( $title, 'redirect' );
4090
4091 # Purge squid for this page only
4092 $title->purgeSquid();
4093
4094 # Clear file cache for this page only
4095 HTMLFileCache::clearFileCache( $title );
4096 }
4097
4098 /**#@-*/
4099
4100 /**
4101 * Overriden by ImagePage class, only present here to avoid a fatal error
4102 * Called for ?action=revert
4103 */
4104 public function revert() {
4105 global $wgOut;
4106 $wgOut->showErrorPage( 'nosuchaction', 'nosuchactiontext' );
4107 }
4108
4109 /**
4110 * Info about this page
4111 * Called for ?action=info when $wgAllowPageInfo is on.
4112 */
4113 public function info() {
4114 global $wgLang, $wgOut, $wgAllowPageInfo, $wgUser;
4115
4116 if ( !$wgAllowPageInfo ) {
4117 $wgOut->showErrorPage( 'nosuchaction', 'nosuchactiontext' );
4118 return;
4119 }
4120
4121 $page = $this->mTitle->getSubjectPage();
4122
4123 $wgOut->setPagetitle( $page->getPrefixedText() );
4124 $wgOut->setPageTitleActionText( wfMsg( 'info_short' ) );
4125 $wgOut->setSubtitle( wfMsgHtml( 'infosubtitle' ) );
4126
4127 if ( !$this->mTitle->exists() ) {
4128 $wgOut->addHTML( '<div class="noarticletext">' );
4129 if ( $this->mTitle->getNamespace() == NS_MEDIAWIKI ) {
4130 // This doesn't quite make sense; the user is asking for
4131 // information about the _page_, not the message... -- RC
4132 $wgOut->addHTML( htmlspecialchars( wfMsgWeirdKey( $this->mTitle->getText() ) ) );
4133 } else {
4134 $msg = $wgUser->isLoggedIn()
4135 ? 'noarticletext'
4136 : 'noarticletextanon';
4137 $wgOut->addHTML( wfMsgExt( $msg, 'parse' ) );
4138 }
4139
4140 $wgOut->addHTML( '</div>' );
4141 } else {
4142 $dbr = wfGetDB( DB_SLAVE );
4143 $wl_clause = array(
4144 'wl_title' => $page->getDBkey(),
4145 'wl_namespace' => $page->getNamespace() );
4146 $numwatchers = $dbr->selectField(
4147 'watchlist',
4148 'COUNT(*)',
4149 $wl_clause,
4150 __METHOD__,
4151 $this->getSelectOptions() );
4152
4153 $pageInfo = $this->pageCountInfo( $page );
4154 $talkInfo = $this->pageCountInfo( $page->getTalkPage() );
4155
4156
4157 //FIXME: unescaped messages
4158 $wgOut->addHTML( "<ul><li>" . wfMsg( "numwatchers", $wgLang->formatNum( $numwatchers ) ) . '</li>' );
4159 $wgOut->addHTML( "<li>" . wfMsg( 'numedits', $wgLang->formatNum( $pageInfo['edits'] ) ) . '</li>' );
4160
4161 if ( $talkInfo ) {
4162 $wgOut->addHTML( '<li>' . wfMsg( "numtalkedits", $wgLang->formatNum( $talkInfo['edits'] ) ) . '</li>' );
4163 }
4164
4165 $wgOut->addHTML( '<li>' . wfMsg( "numauthors", $wgLang->formatNum( $pageInfo['authors'] ) ) . '</li>' );
4166
4167 if ( $talkInfo ) {
4168 $wgOut->addHTML( '<li>' . wfMsg( 'numtalkauthors', $wgLang->formatNum( $talkInfo['authors'] ) ) . '</li>' );
4169 }
4170
4171 $wgOut->addHTML( '</ul>' );
4172 }
4173 }
4174
4175 /**
4176 * Return the total number of edits and number of unique editors
4177 * on a given page. If page does not exist, returns false.
4178 *
4179 * @param $title Title object
4180 * @return mixed array or boolean false
4181 */
4182 public function pageCountInfo( $title ) {
4183 $id = $title->getArticleId();
4184
4185 if ( $id == 0 ) {
4186 return false;
4187 }
4188
4189 $dbr = wfGetDB( DB_SLAVE );
4190 $rev_clause = array( 'rev_page' => $id );
4191 $edits = $dbr->selectField(
4192 'revision',
4193 'COUNT(rev_page)',
4194 $rev_clause,
4195 __METHOD__,
4196 $this->getSelectOptions()
4197 );
4198 $authors = $dbr->selectField(
4199 'revision',
4200 'COUNT(DISTINCT rev_user_text)',
4201 $rev_clause,
4202 __METHOD__,
4203 $this->getSelectOptions()
4204 );
4205
4206 return array( 'edits' => $edits, 'authors' => $authors );
4207 }
4208
4209 /**
4210 * Return a list of templates used by this article.
4211 * Uses the templatelinks table
4212 *
4213 * @return Array of Title objects
4214 */
4215 public function getUsedTemplates() {
4216 $result = array();
4217 $id = $this->mTitle->getArticleID();
4218
4219 if ( $id == 0 ) {
4220 return array();
4221 }
4222
4223 $dbr = wfGetDB( DB_SLAVE );
4224 $res = $dbr->select( array( 'templatelinks' ),
4225 array( 'tl_namespace', 'tl_title' ),
4226 array( 'tl_from' => $id ),
4227 __METHOD__ );
4228
4229 if ( $res !== false ) {
4230 foreach ( $res as $row ) {
4231 $result[] = Title::makeTitle( $row->tl_namespace, $row->tl_title );
4232 }
4233 }
4234
4235 return $result;
4236 }
4237
4238 /**
4239 * Returns a list of hidden categories this page is a member of.
4240 * Uses the page_props and categorylinks tables.
4241 *
4242 * @return Array of Title objects
4243 */
4244 public function getHiddenCategories() {
4245 $result = array();
4246 $id = $this->mTitle->getArticleID();
4247
4248 if ( $id == 0 ) {
4249 return array();
4250 }
4251
4252 $dbr = wfGetDB( DB_SLAVE );
4253 $res = $dbr->select( array( 'categorylinks', 'page_props', 'page' ),
4254 array( 'cl_to' ),
4255 array( 'cl_from' => $id, 'pp_page=page_id', 'pp_propname' => 'hiddencat',
4256 'page_namespace' => NS_CATEGORY, 'page_title=cl_to' ),
4257 __METHOD__ );
4258
4259 if ( $res !== false ) {
4260 foreach ( $res as $row ) {
4261 $result[] = Title::makeTitle( NS_CATEGORY, $row->cl_to );
4262 }
4263 }
4264
4265 return $result;
4266 }
4267
4268 /**
4269 * Return an applicable autosummary if one exists for the given edit.
4270 * @param $oldtext String: the previous text of the page.
4271 * @param $newtext String: The submitted text of the page.
4272 * @param $flags Int bitmask: a bitmask of flags submitted for the edit.
4273 * @return string An appropriate autosummary, or an empty string.
4274 */
4275 public static function getAutosummary( $oldtext, $newtext, $flags ) {
4276 global $wgContLang;
4277
4278 # Decide what kind of autosummary is needed.
4279
4280 # Redirect autosummaries
4281 $ot = Title::newFromRedirect( $oldtext );
4282 $rt = Title::newFromRedirect( $newtext );
4283
4284 if ( is_object( $rt ) && ( !is_object( $ot ) || !$rt->equals( $ot ) || $ot->getFragment() != $rt->getFragment() ) ) {
4285 return wfMsgForContent( 'autoredircomment', $rt->getFullText() );
4286 }
4287
4288 # New page autosummaries
4289 if ( $flags & EDIT_NEW && strlen( $newtext ) ) {
4290 # If they're making a new article, give its text, truncated, in the summary.
4291
4292 $truncatedtext = $wgContLang->truncate(
4293 str_replace( "\n", ' ', $newtext ),
4294 max( 0, 200 - strlen( wfMsgForContent( 'autosumm-new' ) ) ) );
4295
4296 return wfMsgForContent( 'autosumm-new', $truncatedtext );
4297 }
4298
4299 # Blanking autosummaries
4300 if ( $oldtext != '' && $newtext == '' ) {
4301 return wfMsgForContent( 'autosumm-blank' );
4302 } elseif ( strlen( $oldtext ) > 10 * strlen( $newtext ) && strlen( $newtext ) < 500 ) {
4303 # Removing more than 90% of the article
4304
4305 $truncatedtext = $wgContLang->truncate(
4306 $newtext,
4307 max( 0, 200 - strlen( wfMsgForContent( 'autosumm-replace' ) ) ) );
4308
4309 return wfMsgForContent( 'autosumm-replace', $truncatedtext );
4310 }
4311
4312 # If we reach this point, there's no applicable autosummary for our case, so our
4313 # autosummary is empty.
4314 return '';
4315 }
4316
4317 /**
4318 * Add the primary page-view wikitext to the output buffer
4319 * Saves the text into the parser cache if possible.
4320 * Updates templatelinks if it is out of date.
4321 *
4322 * @param $text String
4323 * @param $cache Boolean
4324 * @param $parserOptions mixed ParserOptions object, or boolean false
4325 */
4326 public function outputWikiText( $text, $cache = true, $parserOptions = false ) {
4327 global $wgOut;
4328
4329 $this->mParserOutput = $this->getOutputFromWikitext( $text, $cache, $parserOptions );
4330 $wgOut->addParserOutput( $this->mParserOutput );
4331 }
4332
4333 /**
4334 * This does all the heavy lifting for outputWikitext, except it returns the parser
4335 * output instead of sending it straight to $wgOut. Makes things nice and simple for,
4336 * say, embedding thread pages within a discussion system (LiquidThreads)
4337 *
4338 * @param $text string
4339 * @param $cache boolean
4340 * @param $parserOptions parsing options, defaults to false
4341 * @return string containing parsed output
4342 */
4343 public function getOutputFromWikitext( $text, $cache = true, $parserOptions = false ) {
4344 global $wgParser, $wgEnableParserCache, $wgUseFileCache;
4345
4346 if ( !$parserOptions ) {
4347 $parserOptions = $this->getParserOptions();
4348 }
4349
4350 $time = - wfTime();
4351 $this->mParserOutput = $wgParser->parse( $text, $this->mTitle,
4352 $parserOptions, true, true, $this->getRevIdFetched() );
4353 $time += wfTime();
4354
4355 # Timing hack
4356 if ( $time > 3 ) {
4357 wfDebugLog( 'slow-parse', sprintf( "%-5.2f %s", $time,
4358 $this->mTitle->getPrefixedDBkey() ) );
4359 }
4360
4361 if ( $wgEnableParserCache && $cache && $this->mParserOutput->isCacheable() ) {
4362 $parserCache = ParserCache::singleton();
4363 $parserCache->save( $this->mParserOutput, $this, $parserOptions );
4364 }
4365
4366 // Make sure file cache is not used on uncacheable content.
4367 // Output that has magic words in it can still use the parser cache
4368 // (if enabled), though it will generally expire sooner.
4369 if ( !$this->mParserOutput->isCacheable() || $this->mParserOutput->containsOldMagic() ) {
4370 $wgUseFileCache = false;
4371 }
4372
4373 $this->doCascadeProtectionUpdates( $this->mParserOutput );
4374
4375 return $this->mParserOutput;
4376 }
4377
4378 /**
4379 * Get parser options suitable for rendering the primary article wikitext
4380 * @param $canonical boolean Determines that the generated must not depend on user preferences (see bug 14404)
4381 * @return mixed ParserOptions object or boolean false
4382 */
4383 public function getParserOptions( $canonical = false ) {
4384 global $wgUser, $wgLanguageCode;
4385
4386 if ( !$this->mParserOptions || $canonical ) {
4387 $user = !$canonical ? $wgUser : new User;
4388 $parserOptions = new ParserOptions( $user );
4389 $parserOptions->setTidy( true );
4390 $parserOptions->enableLimitReport();
4391
4392 if ( $canonical ) {
4393 $parserOptions->setUserLang( $wgLanguageCode ); # Must be set explicitely
4394 return $parserOptions;
4395 }
4396 $this->mParserOptions = $parserOptions;
4397 }
4398
4399 // Clone to allow modifications of the return value without affecting
4400 // the cache
4401 return clone $this->mParserOptions;
4402 }
4403
4404 /**
4405 * Updates cascading protections
4406 *
4407 * @param $parserOutput mixed ParserOptions object, or boolean false
4408 **/
4409 protected function doCascadeProtectionUpdates( $parserOutput ) {
4410 if ( !$this->isCurrent() || wfReadOnly() || !$this->mTitle->areRestrictionsCascading() ) {
4411 return;
4412 }
4413
4414 // templatelinks table may have become out of sync,
4415 // especially if using variable-based transclusions.
4416 // For paranoia, check if things have changed and if
4417 // so apply updates to the database. This will ensure
4418 // that cascaded protections apply as soon as the changes
4419 // are visible.
4420
4421 # Get templates from templatelinks
4422 $id = $this->mTitle->getArticleID();
4423
4424 $tlTemplates = array();
4425
4426 $dbr = wfGetDB( DB_SLAVE );
4427 $res = $dbr->select( array( 'templatelinks' ),
4428 array( 'tl_namespace', 'tl_title' ),
4429 array( 'tl_from' => $id ),
4430 __METHOD__
4431 );
4432
4433 foreach ( $res as $row ) {
4434 $tlTemplates["{$row->tl_namespace}:{$row->tl_title}"] = true;
4435 }
4436
4437 # Get templates from parser output.
4438 $poTemplates = array();
4439 foreach ( $parserOutput->getTemplates() as $ns => $templates ) {
4440 foreach ( $templates as $dbk => $id ) {
4441 $poTemplates["$ns:$dbk"] = true;
4442 }
4443 }
4444
4445 # Get the diff
4446 $templates_diff = array_diff_key( $poTemplates, $tlTemplates );
4447
4448 if ( count( $templates_diff ) > 0 ) {
4449 # Whee, link updates time.
4450 $u = new LinksUpdate( $this->mTitle, $parserOutput, false );
4451 $u->doUpdate();
4452 }
4453 }
4454
4455 /**
4456 * Update all the appropriate counts in the category table, given that
4457 * we've added the categories $added and deleted the categories $deleted.
4458 *
4459 * @param $added array The names of categories that were added
4460 * @param $deleted array The names of categories that were deleted
4461 */
4462 public function updateCategoryCounts( $added, $deleted ) {
4463 $ns = $this->mTitle->getNamespace();
4464 $dbw = wfGetDB( DB_MASTER );
4465
4466 # First make sure the rows exist. If one of the "deleted" ones didn't
4467 # exist, we might legitimately not create it, but it's simpler to just
4468 # create it and then give it a negative value, since the value is bogus
4469 # anyway.
4470 #
4471 # Sometimes I wish we had INSERT ... ON DUPLICATE KEY UPDATE.
4472 $insertCats = array_merge( $added, $deleted );
4473 if ( !$insertCats ) {
4474 # Okay, nothing to do
4475 return;
4476 }
4477
4478 $insertRows = array();
4479
4480 foreach ( $insertCats as $cat ) {
4481 $insertRows[] = array(
4482 'cat_id' => $dbw->nextSequenceValue( 'category_cat_id_seq' ),
4483 'cat_title' => $cat
4484 );
4485 }
4486 $dbw->insert( 'category', $insertRows, __METHOD__, 'IGNORE' );
4487
4488 $addFields = array( 'cat_pages = cat_pages + 1' );
4489 $removeFields = array( 'cat_pages = cat_pages - 1' );
4490
4491 if ( $ns == NS_CATEGORY ) {
4492 $addFields[] = 'cat_subcats = cat_subcats + 1';
4493 $removeFields[] = 'cat_subcats = cat_subcats - 1';
4494 } elseif ( $ns == NS_FILE ) {
4495 $addFields[] = 'cat_files = cat_files + 1';
4496 $removeFields[] = 'cat_files = cat_files - 1';
4497 }
4498
4499 if ( $added ) {
4500 $dbw->update(
4501 'category',
4502 $addFields,
4503 array( 'cat_title' => $added ),
4504 __METHOD__
4505 );
4506 }
4507
4508 if ( $deleted ) {
4509 $dbw->update(
4510 'category',
4511 $removeFields,
4512 array( 'cat_title' => $deleted ),
4513 __METHOD__
4514 );
4515 }
4516 }
4517
4518 /**
4519 * Lightweight method to get the parser output for a page, checking the parser cache
4520 * and so on. Doesn't consider most of the stuff that Article::view is forced to
4521 * consider, so it's not appropriate to use there.
4522 *
4523 * @since 1.16 (r52326) for LiquidThreads
4524 *
4525 * @param $oldid mixed integer Revision ID or null
4526 * @return ParserOutput
4527 */
4528 public function getParserOutput( $oldid = null ) {
4529 global $wgEnableParserCache, $wgUser;
4530
4531 // Should the parser cache be used?
4532 $useParserCache = $wgEnableParserCache &&
4533 $wgUser->getStubThreshold() == 0 &&
4534 $this->exists() &&
4535 $oldid === null;
4536
4537 wfDebug( __METHOD__ . ': using parser cache: ' . ( $useParserCache ? 'yes' : 'no' ) . "\n" );
4538
4539 if ( $wgUser->getStubThreshold() ) {
4540 wfIncrStats( 'pcache_miss_stub' );
4541 }
4542
4543 $parserOutput = false;
4544 if ( $useParserCache ) {
4545 $parserOutput = ParserCache::singleton()->get( $this, $this->getParserOptions() );
4546 }
4547
4548 if ( $parserOutput === false ) {
4549 // Cache miss; parse and output it.
4550 $rev = Revision::newFromTitle( $this->getTitle(), $oldid );
4551
4552 return $this->getOutputFromWikitext( $rev->getText(), $useParserCache );
4553 } else {
4554 return $parserOutput;
4555 }
4556 }
4557
4558 }
4559
4560 class PoolWorkArticleView extends PoolCounterWork {
4561 private $mArticle;
4562
4563 function __construct( $article, $key, $useParserCache, $parserOptions ) {
4564 parent::__construct( 'ArticleView', $key );
4565 $this->mArticle = $article;
4566 $this->cacheable = $useParserCache;
4567 $this->parserOptions = $parserOptions;
4568 }
4569
4570 function doWork() {
4571 return $this->mArticle->doViewParse();
4572 }
4573
4574 function getCachedWork() {
4575 global $wgOut;
4576
4577 $parserCache = ParserCache::singleton();
4578 $this->mArticle->mParserOutput = $parserCache->get( $this->mArticle, $this->parserOptions );
4579
4580 if ( $this->mArticle->mParserOutput !== false ) {
4581 wfDebug( __METHOD__ . ": showing contents parsed by someone else\n" );
4582 $wgOut->addParserOutput( $this->mArticle->mParserOutput );
4583 # Ensure that UI elements requiring revision ID have
4584 # the correct version information.
4585 $wgOut->setRevisionId( $this->mArticle->getLatest() );
4586 return true;
4587 }
4588 return false;
4589 }
4590
4591 function fallback() {
4592 return $this->mArticle->tryDirtyCache();
4593 }
4594
4595 function error( $status ) {
4596 global $wgOut;
4597
4598 $wgOut->clearHTML(); // for release() errors
4599 $wgOut->enableClientCache( false );
4600 $wgOut->setRobotPolicy( 'noindex,nofollow' );
4601
4602 $errortext = $status->getWikiText( false, 'view-pool-error' );
4603 $wgOut->addWikiText( '<div class="errorbox">' . $errortext . '</div>' );
4604
4605 return false;
4606 }
4607 }