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