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