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