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