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