3 * Representation of a page version.
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.
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.
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
26 class Revision
implements IDBAccessObject
{
34 protected $mOrigUserText;
36 protected $mMinorEdit;
37 protected $mTimestamp;
56 protected $mContentModel;
57 protected $mContentFormat;
60 * @var Content|null|bool
65 * @var null|ContentHandler
67 protected $mContentHandler;
72 protected $mQueryFlags = 0;
74 // Revision deletion constants
75 const DELETED_TEXT
= 1;
76 const DELETED_COMMENT
= 2;
77 const DELETED_USER
= 4;
78 const DELETED_RESTRICTED
= 8;
79 const SUPPRESSED_USER
= 12; // convenience
81 // Audience options for accessors
83 const FOR_THIS_USER
= 2;
87 * Load a page revision from a given revision ID number.
88 * Returns null if no such revision can be found.
91 * Revision::READ_LATEST : Select the data from the master
92 * Revision::READ_LOCKING : Select & lock the data from the master
95 * @param int $flags (optional)
96 * @return Revision|null
98 public static function newFromId( $id, $flags = 0 ) {
99 return self
::newFromConds( array( 'rev_id' => intval( $id ) ), $flags );
103 * Load either the current, or a specified, revision
104 * that's attached to a given title. If not attached
105 * to that title, will return null.
108 * Revision::READ_LATEST : Select the data from the master
109 * Revision::READ_LOCKING : Select & lock the data from the master
111 * @param Title $title
112 * @param int $id (optional)
113 * @param int $flags Bitfield (optional)
114 * @return Revision|null
116 public static function newFromTitle( $title, $id = 0, $flags = 0 ) {
118 'page_namespace' => $title->getNamespace(),
119 'page_title' => $title->getDBkey()
122 // Use the specified ID
123 $conds['rev_id'] = $id;
124 return self
::newFromConds( $conds, (int)$flags );
126 // Use a join to get the latest revision
127 $conds[] = 'rev_id=page_latest';
128 $db = wfGetDB( ( $flags & self
::READ_LATEST
) ? DB_MASTER
: DB_SLAVE
);
129 return self
::loadFromConds( $db, $conds, $flags );
134 * Load either the current, or a specified, revision
135 * that's attached to a given page ID.
136 * Returns null if no such revision can be found.
139 * Revision::READ_LATEST : Select the data from the master (since 1.20)
140 * Revision::READ_LOCKING : Select & lock the data from the master
143 * @param int $revId (optional)
144 * @param int $flags Bitfield (optional)
145 * @return Revision|null
147 public static function newFromPageId( $pageId, $revId = 0, $flags = 0 ) {
148 $conds = array( 'page_id' => $pageId );
150 $conds['rev_id'] = $revId;
152 // Use a join to get the latest revision
153 $conds[] = 'rev_id = page_latest';
155 return self
::newFromConds( $conds, (int)$flags );
159 * Make a fake revision object from an archive table row. This is queried
160 * for permissions or even inserted (as in Special:Undelete)
161 * @todo FIXME: Should be a subclass for RevisionDelete. [TS]
164 * @param array $overrides
166 * @throws MWException
169 public static function newFromArchiveRow( $row, $overrides = array() ) {
170 global $wgContentHandlerUseDB;
172 $attribs = $overrides +
array(
173 'page' => isset( $row->ar_page_id
) ?
$row->ar_page_id
: null,
174 'id' => isset( $row->ar_rev_id
) ?
$row->ar_rev_id
: null,
175 'comment' => $row->ar_comment
,
176 'user' => $row->ar_user
,
177 'user_text' => $row->ar_user_text
,
178 'timestamp' => $row->ar_timestamp
,
179 'minor_edit' => $row->ar_minor_edit
,
180 'text_id' => isset( $row->ar_text_id
) ?
$row->ar_text_id
: null,
181 'deleted' => $row->ar_deleted
,
182 'len' => $row->ar_len
,
183 'sha1' => isset( $row->ar_sha1
) ?
$row->ar_sha1
: null,
184 'content_model' => isset( $row->ar_content_model
) ?
$row->ar_content_model
: null,
185 'content_format' => isset( $row->ar_content_format
) ?
$row->ar_content_format
: null,
188 if ( !$wgContentHandlerUseDB ) {
189 unset( $attribs['content_model'] );
190 unset( $attribs['content_format'] );
193 if ( !isset( $attribs['title'] )
194 && isset( $row->ar_namespace
)
195 && isset( $row->ar_title
) ) {
197 $attribs['title'] = Title
::makeTitle( $row->ar_namespace
, $row->ar_title
);
200 if ( isset( $row->ar_text
) && !$row->ar_text_id
) {
201 // Pre-1.5 ar_text row
202 $attribs['text'] = self
::getRevisionText( $row, 'ar_' );
203 if ( $attribs['text'] === false ) {
204 throw new MWException( 'Unable to load text from archive row (possibly bug 22624)' );
207 return new self( $attribs );
216 public static function newFromRow( $row ) {
217 return new self( $row );
221 * Load a page revision from a given revision ID number.
222 * Returns null if no such revision can be found.
224 * @param DatabaseBase $db
226 * @return Revision|null
228 public static function loadFromId( $db, $id ) {
229 return self
::loadFromConds( $db, array( 'rev_id' => intval( $id ) ) );
233 * Load either the current, or a specified, revision
234 * that's attached to a given page. If not attached
235 * to that page, will return null.
237 * @param DatabaseBase $db
240 * @return Revision|null
242 public static function loadFromPageId( $db, $pageid, $id = 0 ) {
243 $conds = array( 'rev_page' => intval( $pageid ), 'page_id' => intval( $pageid ) );
245 $conds['rev_id'] = intval( $id );
247 $conds[] = 'rev_id=page_latest';
249 return self
::loadFromConds( $db, $conds );
253 * Load either the current, or a specified, revision
254 * that's attached to a given page. If not attached
255 * to that page, will return null.
257 * @param DatabaseBase $db
258 * @param Title $title
260 * @return Revision|null
262 public static function loadFromTitle( $db, $title, $id = 0 ) {
264 $matchId = intval( $id );
266 $matchId = 'page_latest';
268 return self
::loadFromConds( $db,
271 'page_namespace' => $title->getNamespace(),
272 'page_title' => $title->getDBkey()
278 * Load the revision for the given title with the given timestamp.
279 * WARNING: Timestamps may in some circumstances not be unique,
280 * so this isn't the best key to use.
282 * @param DatabaseBase $db
283 * @param Title $title
284 * @param string $timestamp
285 * @return Revision|null
287 public static function loadFromTimestamp( $db, $title, $timestamp ) {
288 return self
::loadFromConds( $db,
290 'rev_timestamp' => $db->timestamp( $timestamp ),
291 'page_namespace' => $title->getNamespace(),
292 'page_title' => $title->getDBkey()
298 * Given a set of conditions, fetch a revision.
300 * @param array $conditions
301 * @param int $flags (optional)
302 * @return Revision|null
304 private static function newFromConds( $conditions, $flags = 0 ) {
305 $db = wfGetDB( ( $flags & self
::READ_LATEST
) ? DB_MASTER
: DB_SLAVE
);
306 $rev = self
::loadFromConds( $db, $conditions, $flags );
307 if ( $rev === null && wfGetLB()->getServerCount() > 1 ) {
308 if ( !( $flags & self
::READ_LATEST
) ) {
309 $dbw = wfGetDB( DB_MASTER
);
310 $rev = self
::loadFromConds( $dbw, $conditions, $flags );
314 $rev->mQueryFlags
= $flags;
320 * Given a set of conditions, fetch a revision from
321 * the given database connection.
323 * @param DatabaseBase $db
324 * @param array $conditions
325 * @param int $flags (optional)
326 * @return Revision|null
328 private static function loadFromConds( $db, $conditions, $flags = 0 ) {
329 $res = self
::fetchFromConds( $db, $conditions, $flags );
331 $row = $res->fetchObject();
333 $ret = new Revision( $row );
342 * Return a wrapper for a series of database rows to
343 * fetch all of a given page's revisions in turn.
344 * Each row can be fed to the constructor to get objects.
346 * @param Title $title
347 * @return ResultWrapper
349 public static function fetchRevision( $title ) {
350 return self
::fetchFromConds(
353 'rev_id=page_latest',
354 'page_namespace' => $title->getNamespace(),
355 'page_title' => $title->getDBkey()
361 * Given a set of conditions, return a ResultWrapper
362 * which will return matching database rows with the
363 * fields necessary to build Revision objects.
365 * @param DatabaseBase $db
366 * @param array $conditions
367 * @param int $flags (optional)
368 * @return ResultWrapper
370 private static function fetchFromConds( $db, $conditions, $flags = 0 ) {
371 $fields = array_merge(
372 self
::selectFields(),
373 self
::selectPageFields(),
374 self
::selectUserFields()
376 $options = array( 'LIMIT' => 1 );
377 if ( ( $flags & self
::READ_LOCKING
) == self
::READ_LOCKING
) {
378 $options[] = 'FOR UPDATE';
381 array( 'revision', 'page', 'user' ),
386 array( 'page' => self
::pageJoinCond(), 'user' => self
::userJoinCond() )
391 * Return the value of a select() JOIN conds array for the user table.
392 * This will get user table rows for logged-in users.
396 public static function userJoinCond() {
397 return array( 'LEFT JOIN', array( 'rev_user != 0', 'user_id = rev_user' ) );
401 * Return the value of a select() page conds array for the page table.
402 * This will assure that the revision(s) are not orphaned from live pages.
406 public static function pageJoinCond() {
407 return array( 'INNER JOIN', array( 'page_id = rev_page' ) );
411 * Return the list of revision fields that should be selected to create
415 public static function selectFields() {
416 global $wgContentHandlerUseDB;
433 if ( $wgContentHandlerUseDB ) {
434 $fields[] = 'rev_content_format';
435 $fields[] = 'rev_content_model';
442 * Return the list of revision fields that should be selected to create
443 * a new revision from an archive row.
446 public static function selectArchiveFields() {
447 global $wgContentHandlerUseDB;
465 if ( $wgContentHandlerUseDB ) {
466 $fields[] = 'ar_content_format';
467 $fields[] = 'ar_content_model';
473 * Return the list of text fields that should be selected to read the
477 public static function selectTextFields() {
485 * Return the list of page fields that should be selected from page table
488 public static function selectPageFields() {
500 * Return the list of user fields that should be selected from user table
503 public static function selectUserFields() {
504 return array( 'user_name' );
508 * Do a batched query to get the parent revision lengths
509 * @param DatabaseBase $db
510 * @param array $revIds
513 public static function getParentLengths( $db, array $revIds ) {
516 return $revLens; // empty
518 wfProfileIn( __METHOD__
);
519 $res = $db->select( 'revision',
520 array( 'rev_id', 'rev_len' ),
521 array( 'rev_id' => $revIds ),
523 foreach ( $res as $row ) {
524 $revLens[$row->rev_id
] = $row->rev_len
;
526 wfProfileOut( __METHOD__
);
533 * @param object|array $row Either a database row or an array
534 * @throws MWException
537 function __construct( $row ) {
538 if ( is_object( $row ) ) {
539 $this->mId
= intval( $row->rev_id
);
540 $this->mPage
= intval( $row->rev_page
);
541 $this->mTextId
= intval( $row->rev_text_id
);
542 $this->mComment
= $row->rev_comment
;
543 $this->mUser
= intval( $row->rev_user
);
544 $this->mMinorEdit
= intval( $row->rev_minor_edit
);
545 $this->mTimestamp
= $row->rev_timestamp
;
546 $this->mDeleted
= intval( $row->rev_deleted
);
548 if ( !isset( $row->rev_parent_id
) ) {
549 $this->mParentId
= null;
551 $this->mParentId
= intval( $row->rev_parent_id
);
554 if ( !isset( $row->rev_len
) ) {
557 $this->mSize
= intval( $row->rev_len
);
560 if ( !isset( $row->rev_sha1
) ) {
563 $this->mSha1
= $row->rev_sha1
;
566 if ( isset( $row->page_latest
) ) {
567 $this->mCurrent
= ( $row->rev_id
== $row->page_latest
);
568 $this->mTitle
= Title
::newFromRow( $row );
570 $this->mCurrent
= false;
571 $this->mTitle
= null;
574 if ( !isset( $row->rev_content_model
) ) {
575 $this->mContentModel
= null; # determine on demand if needed
577 $this->mContentModel
= strval( $row->rev_content_model
);
580 if ( !isset( $row->rev_content_format
) ) {
581 $this->mContentFormat
= null; # determine on demand if needed
583 $this->mContentFormat
= strval( $row->rev_content_format
);
586 // Lazy extraction...
588 if ( isset( $row->old_text
) ) {
589 $this->mTextRow
= $row;
591 // 'text' table row entry will be lazy-loaded
592 $this->mTextRow
= null;
595 // Use user_name for users and rev_user_text for IPs...
596 $this->mUserText
= null; // lazy load if left null
597 if ( $this->mUser
== 0 ) {
598 $this->mUserText
= $row->rev_user_text
; // IP user
599 } elseif ( isset( $row->user_name
) ) {
600 $this->mUserText
= $row->user_name
; // logged-in user
602 $this->mOrigUserText
= $row->rev_user_text
;
603 } elseif ( is_array( $row ) ) {
604 // Build a new revision to be saved...
605 global $wgUser; // ugh
607 # if we have a content object, use it to set the model and type
608 if ( !empty( $row['content'] ) ) {
609 // @todo when is that set? test with external store setup! check out insertOn() [dk]
610 if ( !empty( $row['text_id'] ) ) {
611 throw new MWException( "Text already stored in external store (id {$row['text_id']}), " .
612 "can't serialize content object" );
615 $row['content_model'] = $row['content']->getModel();
616 # note: mContentFormat is initializes later accordingly
617 # note: content is serialized later in this method!
618 # also set text to null?
621 $this->mId
= isset( $row['id'] ) ?
intval( $row['id'] ) : null;
622 $this->mPage
= isset( $row['page'] ) ?
intval( $row['page'] ) : null;
623 $this->mTextId
= isset( $row['text_id'] ) ?
intval( $row['text_id'] ) : null;
624 $this->mUserText
= isset( $row['user_text'] )
625 ?
strval( $row['user_text'] ) : $wgUser->getName();
626 $this->mUser
= isset( $row['user'] ) ?
intval( $row['user'] ) : $wgUser->getId();
627 $this->mMinorEdit
= isset( $row['minor_edit'] ) ?
intval( $row['minor_edit'] ) : 0;
628 $this->mTimestamp
= isset( $row['timestamp'] )
629 ?
strval( $row['timestamp'] ) : wfTimestampNow();
630 $this->mDeleted
= isset( $row['deleted'] ) ?
intval( $row['deleted'] ) : 0;
631 $this->mSize
= isset( $row['len'] ) ?
intval( $row['len'] ) : null;
632 $this->mParentId
= isset( $row['parent_id'] ) ?
intval( $row['parent_id'] ) : null;
633 $this->mSha1
= isset( $row['sha1'] ) ?
strval( $row['sha1'] ) : null;
635 $this->mContentModel
= isset( $row['content_model'] )
636 ?
strval( $row['content_model'] ) : null;
637 $this->mContentFormat
= isset( $row['content_format'] )
638 ?
strval( $row['content_format'] ) : null;
640 // Enforce spacing trimming on supplied text
641 $this->mComment
= isset( $row['comment'] ) ?
trim( strval( $row['comment'] ) ) : null;
642 $this->mText
= isset( $row['text'] ) ?
rtrim( strval( $row['text'] ) ) : null;
643 $this->mTextRow
= null;
645 $this->mTitle
= isset( $row['title'] ) ?
$row['title'] : null;
647 // if we have a Content object, override mText and mContentModel
648 if ( !empty( $row['content'] ) ) {
649 if ( !( $row['content'] instanceof Content
) ) {
650 throw new MWException( '`content` field must contain a Content object.' );
653 $handler = $this->getContentHandler();
654 $this->mContent
= $row['content'];
656 $this->mContentModel
= $this->mContent
->getModel();
657 $this->mContentHandler
= null;
659 $this->mText
= $handler->serializeContent( $row['content'], $this->getContentFormat() );
660 } elseif ( $this->mText
!== null ) {
661 $handler = $this->getContentHandler();
662 $this->mContent
= $handler->unserializeContent( $this->mText
);
665 // If we have a Title object, make sure it is consistent with mPage.
666 if ( $this->mTitle
&& $this->mTitle
->exists() ) {
667 if ( $this->mPage
=== null ) {
668 // if the page ID wasn't known, set it now
669 $this->mPage
= $this->mTitle
->getArticleID();
670 } elseif ( $this->mTitle
->getArticleID() !== $this->mPage
) {
671 // Got different page IDs. This may be legit (e.g. during undeletion),
672 // but it seems worth mentioning it in the log.
673 wfDebug( "Page ID " . $this->mPage
. " mismatches the ID " .
674 $this->mTitle
->getArticleID() . " provided by the Title object." );
678 $this->mCurrent
= false;
680 // If we still have no length, see it we have the text to figure it out
681 if ( !$this->mSize
) {
682 if ( $this->mContent
!== null ) {
683 $this->mSize
= $this->mContent
->getSize();
685 #NOTE: this should never happen if we have either text or content object!
691 if ( $this->mSha1
=== null ) {
692 $this->mSha1
= $this->mText
=== null ?
null : self
::base36Sha1( $this->mText
);
696 $this->getContentModel();
697 $this->getContentFormat();
699 throw new MWException( 'Revision constructor passed invalid row format.' );
701 $this->mUnpatrolled
= null;
709 public function getId() {
714 * Set the revision ID
719 public function setId( $id ) {
728 public function getTextId() {
729 return $this->mTextId
;
733 * Get parent revision ID (the original previous page revision)
737 public function getParentId() {
738 return $this->mParentId
;
742 * Returns the length of the text in this revision, or null if unknown.
746 public function getSize() {
751 * Returns the base36 sha1 of the text in this revision, or null if unknown.
753 * @return string|null
755 public function getSha1() {
760 * Returns the title of the page associated with this entry or null.
762 * Will do a query, when title is not set and id is given.
766 public function getTitle() {
767 if ( $this->mTitle
!== null ) {
768 return $this->mTitle
;
770 //rev_id is defined as NOT NULL, but this revision may not yet have been inserted.
771 if ( $this->mId
!== null ) {
772 $dbr = wfGetDB( DB_SLAVE
);
773 $row = $dbr->selectRow(
774 array( 'page', 'revision' ),
775 self
::selectPageFields(),
776 array( 'page_id=rev_page',
777 'rev_id' => $this->mId
),
780 $this->mTitle
= Title
::newFromRow( $row );
784 if ( !$this->mTitle
&& $this->mPage
!== null && $this->mPage
> 0 ) {
785 $this->mTitle
= Title
::newFromID( $this->mPage
);
788 return $this->mTitle
;
792 * Set the title of the revision
794 * @param Title $title
796 public function setTitle( $title ) {
797 $this->mTitle
= $title;
805 public function getPage() {
810 * Fetch revision's user id if it's available to the specified audience.
811 * If the specified audience does not have access to it, zero will be
814 * @param int $audience One of:
815 * Revision::FOR_PUBLIC to be displayed to all users
816 * Revision::FOR_THIS_USER to be displayed to the given user
817 * Revision::RAW get the ID regardless of permissions
818 * @param User $user User object to check for, only if FOR_THIS_USER is passed
819 * to the $audience parameter
822 public function getUser( $audience = self
::FOR_PUBLIC
, User
$user = null ) {
823 if ( $audience == self
::FOR_PUBLIC
&& $this->isDeleted( self
::DELETED_USER
) ) {
825 } elseif ( $audience == self
::FOR_THIS_USER
&& !$this->userCan( self
::DELETED_USER
, $user ) ) {
833 * Fetch revision's user id without regard for the current user's permissions
837 public function getRawUser() {
842 * Fetch revision's username if it's available to the specified audience.
843 * If the specified audience does not have access to the username, an
844 * empty string will be returned.
846 * @param int $audience One of:
847 * Revision::FOR_PUBLIC to be displayed to all users
848 * Revision::FOR_THIS_USER to be displayed to the given user
849 * Revision::RAW get the text regardless of permissions
850 * @param User $user User object to check for, only if FOR_THIS_USER is passed
851 * to the $audience parameter
854 public function getUserText( $audience = self
::FOR_PUBLIC
, User
$user = null ) {
855 if ( $audience == self
::FOR_PUBLIC
&& $this->isDeleted( self
::DELETED_USER
) ) {
857 } elseif ( $audience == self
::FOR_THIS_USER
&& !$this->userCan( self
::DELETED_USER
, $user ) ) {
860 return $this->getRawUserText();
865 * Fetch revision's username without regard for view restrictions
869 public function getRawUserText() {
870 if ( $this->mUserText
=== null ) {
871 $this->mUserText
= User
::whoIs( $this->mUser
); // load on demand
872 if ( $this->mUserText
=== false ) {
873 # This shouldn't happen, but it can if the wiki was recovered
874 # via importing revs and there is no user table entry yet.
875 $this->mUserText
= $this->mOrigUserText
;
878 return $this->mUserText
;
882 * Fetch revision comment if it's available to the specified audience.
883 * If the specified audience does not have access to the comment, an
884 * empty string will be returned.
886 * @param int $audience One of:
887 * Revision::FOR_PUBLIC to be displayed to all users
888 * Revision::FOR_THIS_USER to be displayed to the given user
889 * Revision::RAW get the text regardless of permissions
890 * @param User $user User object to check for, only if FOR_THIS_USER is passed
891 * to the $audience parameter
894 function getComment( $audience = self
::FOR_PUBLIC
, User
$user = null ) {
895 if ( $audience == self
::FOR_PUBLIC
&& $this->isDeleted( self
::DELETED_COMMENT
) ) {
897 } elseif ( $audience == self
::FOR_THIS_USER
&& !$this->userCan( self
::DELETED_COMMENT
, $user ) ) {
900 return $this->mComment
;
905 * Fetch revision comment without regard for the current user's permissions
909 public function getRawComment() {
910 return $this->mComment
;
916 public function isMinor() {
917 return (bool)$this->mMinorEdit
;
921 * @return int Rcid of the unpatrolled row, zero if there isn't one
923 public function isUnpatrolled() {
924 if ( $this->mUnpatrolled
!== null ) {
925 return $this->mUnpatrolled
;
927 $rc = $this->getRecentChange();
928 if ( $rc && $rc->getAttribute( 'rc_patrolled' ) == 0 ) {
929 $this->mUnpatrolled
= $rc->getAttribute( 'rc_id' );
931 $this->mUnpatrolled
= 0;
933 return $this->mUnpatrolled
;
937 * Get the RC object belonging to the current revision, if there's one
940 * @return RecentChange|null
942 public function getRecentChange() {
943 $dbr = wfGetDB( DB_SLAVE
);
944 return RecentChange
::newFromConds(
946 'rc_user_text' => $this->getRawUserText(),
947 'rc_timestamp' => $dbr->timestamp( $this->getTimestamp() ),
948 'rc_this_oldid' => $this->getId()
955 * @param int $field One of DELETED_* bitfield constants
959 public function isDeleted( $field ) {
960 return ( $this->mDeleted
& $field ) == $field;
964 * Get the deletion bitfield of the revision
968 public function getVisibility() {
969 return (int)$this->mDeleted
;
973 * Fetch revision text if it's available to the specified audience.
974 * If the specified audience does not have the ability to view this
975 * revision, an empty string will be returned.
977 * @param int $audience One of:
978 * Revision::FOR_PUBLIC to be displayed to all users
979 * Revision::FOR_THIS_USER to be displayed to the given user
980 * Revision::RAW get the text regardless of permissions
981 * @param User $user User object to check for, only if FOR_THIS_USER is passed
982 * to the $audience parameter
984 * @deprecated since 1.21, use getContent() instead
985 * @todo Replace usage in core
988 public function getText( $audience = self
::FOR_PUBLIC
, User
$user = null ) {
989 ContentHandler
::deprecated( __METHOD__
, '1.21' );
991 $content = $this->getContent( $audience, $user );
992 return ContentHandler
::getContentText( $content ); # returns the raw content text, if applicable
996 * Fetch revision content if it's available to the specified audience.
997 * If the specified audience does not have the ability to view this
998 * revision, null will be returned.
1000 * @param int $audience One of:
1001 * Revision::FOR_PUBLIC to be displayed to all users
1002 * Revision::FOR_THIS_USER to be displayed to $wgUser
1003 * Revision::RAW get the text regardless of permissions
1004 * @param User $user User object to check for, only if FOR_THIS_USER is passed
1005 * to the $audience parameter
1007 * @return Content|null
1009 public function getContent( $audience = self
::FOR_PUBLIC
, User
$user = null ) {
1010 if ( $audience == self
::FOR_PUBLIC
&& $this->isDeleted( self
::DELETED_TEXT
) ) {
1012 } elseif ( $audience == self
::FOR_THIS_USER
&& !$this->userCan( self
::DELETED_TEXT
, $user ) ) {
1015 return $this->getContentInternal();
1020 * Fetch revision text without regard for view restrictions
1024 * @deprecated since 1.21. Instead, use Revision::getContent( Revision::RAW )
1025 * or Revision::getSerializedData() as appropriate.
1027 public function getRawText() {
1028 ContentHandler
::deprecated( __METHOD__
, "1.21" );
1029 return $this->getText( self
::RAW
);
1033 * Fetch original serialized data without regard for view restrictions
1038 public function getSerializedData() {
1039 if ( $this->mText
=== null ) {
1040 $this->mText
= $this->loadText();
1043 return $this->mText
;
1047 * Gets the content object for the revision (or null on failure).
1049 * Note that for mutable Content objects, each call to this method will return a
1053 * @return Content|null The Revision's content, or null on failure.
1055 protected function getContentInternal() {
1056 if ( $this->mContent
=== null ) {
1057 // Revision is immutable. Load on demand:
1058 if ( $this->mText
=== null ) {
1059 $this->mText
= $this->loadText();
1062 if ( $this->mText
!== null && $this->mText
!== false ) {
1063 // Unserialize content
1064 $handler = $this->getContentHandler();
1065 $format = $this->getContentFormat();
1067 $this->mContent
= $handler->unserializeContent( $this->mText
, $format );
1069 $this->mContent
= false; // negative caching!
1073 // NOTE: copy() will return $this for immutable content objects
1074 return $this->mContent ?
$this->mContent
->copy() : null;
1078 * Returns the content model for this revision.
1080 * If no content model was stored in the database, $this->getTitle()->getContentModel() is
1081 * used to determine the content model to use. If no title is know, CONTENT_MODEL_WIKITEXT
1082 * is used as a last resort.
1084 * @return string The content model id associated with this revision,
1085 * see the CONTENT_MODEL_XXX constants.
1087 public function getContentModel() {
1088 if ( !$this->mContentModel
) {
1089 $title = $this->getTitle();
1090 $this->mContentModel
= ( $title ?
$title->getContentModel() : CONTENT_MODEL_WIKITEXT
);
1092 assert( !empty( $this->mContentModel
) );
1095 return $this->mContentModel
;
1099 * Returns the content format for this revision.
1101 * If no content format was stored in the database, the default format for this
1102 * revision's content model is returned.
1104 * @return string The content format id associated with this revision,
1105 * see the CONTENT_FORMAT_XXX constants.
1107 public function getContentFormat() {
1108 if ( !$this->mContentFormat
) {
1109 $handler = $this->getContentHandler();
1110 $this->mContentFormat
= $handler->getDefaultFormat();
1112 assert( !empty( $this->mContentFormat
) );
1115 return $this->mContentFormat
;
1119 * Returns the content handler appropriate for this revision's content model.
1121 * @throws MWException
1122 * @return ContentHandler
1124 public function getContentHandler() {
1125 if ( !$this->mContentHandler
) {
1126 $model = $this->getContentModel();
1127 $this->mContentHandler
= ContentHandler
::getForModelID( $model );
1129 $format = $this->getContentFormat();
1131 if ( !$this->mContentHandler
->isSupportedFormat( $format ) ) {
1132 throw new MWException( "Oops, the content format $format is not supported for "
1133 . "this content model, $model" );
1137 return $this->mContentHandler
;
1143 public function getTimestamp() {
1144 return wfTimestamp( TS_MW
, $this->mTimestamp
);
1150 public function isCurrent() {
1151 return $this->mCurrent
;
1155 * Get previous revision for this title
1157 * @return Revision|null
1159 public function getPrevious() {
1160 if ( $this->getTitle() ) {
1161 $prev = $this->getTitle()->getPreviousRevisionID( $this->getId() );
1163 return self
::newFromTitle( $this->getTitle(), $prev );
1170 * Get next revision for this title
1172 * @return Revision|null
1174 public function getNext() {
1175 if ( $this->getTitle() ) {
1176 $next = $this->getTitle()->getNextRevisionID( $this->getId() );
1178 return self
::newFromTitle( $this->getTitle(), $next );
1185 * Get previous revision Id for this page_id
1186 * This is used to populate rev_parent_id on save
1188 * @param DatabaseBase $db
1191 private function getPreviousRevisionId( $db ) {
1192 if ( $this->mPage
=== null ) {
1195 # Use page_latest if ID is not given
1196 if ( !$this->mId
) {
1197 $prevId = $db->selectField( 'page', 'page_latest',
1198 array( 'page_id' => $this->mPage
),
1201 $prevId = $db->selectField( 'revision', 'rev_id',
1202 array( 'rev_page' => $this->mPage
, 'rev_id < ' . $this->mId
),
1204 array( 'ORDER BY' => 'rev_id DESC' ) );
1206 return intval( $prevId );
1210 * Get revision text associated with an old or archive row
1211 * $row is usually an object from wfFetchRow(), both the flags and the text
1212 * field must be included.
1214 * @param stdClass $row The text data
1215 * @param string $prefix Table prefix (default 'old_')
1216 * @param string|bool $wiki The name of the wiki to load the revision text from
1217 * (same as the the wiki $row was loaded from) or false to indicate the local
1218 * wiki (this is the default). Otherwise, it must be a symbolic wiki database
1219 * identifier as understood by the LoadBalancer class.
1220 * @return string Text the text requested or false on failure
1222 public static function getRevisionText( $row, $prefix = 'old_', $wiki = false ) {
1223 wfProfileIn( __METHOD__
);
1226 $textField = $prefix . 'text';
1227 $flagsField = $prefix . 'flags';
1229 if ( isset( $row->$flagsField ) ) {
1230 $flags = explode( ',', $row->$flagsField );
1235 if ( isset( $row->$textField ) ) {
1236 $text = $row->$textField;
1238 wfProfileOut( __METHOD__
);
1242 # Use external methods for external objects, text in table is URL-only then
1243 if ( in_array( 'external', $flags ) ) {
1245 $parts = explode( '://', $url, 2 );
1246 if ( count( $parts ) == 1 ||
$parts[1] == '' ) {
1247 wfProfileOut( __METHOD__
);
1250 $text = ExternalStore
::fetchFromURL( $url, array( 'wiki' => $wiki ) );
1253 // If the text was fetched without an error, convert it
1254 if ( $text !== false ) {
1255 $text = self
::decompressRevisionText( $text, $flags );
1257 wfProfileOut( __METHOD__
);
1262 * If $wgCompressRevisions is enabled, we will compress data.
1263 * The input string is modified in place.
1264 * Return value is the flags field: contains 'gzip' if the
1265 * data is compressed, and 'utf-8' if we're saving in UTF-8
1268 * @param mixed $text Reference to a text
1271 public static function compressRevisionText( &$text ) {
1272 global $wgCompressRevisions;
1275 # Revisions not marked this way will be converted
1276 # on load if $wgLegacyCharset is set in the future.
1279 if ( $wgCompressRevisions ) {
1280 if ( function_exists( 'gzdeflate' ) ) {
1281 $text = gzdeflate( $text );
1284 wfDebug( __METHOD__
. " -- no zlib support, not compressing\n" );
1287 return implode( ',', $flags );
1291 * Re-converts revision text according to it's flags.
1293 * @param mixed $text Reference to a text
1294 * @param array $flags Compression flags
1295 * @return string|bool Decompressed text, or false on failure
1297 public static function decompressRevisionText( $text, $flags ) {
1298 if ( in_array( 'gzip', $flags ) ) {
1299 # Deal with optional compression of archived pages.
1300 # This can be done periodically via maintenance/compressOld.php, and
1301 # as pages are saved if $wgCompressRevisions is set.
1302 $text = gzinflate( $text );
1305 if ( in_array( 'object', $flags ) ) {
1306 # Generic compressed storage
1307 $obj = unserialize( $text );
1308 if ( !is_object( $obj ) ) {
1312 $text = $obj->getText();
1315 global $wgLegacyEncoding;
1316 if ( $text !== false && $wgLegacyEncoding
1317 && !in_array( 'utf-8', $flags ) && !in_array( 'utf8', $flags )
1319 # Old revisions kept around in a legacy encoding?
1320 # Upconvert on demand.
1321 # ("utf8" checked for compatibility with some broken
1322 # conversion scripts 2008-12-30)
1324 $text = $wgContLang->iconv( $wgLegacyEncoding, 'UTF-8', $text );
1331 * Insert a new revision into the database, returning the new revision ID
1332 * number on success and dies horribly on failure.
1334 * @param DatabaseBase $dbw (master connection)
1335 * @throws MWException
1338 public function insertOn( $dbw ) {
1339 global $wgDefaultExternalStore, $wgContentHandlerUseDB;
1341 wfProfileIn( __METHOD__
);
1343 $this->checkContentModel();
1345 $data = $this->mText
;
1346 $flags = self
::compressRevisionText( $data );
1348 # Write to external storage if required
1349 if ( $wgDefaultExternalStore ) {
1350 // Store and get the URL
1351 $data = ExternalStore
::insertToDefault( $data );
1353 wfProfileOut( __METHOD__
);
1354 throw new MWException( "Unable to store text to external storage" );
1359 $flags .= 'external';
1362 # Record the text (or external storage URL) to the text table
1363 if ( $this->mTextId
=== null ) {
1364 $old_id = $dbw->nextSequenceValue( 'text_old_id_seq' );
1365 $dbw->insert( 'text',
1367 'old_id' => $old_id,
1368 'old_text' => $data,
1369 'old_flags' => $flags,
1372 $this->mTextId
= $dbw->insertId();
1375 if ( $this->mComment
=== null ) {
1376 $this->mComment
= "";
1379 # Record the edit in revisions
1380 $rev_id = $this->mId
!== null
1382 : $dbw->nextSequenceValue( 'revision_rev_id_seq' );
1384 'rev_id' => $rev_id,
1385 'rev_page' => $this->mPage
,
1386 'rev_text_id' => $this->mTextId
,
1387 'rev_comment' => $this->mComment
,
1388 'rev_minor_edit' => $this->mMinorEdit ?
1 : 0,
1389 'rev_user' => $this->mUser
,
1390 'rev_user_text' => $this->mUserText
,
1391 'rev_timestamp' => $dbw->timestamp( $this->mTimestamp
),
1392 'rev_deleted' => $this->mDeleted
,
1393 'rev_len' => $this->mSize
,
1394 'rev_parent_id' => $this->mParentId
=== null
1395 ?
$this->getPreviousRevisionId( $dbw )
1397 'rev_sha1' => $this->mSha1
=== null
1398 ? Revision
::base36Sha1( $this->mText
)
1402 if ( $wgContentHandlerUseDB ) {
1403 //NOTE: Store null for the default model and format, to save space.
1404 //XXX: Makes the DB sensitive to changed defaults.
1405 // Make this behavior optional? Only in miser mode?
1407 $model = $this->getContentModel();
1408 $format = $this->getContentFormat();
1410 $title = $this->getTitle();
1412 if ( $title === null ) {
1413 wfProfileOut( __METHOD__
);
1414 throw new MWException( "Insufficient information to determine the title of the "
1415 . "revision's page!" );
1418 $defaultModel = ContentHandler
::getDefaultModelFor( $title );
1419 $defaultFormat = ContentHandler
::getForModelID( $defaultModel )->getDefaultFormat();
1421 $row['rev_content_model'] = ( $model === $defaultModel ) ?
null : $model;
1422 $row['rev_content_format'] = ( $format === $defaultFormat ) ?
null : $format;
1425 $dbw->insert( 'revision', $row, __METHOD__
);
1427 $this->mId
= $rev_id !== null ?
$rev_id : $dbw->insertId();
1429 wfRunHooks( 'RevisionInsertComplete', array( &$this, $data, $flags ) );
1431 wfProfileOut( __METHOD__
);
1435 protected function checkContentModel() {
1436 global $wgContentHandlerUseDB;
1438 $title = $this->getTitle(); //note: may return null for revisions that have not yet been inserted.
1440 $model = $this->getContentModel();
1441 $format = $this->getContentFormat();
1442 $handler = $this->getContentHandler();
1444 if ( !$handler->isSupportedFormat( $format ) ) {
1445 $t = $title->getPrefixedDBkey();
1447 throw new MWException( "Can't use format $format with content model $model on $t" );
1450 if ( !$wgContentHandlerUseDB && $title ) {
1451 // if $wgContentHandlerUseDB is not set,
1452 // all revisions must use the default content model and format.
1454 $defaultModel = ContentHandler
::getDefaultModelFor( $title );
1455 $defaultHandler = ContentHandler
::getForModelID( $defaultModel );
1456 $defaultFormat = $defaultHandler->getDefaultFormat();
1458 if ( $this->getContentModel() != $defaultModel ) {
1459 $t = $title->getPrefixedDBkey();
1461 throw new MWException( "Can't save non-default content model with "
1462 . "\$wgContentHandlerUseDB disabled: model is $model, "
1463 . "default for $t is $defaultModel" );
1466 if ( $this->getContentFormat() != $defaultFormat ) {
1467 $t = $title->getPrefixedDBkey();
1469 throw new MWException( "Can't use non-default content format with "
1470 . "\$wgContentHandlerUseDB disabled: format is $format, "
1471 . "default for $t is $defaultFormat" );
1475 $content = $this->getContent( Revision
::RAW
);
1477 if ( !$content ||
!$content->isValid() ) {
1478 $t = $title->getPrefixedDBkey();
1480 throw new MWException( "Content of $t is not valid! Content model is $model" );
1485 * Get the base 36 SHA-1 value for a string of text
1486 * @param string $text
1489 public static function base36Sha1( $text ) {
1490 return wfBaseConvert( sha1( $text ), 16, 36, 31 );
1494 * Lazy-load the revision's text.
1495 * Currently hardcoded to the 'text' table storage engine.
1497 * @return string|bool The revision's text, or false on failure
1499 protected function loadText() {
1500 wfProfileIn( __METHOD__
);
1502 // Caching may be beneficial for massive use of external storage
1503 global $wgRevisionCacheExpiry, $wgMemc;
1504 $textId = $this->getTextId();
1505 $key = wfMemcKey( 'revisiontext', 'textid', $textId );
1506 if ( $wgRevisionCacheExpiry ) {
1507 $text = $wgMemc->get( $key );
1508 if ( is_string( $text ) ) {
1509 wfDebug( __METHOD__
. ": got id $textId from cache\n" );
1510 wfProfileOut( __METHOD__
);
1515 // If we kept data for lazy extraction, use it now...
1516 if ( $this->mTextRow
!== null ) {
1517 $row = $this->mTextRow
;
1518 $this->mTextRow
= null;
1524 // Text data is immutable; check slaves first.
1525 $dbr = wfGetDB( DB_SLAVE
);
1526 $row = $dbr->selectRow( 'text',
1527 array( 'old_text', 'old_flags' ),
1528 array( 'old_id' => $textId ),
1532 // Fallback to the master in case of slave lag. Also use FOR UPDATE if it was
1533 // used to fetch this revision to avoid missing the row due to REPEATABLE-READ.
1534 $forUpdate = ( $this->mQueryFlags
& self
::READ_LOCKING
== self
::READ_LOCKING
);
1535 if ( !$row && ( $forUpdate ||
wfGetLB()->getServerCount() > 1 ) ) {
1536 $dbw = wfGetDB( DB_MASTER
);
1537 $row = $dbw->selectRow( 'text',
1538 array( 'old_text', 'old_flags' ),
1539 array( 'old_id' => $textId ),
1541 $forUpdate ?
array( 'FOR UPDATE' ) : array() );
1545 wfDebugLog( 'Revision', "No text row with ID '$textId' (revision {$this->getId()})." );
1548 $text = self
::getRevisionText( $row );
1549 if ( $row && $text === false ) {
1550 wfDebugLog( 'Revision', "No blob for text row '$textId' (revision {$this->getId()})." );
1553 # No negative caching -- negative hits on text rows may be due to corrupted slave servers
1554 if ( $wgRevisionCacheExpiry && $text !== false ) {
1555 $wgMemc->set( $key, $text, $wgRevisionCacheExpiry );
1558 wfProfileOut( __METHOD__
);
1564 * Create a new null-revision for insertion into a page's
1565 * history. This will not re-save the text, but simply refer
1566 * to the text from the previous version.
1568 * Such revisions can for instance identify page rename
1569 * operations and other such meta-modifications.
1571 * @param DatabaseBase $dbw
1572 * @param int $pageId ID number of the page to read from
1573 * @param string $summary Revision's summary
1574 * @param bool $minor Whether the revision should be considered as minor
1575 * @param User|null $user User object to use or null for $wgUser
1576 * @return Revision|null Revision or null on error
1578 public static function newNullRevision( $dbw, $pageId, $summary, $minor, $user = null ) {
1579 global $wgContentHandlerUseDB;
1581 wfProfileIn( __METHOD__
);
1583 $fields = array( 'page_latest', 'page_namespace', 'page_title',
1584 'rev_text_id', 'rev_len', 'rev_sha1' );
1586 if ( $wgContentHandlerUseDB ) {
1587 $fields[] = 'rev_content_model';
1588 $fields[] = 'rev_content_format';
1591 $current = $dbw->selectRow(
1592 array( 'page', 'revision' ),
1595 'page_id' => $pageId,
1596 'page_latest=rev_id',
1608 'user_text' => $user->getName(),
1609 'user' => $user->getId(),
1610 'comment' => $summary,
1611 'minor_edit' => $minor,
1612 'text_id' => $current->rev_text_id
,
1613 'parent_id' => $current->page_latest
,
1614 'len' => $current->rev_len
,
1615 'sha1' => $current->rev_sha1
1618 if ( $wgContentHandlerUseDB ) {
1619 $row['content_model'] = $current->rev_content_model
;
1620 $row['content_format'] = $current->rev_content_format
;
1623 $revision = new Revision( $row );
1624 $revision->setTitle( Title
::makeTitle( $current->page_namespace
, $current->page_title
) );
1629 wfProfileOut( __METHOD__
);
1634 * Determine if the current user is allowed to view a particular
1635 * field of this revision, if it's marked as deleted.
1637 * @param int $field One of self::DELETED_TEXT,
1638 * self::DELETED_COMMENT,
1639 * self::DELETED_USER
1640 * @param User|null $user User object to check, or null to use $wgUser
1643 public function userCan( $field, User
$user = null ) {
1644 return self
::userCanBitfield( $this->mDeleted
, $field, $user );
1648 * Determine if the current user is allowed to view a particular
1649 * field of this revision, if it's marked as deleted. This is used
1650 * by various classes to avoid duplication.
1652 * @param int $bitfield Current field
1653 * @param int $field One of self::DELETED_TEXT = File::DELETED_FILE,
1654 * self::DELETED_COMMENT = File::DELETED_COMMENT,
1655 * self::DELETED_USER = File::DELETED_USER
1656 * @param User|null $user User object to check, or null to use $wgUser
1659 public static function userCanBitfield( $bitfield, $field, User
$user = null ) {
1660 if ( $bitfield & $field ) { // aspect is deleted
1661 if ( $user === null ) {
1665 if ( $bitfield & self
::DELETED_RESTRICTED
) {
1666 $permissions = array( 'suppressrevision', 'viewsuppressed' );
1667 } elseif ( $field & self
::DELETED_TEXT
) {
1668 $permissions = array( 'deletedtext' );
1670 $permissions = array( 'deletedhistory' );
1672 $permissionlist = implode( ', ', $permissions );
1673 wfDebug( "Checking for $permissionlist due to $field match on $bitfield\n" );
1674 return call_user_func_array( array( $user, 'isAllowedAny' ), $permissions );
1681 * Get rev_timestamp from rev_id, without loading the rest of the row
1683 * @param Title $title
1687 static function getTimestampFromId( $title, $id ) {
1688 $dbr = wfGetDB( DB_SLAVE
);
1689 // Casting fix for databases that can't take '' for rev_id
1693 $conds = array( 'rev_id' => $id );
1694 $conds['rev_page'] = $title->getArticleID();
1695 $timestamp = $dbr->selectField( 'revision', 'rev_timestamp', $conds, __METHOD__
);
1696 if ( $timestamp === false && wfGetLB()->getServerCount() > 1 ) {
1697 # Not in slave, try master
1698 $dbw = wfGetDB( DB_MASTER
);
1699 $timestamp = $dbw->selectField( 'revision', 'rev_timestamp', $conds, __METHOD__
);
1701 return wfTimestamp( TS_MW
, $timestamp );
1705 * Get count of revisions per page...not very efficient
1707 * @param DatabaseBase $db
1708 * @param int $id Page id
1711 static function countByPageId( $db, $id ) {
1712 $row = $db->selectRow( 'revision', array( 'revCount' => 'COUNT(*)' ),
1713 array( 'rev_page' => $id ), __METHOD__
);
1715 return $row->revCount
;
1721 * Get count of revisions per page...not very efficient
1723 * @param DatabaseBase $db
1724 * @param Title $title
1727 static function countByTitle( $db, $title ) {
1728 $id = $title->getArticleID();
1730 return self
::countByPageId( $db, $id );
1736 * Check if no edits were made by other users since
1737 * the time a user started editing the page. Limit to
1738 * 50 revisions for the sake of performance.
1741 * @deprecated since 1.24
1743 * @param DatabaseBase|int $db The Database to perform the check on. May be given as a
1744 * Database object or a database identifier usable with wfGetDB.
1745 * @param int $pageId The ID of the page in question
1746 * @param int $userId The ID of the user in question
1747 * @param string $since Look at edits since this time
1749 * @return bool True if the given user was the only one to edit since the given timestamp
1751 public static function userWasLastToEdit( $db, $pageId, $userId, $since ) {
1756 if ( is_int( $db ) ) {
1757 $db = wfGetDB( $db );
1760 $res = $db->select( 'revision',
1763 'rev_page' => $pageId,
1764 'rev_timestamp > ' . $db->addQuotes( $db->timestamp( $since ) )
1767 array( 'ORDER BY' => 'rev_timestamp ASC', 'LIMIT' => 50 ) );
1768 foreach ( $res as $row ) {
1769 if ( $row->rev_user
!= $userId ) {