Merge "Beware that getContent() may return null"
[lhc/web/wiklou.git] / includes / Revision.php
1 <?php
2 /**
3 * Representation of a page version.
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 * @todo document
25 */
26 class Revision implements IDBAccessObject {
27 protected $mId;
28
29 /**
30 * @var int|null
31 */
32 protected $mPage;
33 protected $mUserText;
34 protected $mOrigUserText;
35 protected $mUser;
36 protected $mMinorEdit;
37 protected $mTimestamp;
38 protected $mDeleted;
39 protected $mSize;
40 protected $mSha1;
41 protected $mParentId;
42 protected $mComment;
43 protected $mText;
44 protected $mTextRow;
45
46 /**
47 * @var null|Title
48 */
49 protected $mTitle;
50 protected $mCurrent;
51 protected $mContentModel;
52 protected $mContentFormat;
53
54 /**
55 * @var Content
56 */
57 protected $mContent;
58
59 /**
60 * @var null|ContentHandler
61 */
62 protected $mContentHandler;
63
64 // Revision deletion constants
65 const DELETED_TEXT = 1;
66 const DELETED_COMMENT = 2;
67 const DELETED_USER = 4;
68 const DELETED_RESTRICTED = 8;
69 const SUPPRESSED_USER = 12; // convenience
70
71 // Audience options for accessors
72 const FOR_PUBLIC = 1;
73 const FOR_THIS_USER = 2;
74 const RAW = 3;
75
76 /**
77 * Load a page revision from a given revision ID number.
78 * Returns null if no such revision can be found.
79 *
80 * $flags include:
81 * Revision::READ_LATEST : Select the data from the master
82 * Revision::READ_LOCKING : Select & lock the data from the master
83 *
84 * @param $id Integer
85 * @param $flags Integer (optional)
86 * @return Revision or null
87 */
88 public static function newFromId( $id, $flags = 0 ) {
89 return self::newFromConds( array( 'rev_id' => intval( $id ) ), $flags );
90 }
91
92 /**
93 * Load either the current, or a specified, revision
94 * that's attached to a given title. If not attached
95 * to that title, will return null.
96 *
97 * $flags include:
98 * Revision::READ_LATEST : Select the data from the master
99 * Revision::READ_LOCKING : Select & lock the data from the master
100 *
101 * @param $title Title
102 * @param $id Integer (optional)
103 * @param $flags Integer Bitfield (optional)
104 * @return Revision or null
105 */
106 public static function newFromTitle( $title, $id = 0, $flags = 0 ) {
107 $conds = array(
108 'page_namespace' => $title->getNamespace(),
109 'page_title' => $title->getDBkey()
110 );
111 if ( $id ) {
112 // Use the specified ID
113 $conds['rev_id'] = $id;
114 } else {
115 // Use a join to get the latest revision
116 $conds[] = 'rev_id=page_latest';
117 }
118 return self::newFromConds( $conds, (int)$flags );
119 }
120
121 /**
122 * Load either the current, or a specified, revision
123 * that's attached to a given page ID.
124 * Returns null if no such revision can be found.
125 *
126 * $flags include:
127 * Revision::READ_LATEST : Select the data from the master (since 1.20)
128 * Revision::READ_LOCKING : Select & lock the data from the master
129 *
130 * @param $revId Integer
131 * @param $pageId Integer (optional)
132 * @param $flags Integer Bitfield (optional)
133 * @return Revision or null
134 */
135 public static function newFromPageId( $pageId, $revId = 0, $flags = 0 ) {
136 $conds = array( 'page_id' => $pageId );
137 if ( $revId ) {
138 $conds['rev_id'] = $revId;
139 } else {
140 // Use a join to get the latest revision
141 $conds[] = 'rev_id = page_latest';
142 }
143 return self::newFromConds( $conds, (int)$flags );
144 }
145
146 /**
147 * Make a fake revision object from an archive table row. This is queried
148 * for permissions or even inserted (as in Special:Undelete)
149 * @todo FIXME: Should be a subclass for RevisionDelete. [TS]
150 *
151 * @param $row
152 * @param $overrides array
153 *
154 * @throws MWException
155 * @return Revision
156 */
157 public static function newFromArchiveRow( $row, $overrides = array() ) {
158 global $wgContentHandlerUseDB;
159
160 $attribs = $overrides + array(
161 'page' => isset( $row->ar_page_id ) ? $row->ar_page_id : null,
162 'id' => isset( $row->ar_rev_id ) ? $row->ar_rev_id : null,
163 'comment' => $row->ar_comment,
164 'user' => $row->ar_user,
165 'user_text' => $row->ar_user_text,
166 'timestamp' => $row->ar_timestamp,
167 'minor_edit' => $row->ar_minor_edit,
168 'text_id' => isset( $row->ar_text_id ) ? $row->ar_text_id : null,
169 'deleted' => $row->ar_deleted,
170 'len' => $row->ar_len,
171 'sha1' => isset( $row->ar_sha1 ) ? $row->ar_sha1 : null,
172 'content_model' => isset( $row->ar_content_model ) ? $row->ar_content_model : null,
173 'content_format' => isset( $row->ar_content_format ) ? $row->ar_content_format : null,
174 );
175
176 if ( !$wgContentHandlerUseDB ) {
177 unset( $attribs['content_model'] );
178 unset( $attribs['content_format'] );
179 }
180
181 if ( !isset( $attribs['title'] )
182 && isset( $row->ar_namespace )
183 && isset( $row->ar_title ) ) {
184
185 $attribs['title'] = Title::makeTitle( $row->ar_namespace, $row->ar_title );
186 }
187
188 if ( isset( $row->ar_text ) && !$row->ar_text_id ) {
189 // Pre-1.5 ar_text row
190 $attribs['text'] = self::getRevisionText( $row, 'ar_' );
191 if ( $attribs['text'] === false ) {
192 throw new MWException( 'Unable to load text from archive row (possibly bug 22624)' );
193 }
194 }
195 return new self( $attribs );
196 }
197
198 /**
199 * @since 1.19
200 *
201 * @param $row
202 * @return Revision
203 */
204 public static function newFromRow( $row ) {
205 return new self( $row );
206 }
207
208 /**
209 * Load a page revision from a given revision ID number.
210 * Returns null if no such revision can be found.
211 *
212 * @param $db DatabaseBase
213 * @param $id Integer
214 * @return Revision or null
215 */
216 public static function loadFromId( $db, $id ) {
217 return self::loadFromConds( $db, array( 'rev_id' => intval( $id ) ) );
218 }
219
220 /**
221 * Load either the current, or a specified, revision
222 * that's attached to a given page. If not attached
223 * to that page, will return null.
224 *
225 * @param $db DatabaseBase
226 * @param $pageid Integer
227 * @param $id Integer
228 * @return Revision or null
229 */
230 public static function loadFromPageId( $db, $pageid, $id = 0 ) {
231 $conds = array( 'rev_page' => intval( $pageid ), 'page_id' => intval( $pageid ) );
232 if( $id ) {
233 $conds['rev_id'] = intval( $id );
234 } else {
235 $conds[] = 'rev_id=page_latest';
236 }
237 return self::loadFromConds( $db, $conds );
238 }
239
240 /**
241 * Load either the current, or a specified, revision
242 * that's attached to a given page. If not attached
243 * to that page, will return null.
244 *
245 * @param $db DatabaseBase
246 * @param $title Title
247 * @param $id Integer
248 * @return Revision or null
249 */
250 public static function loadFromTitle( $db, $title, $id = 0 ) {
251 if( $id ) {
252 $matchId = intval( $id );
253 } else {
254 $matchId = 'page_latest';
255 }
256 return self::loadFromConds( $db,
257 array( "rev_id=$matchId",
258 'page_namespace' => $title->getNamespace(),
259 'page_title' => $title->getDBkey() )
260 );
261 }
262
263 /**
264 * Load the revision for the given title with the given timestamp.
265 * WARNING: Timestamps may in some circumstances not be unique,
266 * so this isn't the best key to use.
267 *
268 * @param $db DatabaseBase
269 * @param $title Title
270 * @param $timestamp String
271 * @return Revision or null
272 */
273 public static function loadFromTimestamp( $db, $title, $timestamp ) {
274 return self::loadFromConds( $db,
275 array( 'rev_timestamp' => $db->timestamp( $timestamp ),
276 'page_namespace' => $title->getNamespace(),
277 'page_title' => $title->getDBkey() )
278 );
279 }
280
281 /**
282 * Given a set of conditions, fetch a revision.
283 *
284 * @param $conditions Array
285 * @param $flags integer (optional)
286 * @return Revision or null
287 */
288 private static function newFromConds( $conditions, $flags = 0 ) {
289 $db = wfGetDB( ( $flags & self::READ_LATEST ) ? DB_MASTER : DB_SLAVE );
290 $rev = self::loadFromConds( $db, $conditions, $flags );
291 if ( is_null( $rev ) && wfGetLB()->getServerCount() > 1 ) {
292 if ( !( $flags & self::READ_LATEST ) ) {
293 $dbw = wfGetDB( DB_MASTER );
294 $rev = self::loadFromConds( $dbw, $conditions, $flags );
295 }
296 }
297 return $rev;
298 }
299
300 /**
301 * Given a set of conditions, fetch a revision from
302 * the given database connection.
303 *
304 * @param $db DatabaseBase
305 * @param $conditions Array
306 * @param $flags integer (optional)
307 * @return Revision or null
308 */
309 private static function loadFromConds( $db, $conditions, $flags = 0 ) {
310 $res = self::fetchFromConds( $db, $conditions, $flags );
311 if( $res ) {
312 $row = $res->fetchObject();
313 if( $row ) {
314 $ret = new Revision( $row );
315 return $ret;
316 }
317 }
318 $ret = null;
319 return $ret;
320 }
321
322 /**
323 * Return a wrapper for a series of database rows to
324 * fetch all of a given page's revisions in turn.
325 * Each row can be fed to the constructor to get objects.
326 *
327 * @param $title Title
328 * @return ResultWrapper
329 */
330 public static function fetchRevision( $title ) {
331 return self::fetchFromConds(
332 wfGetDB( DB_SLAVE ),
333 array( 'rev_id=page_latest',
334 'page_namespace' => $title->getNamespace(),
335 'page_title' => $title->getDBkey() )
336 );
337 }
338
339 /**
340 * Given a set of conditions, return a ResultWrapper
341 * which will return matching database rows with the
342 * fields necessary to build Revision objects.
343 *
344 * @param $db DatabaseBase
345 * @param $conditions Array
346 * @param $flags integer (optional)
347 * @return ResultWrapper
348 */
349 private static function fetchFromConds( $db, $conditions, $flags = 0 ) {
350 $fields = array_merge(
351 self::selectFields(),
352 self::selectPageFields(),
353 self::selectUserFields()
354 );
355 $options = array( 'LIMIT' => 1 );
356 if ( ( $flags & self::READ_LOCKING ) == self::READ_LOCKING ) {
357 $options[] = 'FOR UPDATE';
358 }
359 return $db->select(
360 array( 'revision', 'page', 'user' ),
361 $fields,
362 $conditions,
363 __METHOD__,
364 $options,
365 array( 'page' => self::pageJoinCond(), 'user' => self::userJoinCond() )
366 );
367 }
368
369 /**
370 * Return the value of a select() JOIN conds array for the user table.
371 * This will get user table rows for logged-in users.
372 * @since 1.19
373 * @return Array
374 */
375 public static function userJoinCond() {
376 return array( 'LEFT JOIN', array( 'rev_user != 0', 'user_id = rev_user' ) );
377 }
378
379 /**
380 * Return the value of a select() page conds array for the paeg table.
381 * This will assure that the revision(s) are not orphaned from live pages.
382 * @since 1.19
383 * @return Array
384 */
385 public static function pageJoinCond() {
386 return array( 'INNER JOIN', array( 'page_id = rev_page' ) );
387 }
388
389 /**
390 * Return the list of revision fields that should be selected to create
391 * a new revision.
392 * @return array
393 */
394 public static function selectFields() {
395 global $wgContentHandlerUseDB;
396
397 $fields = array(
398 'rev_id',
399 'rev_page',
400 'rev_text_id',
401 'rev_timestamp',
402 'rev_comment',
403 'rev_user_text',
404 'rev_user',
405 'rev_minor_edit',
406 'rev_deleted',
407 'rev_len',
408 'rev_parent_id',
409 'rev_sha1',
410 );
411
412 if ( $wgContentHandlerUseDB ) {
413 $fields[] = 'rev_content_format';
414 $fields[] = 'rev_content_model';
415 }
416
417 return $fields;
418 }
419
420 /**
421 * Return the list of text fields that should be selected to read the
422 * revision text
423 * @return array
424 */
425 public static function selectTextFields() {
426 return array(
427 'old_text',
428 'old_flags'
429 );
430 }
431
432 /**
433 * Return the list of page fields that should be selected from page table
434 * @return array
435 */
436 public static function selectPageFields() {
437 return array(
438 'page_namespace',
439 'page_title',
440 'page_id',
441 'page_latest',
442 'page_is_redirect',
443 'page_len',
444 );
445 }
446
447 /**
448 * Return the list of user fields that should be selected from user table
449 * @return array
450 */
451 public static function selectUserFields() {
452 return array( 'user_name' );
453 }
454
455 /**
456 * Do a batched query to get the parent revision lengths
457 * @param $db DatabaseBase
458 * @param $revIds Array
459 * @return array
460 */
461 public static function getParentLengths( $db, array $revIds ) {
462 $revLens = array();
463 if ( !$revIds ) {
464 return $revLens; // empty
465 }
466 wfProfileIn( __METHOD__ );
467 $res = $db->select( 'revision',
468 array( 'rev_id', 'rev_len' ),
469 array( 'rev_id' => $revIds ),
470 __METHOD__ );
471 foreach ( $res as $row ) {
472 $revLens[$row->rev_id] = $row->rev_len;
473 }
474 wfProfileOut( __METHOD__ );
475 return $revLens;
476 }
477
478 /**
479 * Constructor
480 *
481 * @param $row Mixed: either a database row or an array
482 * @throws MWException
483 * @access private
484 */
485 function __construct( $row ) {
486 if( is_object( $row ) ) {
487 $this->mId = intval( $row->rev_id );
488 $this->mPage = intval( $row->rev_page );
489 $this->mTextId = intval( $row->rev_text_id );
490 $this->mComment = $row->rev_comment;
491 $this->mUser = intval( $row->rev_user );
492 $this->mMinorEdit = intval( $row->rev_minor_edit );
493 $this->mTimestamp = $row->rev_timestamp;
494 $this->mDeleted = intval( $row->rev_deleted );
495
496 if( !isset( $row->rev_parent_id ) ) {
497 $this->mParentId = is_null( $row->rev_parent_id ) ? null : 0;
498 } else {
499 $this->mParentId = intval( $row->rev_parent_id );
500 }
501
502 if( !isset( $row->rev_len ) || is_null( $row->rev_len ) ) {
503 $this->mSize = null;
504 } else {
505 $this->mSize = intval( $row->rev_len );
506 }
507
508 if ( !isset( $row->rev_sha1 ) ) {
509 $this->mSha1 = null;
510 } else {
511 $this->mSha1 = $row->rev_sha1;
512 }
513
514 if( isset( $row->page_latest ) ) {
515 $this->mCurrent = ( $row->rev_id == $row->page_latest );
516 $this->mTitle = Title::newFromRow( $row );
517 } else {
518 $this->mCurrent = false;
519 $this->mTitle = null;
520 }
521
522 if( !isset( $row->rev_content_model ) || is_null( $row->rev_content_model ) ) {
523 $this->mContentModel = null; # determine on demand if needed
524 } else {
525 $this->mContentModel = strval( $row->rev_content_model );
526 }
527
528 if( !isset( $row->rev_content_format ) || is_null( $row->rev_content_format ) ) {
529 $this->mContentFormat = null; # determine on demand if needed
530 } else {
531 $this->mContentFormat = strval( $row->rev_content_format );
532 }
533
534 // Lazy extraction...
535 $this->mText = null;
536 if( isset( $row->old_text ) ) {
537 $this->mTextRow = $row;
538 } else {
539 // 'text' table row entry will be lazy-loaded
540 $this->mTextRow = null;
541 }
542
543 // Use user_name for users and rev_user_text for IPs...
544 $this->mUserText = null; // lazy load if left null
545 if ( $this->mUser == 0 ) {
546 $this->mUserText = $row->rev_user_text; // IP user
547 } elseif ( isset( $row->user_name ) ) {
548 $this->mUserText = $row->user_name; // logged-in user
549 }
550 $this->mOrigUserText = $row->rev_user_text;
551 } elseif( is_array( $row ) ) {
552 // Build a new revision to be saved...
553 global $wgUser; // ugh
554
555
556 # if we have a content object, use it to set the model and type
557 if ( !empty( $row['content'] ) ) {
558 //@todo: when is that set? test with external store setup! check out insertOn() [dk]
559 if ( !empty( $row['text_id'] ) ) {
560 throw new MWException( "Text already stored in external store (id {$row['text_id']}), "
561 . "can't serialize content object" );
562 }
563
564 $row['content_model'] = $row['content']->getModel();
565 # note: mContentFormat is initializes later accordingly
566 # note: content is serialized later in this method!
567 # also set text to null?
568 }
569
570 $this->mId = isset( $row['id'] ) ? intval( $row['id'] ) : null;
571 $this->mPage = isset( $row['page'] ) ? intval( $row['page'] ) : null;
572 $this->mTextId = isset( $row['text_id'] ) ? intval( $row['text_id'] ) : null;
573 $this->mUserText = isset( $row['user_text'] ) ? strval( $row['user_text'] ) : $wgUser->getName();
574 $this->mUser = isset( $row['user'] ) ? intval( $row['user'] ) : $wgUser->getId();
575 $this->mMinorEdit = isset( $row['minor_edit'] ) ? intval( $row['minor_edit'] ) : 0;
576 $this->mTimestamp = isset( $row['timestamp'] ) ? strval( $row['timestamp'] ) : wfTimestampNow();
577 $this->mDeleted = isset( $row['deleted'] ) ? intval( $row['deleted'] ) : 0;
578 $this->mSize = isset( $row['len'] ) ? intval( $row['len'] ) : null;
579 $this->mParentId = isset( $row['parent_id'] ) ? intval( $row['parent_id'] ) : null;
580 $this->mSha1 = isset( $row['sha1'] ) ? strval( $row['sha1'] ) : null;
581
582 $this->mContentModel = isset( $row['content_model'] ) ? strval( $row['content_model'] ) : null;
583 $this->mContentFormat = isset( $row['content_format'] ) ? strval( $row['content_format'] ) : null;
584
585 // Enforce spacing trimming on supplied text
586 $this->mComment = isset( $row['comment'] ) ? trim( strval( $row['comment'] ) ) : null;
587 $this->mText = isset( $row['text'] ) ? rtrim( strval( $row['text'] ) ) : null;
588 $this->mTextRow = null;
589
590 $this->mTitle = isset( $row['title'] ) ? $row['title'] : null;
591
592 // if we have a Content object, override mText and mContentModel
593 if ( !empty( $row['content'] ) ) {
594 if ( !( $row['content'] instanceof Content ) ) {
595 throw new MWException( '`content` field must contain a Content object.' );
596 }
597
598 $handler = $this->getContentHandler();
599 $this->mContent = $row['content'];
600
601 $this->mContentModel = $this->mContent->getModel();
602 $this->mContentHandler = null;
603
604 $this->mText = $handler->serializeContent( $row['content'], $this->getContentFormat() );
605 } elseif ( !is_null( $this->mText ) ) {
606 $handler = $this->getContentHandler();
607 $this->mContent = $handler->unserializeContent( $this->mText );
608 }
609
610 // If we have a Title object, make sure it is consistent with mPage.
611 if ( $this->mTitle && $this->mTitle->exists() ) {
612 if ( $this->mPage === null ) {
613 // if the page ID wasn't known, set it now
614 $this->mPage = $this->mTitle->getArticleID();
615 } elseif ( $this->mTitle->getArticleID() !== $this->mPage ) {
616 // Got different page IDs. This may be legit (e.g. during undeletion),
617 // but it seems worth mentioning it in the log.
618 wfDebug( "Page ID " . $this->mPage . " mismatches the ID "
619 . $this->mTitle->getArticleID() . " provided by the Title object." );
620 }
621 }
622
623 $this->mCurrent = false;
624
625 // If we still have no length, see it we have the text to figure it out
626 if ( !$this->mSize ) {
627 if ( !is_null( $this->mContent ) ) {
628 $this->mSize = $this->mContent->getSize();
629 } else {
630 #NOTE: this should never happen if we have either text or content object!
631 $this->mSize = null;
632 }
633 }
634
635 // Same for sha1
636 if ( $this->mSha1 === null ) {
637 $this->mSha1 = is_null( $this->mText ) ? null : self::base36Sha1( $this->mText );
638 }
639
640 // force lazy init
641 $this->getContentModel();
642 $this->getContentFormat();
643 } else {
644 throw new MWException( 'Revision constructor passed invalid row format.' );
645 }
646 $this->mUnpatrolled = null;
647 }
648
649 /**
650 * Get revision ID
651 *
652 * @return Integer|null
653 */
654 public function getId() {
655 return $this->mId;
656 }
657
658 /**
659 * Set the revision ID
660 *
661 * @since 1.19
662 * @param $id Integer
663 */
664 public function setId( $id ) {
665 $this->mId = $id;
666 }
667
668 /**
669 * Get text row ID
670 *
671 * @return Integer|null
672 */
673 public function getTextId() {
674 return $this->mTextId;
675 }
676
677 /**
678 * Get parent revision ID (the original previous page revision)
679 *
680 * @return Integer|null
681 */
682 public function getParentId() {
683 return $this->mParentId;
684 }
685
686 /**
687 * Returns the length of the text in this revision, or null if unknown.
688 *
689 * @return Integer|null
690 */
691 public function getSize() {
692 return $this->mSize;
693 }
694
695 /**
696 * Returns the base36 sha1 of the text in this revision, or null if unknown.
697 *
698 * @return String|null
699 */
700 public function getSha1() {
701 return $this->mSha1;
702 }
703
704 /**
705 * Returns the title of the page associated with this entry or null.
706 *
707 * Will do a query, when title is not set and id is given.
708 *
709 * @return Title|null
710 */
711 public function getTitle() {
712 if( isset( $this->mTitle ) ) {
713 return $this->mTitle;
714 }
715 if( !is_null( $this->mId ) ) { //rev_id is defined as NOT NULL, but this revision may not yet have been inserted.
716 $dbr = wfGetDB( DB_SLAVE );
717 $row = $dbr->selectRow(
718 array( 'page', 'revision' ),
719 self::selectPageFields(),
720 array( 'page_id=rev_page',
721 'rev_id' => $this->mId ),
722 __METHOD__ );
723 if ( $row ) {
724 $this->mTitle = Title::newFromRow( $row );
725 }
726 }
727
728 if ( !$this->mTitle && !is_null( $this->mPage ) && $this->mPage > 0 ) {
729 $this->mTitle = Title::newFromID( $this->mPage );
730 }
731
732 return $this->mTitle;
733 }
734
735 /**
736 * Set the title of the revision
737 *
738 * @param $title Title
739 */
740 public function setTitle( $title ) {
741 $this->mTitle = $title;
742 }
743
744 /**
745 * Get the page ID
746 *
747 * @return Integer|null
748 */
749 public function getPage() {
750 return $this->mPage;
751 }
752
753 /**
754 * Fetch revision's user id if it's available to the specified audience.
755 * If the specified audience does not have access to it, zero will be
756 * returned.
757 *
758 * @param $audience Integer: one of:
759 * Revision::FOR_PUBLIC to be displayed to all users
760 * Revision::FOR_THIS_USER to be displayed to the given user
761 * Revision::RAW get the ID regardless of permissions
762 * @param $user User object to check for, only if FOR_THIS_USER is passed
763 * to the $audience parameter
764 * @return Integer
765 */
766 public function getUser( $audience = self::FOR_PUBLIC, User $user = null ) {
767 if( $audience == self::FOR_PUBLIC && $this->isDeleted( self::DELETED_USER ) ) {
768 return 0;
769 } elseif( $audience == self::FOR_THIS_USER && !$this->userCan( self::DELETED_USER, $user ) ) {
770 return 0;
771 } else {
772 return $this->mUser;
773 }
774 }
775
776 /**
777 * Fetch revision's user id without regard for the current user's permissions
778 *
779 * @return String
780 */
781 public function getRawUser() {
782 return $this->mUser;
783 }
784
785 /**
786 * Fetch revision's username if it's available to the specified audience.
787 * If the specified audience does not have access to the username, an
788 * empty string will be returned.
789 *
790 * @param $audience Integer: one of:
791 * Revision::FOR_PUBLIC to be displayed to all users
792 * Revision::FOR_THIS_USER to be displayed to the given user
793 * Revision::RAW get the text regardless of permissions
794 * @param $user User object to check for, only if FOR_THIS_USER is passed
795 * to the $audience parameter
796 * @return string
797 */
798 public function getUserText( $audience = self::FOR_PUBLIC, User $user = null ) {
799 if( $audience == self::FOR_PUBLIC && $this->isDeleted( self::DELETED_USER ) ) {
800 return '';
801 } elseif( $audience == self::FOR_THIS_USER && !$this->userCan( self::DELETED_USER, $user ) ) {
802 return '';
803 } else {
804 return $this->getRawUserText();
805 }
806 }
807
808 /**
809 * Fetch revision's username without regard for view restrictions
810 *
811 * @return String
812 */
813 public function getRawUserText() {
814 if ( $this->mUserText === null ) {
815 $this->mUserText = User::whoIs( $this->mUser ); // load on demand
816 if ( $this->mUserText === false ) {
817 # This shouldn't happen, but it can if the wiki was recovered
818 # via importing revs and there is no user table entry yet.
819 $this->mUserText = $this->mOrigUserText;
820 }
821 }
822 return $this->mUserText;
823 }
824
825 /**
826 * Fetch revision comment if it's available to the specified audience.
827 * If the specified audience does not have access to the comment, an
828 * empty string will be returned.
829 *
830 * @param $audience Integer: one of:
831 * Revision::FOR_PUBLIC to be displayed to all users
832 * Revision::FOR_THIS_USER to be displayed to the given user
833 * Revision::RAW get the text regardless of permissions
834 * @param $user User object to check for, only if FOR_THIS_USER is passed
835 * to the $audience parameter
836 * @return String
837 */
838 function getComment( $audience = self::FOR_PUBLIC, User $user = null ) {
839 if( $audience == self::FOR_PUBLIC && $this->isDeleted( self::DELETED_COMMENT ) ) {
840 return '';
841 } elseif( $audience == self::FOR_THIS_USER && !$this->userCan( self::DELETED_COMMENT, $user ) ) {
842 return '';
843 } else {
844 return $this->mComment;
845 }
846 }
847
848 /**
849 * Fetch revision comment without regard for the current user's permissions
850 *
851 * @return String
852 */
853 public function getRawComment() {
854 return $this->mComment;
855 }
856
857 /**
858 * @return Boolean
859 */
860 public function isMinor() {
861 return (bool)$this->mMinorEdit;
862 }
863
864 /**
865 * @return Integer rcid of the unpatrolled row, zero if there isn't one
866 */
867 public function isUnpatrolled() {
868 if( $this->mUnpatrolled !== null ) {
869 return $this->mUnpatrolled;
870 }
871 $dbr = wfGetDB( DB_SLAVE );
872 $this->mUnpatrolled = $dbr->selectField( 'recentchanges',
873 'rc_id',
874 array( // Add redundant user,timestamp condition so we can use the existing index
875 'rc_user_text' => $this->getRawUserText(),
876 'rc_timestamp' => $dbr->timestamp( $this->getTimestamp() ),
877 'rc_this_oldid' => $this->getId(),
878 'rc_patrolled' => 0
879 ),
880 __METHOD__
881 );
882 return (int)$this->mUnpatrolled;
883 }
884
885 /**
886 * @param $field int one of DELETED_* bitfield constants
887 *
888 * @return Boolean
889 */
890 public function isDeleted( $field ) {
891 return ( $this->mDeleted & $field ) == $field;
892 }
893
894 /**
895 * Get the deletion bitfield of the revision
896 *
897 * @return int
898 */
899 public function getVisibility() {
900 return (int)$this->mDeleted;
901 }
902
903 /**
904 * Fetch revision text if it's available to the specified audience.
905 * If the specified audience does not have the ability to view this
906 * revision, an empty string will be returned.
907 *
908 * @param $audience Integer: one of:
909 * Revision::FOR_PUBLIC to be displayed to all users
910 * Revision::FOR_THIS_USER to be displayed to the given user
911 * Revision::RAW get the text regardless of permissions
912 * @param $user User object to check for, only if FOR_THIS_USER is passed
913 * to the $audience parameter
914 *
915 * @deprecated in 1.21, use getContent() instead
916 * @todo: replace usage in core
917 * @return String
918 */
919 public function getText( $audience = self::FOR_PUBLIC, User $user = null ) {
920 ContentHandler::deprecated( __METHOD__, '1.21' );
921
922 $content = $this->getContent( $audience, $user );
923 return ContentHandler::getContentText( $content ); # returns the raw content text, if applicable
924 }
925
926 /**
927 * Fetch revision content if it's available to the specified audience.
928 * If the specified audience does not have the ability to view this
929 * revision, null will be returned.
930 *
931 * @param $audience Integer: one of:
932 * Revision::FOR_PUBLIC to be displayed to all users
933 * Revision::FOR_THIS_USER to be displayed to $wgUser
934 * Revision::RAW get the text regardless of permissions
935 * @param $user User object to check for, only if FOR_THIS_USER is passed
936 * to the $audience parameter
937 * @since 1.21
938 * @return Content|null
939 */
940 public function getContent( $audience = self::FOR_PUBLIC, User $user = null ) {
941 if( $audience == self::FOR_PUBLIC && $this->isDeleted( self::DELETED_TEXT ) ) {
942 return null;
943 } elseif( $audience == self::FOR_THIS_USER && !$this->userCan( self::DELETED_TEXT, $user ) ) {
944 return null;
945 } else {
946 return $this->getContentInternal();
947 }
948 }
949
950 /**
951 * Alias for getText(Revision::FOR_THIS_USER)
952 *
953 * @deprecated since 1.17
954 * @return String
955 */
956 public function revText() {
957 wfDeprecated( __METHOD__, '1.17' );
958 return $this->getText( self::FOR_THIS_USER );
959 }
960
961 /**
962 * Fetch revision text without regard for view restrictions
963 *
964 * @return String
965 *
966 * @deprecated since 1.21. Instead, use Revision::getContent( Revision::RAW )
967 * or Revision::getSerializedData() as appropriate.
968 */
969 public function getRawText() {
970 ContentHandler::deprecated( __METHOD__, "1.21" );
971 return $this->getText( self::RAW );
972 }
973
974 /**
975 * Fetch original serialized data without regard for view restrictions
976 *
977 * @since 1.21
978 * @return String
979 */
980 public function getSerializedData() {
981 return $this->mText;
982 }
983
984 /**
985 * Gets the content object for the revision
986 *
987 * @since 1.21
988 * @return Content
989 */
990 protected function getContentInternal() {
991 if( is_null( $this->mContent ) ) {
992 // Revision is immutable. Load on demand:
993
994 $handler = $this->getContentHandler();
995 $format = $this->getContentFormat();
996
997 if( is_null( $this->mText ) ) {
998 // Load text on demand:
999 $this->mText = $this->loadText();
1000 }
1001
1002 $this->mContent = ( $this->mText === null || $this->mText === false ) ? null
1003 : $handler->unserializeContent( $this->mText, $format );
1004 }
1005
1006 return $this->mContent->copy(); // NOTE: copy() will return $this for immutable content objects
1007 }
1008
1009 /**
1010 * Returns the content model for this revision.
1011 *
1012 * If no content model was stored in the database, $this->getTitle()->getContentModel() is
1013 * used to determine the content model to use. If no title is know, CONTENT_MODEL_WIKITEXT
1014 * is used as a last resort.
1015 *
1016 * @return String the content model id associated with this revision, see the CONTENT_MODEL_XXX constants.
1017 **/
1018 public function getContentModel() {
1019 if ( !$this->mContentModel ) {
1020 $title = $this->getTitle();
1021 $this->mContentModel = ( $title ? $title->getContentModel() : CONTENT_MODEL_WIKITEXT );
1022
1023 assert( !empty( $this->mContentModel ) );
1024 }
1025
1026 return $this->mContentModel;
1027 }
1028
1029 /**
1030 * Returns the content format for this revision.
1031 *
1032 * If no content format was stored in the database, the default format for this
1033 * revision's content model is returned.
1034 *
1035 * @return String the content format id associated with this revision, see the CONTENT_FORMAT_XXX constants.
1036 **/
1037 public function getContentFormat() {
1038 if ( !$this->mContentFormat ) {
1039 $handler = $this->getContentHandler();
1040 $this->mContentFormat = $handler->getDefaultFormat();
1041
1042 assert( !empty( $this->mContentFormat ) );
1043 }
1044
1045 return $this->mContentFormat;
1046 }
1047
1048 /**
1049 * Returns the content handler appropriate for this revision's content model.
1050 *
1051 * @throws MWException
1052 * @return ContentHandler
1053 */
1054 public function getContentHandler() {
1055 if ( !$this->mContentHandler ) {
1056 $model = $this->getContentModel();
1057 $this->mContentHandler = ContentHandler::getForModelID( $model );
1058
1059 $format = $this->getContentFormat();
1060
1061 if ( !$this->mContentHandler->isSupportedFormat( $format ) ) {
1062 throw new MWException( "Oops, the content format $format is not supported for this content model, $model" );
1063 }
1064 }
1065
1066 return $this->mContentHandler;
1067 }
1068
1069 /**
1070 * @return String
1071 */
1072 public function getTimestamp() {
1073 return wfTimestamp( TS_MW, $this->mTimestamp );
1074 }
1075
1076 /**
1077 * @return Boolean
1078 */
1079 public function isCurrent() {
1080 return $this->mCurrent;
1081 }
1082
1083 /**
1084 * Get previous revision for this title
1085 *
1086 * @return Revision or null
1087 */
1088 public function getPrevious() {
1089 if( $this->getTitle() ) {
1090 $prev = $this->getTitle()->getPreviousRevisionID( $this->getId() );
1091 if( $prev ) {
1092 return self::newFromTitle( $this->getTitle(), $prev );
1093 }
1094 }
1095 return null;
1096 }
1097
1098 /**
1099 * Get next revision for this title
1100 *
1101 * @return Revision or null
1102 */
1103 public function getNext() {
1104 if( $this->getTitle() ) {
1105 $next = $this->getTitle()->getNextRevisionID( $this->getId() );
1106 if ( $next ) {
1107 return self::newFromTitle( $this->getTitle(), $next );
1108 }
1109 }
1110 return null;
1111 }
1112
1113 /**
1114 * Get previous revision Id for this page_id
1115 * This is used to populate rev_parent_id on save
1116 *
1117 * @param $db DatabaseBase
1118 * @return Integer
1119 */
1120 private function getPreviousRevisionId( $db ) {
1121 if( is_null( $this->mPage ) ) {
1122 return 0;
1123 }
1124 # Use page_latest if ID is not given
1125 if( !$this->mId ) {
1126 $prevId = $db->selectField( 'page', 'page_latest',
1127 array( 'page_id' => $this->mPage ),
1128 __METHOD__ );
1129 } else {
1130 $prevId = $db->selectField( 'revision', 'rev_id',
1131 array( 'rev_page' => $this->mPage, 'rev_id < ' . $this->mId ),
1132 __METHOD__,
1133 array( 'ORDER BY' => 'rev_id DESC' ) );
1134 }
1135 return intval( $prevId );
1136 }
1137
1138 /**
1139 * Get revision text associated with an old or archive row
1140 * $row is usually an object from wfFetchRow(), both the flags and the text
1141 * field must be included
1142 *
1143 * @param $row Object: the text data
1144 * @param $prefix String: table prefix (default 'old_')
1145 * @return String: text the text requested or false on failure
1146 */
1147 public static function getRevisionText( $row, $prefix = 'old_' ) {
1148 wfProfileIn( __METHOD__ );
1149
1150 # Get data
1151 $textField = $prefix . 'text';
1152 $flagsField = $prefix . 'flags';
1153
1154 if( isset( $row->$flagsField ) ) {
1155 $flags = explode( ',', $row->$flagsField );
1156 } else {
1157 $flags = array();
1158 }
1159
1160 if( isset( $row->$textField ) ) {
1161 $text = $row->$textField;
1162 } else {
1163 wfProfileOut( __METHOD__ );
1164 return false;
1165 }
1166
1167 # Use external methods for external objects, text in table is URL-only then
1168 if ( in_array( 'external', $flags ) ) {
1169 $url = $text;
1170 $parts = explode( '://', $url, 2 );
1171 if( count( $parts ) == 1 || $parts[1] == '' ) {
1172 wfProfileOut( __METHOD__ );
1173 return false;
1174 }
1175 $text = ExternalStore::fetchFromURL( $url );
1176 }
1177
1178 // If the text was fetched without an error, convert it
1179 if ( $text !== false ) {
1180 if( in_array( 'gzip', $flags ) ) {
1181 # Deal with optional compression of archived pages.
1182 # This can be done periodically via maintenance/compressOld.php, and
1183 # as pages are saved if $wgCompressRevisions is set.
1184 $text = gzinflate( $text );
1185 }
1186
1187 if( in_array( 'object', $flags ) ) {
1188 # Generic compressed storage
1189 $obj = unserialize( $text );
1190 if ( !is_object( $obj ) ) {
1191 // Invalid object
1192 wfProfileOut( __METHOD__ );
1193 return false;
1194 }
1195 $text = $obj->getText();
1196 }
1197
1198 global $wgLegacyEncoding;
1199 if( $text !== false && $wgLegacyEncoding
1200 && !in_array( 'utf-8', $flags ) && !in_array( 'utf8', $flags ) )
1201 {
1202 # Old revisions kept around in a legacy encoding?
1203 # Upconvert on demand.
1204 # ("utf8" checked for compatibility with some broken
1205 # conversion scripts 2008-12-30)
1206 global $wgContLang;
1207 $text = $wgContLang->iconv( $wgLegacyEncoding, 'UTF-8', $text );
1208 }
1209 }
1210 wfProfileOut( __METHOD__ );
1211 return $text;
1212 }
1213
1214 /**
1215 * If $wgCompressRevisions is enabled, we will compress data.
1216 * The input string is modified in place.
1217 * Return value is the flags field: contains 'gzip' if the
1218 * data is compressed, and 'utf-8' if we're saving in UTF-8
1219 * mode.
1220 *
1221 * @param $text Mixed: reference to a text
1222 * @return String
1223 */
1224 public static function compressRevisionText( &$text ) {
1225 global $wgCompressRevisions;
1226 $flags = array();
1227
1228 # Revisions not marked this way will be converted
1229 # on load if $wgLegacyCharset is set in the future.
1230 $flags[] = 'utf-8';
1231
1232 if( $wgCompressRevisions ) {
1233 if( function_exists( 'gzdeflate' ) ) {
1234 $text = gzdeflate( $text );
1235 $flags[] = 'gzip';
1236 } else {
1237 wfDebug( __METHOD__ . " -- no zlib support, not compressing\n" );
1238 }
1239 }
1240 return implode( ',', $flags );
1241 }
1242
1243 /**
1244 * Insert a new revision into the database, returning the new revision ID
1245 * number on success and dies horribly on failure.
1246 *
1247 * @param $dbw DatabaseBase: (master connection)
1248 * @throws MWException
1249 * @return Integer
1250 */
1251 public function insertOn( $dbw ) {
1252 global $wgDefaultExternalStore, $wgContentHandlerUseDB;
1253
1254 wfProfileIn( __METHOD__ );
1255
1256 $this->checkContentModel();
1257
1258 $data = $this->mText;
1259 $flags = self::compressRevisionText( $data );
1260
1261 # Write to external storage if required
1262 if( $wgDefaultExternalStore ) {
1263 // Store and get the URL
1264 $data = ExternalStore::insertToDefault( $data );
1265 if( !$data ) {
1266 throw new MWException( "Unable to store text to external storage" );
1267 }
1268 if( $flags ) {
1269 $flags .= ',';
1270 }
1271 $flags .= 'external';
1272 }
1273
1274 # Record the text (or external storage URL) to the text table
1275 if( !isset( $this->mTextId ) ) {
1276 $old_id = $dbw->nextSequenceValue( 'text_old_id_seq' );
1277 $dbw->insert( 'text',
1278 array(
1279 'old_id' => $old_id,
1280 'old_text' => $data,
1281 'old_flags' => $flags,
1282 ), __METHOD__
1283 );
1284 $this->mTextId = $dbw->insertId();
1285 }
1286
1287 if ( $this->mComment === null ) $this->mComment = "";
1288
1289 # Record the edit in revisions
1290 $rev_id = isset( $this->mId )
1291 ? $this->mId
1292 : $dbw->nextSequenceValue( 'revision_rev_id_seq' );
1293 $row = array(
1294 'rev_id' => $rev_id,
1295 'rev_page' => $this->mPage,
1296 'rev_text_id' => $this->mTextId,
1297 'rev_comment' => $this->mComment,
1298 'rev_minor_edit' => $this->mMinorEdit ? 1 : 0,
1299 'rev_user' => $this->mUser,
1300 'rev_user_text' => $this->mUserText,
1301 'rev_timestamp' => $dbw->timestamp( $this->mTimestamp ),
1302 'rev_deleted' => $this->mDeleted,
1303 'rev_len' => $this->mSize,
1304 'rev_parent_id' => is_null( $this->mParentId )
1305 ? $this->getPreviousRevisionId( $dbw )
1306 : $this->mParentId,
1307 'rev_sha1' => is_null( $this->mSha1 )
1308 ? Revision::base36Sha1( $this->mText )
1309 : $this->mSha1,
1310 );
1311
1312 if ( $wgContentHandlerUseDB ) {
1313 //NOTE: Store null for the default model and format, to save space.
1314 //XXX: Makes the DB sensitive to changed defaults. Make this behaviour optional? Only in miser mode?
1315
1316 $model = $this->getContentModel();
1317 $format = $this->getContentFormat();
1318
1319 $title = $this->getTitle();
1320
1321 if ( $title === null ) {
1322 throw new MWException( "Insufficient information to determine the title of the revision's page!" );
1323 }
1324
1325 $defaultModel = ContentHandler::getDefaultModelFor( $title );
1326 $defaultFormat = ContentHandler::getForModelID( $defaultModel )->getDefaultFormat();
1327
1328 $row[ 'rev_content_model' ] = ( $model === $defaultModel ) ? null : $model;
1329 $row[ 'rev_content_format' ] = ( $format === $defaultFormat ) ? null : $format;
1330 }
1331
1332 $dbw->insert( 'revision', $row, __METHOD__ );
1333
1334 $this->mId = !is_null( $rev_id ) ? $rev_id : $dbw->insertId();
1335
1336 wfRunHooks( 'RevisionInsertComplete', array( &$this, $data, $flags ) );
1337
1338 wfProfileOut( __METHOD__ );
1339 return $this->mId;
1340 }
1341
1342 protected function checkContentModel() {
1343 global $wgContentHandlerUseDB;
1344
1345 $title = $this->getTitle(); //note: may return null for revisions that have not yet been inserted.
1346
1347 $model = $this->getContentModel();
1348 $format = $this->getContentFormat();
1349 $handler = $this->getContentHandler();
1350
1351 if ( !$handler->isSupportedFormat( $format ) ) {
1352 $t = $title->getPrefixedDBkey();
1353
1354 throw new MWException( "Can't use format $format with content model $model on $t" );
1355 }
1356
1357 if ( !$wgContentHandlerUseDB && $title ) {
1358 // if $wgContentHandlerUseDB is not set, all revisions must use the default content model and format.
1359
1360 $defaultModel = ContentHandler::getDefaultModelFor( $title );
1361 $defaultHandler = ContentHandler::getForModelID( $defaultModel );
1362 $defaultFormat = $defaultHandler->getDefaultFormat();
1363
1364 if ( $this->getContentModel() != $defaultModel ) {
1365 $t = $title->getPrefixedDBkey();
1366
1367 throw new MWException( "Can't save non-default content model with \$wgContentHandlerUseDB disabled: "
1368 . "model is $model , default for $t is $defaultModel" );
1369 }
1370
1371 if ( $this->getContentFormat() != $defaultFormat ) {
1372 $t = $title->getPrefixedDBkey();
1373
1374 throw new MWException( "Can't use non-default content format with \$wgContentHandlerUseDB disabled: "
1375 . "format is $format, default for $t is $defaultFormat" );
1376 }
1377 }
1378
1379 $content = $this->getContent( Revision::RAW );
1380
1381 if ( !$content || !$content->isValid() ) {
1382 $t = $title->getPrefixedDBkey();
1383
1384 throw new MWException( "Content of $t is not valid! Content model is $model" );
1385 }
1386 }
1387
1388 /**
1389 * Get the base 36 SHA-1 value for a string of text
1390 * @param $text String
1391 * @return String
1392 */
1393 public static function base36Sha1( $text ) {
1394 return wfBaseConvert( sha1( $text ), 16, 36, 31 );
1395 }
1396
1397 /**
1398 * Lazy-load the revision's text.
1399 * Currently hardcoded to the 'text' table storage engine.
1400 *
1401 * @return String|boolean the revision text, or false on failure
1402 */
1403 protected function loadText() {
1404 wfProfileIn( __METHOD__ );
1405
1406 // Caching may be beneficial for massive use of external storage
1407 global $wgRevisionCacheExpiry, $wgMemc;
1408 $textId = $this->getTextId();
1409 $key = wfMemcKey( 'revisiontext', 'textid', $textId );
1410 if( $wgRevisionCacheExpiry ) {
1411 $text = $wgMemc->get( $key );
1412 if( is_string( $text ) ) {
1413 wfDebug( __METHOD__ . ": got id $textId from cache\n" );
1414 wfProfileOut( __METHOD__ );
1415 return $text;
1416 }
1417 }
1418
1419 // If we kept data for lazy extraction, use it now...
1420 if ( isset( $this->mTextRow ) ) {
1421 $row = $this->mTextRow;
1422 $this->mTextRow = null;
1423 } else {
1424 $row = null;
1425 }
1426
1427 if( !$row ) {
1428 // Text data is immutable; check slaves first.
1429 $dbr = wfGetDB( DB_SLAVE );
1430 $row = $dbr->selectRow( 'text',
1431 array( 'old_text', 'old_flags' ),
1432 array( 'old_id' => $this->getTextId() ),
1433 __METHOD__ );
1434 }
1435
1436 if( !$row && wfGetLB()->getServerCount() > 1 ) {
1437 // Possible slave lag!
1438 $dbw = wfGetDB( DB_MASTER );
1439 $row = $dbw->selectRow( 'text',
1440 array( 'old_text', 'old_flags' ),
1441 array( 'old_id' => $this->getTextId() ),
1442 __METHOD__ );
1443 }
1444
1445 $text = self::getRevisionText( $row );
1446
1447 # No negative caching -- negative hits on text rows may be due to corrupted slave servers
1448 if( $wgRevisionCacheExpiry && $text !== false ) {
1449 $wgMemc->set( $key, $text, $wgRevisionCacheExpiry );
1450 }
1451
1452 wfProfileOut( __METHOD__ );
1453
1454 return $text;
1455 }
1456
1457 /**
1458 * Create a new null-revision for insertion into a page's
1459 * history. This will not re-save the text, but simply refer
1460 * to the text from the previous version.
1461 *
1462 * Such revisions can for instance identify page rename
1463 * operations and other such meta-modifications.
1464 *
1465 * @param $dbw DatabaseBase
1466 * @param $pageId Integer: ID number of the page to read from
1467 * @param $summary String: revision's summary
1468 * @param $minor Boolean: whether the revision should be considered as minor
1469 * @return Revision|null on error
1470 */
1471 public static function newNullRevision( $dbw, $pageId, $summary, $minor ) {
1472 global $wgContentHandlerUseDB;
1473
1474 wfProfileIn( __METHOD__ );
1475
1476 $fields = array( 'page_latest', 'page_namespace', 'page_title',
1477 'rev_text_id', 'rev_len', 'rev_sha1' );
1478
1479 if ( $wgContentHandlerUseDB ) {
1480 $fields[] = 'rev_content_model';
1481 $fields[] = 'rev_content_format';
1482 }
1483
1484 $current = $dbw->selectRow(
1485 array( 'page', 'revision' ),
1486 $fields,
1487 array(
1488 'page_id' => $pageId,
1489 'page_latest=rev_id',
1490 ),
1491 __METHOD__ );
1492
1493 if( $current ) {
1494 $row = array(
1495 'page' => $pageId,
1496 'comment' => $summary,
1497 'minor_edit' => $minor,
1498 'text_id' => $current->rev_text_id,
1499 'parent_id' => $current->page_latest,
1500 'len' => $current->rev_len,
1501 'sha1' => $current->rev_sha1
1502 );
1503
1504 if ( $wgContentHandlerUseDB ) {
1505 $row[ 'content_model' ] = $current->rev_content_model;
1506 $row[ 'content_format' ] = $current->rev_content_format;
1507 }
1508
1509 $revision = new Revision( $row );
1510 $revision->setTitle( Title::makeTitle( $current->page_namespace, $current->page_title ) );
1511 } else {
1512 $revision = null;
1513 }
1514
1515 wfProfileOut( __METHOD__ );
1516 return $revision;
1517 }
1518
1519 /**
1520 * Determine if the current user is allowed to view a particular
1521 * field of this revision, if it's marked as deleted.
1522 *
1523 * @param $field Integer:one of self::DELETED_TEXT,
1524 * self::DELETED_COMMENT,
1525 * self::DELETED_USER
1526 * @param $user User object to check, or null to use $wgUser
1527 * @return Boolean
1528 */
1529 public function userCan( $field, User $user = null ) {
1530 return self::userCanBitfield( $this->mDeleted, $field, $user );
1531 }
1532
1533 /**
1534 * Determine if the current user is allowed to view a particular
1535 * field of this revision, if it's marked as deleted. This is used
1536 * by various classes to avoid duplication.
1537 *
1538 * @param $bitfield Integer: current field
1539 * @param $field Integer: one of self::DELETED_TEXT = File::DELETED_FILE,
1540 * self::DELETED_COMMENT = File::DELETED_COMMENT,
1541 * self::DELETED_USER = File::DELETED_USER
1542 * @param $user User object to check, or null to use $wgUser
1543 * @return Boolean
1544 */
1545 public static function userCanBitfield( $bitfield, $field, User $user = null ) {
1546 if( $bitfield & $field ) { // aspect is deleted
1547 if ( $bitfield & self::DELETED_RESTRICTED ) {
1548 $permission = 'suppressrevision';
1549 } elseif ( $field & self::DELETED_TEXT ) {
1550 $permission = 'deletedtext';
1551 } else {
1552 $permission = 'deletedhistory';
1553 }
1554 wfDebug( "Checking for $permission due to $field match on $bitfield\n" );
1555 if ( $user === null ) {
1556 global $wgUser;
1557 $user = $wgUser;
1558 }
1559 return $user->isAllowed( $permission );
1560 } else {
1561 return true;
1562 }
1563 }
1564
1565 /**
1566 * Get rev_timestamp from rev_id, without loading the rest of the row
1567 *
1568 * @param $title Title
1569 * @param $id Integer
1570 * @return String
1571 */
1572 static function getTimestampFromId( $title, $id ) {
1573 $dbr = wfGetDB( DB_SLAVE );
1574 // Casting fix for DB2
1575 if ( $id == '' ) {
1576 $id = 0;
1577 }
1578 $conds = array( 'rev_id' => $id );
1579 $conds['rev_page'] = $title->getArticleID();
1580 $timestamp = $dbr->selectField( 'revision', 'rev_timestamp', $conds, __METHOD__ );
1581 if ( $timestamp === false && wfGetLB()->getServerCount() > 1 ) {
1582 # Not in slave, try master
1583 $dbw = wfGetDB( DB_MASTER );
1584 $timestamp = $dbw->selectField( 'revision', 'rev_timestamp', $conds, __METHOD__ );
1585 }
1586 return wfTimestamp( TS_MW, $timestamp );
1587 }
1588
1589 /**
1590 * Get count of revisions per page...not very efficient
1591 *
1592 * @param $db DatabaseBase
1593 * @param $id Integer: page id
1594 * @return Integer
1595 */
1596 static function countByPageId( $db, $id ) {
1597 $row = $db->selectRow( 'revision', array( 'revCount' => 'COUNT(*)' ),
1598 array( 'rev_page' => $id ), __METHOD__ );
1599 if( $row ) {
1600 return $row->revCount;
1601 }
1602 return 0;
1603 }
1604
1605 /**
1606 * Get count of revisions per page...not very efficient
1607 *
1608 * @param $db DatabaseBase
1609 * @param $title Title
1610 * @return Integer
1611 */
1612 static function countByTitle( $db, $title ) {
1613 $id = $title->getArticleID();
1614 if( $id ) {
1615 return self::countByPageId( $db, $id );
1616 }
1617 return 0;
1618 }
1619
1620 /**
1621 * Check if no edits were made by other users since
1622 * the time a user started editing the page. Limit to
1623 * 50 revisions for the sake of performance.
1624 *
1625 * @since 1.20
1626 *
1627 * @param DatabaseBase|int $db the Database to perform the check on. May be given as a Database object or
1628 * a database identifier usable with wfGetDB.
1629 * @param int $pageId the ID of the page in question
1630 * @param int $userId the ID of the user in question
1631 * @param string $since look at edits since this time
1632 *
1633 * @return bool True if the given user was the only one to edit since the given timestamp
1634 */
1635 public static function userWasLastToEdit( $db, $pageId, $userId, $since ) {
1636 if ( !$userId ) return false;
1637
1638 if ( is_int( $db ) ) {
1639 $db = wfGetDB( $db );
1640 }
1641
1642 $res = $db->select( 'revision',
1643 'rev_user',
1644 array(
1645 'rev_page' => $pageId,
1646 'rev_timestamp > ' . $db->addQuotes( $db->timestamp( $since ) )
1647 ),
1648 __METHOD__,
1649 array( 'ORDER BY' => 'rev_timestamp ASC', 'LIMIT' => 50 ) );
1650 foreach ( $res as $row ) {
1651 if ( $row->rev_user != $userId ) {
1652 return false;
1653 }
1654 }
1655 return true;
1656 }
1657 }