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