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