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