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