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