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