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