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