Unbreak cascading protection
[lhc/web/wiklou.git] / includes / WikiPage.php
1 <?php
2 /**
3 * Base representation for a MediaWiki page.
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
19 *
20 * @file
21 */
22
23 /**
24 * Abstract class for type hinting (accepts WikiPage, Article, ImagePage, CategoryPage)
25 */
26 interface Page {}
27
28 /**
29 * Class representing a MediaWiki article and history.
30 *
31 * Some fields are public only for backwards-compatibility. Use accessors.
32 * In the past, this class was part of Article.php and everything was public.
33 *
34 * @internal documentation reviewed 15 Mar 2010
35 */
36 class WikiPage implements Page, IDBAccessObject {
37 // Constants for $mDataLoadedFrom and related
38
39 /**
40 * @var Title
41 */
42 public $mTitle = null;
43
44 /**@{{
45 * @protected
46 */
47 public $mDataLoaded = false; // !< Boolean
48 public $mIsRedirect = false; // !< Boolean
49 public $mLatest = false; // !< Integer (false means "not loaded")
50 public $mPreparedEdit = false; // !< Array
51 /**@}}*/
52
53 /**
54 * @var int
55 */
56 protected $mId = null;
57
58 /**
59 * @var int; one of the READ_* constants
60 */
61 protected $mDataLoadedFrom = self::READ_NONE;
62
63 /**
64 * @var Title
65 */
66 protected $mRedirectTarget = null;
67
68 /**
69 * @var Revision
70 */
71 protected $mLastRevision = null;
72
73 /**
74 * @var string; timestamp of the current revision or empty string if not loaded
75 */
76 protected $mTimestamp = '';
77
78 /**
79 * @var string
80 */
81 protected $mTouched = '19700101000000';
82
83 /**
84 * @var int|null
85 */
86 protected $mCounter = null;
87
88 /**
89 * Constructor and clear the article
90 * @param $title Title Reference to a Title object.
91 */
92 public function __construct( Title $title ) {
93 $this->mTitle = $title;
94 }
95
96 /**
97 * Create a WikiPage object of the appropriate class for the given title.
98 *
99 * @param $title Title
100 * @throws MWException
101 * @return WikiPage object of the appropriate type
102 */
103 public static function factory( Title $title ) {
104 $ns = $title->getNamespace();
105
106 if ( $ns == NS_MEDIA ) {
107 throw new MWException( "NS_MEDIA is a virtual namespace; use NS_FILE." );
108 } elseif ( $ns < 0 ) {
109 throw new MWException( "Invalid or virtual namespace $ns given." );
110 }
111
112 switch ( $ns ) {
113 case NS_FILE:
114 $page = new WikiFilePage( $title );
115 break;
116 case NS_CATEGORY:
117 $page = new WikiCategoryPage( $title );
118 break;
119 default:
120 $page = new WikiPage( $title );
121 }
122
123 return $page;
124 }
125
126 /**
127 * Constructor from a page id
128 *
129 * @param int $id article ID to load
130 * @param string|int $from one of the following values:
131 * - "fromdb" or WikiPage::READ_NORMAL to select from a slave database
132 * - "fromdbmaster" or WikiPage::READ_LATEST to select from the master database
133 *
134 * @return WikiPage|null
135 */
136 public static function newFromID( $id, $from = 'fromdb' ) {
137 $from = self::convertSelectType( $from );
138 $db = wfGetDB( $from === self::READ_LATEST ? DB_MASTER : DB_SLAVE );
139 $row = $db->selectRow( 'page', self::selectFields(), array( 'page_id' => $id ), __METHOD__ );
140 if ( !$row ) {
141 return null;
142 }
143 return self::newFromRow( $row, $from );
144 }
145
146 /**
147 * Constructor from a database row
148 *
149 * @since 1.20
150 * @param $row object: database row containing at least fields returned
151 * by selectFields().
152 * @param string|int $from source of $data:
153 * - "fromdb" or WikiPage::READ_NORMAL: from a slave DB
154 * - "fromdbmaster" or WikiPage::READ_LATEST: from the master DB
155 * - "forupdate" or WikiPage::READ_LOCKING: from the master DB using SELECT FOR UPDATE
156 * @return WikiPage
157 */
158 public static function newFromRow( $row, $from = 'fromdb' ) {
159 $page = self::factory( Title::newFromRow( $row ) );
160 $page->loadFromRow( $row, $from );
161 return $page;
162 }
163
164 /**
165 * Convert 'fromdb', 'fromdbmaster' and 'forupdate' to READ_* constants.
166 *
167 * @param $type object|string|int
168 * @return mixed
169 */
170 private static function convertSelectType( $type ) {
171 switch ( $type ) {
172 case 'fromdb':
173 return self::READ_NORMAL;
174 case 'fromdbmaster':
175 return self::READ_LATEST;
176 case 'forupdate':
177 return self::READ_LOCKING;
178 default:
179 // It may already be an integer or whatever else
180 return $type;
181 }
182 }
183
184 /**
185 * Returns overrides for action handlers.
186 * Classes listed here will be used instead of the default one when
187 * (and only when) $wgActions[$action] === true. This allows subclasses
188 * to override the default behavior.
189 *
190 * @todo Move this UI stuff somewhere else
191 *
192 * @return Array
193 */
194 public function getActionOverrides() {
195 $content_handler = $this->getContentHandler();
196 return $content_handler->getActionOverrides();
197 }
198
199 /**
200 * Returns the ContentHandler instance to be used to deal with the content of this WikiPage.
201 *
202 * Shorthand for ContentHandler::getForModelID( $this->getContentModel() );
203 *
204 * @return ContentHandler
205 *
206 * @since 1.21
207 */
208 public function getContentHandler() {
209 return ContentHandler::getForModelID( $this->getContentModel() );
210 }
211
212 /**
213 * Get the title object of the article
214 * @return Title object of this page
215 */
216 public function getTitle() {
217 return $this->mTitle;
218 }
219
220 /**
221 * Clear the object
222 * @return void
223 */
224 public function clear() {
225 $this->mDataLoaded = false;
226 $this->mDataLoadedFrom = self::READ_NONE;
227
228 $this->clearCacheFields();
229 }
230
231 /**
232 * Clear the object cache fields
233 * @return void
234 */
235 protected function clearCacheFields() {
236 $this->mId = null;
237 $this->mCounter = null;
238 $this->mRedirectTarget = null; // Title object if set
239 $this->mLastRevision = null; // Latest revision
240 $this->mTouched = '19700101000000';
241 $this->mTimestamp = '';
242 $this->mIsRedirect = false;
243 $this->mLatest = false;
244 $this->mPreparedEdit = false;
245 }
246
247 /**
248 * Return the list of revision fields that should be selected to create
249 * a new page.
250 *
251 * @return array
252 */
253 public static function selectFields() {
254 global $wgContentHandlerUseDB;
255
256 $fields = array(
257 'page_id',
258 'page_namespace',
259 'page_title',
260 'page_restrictions',
261 'page_counter',
262 'page_is_redirect',
263 'page_is_new',
264 'page_random',
265 'page_touched',
266 'page_latest',
267 'page_len',
268 );
269
270 if ( $wgContentHandlerUseDB ) {
271 $fields[] = 'page_content_model';
272 }
273
274 return $fields;
275 }
276
277 /**
278 * Fetch a page record with the given conditions
279 * @param $dbr DatabaseBase object
280 * @param $conditions Array
281 * @param $options Array
282 * @return mixed Database result resource, or false on failure
283 */
284 protected function pageData( $dbr, $conditions, $options = array() ) {
285 $fields = self::selectFields();
286
287 wfRunHooks( 'ArticlePageDataBefore', array( &$this, &$fields ) );
288
289 $row = $dbr->selectRow( 'page', $fields, $conditions, __METHOD__, $options );
290
291 wfRunHooks( 'ArticlePageDataAfter', array( &$this, &$row ) );
292
293 return $row;
294 }
295
296 /**
297 * Fetch a page record matching the Title object's namespace and title
298 * using a sanitized title string
299 *
300 * @param $dbr DatabaseBase object
301 * @param $title Title object
302 * @param $options Array
303 * @return mixed Database result resource, or false on failure
304 */
305 public function pageDataFromTitle( $dbr, $title, $options = array() ) {
306 return $this->pageData( $dbr, array(
307 'page_namespace' => $title->getNamespace(),
308 'page_title' => $title->getDBkey() ), $options );
309 }
310
311 /**
312 * Fetch a page record matching the requested ID
313 *
314 * @param $dbr DatabaseBase
315 * @param $id Integer
316 * @param $options Array
317 * @return mixed Database result resource, or false on failure
318 */
319 public function pageDataFromId( $dbr, $id, $options = array() ) {
320 return $this->pageData( $dbr, array( 'page_id' => $id ), $options );
321 }
322
323 /**
324 * Set the general counter, title etc data loaded from
325 * some source.
326 *
327 * @param $from object|string|int One of the following:
328 * - A DB query result object
329 * - "fromdb" or WikiPage::READ_NORMAL to get from a slave DB
330 * - "fromdbmaster" or WikiPage::READ_LATEST to get from the master DB
331 * - "forupdate" or WikiPage::READ_LOCKING to get from the master DB using SELECT FOR UPDATE
332 *
333 * @return void
334 */
335 public function loadPageData( $from = 'fromdb' ) {
336 $from = self::convertSelectType( $from );
337 if ( is_int( $from ) && $from <= $this->mDataLoadedFrom ) {
338 // We already have the data from the correct location, no need to load it twice.
339 return;
340 }
341
342 if ( $from === self::READ_LOCKING ) {
343 $data = $this->pageDataFromTitle( wfGetDB( DB_MASTER ), $this->mTitle, array( 'FOR UPDATE' ) );
344 } elseif ( $from === self::READ_LATEST ) {
345 $data = $this->pageDataFromTitle( wfGetDB( DB_MASTER ), $this->mTitle );
346 } elseif ( $from === self::READ_NORMAL ) {
347 $data = $this->pageDataFromTitle( wfGetDB( DB_SLAVE ), $this->mTitle );
348 // Use a "last rev inserted" timestamp key to diminish the issue of slave lag.
349 // Note that DB also stores the master position in the session and checks it.
350 $touched = $this->getCachedLastEditTime();
351 if ( $touched ) { // key set
352 if ( !$data || $touched > wfTimestamp( TS_MW, $data->page_touched ) ) {
353 $from = self::READ_LATEST;
354 $data = $this->pageDataFromTitle( wfGetDB( DB_MASTER ), $this->mTitle );
355 }
356 }
357 } else {
358 // No idea from where the caller got this data, assume slave database.
359 $data = $from;
360 $from = self::READ_NORMAL;
361 }
362
363 $this->loadFromRow( $data, $from );
364 }
365
366 /**
367 * Load the object from a database row
368 *
369 * @since 1.20
370 * @param $data object: database row containing at least fields returned
371 * by selectFields()
372 * @param string|int $from One of the following:
373 * - "fromdb" or WikiPage::READ_NORMAL if the data comes from a slave DB
374 * - "fromdbmaster" or WikiPage::READ_LATEST if the data comes from the master DB
375 * - "forupdate" or WikiPage::READ_LOCKING if the data comes from from
376 * the master DB using SELECT FOR UPDATE
377 */
378 public function loadFromRow( $data, $from ) {
379 $lc = LinkCache::singleton();
380 $lc->clearLink( $this->mTitle );
381
382 if ( $data ) {
383 $lc->addGoodLinkObjFromRow( $this->mTitle, $data );
384
385 $this->mTitle->loadFromRow( $data );
386
387 // Old-fashioned restrictions
388 $this->mTitle->loadRestrictions( $data->page_restrictions );
389
390 $this->mId = intval( $data->page_id );
391 $this->mCounter = intval( $data->page_counter );
392 $this->mTouched = wfTimestamp( TS_MW, $data->page_touched );
393 $this->mIsRedirect = intval( $data->page_is_redirect );
394 $this->mLatest = intval( $data->page_latest );
395 // Bug 37225: $latest may no longer match the cached latest Revision object.
396 // Double-check the ID of any cached latest Revision object for consistency.
397 if ( $this->mLastRevision && $this->mLastRevision->getId() != $this->mLatest ) {
398 $this->mLastRevision = null;
399 $this->mTimestamp = '';
400 }
401 } else {
402 $lc->addBadLinkObj( $this->mTitle );
403
404 $this->mTitle->loadFromRow( false );
405
406 $this->clearCacheFields();
407
408 $this->mId = 0;
409 }
410
411 $this->mDataLoaded = true;
412 $this->mDataLoadedFrom = self::convertSelectType( $from );
413 }
414
415 /**
416 * @return int Page ID
417 */
418 public function getId() {
419 if ( !$this->mDataLoaded ) {
420 $this->loadPageData();
421 }
422 return $this->mId;
423 }
424
425 /**
426 * @return bool Whether or not the page exists in the database
427 */
428 public function exists() {
429 if ( !$this->mDataLoaded ) {
430 $this->loadPageData();
431 }
432 return $this->mId > 0;
433 }
434
435 /**
436 * Check if this page is something we're going to be showing
437 * some sort of sensible content for. If we return false, page
438 * views (plain action=view) will return an HTTP 404 response,
439 * so spiders and robots can know they're following a bad link.
440 *
441 * @return bool
442 */
443 public function hasViewableContent() {
444 return $this->exists() || $this->mTitle->isAlwaysKnown();
445 }
446
447 /**
448 * @return int The view count for the page
449 */
450 public function getCount() {
451 if ( !$this->mDataLoaded ) {
452 $this->loadPageData();
453 }
454
455 return $this->mCounter;
456 }
457
458 /**
459 * Tests if the article content represents a redirect
460 *
461 * @return bool
462 */
463 public function isRedirect() {
464 $content = $this->getContent();
465 if ( !$content ) {
466 return false;
467 }
468
469 return $content->isRedirect();
470 }
471
472 /**
473 * Returns the page's content model id (see the CONTENT_MODEL_XXX constants).
474 *
475 * Will use the revisions actual content model if the page exists,
476 * and the page's default if the page doesn't exist yet.
477 *
478 * @return String
479 *
480 * @since 1.21
481 */
482 public function getContentModel() {
483 if ( $this->exists() ) {
484 // look at the revision's actual content model
485 $rev = $this->getRevision();
486
487 if ( $rev !== null ) {
488 return $rev->getContentModel();
489 } else {
490 $title = $this->mTitle->getPrefixedDBkey();
491 wfWarn( "Page $title exists but has no (visible) revisions!" );
492 }
493 }
494
495 // use the default model for this page
496 return $this->mTitle->getContentModel();
497 }
498
499 /**
500 * Loads page_touched and returns a value indicating if it should be used
501 * @return boolean true if not a redirect
502 */
503 public function checkTouched() {
504 if ( !$this->mDataLoaded ) {
505 $this->loadPageData();
506 }
507 return !$this->mIsRedirect;
508 }
509
510 /**
511 * Get the page_touched field
512 * @return string containing GMT timestamp
513 */
514 public function getTouched() {
515 if ( !$this->mDataLoaded ) {
516 $this->loadPageData();
517 }
518 return $this->mTouched;
519 }
520
521 /**
522 * Get the page_latest field
523 * @return integer rev_id of current revision
524 */
525 public function getLatest() {
526 if ( !$this->mDataLoaded ) {
527 $this->loadPageData();
528 }
529 return (int)$this->mLatest;
530 }
531
532 /**
533 * Get the Revision object of the oldest revision
534 * @return Revision|null
535 */
536 public function getOldestRevision() {
537 wfProfileIn( __METHOD__ );
538
539 // Try using the slave database first, then try the master
540 $continue = 2;
541 $db = wfGetDB( DB_SLAVE );
542 $revSelectFields = Revision::selectFields();
543
544 while ( $continue ) {
545 $row = $db->selectRow(
546 array( 'page', 'revision' ),
547 $revSelectFields,
548 array(
549 'page_namespace' => $this->mTitle->getNamespace(),
550 'page_title' => $this->mTitle->getDBkey(),
551 'rev_page = page_id'
552 ),
553 __METHOD__,
554 array(
555 'ORDER BY' => 'rev_timestamp ASC'
556 )
557 );
558
559 if ( $row ) {
560 $continue = 0;
561 } else {
562 $db = wfGetDB( DB_MASTER );
563 $continue--;
564 }
565 }
566
567 wfProfileOut( __METHOD__ );
568 return $row ? Revision::newFromRow( $row ) : null;
569 }
570
571 /**
572 * Loads everything except the text
573 * This isn't necessary for all uses, so it's only done if needed.
574 */
575 protected function loadLastEdit() {
576 if ( $this->mLastRevision !== null ) {
577 return; // already loaded
578 }
579
580 $latest = $this->getLatest();
581 if ( !$latest ) {
582 return; // page doesn't exist or is missing page_latest info
583 }
584
585 // Bug 37225: if session S1 loads the page row FOR UPDATE, the result always includes the
586 // latest changes committed. This is true even within REPEATABLE-READ transactions, where
587 // S1 normally only sees changes committed before the first S1 SELECT. Thus we need S1 to
588 // also gets the revision row FOR UPDATE; otherwise, it may not find it since a page row
589 // UPDATE and revision row INSERT by S2 may have happened after the first S1 SELECT.
590 // http://dev.mysql.com/doc/refman/5.0/en/set-transaction.html#isolevel_repeatable-read.
591 $flags = ( $this->mDataLoadedFrom == self::READ_LOCKING ) ? Revision::READ_LOCKING : 0;
592 $revision = Revision::newFromPageId( $this->getId(), $latest, $flags );
593 if ( $revision ) { // sanity
594 $this->setLastEdit( $revision );
595 }
596 }
597
598 /**
599 * Set the latest revision
600 */
601 protected function setLastEdit( Revision $revision ) {
602 $this->mLastRevision = $revision;
603 $this->mTimestamp = $revision->getTimestamp();
604 }
605
606 /**
607 * Get the latest revision
608 * @return Revision|null
609 */
610 public function getRevision() {
611 $this->loadLastEdit();
612 if ( $this->mLastRevision ) {
613 return $this->mLastRevision;
614 }
615 return null;
616 }
617
618 /**
619 * Get the content of the current revision. No side-effects...
620 *
621 * @param $audience Integer: one of:
622 * Revision::FOR_PUBLIC to be displayed to all users
623 * Revision::FOR_THIS_USER to be displayed to $wgUser
624 * Revision::RAW get the text regardless of permissions
625 * @param $user User object to check for, only if FOR_THIS_USER is passed
626 * to the $audience parameter
627 * @return Content|null The content of the current revision
628 *
629 * @since 1.21
630 */
631 public function getContent( $audience = Revision::FOR_PUBLIC, User $user = null ) {
632 $this->loadLastEdit();
633 if ( $this->mLastRevision ) {
634 return $this->mLastRevision->getContent( $audience, $user );
635 }
636 return null;
637 }
638
639 /**
640 * Get the text of the current revision. No side-effects...
641 *
642 * @param $audience Integer: one of:
643 * Revision::FOR_PUBLIC to be displayed to all users
644 * Revision::FOR_THIS_USER to be displayed to the given user
645 * Revision::RAW get the text regardless of permissions
646 * @param $user User object to check for, only if FOR_THIS_USER is passed
647 * to the $audience parameter
648 * @return String|false The text of the current revision
649 * @deprecated as of 1.21, getContent() should be used instead.
650 */
651 public function getText( $audience = Revision::FOR_PUBLIC, User $user = null ) { // @todo deprecated, replace usage!
652 ContentHandler::deprecated( __METHOD__, '1.21' );
653
654 $this->loadLastEdit();
655 if ( $this->mLastRevision ) {
656 return $this->mLastRevision->getText( $audience, $user );
657 }
658 return false;
659 }
660
661 /**
662 * Get the text of the current revision. No side-effects...
663 *
664 * @return String|bool The text of the current revision. False on failure
665 * @deprecated as of 1.21, getContent() should be used instead.
666 */
667 public function getRawText() {
668 ContentHandler::deprecated( __METHOD__, '1.21' );
669
670 return $this->getText( Revision::RAW );
671 }
672
673 /**
674 * @return string MW timestamp of last article revision
675 */
676 public function getTimestamp() {
677 // Check if the field has been filled by WikiPage::setTimestamp()
678 if ( !$this->mTimestamp ) {
679 $this->loadLastEdit();
680 }
681
682 return wfTimestamp( TS_MW, $this->mTimestamp );
683 }
684
685 /**
686 * Set the page timestamp (use only to avoid DB queries)
687 * @param string $ts MW timestamp of last article revision
688 * @return void
689 */
690 public function setTimestamp( $ts ) {
691 $this->mTimestamp = wfTimestamp( TS_MW, $ts );
692 }
693
694 /**
695 * @param $audience Integer: one of:
696 * Revision::FOR_PUBLIC to be displayed to all users
697 * Revision::FOR_THIS_USER to be displayed to the given user
698 * Revision::RAW get the text regardless of permissions
699 * @param $user User object to check for, only if FOR_THIS_USER is passed
700 * to the $audience parameter
701 * @return int user ID for the user that made the last article revision
702 */
703 public function getUser( $audience = Revision::FOR_PUBLIC, User $user = null ) {
704 $this->loadLastEdit();
705 if ( $this->mLastRevision ) {
706 return $this->mLastRevision->getUser( $audience, $user );
707 } else {
708 return -1;
709 }
710 }
711
712 /**
713 * Get the User object of the user who created the page
714 * @param $audience Integer: one of:
715 * Revision::FOR_PUBLIC to be displayed to all users
716 * Revision::FOR_THIS_USER to be displayed to the given user
717 * Revision::RAW get the text regardless of permissions
718 * @param $user User object to check for, only if FOR_THIS_USER is passed
719 * to the $audience parameter
720 * @return User|null
721 */
722 public function getCreator( $audience = Revision::FOR_PUBLIC, User $user = null ) {
723 $revision = $this->getOldestRevision();
724 if ( $revision ) {
725 $userName = $revision->getUserText( $audience, $user );
726 return User::newFromName( $userName, false );
727 } else {
728 return null;
729 }
730 }
731
732 /**
733 * @param $audience Integer: one of:
734 * Revision::FOR_PUBLIC to be displayed to all users
735 * Revision::FOR_THIS_USER to be displayed to the given user
736 * Revision::RAW get the text regardless of permissions
737 * @param $user User object to check for, only if FOR_THIS_USER is passed
738 * to the $audience parameter
739 * @return string username of the user that made the last article revision
740 */
741 public function getUserText( $audience = Revision::FOR_PUBLIC, User $user = null ) {
742 $this->loadLastEdit();
743 if ( $this->mLastRevision ) {
744 return $this->mLastRevision->getUserText( $audience, $user );
745 } else {
746 return '';
747 }
748 }
749
750 /**
751 * @param $audience Integer: one of:
752 * Revision::FOR_PUBLIC to be displayed to all users
753 * Revision::FOR_THIS_USER to be displayed to the given user
754 * Revision::RAW get the text regardless of permissions
755 * @param $user User object to check for, only if FOR_THIS_USER is passed
756 * to the $audience parameter
757 * @return string Comment stored for the last article revision
758 */
759 public function getComment( $audience = Revision::FOR_PUBLIC, User $user = null ) {
760 $this->loadLastEdit();
761 if ( $this->mLastRevision ) {
762 return $this->mLastRevision->getComment( $audience, $user );
763 } else {
764 return '';
765 }
766 }
767
768 /**
769 * Returns true if last revision was marked as "minor edit"
770 *
771 * @return boolean Minor edit indicator for the last article revision.
772 */
773 public function getMinorEdit() {
774 $this->loadLastEdit();
775 if ( $this->mLastRevision ) {
776 return $this->mLastRevision->isMinor();
777 } else {
778 return false;
779 }
780 }
781
782 /**
783 * Get the cached timestamp for the last time the page changed.
784 * This is only used to help handle slave lag by comparing to page_touched.
785 * @return string MW timestamp
786 */
787 protected function getCachedLastEditTime() {
788 global $wgMemc;
789 $key = wfMemcKey( 'page-lastedit', md5( $this->mTitle->getPrefixedDBkey() ) );
790 return $wgMemc->get( $key );
791 }
792
793 /**
794 * Set the cached timestamp for the last time the page changed.
795 * This is only used to help handle slave lag by comparing to page_touched.
796 * @param $timestamp string
797 * @return void
798 */
799 public function setCachedLastEditTime( $timestamp ) {
800 global $wgMemc;
801 $key = wfMemcKey( 'page-lastedit', md5( $this->mTitle->getPrefixedDBkey() ) );
802 $wgMemc->set( $key, wfTimestamp( TS_MW, $timestamp ), 60 * 15 );
803 }
804
805 /**
806 * Determine whether a page would be suitable for being counted as an
807 * article in the site_stats table based on the title & its content
808 *
809 * @param $editInfo Object|bool (false): object returned by prepareTextForEdit(),
810 * if false, the current database state will be used
811 * @return Boolean
812 */
813 public function isCountable( $editInfo = false ) {
814 global $wgArticleCountMethod;
815
816 if ( !$this->mTitle->isContentPage() ) {
817 return false;
818 }
819
820 if ( $editInfo ) {
821 $content = $editInfo->pstContent;
822 } else {
823 $content = $this->getContent();
824 }
825
826 if ( !$content || $content->isRedirect() ) {
827 return false;
828 }
829
830 $hasLinks = null;
831
832 if ( $wgArticleCountMethod === 'link' ) {
833 // nasty special case to avoid re-parsing to detect links
834
835 if ( $editInfo ) {
836 // ParserOutput::getLinks() is a 2D array of page links, so
837 // to be really correct we would need to recurse in the array
838 // but the main array should only have items in it if there are
839 // links.
840 $hasLinks = (bool)count( $editInfo->output->getLinks() );
841 } else {
842 $hasLinks = (bool)wfGetDB( DB_SLAVE )->selectField( 'pagelinks', 1,
843 array( 'pl_from' => $this->getId() ), __METHOD__ );
844 }
845 }
846
847 return $content->isCountable( $hasLinks );
848 }
849
850 /**
851 * If this page is a redirect, get its target
852 *
853 * The target will be fetched from the redirect table if possible.
854 * If this page doesn't have an entry there, call insertRedirect()
855 * @return Title|mixed object, or null if this page is not a redirect
856 */
857 public function getRedirectTarget() {
858 if ( !$this->mTitle->isRedirect() ) {
859 return null;
860 }
861
862 if ( $this->mRedirectTarget !== null ) {
863 return $this->mRedirectTarget;
864 }
865
866 // Query the redirect table
867 $dbr = wfGetDB( DB_SLAVE );
868 $row = $dbr->selectRow( 'redirect',
869 array( 'rd_namespace', 'rd_title', 'rd_fragment', 'rd_interwiki' ),
870 array( 'rd_from' => $this->getId() ),
871 __METHOD__
872 );
873
874 // rd_fragment and rd_interwiki were added later, populate them if empty
875 if ( $row && !is_null( $row->rd_fragment ) && !is_null( $row->rd_interwiki ) ) {
876 return $this->mRedirectTarget = Title::makeTitle(
877 $row->rd_namespace, $row->rd_title,
878 $row->rd_fragment, $row->rd_interwiki );
879 }
880
881 // This page doesn't have an entry in the redirect table
882 return $this->mRedirectTarget = $this->insertRedirect();
883 }
884
885 /**
886 * Insert an entry for this page into the redirect table.
887 *
888 * Don't call this function directly unless you know what you're doing.
889 * @return Title object or null if not a redirect
890 */
891 public function insertRedirect() {
892 // recurse through to only get the final target
893 $content = $this->getContent();
894 $retval = $content ? $content->getUltimateRedirectTarget() : null;
895 if ( !$retval ) {
896 return null;
897 }
898 $this->insertRedirectEntry( $retval );
899 return $retval;
900 }
901
902 /**
903 * Insert or update the redirect table entry for this page to indicate
904 * it redirects to $rt .
905 * @param $rt Title redirect target
906 */
907 public function insertRedirectEntry( $rt ) {
908 $dbw = wfGetDB( DB_MASTER );
909 $dbw->replace( 'redirect', array( 'rd_from' ),
910 array(
911 'rd_from' => $this->getId(),
912 'rd_namespace' => $rt->getNamespace(),
913 'rd_title' => $rt->getDBkey(),
914 'rd_fragment' => $rt->getFragment(),
915 'rd_interwiki' => $rt->getInterwiki(),
916 ),
917 __METHOD__
918 );
919 }
920
921 /**
922 * Get the Title object or URL this page redirects to
923 *
924 * @return mixed false, Title of in-wiki target, or string with URL
925 */
926 public function followRedirect() {
927 return $this->getRedirectURL( $this->getRedirectTarget() );
928 }
929
930 /**
931 * Get the Title object or URL to use for a redirect. We use Title
932 * objects for same-wiki, non-special redirects and URLs for everything
933 * else.
934 * @param $rt Title Redirect target
935 * @return mixed false, Title object of local target, or string with URL
936 */
937 public function getRedirectURL( $rt ) {
938 if ( !$rt ) {
939 return false;
940 }
941
942 if ( $rt->isExternal() ) {
943 if ( $rt->isLocal() ) {
944 // Offsite wikis need an HTTP redirect.
945 //
946 // This can be hard to reverse and may produce loops,
947 // so they may be disabled in the site configuration.
948 $source = $this->mTitle->getFullURL( 'redirect=no' );
949 return $rt->getFullURL( array( 'rdfrom' => $source ) );
950 } else {
951 // External pages pages without "local" bit set are not valid
952 // redirect targets
953 return false;
954 }
955 }
956
957 if ( $rt->isSpecialPage() ) {
958 // Gotta handle redirects to special pages differently:
959 // Fill the HTTP response "Location" header and ignore
960 // the rest of the page we're on.
961 //
962 // Some pages are not valid targets
963 if ( $rt->isValidRedirectTarget() ) {
964 return $rt->getFullURL();
965 } else {
966 return false;
967 }
968 }
969
970 return $rt;
971 }
972
973 /**
974 * Get a list of users who have edited this article, not including the user who made
975 * the most recent revision, which you can get from $article->getUser() if you want it
976 * @return UserArrayFromResult
977 */
978 public function getContributors() {
979 // @todo FIXME: This is expensive; cache this info somewhere.
980
981 $dbr = wfGetDB( DB_SLAVE );
982
983 if ( $dbr->implicitGroupby() ) {
984 $realNameField = 'user_real_name';
985 } else {
986 $realNameField = 'MIN(user_real_name) AS user_real_name';
987 }
988
989 $tables = array( 'revision', 'user' );
990
991 $fields = array(
992 'user_id' => 'rev_user',
993 'user_name' => 'rev_user_text',
994 $realNameField,
995 'timestamp' => 'MAX(rev_timestamp)',
996 );
997
998 $conds = array( 'rev_page' => $this->getId() );
999
1000 // The user who made the top revision gets credited as "this page was last edited by
1001 // John, based on contributions by Tom, Dick and Harry", so don't include them twice.
1002 $user = $this->getUser();
1003 if ( $user ) {
1004 $conds[] = "rev_user != $user";
1005 } else {
1006 $conds[] = "rev_user_text != {$dbr->addQuotes( $this->getUserText() )}";
1007 }
1008
1009 $conds[] = "{$dbr->bitAnd( 'rev_deleted', Revision::DELETED_USER )} = 0"; // username hidden?
1010
1011 $jconds = array(
1012 'user' => array( 'LEFT JOIN', 'rev_user = user_id' ),
1013 );
1014
1015 $options = array(
1016 'GROUP BY' => array( 'rev_user', 'rev_user_text' ),
1017 'ORDER BY' => 'timestamp DESC',
1018 );
1019
1020 $res = $dbr->select( $tables, $fields, $conds, __METHOD__, $options, $jconds );
1021 return new UserArrayFromResult( $res );
1022 }
1023
1024 /**
1025 * Get the last N authors
1026 * @param $num Integer: number of revisions to get
1027 * @param string $revLatest the latest rev_id, selected from the master (optional)
1028 * @return array Array of authors, duplicates not removed
1029 */
1030 public function getLastNAuthors( $num, $revLatest = 0 ) {
1031 wfProfileIn( __METHOD__ );
1032 // First try the slave
1033 // If that doesn't have the latest revision, try the master
1034 $continue = 2;
1035 $db = wfGetDB( DB_SLAVE );
1036
1037 do {
1038 $res = $db->select( array( 'page', 'revision' ),
1039 array( 'rev_id', 'rev_user_text' ),
1040 array(
1041 'page_namespace' => $this->mTitle->getNamespace(),
1042 'page_title' => $this->mTitle->getDBkey(),
1043 'rev_page = page_id'
1044 ), __METHOD__,
1045 array(
1046 'ORDER BY' => 'rev_timestamp DESC',
1047 'LIMIT' => $num
1048 )
1049 );
1050
1051 if ( !$res ) {
1052 wfProfileOut( __METHOD__ );
1053 return array();
1054 }
1055
1056 $row = $db->fetchObject( $res );
1057
1058 if ( $continue == 2 && $revLatest && $row->rev_id != $revLatest ) {
1059 $db = wfGetDB( DB_MASTER );
1060 $continue--;
1061 } else {
1062 $continue = 0;
1063 }
1064 } while ( $continue );
1065
1066 $authors = array( $row->rev_user_text );
1067
1068 foreach ( $res as $row ) {
1069 $authors[] = $row->rev_user_text;
1070 }
1071
1072 wfProfileOut( __METHOD__ );
1073 return $authors;
1074 }
1075
1076 /**
1077 * Should the parser cache be used?
1078 *
1079 * @param $parserOptions ParserOptions to check
1080 * @param $oldid int
1081 * @return boolean
1082 */
1083 public function isParserCacheUsed( ParserOptions $parserOptions, $oldid ) {
1084 global $wgEnableParserCache;
1085
1086 return $wgEnableParserCache
1087 && $parserOptions->getStubThreshold() == 0
1088 && $this->exists()
1089 && ( $oldid === null || $oldid === 0 || $oldid === $this->getLatest() )
1090 && $this->getContentHandler()->isParserCacheSupported();
1091 }
1092
1093 /**
1094 * Get a ParserOutput for the given ParserOptions and revision ID.
1095 * The parser cache will be used if possible.
1096 *
1097 * @since 1.19
1098 * @param $parserOptions ParserOptions to use for the parse operation
1099 * @param $oldid Revision ID to get the text from, passing null or 0 will
1100 * get the current revision (default value)
1101 *
1102 * @return ParserOutput or false if the revision was not found
1103 */
1104 public function getParserOutput( ParserOptions $parserOptions, $oldid = null ) {
1105 wfProfileIn( __METHOD__ );
1106
1107 $useParserCache = $this->isParserCacheUsed( $parserOptions, $oldid );
1108 wfDebug( __METHOD__ . ': using parser cache: ' . ( $useParserCache ? 'yes' : 'no' ) . "\n" );
1109 if ( $parserOptions->getStubThreshold() ) {
1110 wfIncrStats( 'pcache_miss_stub' );
1111 }
1112
1113 if ( $useParserCache ) {
1114 $parserOutput = ParserCache::singleton()->get( $this, $parserOptions );
1115 if ( $parserOutput !== false ) {
1116 wfProfileOut( __METHOD__ );
1117 return $parserOutput;
1118 }
1119 }
1120
1121 if ( $oldid === null || $oldid === 0 ) {
1122 $oldid = $this->getLatest();
1123 }
1124
1125 $pool = new PoolWorkArticleView( $this, $parserOptions, $oldid, $useParserCache );
1126 $pool->execute();
1127
1128 wfProfileOut( __METHOD__ );
1129
1130 return $pool->getParserOutput();
1131 }
1132
1133 /**
1134 * Do standard deferred updates after page view
1135 * @param $user User The relevant user
1136 */
1137 public function doViewUpdates( User $user ) {
1138 global $wgDisableCounters;
1139 if ( wfReadOnly() ) {
1140 return;
1141 }
1142
1143 // Don't update page view counters on views from bot users (bug 14044)
1144 if ( !$wgDisableCounters && !$user->isAllowed( 'bot' ) && $this->exists() ) {
1145 DeferredUpdates::addUpdate( new ViewCountUpdate( $this->getId() ) );
1146 DeferredUpdates::addUpdate( new SiteStatsUpdate( 1, 0, 0 ) );
1147 }
1148
1149 // Update newtalk / watchlist notification status
1150 $user->clearNotification( $this->mTitle );
1151 }
1152
1153 /**
1154 * Perform the actions of a page purging
1155 * @return bool
1156 */
1157 public function doPurge() {
1158 global $wgUseSquid;
1159
1160 if ( !wfRunHooks( 'ArticlePurge', array( &$this ) ) ) {
1161 return false;
1162 }
1163
1164 // Invalidate the cache
1165 $this->mTitle->invalidateCache();
1166
1167 if ( $wgUseSquid ) {
1168 // Commit the transaction before the purge is sent
1169 $dbw = wfGetDB( DB_MASTER );
1170 $dbw->commit( __METHOD__ );
1171
1172 // Send purge
1173 $update = SquidUpdate::newSimplePurge( $this->mTitle );
1174 $update->doUpdate();
1175 }
1176
1177 if ( $this->mTitle->getNamespace() == NS_MEDIAWIKI ) {
1178 // @todo move this logic to MessageCache
1179
1180 if ( $this->exists() ) {
1181 // NOTE: use transclusion text for messages.
1182 // This is consistent with MessageCache::getMsgFromNamespace()
1183
1184 $content = $this->getContent();
1185 $text = $content === null ? null : $content->getWikitextForTransclusion();
1186
1187 if ( $text === null ) {
1188 $text = false;
1189 }
1190 } else {
1191 $text = false;
1192 }
1193
1194 MessageCache::singleton()->replace( $this->mTitle->getDBkey(), $text );
1195 }
1196 return true;
1197 }
1198
1199 /**
1200 * Insert a new empty page record for this article.
1201 * This *must* be followed up by creating a revision
1202 * and running $this->updateRevisionOn( ... );
1203 * or else the record will be left in a funky state.
1204 * Best if all done inside a transaction.
1205 *
1206 * @param $dbw DatabaseBase
1207 * @return int The newly created page_id key, or false if the title already existed
1208 */
1209 public function insertOn( $dbw ) {
1210 wfProfileIn( __METHOD__ );
1211
1212 $page_id = $dbw->nextSequenceValue( 'page_page_id_seq' );
1213 $dbw->insert( 'page', array(
1214 'page_id' => $page_id,
1215 'page_namespace' => $this->mTitle->getNamespace(),
1216 'page_title' => $this->mTitle->getDBkey(),
1217 'page_counter' => 0,
1218 'page_restrictions' => '',
1219 'page_is_redirect' => 0, // Will set this shortly...
1220 'page_is_new' => 1,
1221 'page_random' => wfRandom(),
1222 'page_touched' => $dbw->timestamp(),
1223 'page_latest' => 0, // Fill this in shortly...
1224 'page_len' => 0, // Fill this in shortly...
1225 ), __METHOD__, 'IGNORE' );
1226
1227 $affected = $dbw->affectedRows();
1228
1229 if ( $affected ) {
1230 $newid = $dbw->insertId();
1231 $this->mId = $newid;
1232 $this->mTitle->resetArticleID( $newid );
1233 }
1234 wfProfileOut( __METHOD__ );
1235
1236 return $affected ? $newid : false;
1237 }
1238
1239 /**
1240 * Update the page record to point to a newly saved revision.
1241 *
1242 * @param $dbw DatabaseBase: object
1243 * @param $revision Revision: For ID number, and text used to set
1244 * length and redirect status fields
1245 * @param $lastRevision Integer: if given, will not overwrite the page field
1246 * when different from the currently set value.
1247 * Giving 0 indicates the new page flag should be set
1248 * on.
1249 * @param $lastRevIsRedirect Boolean: if given, will optimize adding and
1250 * removing rows in redirect table.
1251 * @return bool true on success, false on failure
1252 * @private
1253 */
1254 public function updateRevisionOn( $dbw, $revision, $lastRevision = null, $lastRevIsRedirect = null ) {
1255 global $wgContentHandlerUseDB;
1256
1257 wfProfileIn( __METHOD__ );
1258
1259 $content = $revision->getContent();
1260 $len = $content ? $content->getSize() : 0;
1261 $rt = $content ? $content->getUltimateRedirectTarget() : null;
1262
1263 $conditions = array( 'page_id' => $this->getId() );
1264
1265 if ( !is_null( $lastRevision ) ) {
1266 // An extra check against threads stepping on each other
1267 $conditions['page_latest'] = $lastRevision;
1268 }
1269
1270 $now = wfTimestampNow();
1271 $row = array( /* SET */
1272 'page_latest' => $revision->getId(),
1273 'page_touched' => $dbw->timestamp( $now ),
1274 'page_is_new' => ( $lastRevision === 0 ) ? 1 : 0,
1275 'page_is_redirect' => $rt !== null ? 1 : 0,
1276 'page_len' => $len,
1277 );
1278
1279 if ( $wgContentHandlerUseDB ) {
1280 $row['page_content_model'] = $revision->getContentModel();
1281 }
1282
1283 $dbw->update( 'page',
1284 $row,
1285 $conditions,
1286 __METHOD__ );
1287
1288 $result = $dbw->affectedRows() > 0;
1289 if ( $result ) {
1290 $this->updateRedirectOn( $dbw, $rt, $lastRevIsRedirect );
1291 $this->setLastEdit( $revision );
1292 $this->setCachedLastEditTime( $now );
1293 $this->mLatest = $revision->getId();
1294 $this->mIsRedirect = (bool)$rt;
1295 // Update the LinkCache.
1296 LinkCache::singleton()->addGoodLinkObj( $this->getId(), $this->mTitle, $len, $this->mIsRedirect,
1297 $this->mLatest, $revision->getContentModel() );
1298 }
1299
1300 wfProfileOut( __METHOD__ );
1301 return $result;
1302 }
1303
1304 /**
1305 * Add row to the redirect table if this is a redirect, remove otherwise.
1306 *
1307 * @param $dbw DatabaseBase
1308 * @param $redirectTitle Title object pointing to the redirect target,
1309 * or NULL if this is not a redirect
1310 * @param $lastRevIsRedirect null|bool If given, will optimize adding and
1311 * removing rows in redirect table.
1312 * @return bool true on success, false on failure
1313 * @private
1314 */
1315 public function updateRedirectOn( $dbw, $redirectTitle, $lastRevIsRedirect = null ) {
1316 // Always update redirects (target link might have changed)
1317 // Update/Insert if we don't know if the last revision was a redirect or not
1318 // Delete if changing from redirect to non-redirect
1319 $isRedirect = !is_null( $redirectTitle );
1320
1321 if ( !$isRedirect && $lastRevIsRedirect === false ) {
1322 return true;
1323 }
1324
1325 wfProfileIn( __METHOD__ );
1326 if ( $isRedirect ) {
1327 $this->insertRedirectEntry( $redirectTitle );
1328 } else {
1329 // This is not a redirect, remove row from redirect table
1330 $where = array( 'rd_from' => $this->getId() );
1331 $dbw->delete( 'redirect', $where, __METHOD__ );
1332 }
1333
1334 if ( $this->getTitle()->getNamespace() == NS_FILE ) {
1335 RepoGroup::singleton()->getLocalRepo()->invalidateImageRedirect( $this->getTitle() );
1336 }
1337 wfProfileOut( __METHOD__ );
1338
1339 return ( $dbw->affectedRows() != 0 );
1340 }
1341
1342 /**
1343 * If the given revision is newer than the currently set page_latest,
1344 * update the page record. Otherwise, do nothing.
1345 *
1346 * @param $dbw DatabaseBase object
1347 * @param $revision Revision object
1348 * @return mixed
1349 */
1350 public function updateIfNewerOn( $dbw, $revision ) {
1351 wfProfileIn( __METHOD__ );
1352
1353 $row = $dbw->selectRow(
1354 array( 'revision', 'page' ),
1355 array( 'rev_id', 'rev_timestamp', 'page_is_redirect' ),
1356 array(
1357 'page_id' => $this->getId(),
1358 'page_latest=rev_id' ),
1359 __METHOD__ );
1360
1361 if ( $row ) {
1362 if ( wfTimestamp( TS_MW, $row->rev_timestamp ) >= $revision->getTimestamp() ) {
1363 wfProfileOut( __METHOD__ );
1364 return false;
1365 }
1366 $prev = $row->rev_id;
1367 $lastRevIsRedirect = (bool)$row->page_is_redirect;
1368 } else {
1369 // No or missing previous revision; mark the page as new
1370 $prev = 0;
1371 $lastRevIsRedirect = null;
1372 }
1373
1374 $ret = $this->updateRevisionOn( $dbw, $revision, $prev, $lastRevIsRedirect );
1375
1376 wfProfileOut( __METHOD__ );
1377 return $ret;
1378 }
1379
1380 /**
1381 * Get the content that needs to be saved in order to undo all revisions
1382 * between $undo and $undoafter. Revisions must belong to the same page,
1383 * must exist and must not be deleted
1384 * @param $undo Revision
1385 * @param $undoafter Revision Must be an earlier revision than $undo
1386 * @return mixed string on success, false on failure
1387 * @since 1.21
1388 * Before we had the Content object, this was done in getUndoText
1389 */
1390 public function getUndoContent( Revision $undo, Revision $undoafter = null ) {
1391 $handler = $undo->getContentHandler();
1392 return $handler->getUndoContent( $this->getRevision(), $undo, $undoafter );
1393 }
1394
1395 /**
1396 * Get the text that needs to be saved in order to undo all revisions
1397 * between $undo and $undoafter. Revisions must belong to the same page,
1398 * must exist and must not be deleted
1399 * @param $undo Revision
1400 * @param $undoafter Revision Must be an earlier revision than $undo
1401 * @return mixed string on success, false on failure
1402 * @deprecated since 1.21: use ContentHandler::getUndoContent() instead.
1403 */
1404 public function getUndoText( Revision $undo, Revision $undoafter = null ) {
1405 ContentHandler::deprecated( __METHOD__, '1.21' );
1406
1407 $this->loadLastEdit();
1408
1409 if ( $this->mLastRevision ) {
1410 if ( is_null( $undoafter ) ) {
1411 $undoafter = $undo->getPrevious();
1412 }
1413
1414 $handler = $this->getContentHandler();
1415 $undone = $handler->getUndoContent( $this->mLastRevision, $undo, $undoafter );
1416
1417 if ( !$undone ) {
1418 return false;
1419 } else {
1420 return ContentHandler::getContentText( $undone );
1421 }
1422 }
1423
1424 return false;
1425 }
1426
1427 /**
1428 * @param $section null|bool|int or a section number (0, 1, 2, T1, T2...)
1429 * @param string $text new text of the section
1430 * @param string $sectionTitle new section's subject, only if $section is 'new'
1431 * @param string $edittime revision timestamp or null to use the current revision
1432 * @throws MWException
1433 * @return String new complete article text, or null if error
1434 *
1435 * @deprecated since 1.21, use replaceSectionContent() instead
1436 */
1437 public function replaceSection( $section, $text, $sectionTitle = '', $edittime = null ) {
1438 ContentHandler::deprecated( __METHOD__, '1.21' );
1439
1440 if ( strval( $section ) == '' ) { //NOTE: keep condition in sync with condition in replaceSectionContent!
1441 // Whole-page edit; let the whole text through
1442 return $text;
1443 }
1444
1445 if ( !$this->supportsSections() ) {
1446 throw new MWException( "sections not supported for content model " . $this->getContentHandler()->getModelID() );
1447 }
1448
1449 // could even make section title, but that's not required.
1450 $sectionContent = ContentHandler::makeContent( $text, $this->getTitle() );
1451
1452 $newContent = $this->replaceSectionContent( $section, $sectionContent, $sectionTitle, $edittime );
1453
1454 return ContentHandler::getContentText( $newContent );
1455 }
1456
1457 /**
1458 * Returns true iff this page's content model supports sections.
1459 *
1460 * @return boolean whether sections are supported.
1461 *
1462 * @todo The skin should check this and not offer section functionality if sections are not supported.
1463 * @todo The EditPage should check this and not offer section functionality if sections are not supported.
1464 */
1465 public function supportsSections() {
1466 return $this->getContentHandler()->supportsSections();
1467 }
1468
1469 /**
1470 * @param $section null|bool|int or a section number (0, 1, 2, T1, T2...)
1471 * @param $sectionContent Content: new content of the section
1472 * @param string $sectionTitle new section's subject, only if $section is 'new'
1473 * @param string $edittime revision timestamp or null to use the current revision
1474 *
1475 * @throws MWException
1476 * @return Content new complete article content, or null if error
1477 *
1478 * @since 1.21
1479 */
1480 public function replaceSectionContent( $section, Content $sectionContent, $sectionTitle = '', $edittime = null ) {
1481 wfProfileIn( __METHOD__ );
1482
1483 if ( strval( $section ) == '' ) {
1484 // Whole-page edit; let the whole text through
1485 $newContent = $sectionContent;
1486 } else {
1487 if ( !$this->supportsSections() ) {
1488 wfProfileOut( __METHOD__ );
1489 throw new MWException( "sections not supported for content model " . $this->getContentHandler()->getModelID() );
1490 }
1491
1492 // Bug 30711: always use current version when adding a new section
1493 if ( is_null( $edittime ) || $section == 'new' ) {
1494 $oldContent = $this->getContent();
1495 } else {
1496 $dbw = wfGetDB( DB_MASTER );
1497 $rev = Revision::loadFromTimestamp( $dbw, $this->mTitle, $edittime );
1498
1499 if ( !$rev ) {
1500 wfDebug( "WikiPage::replaceSection asked for bogus section (page: " .
1501 $this->getId() . "; section: $section; edittime: $edittime)\n" );
1502 wfProfileOut( __METHOD__ );
1503 return null;
1504 }
1505
1506 $oldContent = $rev->getContent();
1507 }
1508
1509 if ( ! $oldContent ) {
1510 wfDebug( __METHOD__ . ": no page text\n" );
1511 wfProfileOut( __METHOD__ );
1512 return null;
1513 }
1514
1515 // FIXME: $oldContent might be null?
1516 $newContent = $oldContent->replaceSection( $section, $sectionContent, $sectionTitle );
1517 }
1518
1519 wfProfileOut( __METHOD__ );
1520 return $newContent;
1521 }
1522
1523 /**
1524 * Check flags and add EDIT_NEW or EDIT_UPDATE to them as needed.
1525 * @param $flags Int
1526 * @return Int updated $flags
1527 */
1528 function checkFlags( $flags ) {
1529 if ( !( $flags & EDIT_NEW ) && !( $flags & EDIT_UPDATE ) ) {
1530 if ( $this->exists() ) {
1531 $flags |= EDIT_UPDATE;
1532 } else {
1533 $flags |= EDIT_NEW;
1534 }
1535 }
1536
1537 return $flags;
1538 }
1539
1540 /**
1541 * Change an existing article or create a new article. Updates RC and all necessary caches,
1542 * optionally via the deferred update array.
1543 *
1544 * @param string $text new text
1545 * @param string $summary edit summary
1546 * @param $flags Integer bitfield:
1547 * EDIT_NEW
1548 * Article is known or assumed to be non-existent, create a new one
1549 * EDIT_UPDATE
1550 * Article is known or assumed to be pre-existing, update it
1551 * EDIT_MINOR
1552 * Mark this edit minor, if the user is allowed to do so
1553 * EDIT_SUPPRESS_RC
1554 * Do not log the change in recentchanges
1555 * EDIT_FORCE_BOT
1556 * Mark the edit a "bot" edit regardless of user rights
1557 * EDIT_DEFER_UPDATES
1558 * Defer some of the updates until the end of index.php
1559 * EDIT_AUTOSUMMARY
1560 * Fill in blank summaries with generated text where possible
1561 *
1562 * If neither EDIT_NEW nor EDIT_UPDATE is specified, the status of the article will be detected.
1563 * If EDIT_UPDATE is specified and the article doesn't exist, the function will return an
1564 * edit-gone-missing error. If EDIT_NEW is specified and the article does exist, an
1565 * edit-already-exists error will be returned. These two conditions are also possible with
1566 * auto-detection due to MediaWiki's performance-optimised locking strategy.
1567 *
1568 * @param bool|int $baseRevId int the revision ID this edit was based off, if any
1569 * @param $user User the user doing the edit
1570 *
1571 * @throws MWException
1572 * @return Status object. Possible errors:
1573 * edit-hook-aborted: The ArticleSave hook aborted the edit but didn't set the fatal flag of $status
1574 * edit-gone-missing: In update mode, but the article didn't exist
1575 * edit-conflict: In update mode, the article changed unexpectedly
1576 * edit-no-change: Warning that the text was the same as before
1577 * edit-already-exists: In creation mode, but the article already exists
1578 *
1579 * Extensions may define additional errors.
1580 *
1581 * $return->value will contain an associative array with members as follows:
1582 * new: Boolean indicating if the function attempted to create a new article
1583 * revision: The revision object for the inserted revision, or null
1584 *
1585 * Compatibility note: this function previously returned a boolean value indicating success/failure
1586 *
1587 * @deprecated since 1.21: use doEditContent() instead.
1588 */
1589 public function doEdit( $text, $summary, $flags = 0, $baseRevId = false, $user = null ) {
1590 ContentHandler::deprecated( __METHOD__, '1.21' );
1591
1592 $content = ContentHandler::makeContent( $text, $this->getTitle() );
1593
1594 return $this->doEditContent( $content, $summary, $flags, $baseRevId, $user );
1595 }
1596
1597 /**
1598 * Change an existing article or create a new article. Updates RC and all necessary caches,
1599 * optionally via the deferred update array.
1600 *
1601 * @param $content Content: new content
1602 * @param string $summary edit summary
1603 * @param $flags Integer bitfield:
1604 * EDIT_NEW
1605 * Article is known or assumed to be non-existent, create a new one
1606 * EDIT_UPDATE
1607 * Article is known or assumed to be pre-existing, update it
1608 * EDIT_MINOR
1609 * Mark this edit minor, if the user is allowed to do so
1610 * EDIT_SUPPRESS_RC
1611 * Do not log the change in recentchanges
1612 * EDIT_FORCE_BOT
1613 * Mark the edit a "bot" edit regardless of user rights
1614 * EDIT_DEFER_UPDATES
1615 * Defer some of the updates until the end of index.php
1616 * EDIT_AUTOSUMMARY
1617 * Fill in blank summaries with generated text where possible
1618 *
1619 * If neither EDIT_NEW nor EDIT_UPDATE is specified, the status of the article will be detected.
1620 * If EDIT_UPDATE is specified and the article doesn't exist, the function will return an
1621 * edit-gone-missing error. If EDIT_NEW is specified and the article does exist, an
1622 * edit-already-exists error will be returned. These two conditions are also possible with
1623 * auto-detection due to MediaWiki's performance-optimised locking strategy.
1624 *
1625 * @param bool|\the $baseRevId the revision ID this edit was based off, if any
1626 * @param $user User the user doing the edit
1627 * @param $serialisation_format String: format for storing the content in the database
1628 *
1629 * @throws MWException
1630 * @return Status object. Possible errors:
1631 * edit-hook-aborted: The ArticleSave hook aborted the edit but didn't set the fatal flag of $status
1632 * edit-gone-missing: In update mode, but the article didn't exist
1633 * edit-conflict: In update mode, the article changed unexpectedly
1634 * edit-no-change: Warning that the text was the same as before
1635 * edit-already-exists: In creation mode, but the article already exists
1636 *
1637 * Extensions may define additional errors.
1638 *
1639 * $return->value will contain an associative array with members as follows:
1640 * new: Boolean indicating if the function attempted to create a new article
1641 * revision: The revision object for the inserted revision, or null
1642 *
1643 * @since 1.21
1644 */
1645 public function doEditContent( Content $content, $summary, $flags = 0, $baseRevId = false,
1646 User $user = null, $serialisation_format = null ) {
1647 global $wgUser, $wgUseAutomaticEditSummaries, $wgUseRCPatrol, $wgUseNPPatrol;
1648
1649 // Low-level sanity check
1650 if ( $this->mTitle->getText() === '' ) {
1651 throw new MWException( 'Something is trying to edit an article with an empty title' );
1652 }
1653
1654 wfProfileIn( __METHOD__ );
1655
1656 if ( !$content->getContentHandler()->canBeUsedOn( $this->getTitle() ) ) {
1657 wfProfileOut( __METHOD__ );
1658 return Status::newFatal( 'content-not-allowed-here',
1659 ContentHandler::getLocalizedName( $content->getModel() ),
1660 $this->getTitle()->getPrefixedText() );
1661 }
1662
1663 $user = is_null( $user ) ? $wgUser : $user;
1664 $status = Status::newGood( array() );
1665
1666 // Load the data from the master database if needed.
1667 // The caller may already loaded it from the master or even loaded it using
1668 // SELECT FOR UPDATE, so do not override that using clear().
1669 $this->loadPageData( 'fromdbmaster' );
1670
1671 $flags = $this->checkFlags( $flags );
1672
1673 // handle hook
1674 $hook_args = array( &$this, &$user, &$content, &$summary,
1675 $flags & EDIT_MINOR, null, null, &$flags, &$status );
1676
1677 if ( !wfRunHooks( 'PageContentSave', $hook_args )
1678 || !ContentHandler::runLegacyHooks( 'ArticleSave', $hook_args ) ) {
1679
1680 wfDebug( __METHOD__ . ": ArticleSave or ArticleSaveContent hook aborted save!\n" );
1681
1682 if ( $status->isOK() ) {
1683 $status->fatal( 'edit-hook-aborted' );
1684 }
1685
1686 wfProfileOut( __METHOD__ );
1687 return $status;
1688 }
1689
1690 // Silently ignore EDIT_MINOR if not allowed
1691 $isminor = ( $flags & EDIT_MINOR ) && $user->isAllowed( 'minoredit' );
1692 $bot = $flags & EDIT_FORCE_BOT;
1693
1694 $old_content = $this->getContent( Revision::RAW ); // current revision's content
1695
1696 $oldsize = $old_content ? $old_content->getSize() : 0;
1697 $oldid = $this->getLatest();
1698 $oldIsRedirect = $this->isRedirect();
1699 $oldcountable = $this->isCountable();
1700
1701 $handler = $content->getContentHandler();
1702
1703 // Provide autosummaries if one is not provided and autosummaries are enabled.
1704 if ( $wgUseAutomaticEditSummaries && $flags & EDIT_AUTOSUMMARY && $summary == '' ) {
1705 if ( !$old_content ) {
1706 $old_content = null;
1707 }
1708 $summary = $handler->getAutosummary( $old_content, $content, $flags );
1709 }
1710
1711 $editInfo = $this->prepareContentForEdit( $content, null, $user, $serialisation_format );
1712 $serialized = $editInfo->pst;
1713 $content = $editInfo->pstContent;
1714 $newsize = $content->getSize();
1715
1716 $dbw = wfGetDB( DB_MASTER );
1717 $now = wfTimestampNow();
1718 $this->mTimestamp = $now;
1719
1720 if ( $flags & EDIT_UPDATE ) {
1721 // Update article, but only if changed.
1722 $status->value['new'] = false;
1723
1724 if ( !$oldid ) {
1725 // Article gone missing
1726 wfDebug( __METHOD__ . ": EDIT_UPDATE specified but article doesn't exist\n" );
1727 $status->fatal( 'edit-gone-missing' );
1728
1729 wfProfileOut( __METHOD__ );
1730 return $status;
1731 } elseif ( !$old_content ) {
1732 // Sanity check for bug 37225
1733 wfProfileOut( __METHOD__ );
1734 throw new MWException( "Could not find text for current revision {$oldid}." );
1735 }
1736
1737 $revision = new Revision( array(
1738 'page' => $this->getId(),
1739 'title' => $this->getTitle(), // for determining the default content model
1740 'comment' => $summary,
1741 'minor_edit' => $isminor,
1742 'text' => $serialized,
1743 'len' => $newsize,
1744 'parent_id' => $oldid,
1745 'user' => $user->getId(),
1746 'user_text' => $user->getName(),
1747 'timestamp' => $now,
1748 'content_model' => $content->getModel(),
1749 'content_format' => $serialisation_format,
1750 ) ); // XXX: pass content object?!
1751
1752 $changed = !$content->equals( $old_content );
1753
1754 if ( $changed ) {
1755 if ( !$content->isValid() ) {
1756 wfProfileOut( __METHOD__ );
1757 throw new MWException( "New content failed validity check!" );
1758 }
1759
1760 $dbw->begin( __METHOD__ );
1761
1762 $prepStatus = $content->prepareSave( $this, $flags, $baseRevId, $user );
1763 $status->merge( $prepStatus );
1764
1765 if ( !$status->isOK() ) {
1766 $dbw->rollback( __METHOD__ );
1767
1768 wfProfileOut( __METHOD__ );
1769 return $status;
1770 }
1771
1772 $revisionId = $revision->insertOn( $dbw );
1773
1774 // Update page
1775 //
1776 // Note that we use $this->mLatest instead of fetching a value from the master DB
1777 // during the course of this function. This makes sure that EditPage can detect
1778 // edit conflicts reliably, either by $ok here, or by $article->getTimestamp()
1779 // before this function is called. A previous function used a separate query, this
1780 // creates a window where concurrent edits can cause an ignored edit conflict.
1781 $ok = $this->updateRevisionOn( $dbw, $revision, $oldid, $oldIsRedirect );
1782
1783 if ( !$ok ) {
1784 // Belated edit conflict! Run away!!
1785 $status->fatal( 'edit-conflict' );
1786
1787 $dbw->rollback( __METHOD__ );
1788
1789 wfProfileOut( __METHOD__ );
1790 return $status;
1791 }
1792
1793 wfRunHooks( 'NewRevisionFromEditComplete', array( $this, $revision, $baseRevId, $user ) );
1794 // Update recentchanges
1795 if ( !( $flags & EDIT_SUPPRESS_RC ) ) {
1796 // Mark as patrolled if the user can do so
1797 $patrolled = $wgUseRCPatrol && !count(
1798 $this->mTitle->getUserPermissionsErrors( 'autopatrol', $user ) );
1799 // Add RC row to the DB
1800 $rc = RecentChange::notifyEdit( $now, $this->mTitle, $isminor, $user, $summary,
1801 $oldid, $this->getTimestamp(), $bot, '', $oldsize, $newsize,
1802 $revisionId, $patrolled
1803 );
1804
1805 // Log auto-patrolled edits
1806 if ( $patrolled ) {
1807 PatrolLog::record( $rc, true, $user );
1808 }
1809 }
1810 $user->incEditCount();
1811 $dbw->commit( __METHOD__ );
1812 } else {
1813 // Bug 32948: revision ID must be set to page {{REVISIONID}} and
1814 // related variables correctly
1815 $revision->setId( $this->getLatest() );
1816 }
1817
1818 // Update links tables, site stats, etc.
1819 $this->doEditUpdates(
1820 $revision,
1821 $user,
1822 array(
1823 'changed' => $changed,
1824 'oldcountable' => $oldcountable
1825 )
1826 );
1827
1828 if ( !$changed ) {
1829 $status->warning( 'edit-no-change' );
1830 $revision = null;
1831 // Update page_touched, this is usually implicit in the page update
1832 // Other cache updates are done in onArticleEdit()
1833 $this->mTitle->invalidateCache();
1834 }
1835 } else {
1836 // Create new article
1837 $status->value['new'] = true;
1838
1839 $dbw->begin( __METHOD__ );
1840
1841 $prepStatus = $content->prepareSave( $this, $flags, $baseRevId, $user );
1842 $status->merge( $prepStatus );
1843
1844 if ( !$status->isOK() ) {
1845 $dbw->rollback( __METHOD__ );
1846
1847 wfProfileOut( __METHOD__ );
1848 return $status;
1849 }
1850
1851 $status->merge( $prepStatus );
1852
1853 // Add the page record; stake our claim on this title!
1854 // This will return false if the article already exists
1855 $newid = $this->insertOn( $dbw );
1856
1857 if ( $newid === false ) {
1858 $dbw->rollback( __METHOD__ );
1859 $status->fatal( 'edit-already-exists' );
1860
1861 wfProfileOut( __METHOD__ );
1862 return $status;
1863 }
1864
1865 // Save the revision text...
1866 $revision = new Revision( array(
1867 'page' => $newid,
1868 'title' => $this->getTitle(), // for determining the default content model
1869 'comment' => $summary,
1870 'minor_edit' => $isminor,
1871 'text' => $serialized,
1872 'len' => $newsize,
1873 'user' => $user->getId(),
1874 'user_text' => $user->getName(),
1875 'timestamp' => $now,
1876 'content_model' => $content->getModel(),
1877 'content_format' => $serialisation_format,
1878 ) );
1879 $revisionId = $revision->insertOn( $dbw );
1880
1881 // Bug 37225: use accessor to get the text as Revision may trim it
1882 $content = $revision->getContent(); // sanity; get normalized version
1883
1884 if ( $content ) {
1885 $newsize = $content->getSize();
1886 }
1887
1888 // Update the page record with revision data
1889 $this->updateRevisionOn( $dbw, $revision, 0 );
1890
1891 wfRunHooks( 'NewRevisionFromEditComplete', array( $this, $revision, false, $user ) );
1892
1893 // Update recentchanges
1894 if ( !( $flags & EDIT_SUPPRESS_RC ) ) {
1895 // Mark as patrolled if the user can do so
1896 $patrolled = ( $wgUseRCPatrol || $wgUseNPPatrol ) && !count(
1897 $this->mTitle->getUserPermissionsErrors( 'autopatrol', $user ) );
1898 // Add RC row to the DB
1899 $rc = RecentChange::notifyNew( $now, $this->mTitle, $isminor, $user, $summary, $bot,
1900 '', $newsize, $revisionId, $patrolled );
1901
1902 // Log auto-patrolled edits
1903 if ( $patrolled ) {
1904 PatrolLog::record( $rc, true, $user );
1905 }
1906 }
1907 $user->incEditCount();
1908 $dbw->commit( __METHOD__ );
1909
1910 // Update links, etc.
1911 $this->doEditUpdates( $revision, $user, array( 'created' => true ) );
1912
1913 $hook_args = array( &$this, &$user, $content, $summary,
1914 $flags & EDIT_MINOR, null, null, &$flags, $revision );
1915
1916 ContentHandler::runLegacyHooks( 'ArticleInsertComplete', $hook_args );
1917 wfRunHooks( 'PageContentInsertComplete', $hook_args );
1918 }
1919
1920 // Do updates right now unless deferral was requested
1921 if ( !( $flags & EDIT_DEFER_UPDATES ) ) {
1922 DeferredUpdates::doUpdates();
1923 }
1924
1925 // Return the new revision (or null) to the caller
1926 $status->value['revision'] = $revision;
1927
1928 $hook_args = array( &$this, &$user, $content, $summary,
1929 $flags & EDIT_MINOR, null, null, &$flags, $revision, &$status, $baseRevId );
1930
1931 ContentHandler::runLegacyHooks( 'ArticleSaveComplete', $hook_args );
1932 wfRunHooks( 'PageContentSaveComplete', $hook_args );
1933
1934 // Promote user to any groups they meet the criteria for
1935 $user->addAutopromoteOnceGroups( 'onEdit' );
1936
1937 wfProfileOut( __METHOD__ );
1938 return $status;
1939 }
1940
1941 /**
1942 * Get parser options suitable for rendering the primary article wikitext
1943 *
1944 * @see ContentHandler::makeParserOptions
1945 *
1946 * @param IContextSource|User|string $context One of the following:
1947 * - IContextSource: Use the User and the Language of the provided
1948 * context
1949 * - User: Use the provided User object and $wgLang for the language,
1950 * so use an IContextSource object if possible.
1951 * - 'canonical': Canonical options (anonymous user with default
1952 * preferences and content language).
1953 * @return ParserOptions
1954 */
1955 public function makeParserOptions( $context ) {
1956 $options = $this->getContentHandler()->makeParserOptions( $context );
1957
1958 if ( $this->getTitle()->isConversionTable() ) {
1959 // @todo ConversionTable should become a separate content model, so we don't need special cases like this one.
1960 $options->disableContentConversion();
1961 }
1962
1963 return $options;
1964 }
1965
1966 /**
1967 * Prepare text which is about to be saved.
1968 * Returns a stdclass with source, pst and output members
1969 *
1970 * @deprecated in 1.21: use prepareContentForEdit instead.
1971 */
1972 public function prepareTextForEdit( $text, $revid = null, User $user = null ) {
1973 ContentHandler::deprecated( __METHOD__, '1.21' );
1974 $content = ContentHandler::makeContent( $text, $this->getTitle() );
1975 return $this->prepareContentForEdit( $content, $revid, $user );
1976 }
1977
1978 /**
1979 * Prepare content which is about to be saved.
1980 * Returns a stdclass with source, pst and output members
1981 *
1982 * @param \Content $content
1983 * @param null $revid
1984 * @param null|\User $user
1985 * @param null $serialization_format
1986 *
1987 * @return bool|object
1988 *
1989 * @since 1.21
1990 */
1991 public function prepareContentForEdit( Content $content, $revid = null, User $user = null, $serialization_format = null ) {
1992 global $wgContLang, $wgUser;
1993 $user = is_null( $user ) ? $wgUser : $user;
1994 //XXX: check $user->getId() here???
1995
1996 if ( $this->mPreparedEdit
1997 && $this->mPreparedEdit->newContent
1998 && $this->mPreparedEdit->newContent->equals( $content )
1999 && $this->mPreparedEdit->revid == $revid
2000 && $this->mPreparedEdit->format == $serialization_format
2001 // XXX: also check $user here?
2002 ) {
2003 // Already prepared
2004 return $this->mPreparedEdit;
2005 }
2006
2007 $popts = ParserOptions::newFromUserAndLang( $user, $wgContLang );
2008 wfRunHooks( 'ArticlePrepareTextForEdit', array( $this, $popts ) );
2009
2010 $edit = (object)array();
2011 $edit->revid = $revid;
2012
2013 $edit->pstContent = $content ? $content->preSaveTransform( $this->mTitle, $user, $popts ) : null;
2014
2015 $edit->format = $serialization_format;
2016 $edit->popts = $this->makeParserOptions( 'canonical' );
2017 $edit->output = $edit->pstContent ? $edit->pstContent->getParserOutput( $this->mTitle, $revid, $edit->popts ) : null;
2018
2019 $edit->newContent = $content;
2020 $edit->oldContent = $this->getContent( Revision::RAW );
2021
2022 // NOTE: B/C for hooks! don't use these fields!
2023 $edit->newText = $edit->newContent ? ContentHandler::getContentText( $edit->newContent ) : '';
2024 $edit->oldText = $edit->oldContent ? ContentHandler::getContentText( $edit->oldContent ) : '';
2025 $edit->pst = $edit->pstContent ? $edit->pstContent->serialize( $serialization_format ) : '';
2026
2027 $this->mPreparedEdit = $edit;
2028 return $edit;
2029 }
2030
2031 /**
2032 * Do standard deferred updates after page edit.
2033 * Update links tables, site stats, search index and message cache.
2034 * Purges pages that include this page if the text was changed here.
2035 * Every 100th edit, prune the recent changes table.
2036 *
2037 * @param $revision Revision object
2038 * @param $user User object that did the revision
2039 * @param array $options of options, following indexes are used:
2040 * - changed: boolean, whether the revision changed the content (default true)
2041 * - created: boolean, whether the revision created the page (default false)
2042 * - oldcountable: boolean or null (default null):
2043 * - boolean: whether the page was counted as an article before that
2044 * revision, only used in changed is true and created is false
2045 * - null: don't change the article count
2046 */
2047 public function doEditUpdates( Revision $revision, User $user, array $options = array() ) {
2048 global $wgEnableParserCache;
2049
2050 wfProfileIn( __METHOD__ );
2051
2052 $options += array( 'changed' => true, 'created' => false, 'oldcountable' => null );
2053 $content = $revision->getContent();
2054
2055 // Parse the text
2056 // Be careful not to do pre-save transform twice: $text is usually
2057 // already pre-save transformed once.
2058 if ( !$this->mPreparedEdit || $this->mPreparedEdit->output->getFlag( 'vary-revision' ) ) {
2059 wfDebug( __METHOD__ . ": No prepared edit or vary-revision is set...\n" );
2060 $editInfo = $this->prepareContentForEdit( $content, $revision->getId(), $user );
2061 } else {
2062 wfDebug( __METHOD__ . ": No vary-revision, using prepared edit...\n" );
2063 $editInfo = $this->mPreparedEdit;
2064 }
2065
2066 // Save it to the parser cache
2067 if ( $wgEnableParserCache ) {
2068 $parserCache = ParserCache::singleton();
2069 $parserCache->save( $editInfo->output, $this, $editInfo->popts );
2070 }
2071
2072 // Update the links tables and other secondary data
2073 if ( $content ) {
2074 $updates = $content->getSecondaryDataUpdates( $this->getTitle(), null, true, $editInfo->output );
2075 DataUpdate::runUpdates( $updates );
2076 }
2077
2078 wfRunHooks( 'ArticleEditUpdates', array( &$this, &$editInfo, $options['changed'] ) );
2079
2080 if ( wfRunHooks( 'ArticleEditUpdatesDeleteFromRecentchanges', array( &$this ) ) ) {
2081 if ( 0 == mt_rand( 0, 99 ) ) {
2082 // Flush old entries from the `recentchanges` table; we do this on
2083 // random requests so as to avoid an increase in writes for no good reason
2084 RecentChange::purgeExpiredChanges();
2085 }
2086 }
2087
2088 if ( !$this->exists() ) {
2089 wfProfileOut( __METHOD__ );
2090 return;
2091 }
2092
2093 $id = $this->getId();
2094 $title = $this->mTitle->getPrefixedDBkey();
2095 $shortTitle = $this->mTitle->getDBkey();
2096
2097 if ( !$options['changed'] ) {
2098 $good = 0;
2099 $total = 0;
2100 } elseif ( $options['created'] ) {
2101 $good = (int)$this->isCountable( $editInfo );
2102 $total = 1;
2103 } elseif ( $options['oldcountable'] !== null ) {
2104 $good = (int)$this->isCountable( $editInfo ) - (int)$options['oldcountable'];
2105 $total = 0;
2106 } else {
2107 $good = 0;
2108 $total = 0;
2109 }
2110
2111 DeferredUpdates::addUpdate( new SiteStatsUpdate( 0, 1, $good, $total ) );
2112 DeferredUpdates::addUpdate( new SearchUpdate( $id, $title, $content ) );
2113
2114 // If this is another user's talk page, update newtalk.
2115 // Don't do this if $options['changed'] = false (null-edits) nor if
2116 // it's a minor edit and the user doesn't want notifications for those.
2117 if ( $options['changed']
2118 && $this->mTitle->getNamespace() == NS_USER_TALK
2119 && $shortTitle != $user->getTitleKey()
2120 && !( $revision->isMinor() && $user->isAllowed( 'nominornewtalk' ) )
2121 ) {
2122 $recipient = User::newFromName( $shortTitle, false );
2123 if ( !$recipient ) {
2124 wfDebug( __METHOD__ . ": invalid username\n" );
2125 } else {
2126 // Allow extensions to prevent user notification when a new message is added to their talk page
2127 if ( wfRunHooks( 'ArticleEditUpdateNewTalk', array( &$this, $recipient ) ) ) {
2128 if ( User::isIP( $shortTitle ) ) {
2129 // An anonymous user
2130 $recipient->setNewtalk( true, $revision );
2131 } elseif ( $recipient->isLoggedIn() ) {
2132 $recipient->setNewtalk( true, $revision );
2133 } else {
2134 wfDebug( __METHOD__ . ": don't need to notify a nonexistent user\n" );
2135 }
2136 }
2137 }
2138 }
2139
2140 if ( $this->mTitle->getNamespace() == NS_MEDIAWIKI ) {
2141 // XXX: could skip pseudo-messages like js/css here, based on content model.
2142 $msgtext = $content ? $content->getWikitextForTransclusion() : null;
2143 if ( $msgtext === false || $msgtext === null ) {
2144 $msgtext = '';
2145 }
2146
2147 MessageCache::singleton()->replace( $shortTitle, $msgtext );
2148 }
2149
2150 if ( $options['created'] ) {
2151 self::onArticleCreate( $this->mTitle );
2152 } else {
2153 self::onArticleEdit( $this->mTitle );
2154 }
2155
2156 wfProfileOut( __METHOD__ );
2157 }
2158
2159 /**
2160 * Edit an article without doing all that other stuff
2161 * The article must already exist; link tables etc
2162 * are not updated, caches are not flushed.
2163 *
2164 * @param string $text text submitted
2165 * @param $user User The relevant user
2166 * @param string $comment comment submitted
2167 * @param $minor Boolean: whereas it's a minor modification
2168 *
2169 * @deprecated since 1.21, use doEditContent() instead.
2170 */
2171 public function doQuickEdit( $text, User $user, $comment = '', $minor = 0 ) {
2172 ContentHandler::deprecated( __METHOD__, "1.21" );
2173
2174 $content = ContentHandler::makeContent( $text, $this->getTitle() );
2175 return $this->doQuickEditContent( $content, $user, $comment, $minor );
2176 }
2177
2178 /**
2179 * Edit an article without doing all that other stuff
2180 * The article must already exist; link tables etc
2181 * are not updated, caches are not flushed.
2182 *
2183 * @param $content Content: content submitted
2184 * @param $user User The relevant user
2185 * @param string $comment comment submitted
2186 * @param $serialisation_format String: format for storing the content in the database
2187 * @param $minor Boolean: whereas it's a minor modification
2188 */
2189 public function doQuickEditContent( Content $content, User $user, $comment = '', $minor = 0, $serialisation_format = null ) {
2190 wfProfileIn( __METHOD__ );
2191
2192 $serialized = $content->serialize( $serialisation_format );
2193
2194 $dbw = wfGetDB( DB_MASTER );
2195 $revision = new Revision( array(
2196 'title' => $this->getTitle(), // for determining the default content model
2197 'page' => $this->getId(),
2198 'text' => $serialized,
2199 'length' => $content->getSize(),
2200 'comment' => $comment,
2201 'minor_edit' => $minor ? 1 : 0,
2202 ) ); // XXX: set the content object?
2203 $revision->insertOn( $dbw );
2204 $this->updateRevisionOn( $dbw, $revision );
2205
2206 wfRunHooks( 'NewRevisionFromEditComplete', array( $this, $revision, false, $user ) );
2207
2208 wfProfileOut( __METHOD__ );
2209 }
2210
2211 /**
2212 * Update the article's restriction field, and leave a log entry.
2213 * This works for protection both existing and non-existing pages.
2214 *
2215 * @param array $limit set of restriction keys
2216 * @param $reason String
2217 * @param &$cascade Integer. Set to false if cascading protection isn't allowed.
2218 * @param array $expiry per restriction type expiration
2219 * @param $user User The user updating the restrictions
2220 * @return Status
2221 */
2222 public function doUpdateRestrictions( array $limit, array $expiry, &$cascade, $reason, User $user ) {
2223 global $wgContLang, $wgCascadingRestrictionLevels;
2224
2225 if ( wfReadOnly() ) {
2226 return Status::newFatal( 'readonlytext', wfReadOnlyReason() );
2227 }
2228
2229 $restrictionTypes = $this->mTitle->getRestrictionTypes();
2230
2231 $id = $this->getId();
2232
2233 if ( !$cascade ) {
2234 $cascade = false;
2235 }
2236
2237 // Take this opportunity to purge out expired restrictions
2238 Title::purgeExpiredRestrictions();
2239
2240 // @todo FIXME: Same limitations as described in ProtectionForm.php (line 37);
2241 // we expect a single selection, but the schema allows otherwise.
2242 $isProtected = false;
2243 $protect = false;
2244 $changed = false;
2245
2246 $dbw = wfGetDB( DB_MASTER );
2247
2248 foreach ( $restrictionTypes as $action ) {
2249 if ( !isset( $expiry[$action] ) ) {
2250 $expiry[$action] = $dbw->getInfinity();
2251 }
2252 if ( !isset( $limit[$action] ) ) {
2253 $limit[$action] = '';
2254 } elseif ( $limit[$action] != '' ) {
2255 $protect = true;
2256 }
2257
2258 // Get current restrictions on $action
2259 $current = implode( '', $this->mTitle->getRestrictions( $action ) );
2260 if ( $current != '' ) {
2261 $isProtected = true;
2262 }
2263
2264 if ( $limit[$action] != $current ) {
2265 $changed = true;
2266 } elseif ( $limit[$action] != '' ) {
2267 // Only check expiry change if the action is actually being
2268 // protected, since expiry does nothing on an not-protected
2269 // action.
2270 if ( $this->mTitle->getRestrictionExpiry( $action ) != $expiry[$action] ) {
2271 $changed = true;
2272 }
2273 }
2274 }
2275
2276 if ( !$changed && $protect && $this->mTitle->areRestrictionsCascading() != $cascade ) {
2277 $changed = true;
2278 }
2279
2280 // If nothing has changed, do nothing
2281 if ( !$changed ) {
2282 return Status::newGood();
2283 }
2284
2285 if ( !$protect ) { // No protection at all means unprotection
2286 $revCommentMsg = 'unprotectedarticle';
2287 $logAction = 'unprotect';
2288 } elseif ( $isProtected ) {
2289 $revCommentMsg = 'modifiedarticleprotection';
2290 $logAction = 'modify';
2291 } else {
2292 $revCommentMsg = 'protectedarticle';
2293 $logAction = 'protect';
2294 }
2295
2296 $encodedExpiry = array();
2297 $protectDescription = '';
2298 # Some bots may parse IRC lines, which are generated from log entries which contain plain
2299 # protect description text. Keep them in old format to avoid breaking compatibility.
2300 # TODO: Fix protection log to store structured description and format it on-the-fly.
2301 $protectDescriptionLog = '';
2302 foreach ( $limit as $action => $restrictions ) {
2303 $encodedExpiry[$action] = $dbw->encodeExpiry( $expiry[$action] );
2304 if ( $restrictions != '' ) {
2305 $protectDescriptionLog .= $wgContLang->getDirMark() . "[$action=$restrictions] (";
2306 # $action is one of $wgRestrictionTypes = array( 'create', 'edit', 'move', 'upload' ).
2307 # All possible message keys are listed here for easier grepping:
2308 # * restriction-create
2309 # * restriction-edit
2310 # * restriction-move
2311 # * restriction-upload
2312 $actionText = wfMessage( 'restriction-' . $action )->inContentLanguage()->text();
2313 # $restrictions is one of $wgRestrictionLevels = array( '', 'autoconfirmed', 'sysop' ),
2314 # with '' filtered out. All possible message keys are listed below:
2315 # * protect-level-autoconfirmed
2316 # * protect-level-sysop
2317 $restrictionsText = wfMessage( 'protect-level-' . $restrictions )->inContentLanguage()->text();
2318 if ( $encodedExpiry[$action] != 'infinity' ) {
2319 $expiryText = wfMessage(
2320 'protect-expiring',
2321 $wgContLang->timeanddate( $expiry[$action], false, false ),
2322 $wgContLang->date( $expiry[$action], false, false ),
2323 $wgContLang->time( $expiry[$action], false, false )
2324 )->inContentLanguage()->text();
2325 } else {
2326 $expiryText = wfMessage( 'protect-expiry-indefinite' )
2327 ->inContentLanguage()->text();
2328 }
2329
2330 if ( $protectDescription !== '' ) {
2331 $protectDescription .= wfMessage( 'word-separator' )->inContentLanguage()->text();
2332 }
2333 $protectDescription .= wfMessage( 'protect-summary-desc' )
2334 ->params( $actionText, $restrictionsText, $expiryText )
2335 ->inContentLanguage()->text();
2336 $protectDescriptionLog .= $expiryText . ') ';
2337 }
2338 }
2339 $protectDescriptionLog = trim( $protectDescriptionLog );
2340
2341 if ( $id ) { // Protection of existing page
2342 if ( !wfRunHooks( 'ArticleProtect', array( &$this, &$user, $limit, $reason ) ) ) {
2343 return Status::newGood();
2344 }
2345
2346 // Only certain restrictions can cascade... Otherwise, users who cannot normally protect pages
2347 // could "protect" them by transcluding them on protected pages they are allowed to edit.
2348 $editrestriction = isset( $limit['edit'] ) ? array( $limit['edit'] ) : $this->mTitle->getRestrictions( 'edit' );
2349 foreach ( array_keys( $editrestriction, 'sysop' ) as $key ) {
2350 $editrestriction[$key] = 'editprotected'; // backwards compatibility
2351 }
2352 foreach ( array_keys( $editrestriction, 'autoconfirmed' ) as $key ) {
2353 $editrestriction[$key] = 'editsemiprotected'; // backwards compatibility
2354 }
2355
2356 $cascadingRestrictionLevels = $wgCascadingRestrictionLevels;
2357 foreach ( array_keys( $cascadingRestrictionLevels, 'sysop' ) as $key ) {
2358 $cascadingRestrictionLevels[$key] = 'editprotected'; // backwards compatibility
2359 }
2360 foreach ( array_keys( $cascadingRestrictionLevels, 'autoconfirmed' ) as $key ) {
2361 $cascadingRestrictionLevels[$key] = 'editsemiprotected'; // backwards compatibility
2362 }
2363
2364 // The schema allows multiple restrictions
2365 if ( !array_intersect( $editrestriction, $cascadingRestrictionLevels ) ) {
2366 $cascade = false;
2367 }
2368
2369 // Update restrictions table
2370 foreach ( $limit as $action => $restrictions ) {
2371 if ( $restrictions != '' ) {
2372 $dbw->replace( 'page_restrictions', array( array( 'pr_page', 'pr_type' ) ),
2373 array( 'pr_page' => $id,
2374 'pr_type' => $action,
2375 'pr_level' => $restrictions,
2376 'pr_cascade' => ( $cascade && $action == 'edit' ) ? 1 : 0,
2377 'pr_expiry' => $encodedExpiry[$action]
2378 ),
2379 __METHOD__
2380 );
2381 } else {
2382 $dbw->delete( 'page_restrictions', array( 'pr_page' => $id,
2383 'pr_type' => $action ), __METHOD__ );
2384 }
2385 }
2386
2387 // Prepare a null revision to be added to the history
2388 $editComment = $wgContLang->ucfirst(
2389 wfMessage(
2390 $revCommentMsg,
2391 $this->mTitle->getPrefixedText()
2392 )->inContentLanguage()->text()
2393 );
2394 if ( $reason ) {
2395 $editComment .= wfMessage( 'colon-separator' )->inContentLanguage()->text() . $reason;
2396 }
2397 if ( $protectDescription ) {
2398 $editComment .= wfMessage( 'word-separator' )->inContentLanguage()->text();
2399 $editComment .= wfMessage( 'parentheses' )->params( $protectDescription )->inContentLanguage()->text();
2400 }
2401 if ( $cascade ) {
2402 $editComment .= wfMessage( 'word-separator' )->inContentLanguage()->text();
2403 $editComment .= wfMessage( 'brackets' )->params(
2404 wfMessage( 'protect-summary-cascade' )->inContentLanguage()->text()
2405 )->inContentLanguage()->text();
2406 }
2407
2408 // Insert a null revision
2409 $nullRevision = Revision::newNullRevision( $dbw, $id, $editComment, true );
2410 $nullRevId = $nullRevision->insertOn( $dbw );
2411
2412 $latest = $this->getLatest();
2413 // Update page record
2414 $dbw->update( 'page',
2415 array( /* SET */
2416 'page_touched' => $dbw->timestamp(),
2417 'page_restrictions' => '',
2418 'page_latest' => $nullRevId
2419 ), array( /* WHERE */
2420 'page_id' => $id
2421 ), __METHOD__
2422 );
2423
2424 wfRunHooks( 'NewRevisionFromEditComplete', array( $this, $nullRevision, $latest, $user ) );
2425 wfRunHooks( 'ArticleProtectComplete', array( &$this, &$user, $limit, $reason ) );
2426 } else { // Protection of non-existing page (also known as "title protection")
2427 // Cascade protection is meaningless in this case
2428 $cascade = false;
2429
2430 if ( $limit['create'] != '' ) {
2431 $dbw->replace( 'protected_titles',
2432 array( array( 'pt_namespace', 'pt_title' ) ),
2433 array(
2434 'pt_namespace' => $this->mTitle->getNamespace(),
2435 'pt_title' => $this->mTitle->getDBkey(),
2436 'pt_create_perm' => $limit['create'],
2437 'pt_timestamp' => $dbw->encodeExpiry( wfTimestampNow() ),
2438 'pt_expiry' => $encodedExpiry['create'],
2439 'pt_user' => $user->getId(),
2440 'pt_reason' => $reason,
2441 ), __METHOD__
2442 );
2443 } else {
2444 $dbw->delete( 'protected_titles',
2445 array(
2446 'pt_namespace' => $this->mTitle->getNamespace(),
2447 'pt_title' => $this->mTitle->getDBkey()
2448 ), __METHOD__
2449 );
2450 }
2451 }
2452
2453 $this->mTitle->flushRestrictions();
2454 InfoAction::invalidateCache( $this->mTitle );
2455
2456 if ( $logAction == 'unprotect' ) {
2457 $logParams = array();
2458 } else {
2459 $logParams = array( $protectDescriptionLog, $cascade ? 'cascade' : '' );
2460 }
2461
2462 // Update the protection log
2463 $log = new LogPage( 'protect' );
2464 $log->addEntry( $logAction, $this->mTitle, trim( $reason ), $logParams, $user );
2465
2466 return Status::newGood();
2467 }
2468
2469 /**
2470 * Take an array of page restrictions and flatten it to a string
2471 * suitable for insertion into the page_restrictions field.
2472 * @param $limit Array
2473 * @throws MWException
2474 * @return String
2475 */
2476 protected static function flattenRestrictions( $limit ) {
2477 if ( !is_array( $limit ) ) {
2478 throw new MWException( 'WikiPage::flattenRestrictions given non-array restriction set' );
2479 }
2480
2481 $bits = array();
2482 ksort( $limit );
2483
2484 foreach ( $limit as $action => $restrictions ) {
2485 if ( $restrictions != '' ) {
2486 $bits[] = "$action=$restrictions";
2487 }
2488 }
2489
2490 return implode( ':', $bits );
2491 }
2492
2493 /**
2494 * Same as doDeleteArticleReal(), but returns a simple boolean. This is kept around for
2495 * backwards compatibility, if you care about error reporting you should use
2496 * doDeleteArticleReal() instead.
2497 *
2498 * Deletes the article with database consistency, writes logs, purges caches
2499 *
2500 * @param string $reason delete reason for deletion log
2501 * @param $suppress boolean suppress all revisions and log the deletion in
2502 * the suppression log instead of the deletion log
2503 * @param int $id article ID
2504 * @param $commit boolean defaults to true, triggers transaction end
2505 * @param &$error Array of errors to append to
2506 * @param $user User The deleting user
2507 * @return boolean true if successful
2508 */
2509 public function doDeleteArticle(
2510 $reason, $suppress = false, $id = 0, $commit = true, &$error = '', User $user = null
2511 ) {
2512 $status = $this->doDeleteArticleReal( $reason, $suppress, $id, $commit, $error, $user );
2513 return $status->isGood();
2514 }
2515
2516 /**
2517 * Back-end article deletion
2518 * Deletes the article with database consistency, writes logs, purges caches
2519 *
2520 * @since 1.19
2521 *
2522 * @param string $reason delete reason for deletion log
2523 * @param $suppress boolean suppress all revisions and log the deletion in
2524 * the suppression log instead of the deletion log
2525 * @param int $id article ID
2526 * @param $commit boolean defaults to true, triggers transaction end
2527 * @param &$error Array of errors to append to
2528 * @param $user User The deleting user
2529 * @return Status: Status object; if successful, $status->value is the log_id of the
2530 * deletion log entry. If the page couldn't be deleted because it wasn't
2531 * found, $status is a non-fatal 'cannotdelete' error
2532 */
2533 public function doDeleteArticleReal(
2534 $reason, $suppress = false, $id = 0, $commit = true, &$error = '', User $user = null
2535 ) {
2536 global $wgUser, $wgContentHandlerUseDB;
2537
2538 wfDebug( __METHOD__ . "\n" );
2539
2540 $status = Status::newGood();
2541
2542 if ( $this->mTitle->getDBkey() === '' ) {
2543 $status->error( 'cannotdelete', wfEscapeWikiText( $this->getTitle()->getPrefixedText() ) );
2544 return $status;
2545 }
2546
2547 $user = is_null( $user ) ? $wgUser : $user;
2548 if ( ! wfRunHooks( 'ArticleDelete', array( &$this, &$user, &$reason, &$error, &$status ) ) ) {
2549 if ( $status->isOK() ) {
2550 // Hook aborted but didn't set a fatal status
2551 $status->fatal( 'delete-hook-aborted' );
2552 }
2553 return $status;
2554 }
2555
2556 if ( $id == 0 ) {
2557 $this->loadPageData( 'forupdate' );
2558 $id = $this->getID();
2559 if ( $id == 0 ) {
2560 $status->error( 'cannotdelete', wfEscapeWikiText( $this->getTitle()->getPrefixedText() ) );
2561 return $status;
2562 }
2563 }
2564
2565 // Bitfields to further suppress the content
2566 if ( $suppress ) {
2567 $bitfield = 0;
2568 // This should be 15...
2569 $bitfield |= Revision::DELETED_TEXT;
2570 $bitfield |= Revision::DELETED_COMMENT;
2571 $bitfield |= Revision::DELETED_USER;
2572 $bitfield |= Revision::DELETED_RESTRICTED;
2573 } else {
2574 $bitfield = 'rev_deleted';
2575 }
2576
2577 // we need to remember the old content so we can use it to generate all deletion updates.
2578 $content = $this->getContent( Revision::RAW );
2579
2580 $dbw = wfGetDB( DB_MASTER );
2581 $dbw->begin( __METHOD__ );
2582 // For now, shunt the revision data into the archive table.
2583 // Text is *not* removed from the text table; bulk storage
2584 // is left intact to avoid breaking block-compression or
2585 // immutable storage schemes.
2586 //
2587 // For backwards compatibility, note that some older archive
2588 // table entries will have ar_text and ar_flags fields still.
2589 //
2590 // In the future, we may keep revisions and mark them with
2591 // the rev_deleted field, which is reserved for this purpose.
2592
2593 $row = array(
2594 'ar_namespace' => 'page_namespace',
2595 'ar_title' => 'page_title',
2596 'ar_comment' => 'rev_comment',
2597 'ar_user' => 'rev_user',
2598 'ar_user_text' => 'rev_user_text',
2599 'ar_timestamp' => 'rev_timestamp',
2600 'ar_minor_edit' => 'rev_minor_edit',
2601 'ar_rev_id' => 'rev_id',
2602 'ar_parent_id' => 'rev_parent_id',
2603 'ar_text_id' => 'rev_text_id',
2604 'ar_text' => '\'\'', // Be explicit to appease
2605 'ar_flags' => '\'\'', // MySQL's "strict mode"...
2606 'ar_len' => 'rev_len',
2607 'ar_page_id' => 'page_id',
2608 'ar_deleted' => $bitfield,
2609 'ar_sha1' => 'rev_sha1',
2610 );
2611
2612 if ( $wgContentHandlerUseDB ) {
2613 $row['ar_content_model'] = 'rev_content_model';
2614 $row['ar_content_format'] = 'rev_content_format';
2615 }
2616
2617 $dbw->insertSelect( 'archive', array( 'page', 'revision' ),
2618 $row,
2619 array(
2620 'page_id' => $id,
2621 'page_id = rev_page'
2622 ), __METHOD__
2623 );
2624
2625 // Now that it's safely backed up, delete it
2626 $dbw->delete( 'page', array( 'page_id' => $id ), __METHOD__ );
2627 $ok = ( $dbw->affectedRows() > 0 ); // $id could be laggy
2628
2629 if ( !$ok ) {
2630 $dbw->rollback( __METHOD__ );
2631 $status->error( 'cannotdelete', wfEscapeWikiText( $this->getTitle()->getPrefixedText() ) );
2632 return $status;
2633 }
2634
2635 $this->doDeleteUpdates( $id, $content );
2636
2637 // Log the deletion, if the page was suppressed, log it at Oversight instead
2638 $logtype = $suppress ? 'suppress' : 'delete';
2639
2640 $logEntry = new ManualLogEntry( $logtype, 'delete' );
2641 $logEntry->setPerformer( $user );
2642 $logEntry->setTarget( $this->mTitle );
2643 $logEntry->setComment( $reason );
2644 $logid = $logEntry->insert();
2645 $logEntry->publish( $logid );
2646
2647 if ( $commit ) {
2648 $dbw->commit( __METHOD__ );
2649 }
2650
2651 wfRunHooks( 'ArticleDeleteComplete', array( &$this, &$user, $reason, $id, $content, $logEntry ) );
2652 $status->value = $logid;
2653 return $status;
2654 }
2655
2656 /**
2657 * Do some database updates after deletion
2658 *
2659 * @param int $id page_id value of the page being deleted
2660 * @param $content Content: optional page content to be used when determining the required updates.
2661 * This may be needed because $this->getContent() may already return null when the page proper was deleted.
2662 */
2663 public function doDeleteUpdates( $id, Content $content = null ) {
2664 // update site status
2665 DeferredUpdates::addUpdate( new SiteStatsUpdate( 0, 1, - (int)$this->isCountable(), -1 ) );
2666
2667 // remove secondary indexes, etc
2668 $updates = $this->getDeletionUpdates( $content );
2669 DataUpdate::runUpdates( $updates );
2670
2671 // Clear caches
2672 WikiPage::onArticleDelete( $this->mTitle );
2673
2674 // Reset this object and the Title object
2675 $this->loadFromRow( false, self::READ_LATEST );
2676
2677 // Search engine
2678 DeferredUpdates::addUpdate( new SearchUpdate( $id, $this->mTitle ) );
2679 }
2680
2681 /**
2682 * Roll back the most recent consecutive set of edits to a page
2683 * from the same user; fails if there are no eligible edits to
2684 * roll back to, e.g. user is the sole contributor. This function
2685 * performs permissions checks on $user, then calls commitRollback()
2686 * to do the dirty work
2687 *
2688 * @todo Separate the business/permission stuff out from backend code
2689 *
2690 * @param string $fromP Name of the user whose edits to rollback.
2691 * @param string $summary Custom summary. Set to default summary if empty.
2692 * @param string $token Rollback token.
2693 * @param $bot Boolean: If true, mark all reverted edits as bot.
2694 *
2695 * @param array $resultDetails contains result-specific array of additional values
2696 * 'alreadyrolled' : 'current' (rev)
2697 * success : 'summary' (str), 'current' (rev), 'target' (rev)
2698 *
2699 * @param $user User The user performing the rollback
2700 * @return array of errors, each error formatted as
2701 * array(messagekey, param1, param2, ...).
2702 * On success, the array is empty. This array can also be passed to
2703 * OutputPage::showPermissionsErrorPage().
2704 */
2705 public function doRollback(
2706 $fromP, $summary, $token, $bot, &$resultDetails, User $user
2707 ) {
2708 $resultDetails = null;
2709
2710 // Check permissions
2711 $editErrors = $this->mTitle->getUserPermissionsErrors( 'edit', $user );
2712 $rollbackErrors = $this->mTitle->getUserPermissionsErrors( 'rollback', $user );
2713 $errors = array_merge( $editErrors, wfArrayDiff2( $rollbackErrors, $editErrors ) );
2714
2715 if ( !$user->matchEditToken( $token, array( $this->mTitle->getPrefixedText(), $fromP ) ) ) {
2716 $errors[] = array( 'sessionfailure' );
2717 }
2718
2719 if ( $user->pingLimiter( 'rollback' ) || $user->pingLimiter() ) {
2720 $errors[] = array( 'actionthrottledtext' );
2721 }
2722
2723 // If there were errors, bail out now
2724 if ( !empty( $errors ) ) {
2725 return $errors;
2726 }
2727
2728 return $this->commitRollback( $fromP, $summary, $bot, $resultDetails, $user );
2729 }
2730
2731 /**
2732 * Backend implementation of doRollback(), please refer there for parameter
2733 * and return value documentation
2734 *
2735 * NOTE: This function does NOT check ANY permissions, it just commits the
2736 * rollback to the DB. Therefore, you should only call this function direct-
2737 * ly if you want to use custom permissions checks. If you don't, use
2738 * doRollback() instead.
2739 * @param string $fromP Name of the user whose edits to rollback.
2740 * @param string $summary Custom summary. Set to default summary if empty.
2741 * @param $bot Boolean: If true, mark all reverted edits as bot.
2742 *
2743 * @param array $resultDetails contains result-specific array of additional values
2744 * @param $guser User The user performing the rollback
2745 * @return array
2746 */
2747 public function commitRollback( $fromP, $summary, $bot, &$resultDetails, User $guser ) {
2748 global $wgUseRCPatrol, $wgContLang;
2749
2750 $dbw = wfGetDB( DB_MASTER );
2751
2752 if ( wfReadOnly() ) {
2753 return array( array( 'readonlytext' ) );
2754 }
2755
2756 // Get the last editor
2757 $current = $this->getRevision();
2758 if ( is_null( $current ) ) {
2759 // Something wrong... no page?
2760 return array( array( 'notanarticle' ) );
2761 }
2762
2763 $from = str_replace( '_', ' ', $fromP );
2764 // User name given should match up with the top revision.
2765 // If the user was deleted then $from should be empty.
2766 if ( $from != $current->getUserText() ) {
2767 $resultDetails = array( 'current' => $current );
2768 return array( array( 'alreadyrolled',
2769 htmlspecialchars( $this->mTitle->getPrefixedText() ),
2770 htmlspecialchars( $fromP ),
2771 htmlspecialchars( $current->getUserText() )
2772 ) );
2773 }
2774
2775 // Get the last edit not by this guy...
2776 // Note: these may not be public values
2777 $user = intval( $current->getRawUser() );
2778 $user_text = $dbw->addQuotes( $current->getRawUserText() );
2779 $s = $dbw->selectRow( 'revision',
2780 array( 'rev_id', 'rev_timestamp', 'rev_deleted' ),
2781 array( 'rev_page' => $current->getPage(),
2782 "rev_user != {$user} OR rev_user_text != {$user_text}"
2783 ), __METHOD__,
2784 array( 'USE INDEX' => 'page_timestamp',
2785 'ORDER BY' => 'rev_timestamp DESC' )
2786 );
2787 if ( $s === false ) {
2788 // No one else ever edited this page
2789 return array( array( 'cantrollback' ) );
2790 } elseif ( $s->rev_deleted & Revision::DELETED_TEXT || $s->rev_deleted & Revision::DELETED_USER ) {
2791 // Only admins can see this text
2792 return array( array( 'notvisiblerev' ) );
2793 }
2794
2795 $set = array();
2796 if ( $bot && $guser->isAllowed( 'markbotedits' ) ) {
2797 // Mark all reverted edits as bot
2798 $set['rc_bot'] = 1;
2799 }
2800
2801 if ( $wgUseRCPatrol ) {
2802 // Mark all reverted edits as patrolled
2803 $set['rc_patrolled'] = 1;
2804 }
2805
2806 if ( count( $set ) ) {
2807 $dbw->update( 'recentchanges', $set,
2808 array( /* WHERE */
2809 'rc_cur_id' => $current->getPage(),
2810 'rc_user_text' => $current->getUserText(),
2811 'rc_timestamp > ' . $dbw->addQuotes( $s->rev_timestamp ),
2812 ), __METHOD__
2813 );
2814 }
2815
2816 // Generate the edit summary if necessary
2817 $target = Revision::newFromId( $s->rev_id );
2818 if ( empty( $summary ) ) {
2819 if ( $from == '' ) { // no public user name
2820 $summary = wfMessage( 'revertpage-nouser' );
2821 } else {
2822 $summary = wfMessage( 'revertpage' );
2823 }
2824 }
2825
2826 // Allow the custom summary to use the same args as the default message
2827 $args = array(
2828 $target->getUserText(), $from, $s->rev_id,
2829 $wgContLang->timeanddate( wfTimestamp( TS_MW, $s->rev_timestamp ) ),
2830 $current->getId(), $wgContLang->timeanddate( $current->getTimestamp() )
2831 );
2832 if ( $summary instanceof Message ) {
2833 $summary = $summary->params( $args )->inContentLanguage()->text();
2834 } else {
2835 $summary = wfMsgReplaceArgs( $summary, $args );
2836 }
2837
2838 // Trim spaces on user supplied text
2839 $summary = trim( $summary );
2840
2841 // Truncate for whole multibyte characters.
2842 $summary = $wgContLang->truncate( $summary, 255 );
2843
2844 // Save
2845 $flags = EDIT_UPDATE;
2846
2847 if ( $guser->isAllowed( 'minoredit' ) ) {
2848 $flags |= EDIT_MINOR;
2849 }
2850
2851 if ( $bot && ( $guser->isAllowedAny( 'markbotedits', 'bot' ) ) ) {
2852 $flags |= EDIT_FORCE_BOT;
2853 }
2854
2855 // Actually store the edit
2856 $status = $this->doEditContent( $target->getContent(), $summary, $flags, $target->getId(), $guser );
2857
2858 if ( !$status->isOK() ) {
2859 return $status->getErrorsArray();
2860 }
2861
2862 if ( !empty( $status->value['revision'] ) ) {
2863 $revId = $status->value['revision']->getId();
2864 } else {
2865 $revId = false;
2866 }
2867
2868 wfRunHooks( 'ArticleRollbackComplete', array( $this, $guser, $target, $current ) );
2869
2870 $resultDetails = array(
2871 'summary' => $summary,
2872 'current' => $current,
2873 'target' => $target,
2874 'newid' => $revId
2875 );
2876
2877 return array();
2878 }
2879
2880 /**
2881 * The onArticle*() functions are supposed to be a kind of hooks
2882 * which should be called whenever any of the specified actions
2883 * are done.
2884 *
2885 * This is a good place to put code to clear caches, for instance.
2886 *
2887 * This is called on page move and undelete, as well as edit
2888 *
2889 * @param $title Title object
2890 */
2891 public static function onArticleCreate( $title ) {
2892 // Update existence markers on article/talk tabs...
2893 if ( $title->isTalkPage() ) {
2894 $other = $title->getSubjectPage();
2895 } else {
2896 $other = $title->getTalkPage();
2897 }
2898
2899 $other->invalidateCache();
2900 $other->purgeSquid();
2901
2902 $title->touchLinks();
2903 $title->purgeSquid();
2904 $title->deleteTitleProtection();
2905 }
2906
2907 /**
2908 * Clears caches when article is deleted
2909 *
2910 * @param $title Title
2911 */
2912 public static function onArticleDelete( $title ) {
2913 // Update existence markers on article/talk tabs...
2914 if ( $title->isTalkPage() ) {
2915 $other = $title->getSubjectPage();
2916 } else {
2917 $other = $title->getTalkPage();
2918 }
2919
2920 $other->invalidateCache();
2921 $other->purgeSquid();
2922
2923 $title->touchLinks();
2924 $title->purgeSquid();
2925
2926 // File cache
2927 HTMLFileCache::clearFileCache( $title );
2928 InfoAction::invalidateCache( $title );
2929
2930 // Messages
2931 if ( $title->getNamespace() == NS_MEDIAWIKI ) {
2932 MessageCache::singleton()->replace( $title->getDBkey(), false );
2933 }
2934
2935 // Images
2936 if ( $title->getNamespace() == NS_FILE ) {
2937 $update = new HTMLCacheUpdate( $title, 'imagelinks' );
2938 $update->doUpdate();
2939 }
2940
2941 // User talk pages
2942 if ( $title->getNamespace() == NS_USER_TALK ) {
2943 $user = User::newFromName( $title->getText(), false );
2944 if ( $user ) {
2945 $user->setNewtalk( false );
2946 }
2947 }
2948
2949 // Image redirects
2950 RepoGroup::singleton()->getLocalRepo()->invalidateImageRedirect( $title );
2951 }
2952
2953 /**
2954 * Purge caches on page update etc
2955 *
2956 * @param $title Title object
2957 * @todo Verify that $title is always a Title object (and never false or null), add Title hint to parameter $title
2958 */
2959 public static function onArticleEdit( $title ) {
2960 // Invalidate caches of articles which include this page
2961 DeferredUpdates::addHTMLCacheUpdate( $title, 'templatelinks' );
2962
2963 // Invalidate the caches of all pages which redirect here
2964 DeferredUpdates::addHTMLCacheUpdate( $title, 'redirect' );
2965
2966 // Purge squid for this page only
2967 $title->purgeSquid();
2968
2969 // Clear file cache for this page only
2970 HTMLFileCache::clearFileCache( $title );
2971 InfoAction::invalidateCache( $title );
2972 }
2973
2974 /**#@-*/
2975
2976 /**
2977 * Returns a list of hidden categories this page is a member of.
2978 * Uses the page_props and categorylinks tables.
2979 *
2980 * @return Array of Title objects
2981 */
2982 public function getHiddenCategories() {
2983 $result = array();
2984 $id = $this->getId();
2985
2986 if ( $id == 0 ) {
2987 return array();
2988 }
2989
2990 $dbr = wfGetDB( DB_SLAVE );
2991 $res = $dbr->select( array( 'categorylinks', 'page_props', 'page' ),
2992 array( 'cl_to' ),
2993 array( 'cl_from' => $id, 'pp_page=page_id', 'pp_propname' => 'hiddencat',
2994 'page_namespace' => NS_CATEGORY, 'page_title=cl_to' ),
2995 __METHOD__ );
2996
2997 if ( $res !== false ) {
2998 foreach ( $res as $row ) {
2999 $result[] = Title::makeTitle( NS_CATEGORY, $row->cl_to );
3000 }
3001 }
3002
3003 return $result;
3004 }
3005
3006 /**
3007 * Return an applicable autosummary if one exists for the given edit.
3008 * @param string|null $oldtext the previous text of the page.
3009 * @param string|null $newtext The submitted text of the page.
3010 * @param int $flags bitmask: a bitmask of flags submitted for the edit.
3011 * @return string An appropriate autosummary, or an empty string.
3012 *
3013 * @deprecated since 1.21, use ContentHandler::getAutosummary() instead
3014 */
3015 public static function getAutosummary( $oldtext, $newtext, $flags ) {
3016 // NOTE: stub for backwards-compatibility. assumes the given text is wikitext. will break horribly if it isn't.
3017
3018 ContentHandler::deprecated( __METHOD__, '1.21' );
3019
3020 $handler = ContentHandler::getForModelID( CONTENT_MODEL_WIKITEXT );
3021 $oldContent = is_null( $oldtext ) ? null : $handler->unserializeContent( $oldtext );
3022 $newContent = is_null( $newtext ) ? null : $handler->unserializeContent( $newtext );
3023
3024 return $handler->getAutosummary( $oldContent, $newContent, $flags );
3025 }
3026
3027 /**
3028 * Auto-generates a deletion reason
3029 *
3030 * @param &$hasHistory Boolean: whether the page has a history
3031 * @return mixed String containing deletion reason or empty string, or boolean false
3032 * if no revision occurred
3033 */
3034 public function getAutoDeleteReason( &$hasHistory ) {
3035 return $this->getContentHandler()->getAutoDeleteReason( $this->getTitle(), $hasHistory );
3036 }
3037
3038 /**
3039 * Update all the appropriate counts in the category table, given that
3040 * we've added the categories $added and deleted the categories $deleted.
3041 *
3042 * @param array $added The names of categories that were added
3043 * @param array $deleted The names of categories that were deleted
3044 */
3045 public function updateCategoryCounts( array $added, array $deleted ) {
3046 $that = $this;
3047 $method = __METHOD__;
3048 $dbw = wfGetDB( DB_MASTER );
3049
3050 // Do this at the end of the commit to reduce lock wait timeouts
3051 $dbw->onTransactionPreCommitOrIdle(
3052 function() use ( $dbw, $that, $method, $added, $deleted ) {
3053 $ns = $that->getTitle()->getNamespace();
3054
3055 $addFields = array( 'cat_pages = cat_pages + 1' );
3056 $removeFields = array( 'cat_pages = cat_pages - 1' );
3057 if ( $ns == NS_CATEGORY ) {
3058 $addFields[] = 'cat_subcats = cat_subcats + 1';
3059 $removeFields[] = 'cat_subcats = cat_subcats - 1';
3060 } elseif ( $ns == NS_FILE ) {
3061 $addFields[] = 'cat_files = cat_files + 1';
3062 $removeFields[] = 'cat_files = cat_files - 1';
3063 }
3064
3065 if ( count( $added ) ) {
3066 $insertRows = array();
3067 foreach ( $added as $cat ) {
3068 $insertRows[] = array(
3069 'cat_title' => $cat,
3070 'cat_pages' => 1,
3071 'cat_subcats' => ( $ns == NS_CATEGORY ) ? 1 : 0,
3072 'cat_files' => ( $ns == NS_FILE ) ? 1 : 0,
3073 );
3074 }
3075 $dbw->upsert(
3076 'category',
3077 $insertRows,
3078 array( 'cat_title' ),
3079 $addFields,
3080 $method
3081 );
3082 }
3083
3084 if ( count( $deleted ) ) {
3085 $dbw->update(
3086 'category',
3087 $removeFields,
3088 array( 'cat_title' => $deleted ),
3089 $method
3090 );
3091 }
3092
3093 foreach ( $added as $catName ) {
3094 $cat = Category::newFromName( $catName );
3095 wfRunHooks( 'CategoryAfterPageAdded', array( $cat, $that ) );
3096 }
3097
3098 foreach ( $deleted as $catName ) {
3099 $cat = Category::newFromName( $catName );
3100 wfRunHooks( 'CategoryAfterPageRemoved', array( $cat, $that ) );
3101 }
3102 }
3103 );
3104 }
3105
3106 /**
3107 * Updates cascading protections
3108 *
3109 * @param $parserOutput ParserOutput object for the current version
3110 */
3111 public function doCascadeProtectionUpdates( ParserOutput $parserOutput ) {
3112 if ( wfReadOnly() || !$this->mTitle->areRestrictionsCascading() ) {
3113 return;
3114 }
3115
3116 // templatelinks table may have become out of sync,
3117 // especially if using variable-based transclusions.
3118 // For paranoia, check if things have changed and if
3119 // so apply updates to the database. This will ensure
3120 // that cascaded protections apply as soon as the changes
3121 // are visible.
3122
3123 // Get templates from templatelinks
3124 $id = $this->getId();
3125
3126 $tlTemplates = array();
3127
3128 $dbr = wfGetDB( DB_SLAVE );
3129 $res = $dbr->select( array( 'templatelinks' ),
3130 array( 'tl_namespace', 'tl_title' ),
3131 array( 'tl_from' => $id ),
3132 __METHOD__
3133 );
3134
3135 foreach ( $res as $row ) {
3136 $tlTemplates["{$row->tl_namespace}:{$row->tl_title}"] = true;
3137 }
3138
3139 // Get templates from parser output.
3140 $poTemplates = array();
3141 foreach ( $parserOutput->getTemplates() as $ns => $templates ) {
3142 foreach ( $templates as $dbk => $id ) {
3143 $poTemplates["$ns:$dbk"] = true;
3144 }
3145 }
3146
3147 // Get the diff
3148 $templates_diff = array_diff_key( $poTemplates, $tlTemplates );
3149
3150 if ( count( $templates_diff ) > 0 ) {
3151 // Whee, link updates time.
3152 // Note: we are only interested in links here. We don't need to get other DataUpdate items from the parser output.
3153 $u = new LinksUpdate( $this->mTitle, $parserOutput, false );
3154 $u->doUpdate();
3155 }
3156 }
3157
3158 /**
3159 * Return a list of templates used by this article.
3160 * Uses the templatelinks table
3161 *
3162 * @deprecated in 1.19; use Title::getTemplateLinksFrom()
3163 * @return Array of Title objects
3164 */
3165 public function getUsedTemplates() {
3166 return $this->mTitle->getTemplateLinksFrom();
3167 }
3168
3169 /**
3170 * Perform article updates on a special page creation.
3171 *
3172 * @param $rev Revision object
3173 *
3174 * @todo This is a shitty interface function. Kill it and replace the
3175 * other shitty functions like doEditUpdates and such so it's not needed
3176 * anymore.
3177 * @deprecated since 1.18, use doEditUpdates()
3178 */
3179 public function createUpdates( $rev ) {
3180 wfDeprecated( __METHOD__, '1.18' );
3181 global $wgUser;
3182 $this->doEditUpdates( $rev, $wgUser, array( 'created' => true ) );
3183 }
3184
3185 /**
3186 * This function is called right before saving the wikitext,
3187 * so we can do things like signatures and links-in-context.
3188 *
3189 * @deprecated in 1.19; use Parser::preSaveTransform() instead
3190 * @param string $text article contents
3191 * @param $user User object: user doing the edit
3192 * @param $popts ParserOptions object: parser options, default options for
3193 * the user loaded if null given
3194 * @return string article contents with altered wikitext markup (signatures
3195 * converted, {{subst:}}, templates, etc.)
3196 */
3197 public function preSaveTransform( $text, User $user = null, ParserOptions $popts = null ) {
3198 global $wgParser, $wgUser;
3199
3200 wfDeprecated( __METHOD__, '1.19' );
3201
3202 $user = is_null( $user ) ? $wgUser : $user;
3203
3204 if ( $popts === null ) {
3205 $popts = ParserOptions::newFromUser( $user );
3206 }
3207
3208 return $wgParser->preSaveTransform( $text, $this->mTitle, $user, $popts );
3209 }
3210
3211 /**
3212 * Check whether the number of revisions of this page surpasses $wgDeleteRevisionsLimit
3213 *
3214 * @deprecated in 1.19; use Title::isBigDeletion() instead.
3215 * @return bool
3216 */
3217 public function isBigDeletion() {
3218 wfDeprecated( __METHOD__, '1.19' );
3219 return $this->mTitle->isBigDeletion();
3220 }
3221
3222 /**
3223 * Get the approximate revision count of this page.
3224 *
3225 * @deprecated in 1.19; use Title::estimateRevisionCount() instead.
3226 * @return int
3227 */
3228 public function estimateRevisionCount() {
3229 wfDeprecated( __METHOD__, '1.19' );
3230 return $this->mTitle->estimateRevisionCount();
3231 }
3232
3233 /**
3234 * Update the article's restriction field, and leave a log entry.
3235 *
3236 * @deprecated since 1.19
3237 * @param array $limit set of restriction keys
3238 * @param $reason String
3239 * @param &$cascade Integer. Set to false if cascading protection isn't allowed.
3240 * @param array $expiry per restriction type expiration
3241 * @param $user User The user updating the restrictions
3242 * @return bool true on success
3243 */
3244 public function updateRestrictions(
3245 $limit = array(), $reason = '', &$cascade = 0, $expiry = array(), User $user = null
3246 ) {
3247 global $wgUser;
3248
3249 $user = is_null( $user ) ? $wgUser : $user;
3250
3251 return $this->doUpdateRestrictions( $limit, $expiry, $cascade, $reason, $user )->isOK();
3252 }
3253
3254 /**
3255 * @deprecated since 1.18
3256 */
3257 public function quickEdit( $text, $comment = '', $minor = 0 ) {
3258 wfDeprecated( __METHOD__, '1.18' );
3259 global $wgUser;
3260 $this->doQuickEdit( $text, $wgUser, $comment, $minor );
3261 }
3262
3263 /**
3264 * @deprecated since 1.18
3265 */
3266 public function viewUpdates() {
3267 wfDeprecated( __METHOD__, '1.18' );
3268 global $wgUser;
3269 return $this->doViewUpdates( $wgUser );
3270 }
3271
3272 /**
3273 * @deprecated since 1.18
3274 * @param $oldid int
3275 * @return bool
3276 */
3277 public function useParserCache( $oldid ) {
3278 wfDeprecated( __METHOD__, '1.18' );
3279 global $wgUser;
3280 return $this->isParserCacheUsed( ParserOptions::newFromUser( $wgUser ), $oldid );
3281 }
3282
3283 /**
3284 * Returns a list of updates to be performed when this page is deleted. The updates should remove any information
3285 * about this page from secondary data stores such as links tables.
3286 *
3287 * @param Content|null $content optional Content object for determining the necessary updates
3288 * @return Array an array of DataUpdates objects
3289 */
3290 public function getDeletionUpdates( Content $content = null ) {
3291 if ( !$content ) {
3292 // load content object, which may be used to determine the necessary updates
3293 // XXX: the content may not be needed to determine the updates, then this would be overhead.
3294 $content = $this->getContent( Revision::RAW );
3295 }
3296
3297 if ( !$content ) {
3298 $updates = array();
3299 } else {
3300 $updates = $content->getDeletionUpdates( $this );
3301 }
3302
3303 wfRunHooks( 'WikiPageDeletionUpdates', array( $this, $content, &$updates ) );
3304 return $updates;
3305 }
3306
3307 }
3308
3309 class PoolWorkArticleView extends PoolCounterWork {
3310
3311 /**
3312 * @var Page
3313 */
3314 private $page;
3315
3316 /**
3317 * @var string
3318 */
3319 private $cacheKey;
3320
3321 /**
3322 * @var integer
3323 */
3324 private $revid;
3325
3326 /**
3327 * @var ParserOptions
3328 */
3329 private $parserOptions;
3330
3331 /**
3332 * @var Content|null
3333 */
3334 private $content = null;
3335
3336 /**
3337 * @var ParserOutput|bool
3338 */
3339 private $parserOutput = false;
3340
3341 /**
3342 * @var bool
3343 */
3344 private $isDirty = false;
3345
3346 /**
3347 * @var Status|bool
3348 */
3349 private $error = false;
3350
3351 /**
3352 * Constructor
3353 *
3354 * @param $page Page
3355 * @param $revid Integer: ID of the revision being parsed
3356 * @param $useParserCache Boolean: whether to use the parser cache
3357 * @param $parserOptions parserOptions to use for the parse operation
3358 * @param $content Content|String: content to parse or null to load it; may also be given as a wikitext string, for BC
3359 */
3360 function __construct( Page $page, ParserOptions $parserOptions, $revid, $useParserCache, $content = null ) {
3361 if ( is_string( $content ) ) { // BC: old style call
3362 $modelId = $page->getRevision()->getContentModel();
3363 $format = $page->getRevision()->getContentFormat();
3364 $content = ContentHandler::makeContent( $content, $page->getTitle(), $modelId, $format );
3365 }
3366
3367 $this->page = $page;
3368 $this->revid = $revid;
3369 $this->cacheable = $useParserCache;
3370 $this->parserOptions = $parserOptions;
3371 $this->content = $content;
3372 $this->cacheKey = ParserCache::singleton()->getKey( $page, $parserOptions );
3373 parent::__construct( 'ArticleView', $this->cacheKey . ':revid:' . $revid );
3374 }
3375
3376 /**
3377 * Get the ParserOutput from this object, or false in case of failure
3378 *
3379 * @return ParserOutput
3380 */
3381 public function getParserOutput() {
3382 return $this->parserOutput;
3383 }
3384
3385 /**
3386 * Get whether the ParserOutput is a dirty one (i.e. expired)
3387 *
3388 * @return bool
3389 */
3390 public function getIsDirty() {
3391 return $this->isDirty;
3392 }
3393
3394 /**
3395 * Get a Status object in case of error or false otherwise
3396 *
3397 * @return Status|bool
3398 */
3399 public function getError() {
3400 return $this->error;
3401 }
3402
3403 /**
3404 * @return bool
3405 */
3406 function doWork() {
3407 global $wgUseFileCache;
3408
3409 // @todo several of the methods called on $this->page are not declared in Page, but present
3410 // in WikiPage and delegated by Article.
3411
3412 $isCurrent = $this->revid === $this->page->getLatest();
3413
3414 if ( $this->content !== null ) {
3415 $content = $this->content;
3416 } elseif ( $isCurrent ) {
3417 // XXX: why use RAW audience here, and PUBLIC (default) below?
3418 $content = $this->page->getContent( Revision::RAW );
3419 } else {
3420 $rev = Revision::newFromTitle( $this->page->getTitle(), $this->revid );
3421
3422 if ( $rev === null ) {
3423 $content = null;
3424 } else {
3425 // XXX: why use PUBLIC audience here (default), and RAW above?
3426 $content = $rev->getContent();
3427 }
3428 }
3429
3430 if ( $content === null ) {
3431 return false;
3432 }
3433
3434 $time = - microtime( true );
3435 $this->parserOutput = $content->getParserOutput( $this->page->getTitle(), $this->revid, $this->parserOptions );
3436 $time += microtime( true );
3437
3438 // Timing hack
3439 if ( $time > 3 ) {
3440 wfDebugLog( 'slow-parse', sprintf( "%-5.2f %s", $time,
3441 $this->page->getTitle()->getPrefixedDBkey() ) );
3442 }
3443
3444 if ( $this->cacheable && $this->parserOutput->isCacheable() ) {
3445 ParserCache::singleton()->save( $this->parserOutput, $this->page, $this->parserOptions );
3446 }
3447
3448 // Make sure file cache is not used on uncacheable content.
3449 // Output that has magic words in it can still use the parser cache
3450 // (if enabled), though it will generally expire sooner.
3451 if ( !$this->parserOutput->isCacheable() || $this->parserOutput->containsOldMagic() ) {
3452 $wgUseFileCache = false;
3453 }
3454
3455 if ( $isCurrent ) {
3456 $this->page->doCascadeProtectionUpdates( $this->parserOutput );
3457 }
3458
3459 return true;
3460 }
3461
3462 /**
3463 * @return bool
3464 */
3465 function getCachedWork() {
3466 $this->parserOutput = ParserCache::singleton()->get( $this->page, $this->parserOptions );
3467
3468 if ( $this->parserOutput === false ) {
3469 wfDebug( __METHOD__ . ": parser cache miss\n" );
3470 return false;
3471 } else {
3472 wfDebug( __METHOD__ . ": parser cache hit\n" );
3473 return true;
3474 }
3475 }
3476
3477 /**
3478 * @return bool
3479 */
3480 function fallback() {
3481 $this->parserOutput = ParserCache::singleton()->getDirty( $this->page, $this->parserOptions );
3482
3483 if ( $this->parserOutput === false ) {
3484 wfDebugLog( 'dirty', "dirty missing\n" );
3485 wfDebug( __METHOD__ . ": no dirty cache\n" );
3486 return false;
3487 } else {
3488 wfDebug( __METHOD__ . ": sending dirty output\n" );
3489 wfDebugLog( 'dirty', "dirty output {$this->cacheKey}\n" );
3490 $this->isDirty = true;
3491 return true;
3492 }
3493 }
3494
3495 /**
3496 * @param $status Status
3497 * @return bool
3498 */
3499 function error( $status ) {
3500 $this->error = $status;
3501 return false;
3502 }
3503 }