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