Merge "(Bug 41352) Proper fix for vanishing content."
[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|null
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 // NOTE: copy() will return $this for immutable content objects
1007 return $this->mContent ? $this->mContent->copy() : null;
1008 }
1009
1010 /**
1011 * Returns the content model for this revision.
1012 *
1013 * If no content model was stored in the database, $this->getTitle()->getContentModel() is
1014 * used to determine the content model to use. If no title is know, CONTENT_MODEL_WIKITEXT
1015 * is used as a last resort.
1016 *
1017 * @return String the content model id associated with this revision, see the CONTENT_MODEL_XXX constants.
1018 **/
1019 public function getContentModel() {
1020 if ( !$this->mContentModel ) {
1021 $title = $this->getTitle();
1022 $this->mContentModel = ( $title ? $title->getContentModel() : CONTENT_MODEL_WIKITEXT );
1023
1024 assert( !empty( $this->mContentModel ) );
1025 }
1026
1027 return $this->mContentModel;
1028 }
1029
1030 /**
1031 * Returns the content format for this revision.
1032 *
1033 * If no content format was stored in the database, the default format for this
1034 * revision's content model is returned.
1035 *
1036 * @return String the content format id associated with this revision, see the CONTENT_FORMAT_XXX constants.
1037 **/
1038 public function getContentFormat() {
1039 if ( !$this->mContentFormat ) {
1040 $handler = $this->getContentHandler();
1041 $this->mContentFormat = $handler->getDefaultFormat();
1042
1043 assert( !empty( $this->mContentFormat ) );
1044 }
1045
1046 return $this->mContentFormat;
1047 }
1048
1049 /**
1050 * Returns the content handler appropriate for this revision's content model.
1051 *
1052 * @throws MWException
1053 * @return ContentHandler
1054 */
1055 public function getContentHandler() {
1056 if ( !$this->mContentHandler ) {
1057 $model = $this->getContentModel();
1058 $this->mContentHandler = ContentHandler::getForModelID( $model );
1059
1060 $format = $this->getContentFormat();
1061
1062 if ( !$this->mContentHandler->isSupportedFormat( $format ) ) {
1063 throw new MWException( "Oops, the content format $format is not supported for this content model, $model" );
1064 }
1065 }
1066
1067 return $this->mContentHandler;
1068 }
1069
1070 /**
1071 * @return String
1072 */
1073 public function getTimestamp() {
1074 return wfTimestamp( TS_MW, $this->mTimestamp );
1075 }
1076
1077 /**
1078 * @return Boolean
1079 */
1080 public function isCurrent() {
1081 return $this->mCurrent;
1082 }
1083
1084 /**
1085 * Get previous revision for this title
1086 *
1087 * @return Revision or null
1088 */
1089 public function getPrevious() {
1090 if( $this->getTitle() ) {
1091 $prev = $this->getTitle()->getPreviousRevisionID( $this->getId() );
1092 if( $prev ) {
1093 return self::newFromTitle( $this->getTitle(), $prev );
1094 }
1095 }
1096 return null;
1097 }
1098
1099 /**
1100 * Get next revision for this title
1101 *
1102 * @return Revision or null
1103 */
1104 public function getNext() {
1105 if( $this->getTitle() ) {
1106 $next = $this->getTitle()->getNextRevisionID( $this->getId() );
1107 if ( $next ) {
1108 return self::newFromTitle( $this->getTitle(), $next );
1109 }
1110 }
1111 return null;
1112 }
1113
1114 /**
1115 * Get previous revision Id for this page_id
1116 * This is used to populate rev_parent_id on save
1117 *
1118 * @param $db DatabaseBase
1119 * @return Integer
1120 */
1121 private function getPreviousRevisionId( $db ) {
1122 if( is_null( $this->mPage ) ) {
1123 return 0;
1124 }
1125 # Use page_latest if ID is not given
1126 if( !$this->mId ) {
1127 $prevId = $db->selectField( 'page', 'page_latest',
1128 array( 'page_id' => $this->mPage ),
1129 __METHOD__ );
1130 } else {
1131 $prevId = $db->selectField( 'revision', 'rev_id',
1132 array( 'rev_page' => $this->mPage, 'rev_id < ' . $this->mId ),
1133 __METHOD__,
1134 array( 'ORDER BY' => 'rev_id DESC' ) );
1135 }
1136 return intval( $prevId );
1137 }
1138
1139 /**
1140 * Get revision text associated with an old or archive row
1141 * $row is usually an object from wfFetchRow(), both the flags and the text
1142 * field must be included
1143 *
1144 * @param $row Object: the text data
1145 * @param $prefix String: table prefix (default 'old_')
1146 * @return String: text the text requested or false on failure
1147 */
1148 public static function getRevisionText( $row, $prefix = 'old_' ) {
1149 wfProfileIn( __METHOD__ );
1150
1151 # Get data
1152 $textField = $prefix . 'text';
1153 $flagsField = $prefix . 'flags';
1154
1155 if( isset( $row->$flagsField ) ) {
1156 $flags = explode( ',', $row->$flagsField );
1157 } else {
1158 $flags = array();
1159 }
1160
1161 if( isset( $row->$textField ) ) {
1162 $text = $row->$textField;
1163 } else {
1164 wfProfileOut( __METHOD__ );
1165 return false;
1166 }
1167
1168 # Use external methods for external objects, text in table is URL-only then
1169 if ( in_array( 'external', $flags ) ) {
1170 $url = $text;
1171 $parts = explode( '://', $url, 2 );
1172 if( count( $parts ) == 1 || $parts[1] == '' ) {
1173 wfProfileOut( __METHOD__ );
1174 return false;
1175 }
1176 $text = ExternalStore::fetchFromURL( $url );
1177 }
1178
1179 // If the text was fetched without an error, convert it
1180 if ( $text !== false ) {
1181 if( in_array( 'gzip', $flags ) ) {
1182 # Deal with optional compression of archived pages.
1183 # This can be done periodically via maintenance/compressOld.php, and
1184 # as pages are saved if $wgCompressRevisions is set.
1185 $text = gzinflate( $text );
1186 }
1187
1188 if( in_array( 'object', $flags ) ) {
1189 # Generic compressed storage
1190 $obj = unserialize( $text );
1191 if ( !is_object( $obj ) ) {
1192 // Invalid object
1193 wfProfileOut( __METHOD__ );
1194 return false;
1195 }
1196 $text = $obj->getText();
1197 }
1198
1199 global $wgLegacyEncoding;
1200 if( $text !== false && $wgLegacyEncoding
1201 && !in_array( 'utf-8', $flags ) && !in_array( 'utf8', $flags ) )
1202 {
1203 # Old revisions kept around in a legacy encoding?
1204 # Upconvert on demand.
1205 # ("utf8" checked for compatibility with some broken
1206 # conversion scripts 2008-12-30)
1207 global $wgContLang;
1208 $text = $wgContLang->iconv( $wgLegacyEncoding, 'UTF-8', $text );
1209 }
1210 }
1211 wfProfileOut( __METHOD__ );
1212 return $text;
1213 }
1214
1215 /**
1216 * If $wgCompressRevisions is enabled, we will compress data.
1217 * The input string is modified in place.
1218 * Return value is the flags field: contains 'gzip' if the
1219 * data is compressed, and 'utf-8' if we're saving in UTF-8
1220 * mode.
1221 *
1222 * @param $text Mixed: reference to a text
1223 * @return String
1224 */
1225 public static function compressRevisionText( &$text ) {
1226 global $wgCompressRevisions;
1227 $flags = array();
1228
1229 # Revisions not marked this way will be converted
1230 # on load if $wgLegacyCharset is set in the future.
1231 $flags[] = 'utf-8';
1232
1233 if( $wgCompressRevisions ) {
1234 if( function_exists( 'gzdeflate' ) ) {
1235 $text = gzdeflate( $text );
1236 $flags[] = 'gzip';
1237 } else {
1238 wfDebug( __METHOD__ . " -- no zlib support, not compressing\n" );
1239 }
1240 }
1241 return implode( ',', $flags );
1242 }
1243
1244 /**
1245 * Insert a new revision into the database, returning the new revision ID
1246 * number on success and dies horribly on failure.
1247 *
1248 * @param $dbw DatabaseBase: (master connection)
1249 * @throws MWException
1250 * @return Integer
1251 */
1252 public function insertOn( $dbw ) {
1253 global $wgDefaultExternalStore, $wgContentHandlerUseDB;
1254
1255 wfProfileIn( __METHOD__ );
1256
1257 $this->checkContentModel();
1258
1259 $data = $this->mText;
1260 $flags = self::compressRevisionText( $data );
1261
1262 # Write to external storage if required
1263 if( $wgDefaultExternalStore ) {
1264 // Store and get the URL
1265 $data = ExternalStore::insertToDefault( $data );
1266 if( !$data ) {
1267 throw new MWException( "Unable to store text to external storage" );
1268 }
1269 if( $flags ) {
1270 $flags .= ',';
1271 }
1272 $flags .= 'external';
1273 }
1274
1275 # Record the text (or external storage URL) to the text table
1276 if( !isset( $this->mTextId ) ) {
1277 $old_id = $dbw->nextSequenceValue( 'text_old_id_seq' );
1278 $dbw->insert( 'text',
1279 array(
1280 'old_id' => $old_id,
1281 'old_text' => $data,
1282 'old_flags' => $flags,
1283 ), __METHOD__
1284 );
1285 $this->mTextId = $dbw->insertId();
1286 }
1287
1288 if ( $this->mComment === null ) $this->mComment = "";
1289
1290 # Record the edit in revisions
1291 $rev_id = isset( $this->mId )
1292 ? $this->mId
1293 : $dbw->nextSequenceValue( 'revision_rev_id_seq' );
1294 $row = array(
1295 'rev_id' => $rev_id,
1296 'rev_page' => $this->mPage,
1297 'rev_text_id' => $this->mTextId,
1298 'rev_comment' => $this->mComment,
1299 'rev_minor_edit' => $this->mMinorEdit ? 1 : 0,
1300 'rev_user' => $this->mUser,
1301 'rev_user_text' => $this->mUserText,
1302 'rev_timestamp' => $dbw->timestamp( $this->mTimestamp ),
1303 'rev_deleted' => $this->mDeleted,
1304 'rev_len' => $this->mSize,
1305 'rev_parent_id' => is_null( $this->mParentId )
1306 ? $this->getPreviousRevisionId( $dbw )
1307 : $this->mParentId,
1308 'rev_sha1' => is_null( $this->mSha1 )
1309 ? Revision::base36Sha1( $this->mText )
1310 : $this->mSha1,
1311 );
1312
1313 if ( $wgContentHandlerUseDB ) {
1314 //NOTE: Store null for the default model and format, to save space.
1315 //XXX: Makes the DB sensitive to changed defaults. Make this behaviour optional? Only in miser mode?
1316
1317 $model = $this->getContentModel();
1318 $format = $this->getContentFormat();
1319
1320 $title = $this->getTitle();
1321
1322 if ( $title === null ) {
1323 throw new MWException( "Insufficient information to determine the title of the revision's page!" );
1324 }
1325
1326 $defaultModel = ContentHandler::getDefaultModelFor( $title );
1327 $defaultFormat = ContentHandler::getForModelID( $defaultModel )->getDefaultFormat();
1328
1329 $row[ 'rev_content_model' ] = ( $model === $defaultModel ) ? null : $model;
1330 $row[ 'rev_content_format' ] = ( $format === $defaultFormat ) ? null : $format;
1331 }
1332
1333 $dbw->insert( 'revision', $row, __METHOD__ );
1334
1335 $this->mId = !is_null( $rev_id ) ? $rev_id : $dbw->insertId();
1336
1337 wfRunHooks( 'RevisionInsertComplete', array( &$this, $data, $flags ) );
1338
1339 wfProfileOut( __METHOD__ );
1340 return $this->mId;
1341 }
1342
1343 protected function checkContentModel() {
1344 global $wgContentHandlerUseDB;
1345
1346 $title = $this->getTitle(); //note: may return null for revisions that have not yet been inserted.
1347
1348 $model = $this->getContentModel();
1349 $format = $this->getContentFormat();
1350 $handler = $this->getContentHandler();
1351
1352 if ( !$handler->isSupportedFormat( $format ) ) {
1353 $t = $title->getPrefixedDBkey();
1354
1355 throw new MWException( "Can't use format $format with content model $model on $t" );
1356 }
1357
1358 if ( !$wgContentHandlerUseDB && $title ) {
1359 // if $wgContentHandlerUseDB is not set, all revisions must use the default content model and format.
1360
1361 $defaultModel = ContentHandler::getDefaultModelFor( $title );
1362 $defaultHandler = ContentHandler::getForModelID( $defaultModel );
1363 $defaultFormat = $defaultHandler->getDefaultFormat();
1364
1365 if ( $this->getContentModel() != $defaultModel ) {
1366 $t = $title->getPrefixedDBkey();
1367
1368 throw new MWException( "Can't save non-default content model with \$wgContentHandlerUseDB disabled: "
1369 . "model is $model , default for $t is $defaultModel" );
1370 }
1371
1372 if ( $this->getContentFormat() != $defaultFormat ) {
1373 $t = $title->getPrefixedDBkey();
1374
1375 throw new MWException( "Can't use non-default content format with \$wgContentHandlerUseDB disabled: "
1376 . "format is $format, default for $t is $defaultFormat" );
1377 }
1378 }
1379
1380 $content = $this->getContent( Revision::RAW );
1381
1382 if ( !$content || !$content->isValid() ) {
1383 $t = $title->getPrefixedDBkey();
1384
1385 throw new MWException( "Content of $t is not valid! Content model is $model" );
1386 }
1387 }
1388
1389 /**
1390 * Get the base 36 SHA-1 value for a string of text
1391 * @param $text String
1392 * @return String
1393 */
1394 public static function base36Sha1( $text ) {
1395 return wfBaseConvert( sha1( $text ), 16, 36, 31 );
1396 }
1397
1398 /**
1399 * Lazy-load the revision's text.
1400 * Currently hardcoded to the 'text' table storage engine.
1401 *
1402 * @return String|boolean the revision text, or false on failure
1403 */
1404 protected function loadText() {
1405 wfProfileIn( __METHOD__ );
1406
1407 // Caching may be beneficial for massive use of external storage
1408 global $wgRevisionCacheExpiry, $wgMemc;
1409 $textId = $this->getTextId();
1410 $key = wfMemcKey( 'revisiontext', 'textid', $textId );
1411 if( $wgRevisionCacheExpiry ) {
1412 $text = $wgMemc->get( $key );
1413 if( is_string( $text ) ) {
1414 wfDebug( __METHOD__ . ": got id $textId from cache\n" );
1415 wfProfileOut( __METHOD__ );
1416 return $text;
1417 }
1418 }
1419
1420 // If we kept data for lazy extraction, use it now...
1421 if ( isset( $this->mTextRow ) ) {
1422 $row = $this->mTextRow;
1423 $this->mTextRow = null;
1424 } else {
1425 $row = null;
1426 }
1427
1428 if( !$row ) {
1429 // Text data is immutable; check slaves first.
1430 $dbr = wfGetDB( DB_SLAVE );
1431 $row = $dbr->selectRow( 'text',
1432 array( 'old_text', 'old_flags' ),
1433 array( 'old_id' => $this->getTextId() ),
1434 __METHOD__ );
1435 }
1436
1437 if( !$row && wfGetLB()->getServerCount() > 1 ) {
1438 // Possible slave lag!
1439 $dbw = wfGetDB( DB_MASTER );
1440 $row = $dbw->selectRow( 'text',
1441 array( 'old_text', 'old_flags' ),
1442 array( 'old_id' => $this->getTextId() ),
1443 __METHOD__ );
1444 }
1445
1446 $text = self::getRevisionText( $row );
1447
1448 # No negative caching -- negative hits on text rows may be due to corrupted slave servers
1449 if( $wgRevisionCacheExpiry && $text !== false ) {
1450 $wgMemc->set( $key, $text, $wgRevisionCacheExpiry );
1451 }
1452
1453 wfProfileOut( __METHOD__ );
1454
1455 return $text;
1456 }
1457
1458 /**
1459 * Create a new null-revision for insertion into a page's
1460 * history. This will not re-save the text, but simply refer
1461 * to the text from the previous version.
1462 *
1463 * Such revisions can for instance identify page rename
1464 * operations and other such meta-modifications.
1465 *
1466 * @param $dbw DatabaseBase
1467 * @param $pageId Integer: ID number of the page to read from
1468 * @param $summary String: revision's summary
1469 * @param $minor Boolean: whether the revision should be considered as minor
1470 * @return Revision|null on error
1471 */
1472 public static function newNullRevision( $dbw, $pageId, $summary, $minor ) {
1473 global $wgContentHandlerUseDB;
1474
1475 wfProfileIn( __METHOD__ );
1476
1477 $fields = array( 'page_latest', 'page_namespace', 'page_title',
1478 'rev_text_id', 'rev_len', 'rev_sha1' );
1479
1480 if ( $wgContentHandlerUseDB ) {
1481 $fields[] = 'rev_content_model';
1482 $fields[] = 'rev_content_format';
1483 }
1484
1485 $current = $dbw->selectRow(
1486 array( 'page', 'revision' ),
1487 $fields,
1488 array(
1489 'page_id' => $pageId,
1490 'page_latest=rev_id',
1491 ),
1492 __METHOD__ );
1493
1494 if( $current ) {
1495 $row = array(
1496 'page' => $pageId,
1497 'comment' => $summary,
1498 'minor_edit' => $minor,
1499 'text_id' => $current->rev_text_id,
1500 'parent_id' => $current->page_latest,
1501 'len' => $current->rev_len,
1502 'sha1' => $current->rev_sha1
1503 );
1504
1505 if ( $wgContentHandlerUseDB ) {
1506 $row[ 'content_model' ] = $current->rev_content_model;
1507 $row[ 'content_format' ] = $current->rev_content_format;
1508 }
1509
1510 $revision = new Revision( $row );
1511 $revision->setTitle( Title::makeTitle( $current->page_namespace, $current->page_title ) );
1512 } else {
1513 $revision = null;
1514 }
1515
1516 wfProfileOut( __METHOD__ );
1517 return $revision;
1518 }
1519
1520 /**
1521 * Determine if the current user is allowed to view a particular
1522 * field of this revision, if it's marked as deleted.
1523 *
1524 * @param $field Integer:one of self::DELETED_TEXT,
1525 * self::DELETED_COMMENT,
1526 * self::DELETED_USER
1527 * @param $user User object to check, or null to use $wgUser
1528 * @return Boolean
1529 */
1530 public function userCan( $field, User $user = null ) {
1531 return self::userCanBitfield( $this->mDeleted, $field, $user );
1532 }
1533
1534 /**
1535 * Determine if the current user is allowed to view a particular
1536 * field of this revision, if it's marked as deleted. This is used
1537 * by various classes to avoid duplication.
1538 *
1539 * @param $bitfield Integer: current field
1540 * @param $field Integer: one of self::DELETED_TEXT = File::DELETED_FILE,
1541 * self::DELETED_COMMENT = File::DELETED_COMMENT,
1542 * self::DELETED_USER = File::DELETED_USER
1543 * @param $user User object to check, or null to use $wgUser
1544 * @return Boolean
1545 */
1546 public static function userCanBitfield( $bitfield, $field, User $user = null ) {
1547 if( $bitfield & $field ) { // aspect is deleted
1548 if ( $bitfield & self::DELETED_RESTRICTED ) {
1549 $permission = 'suppressrevision';
1550 } elseif ( $field & self::DELETED_TEXT ) {
1551 $permission = 'deletedtext';
1552 } else {
1553 $permission = 'deletedhistory';
1554 }
1555 wfDebug( "Checking for $permission due to $field match on $bitfield\n" );
1556 if ( $user === null ) {
1557 global $wgUser;
1558 $user = $wgUser;
1559 }
1560 return $user->isAllowed( $permission );
1561 } else {
1562 return true;
1563 }
1564 }
1565
1566 /**
1567 * Get rev_timestamp from rev_id, without loading the rest of the row
1568 *
1569 * @param $title Title
1570 * @param $id Integer
1571 * @return String
1572 */
1573 static function getTimestampFromId( $title, $id ) {
1574 $dbr = wfGetDB( DB_SLAVE );
1575 // Casting fix for DB2
1576 if ( $id == '' ) {
1577 $id = 0;
1578 }
1579 $conds = array( 'rev_id' => $id );
1580 $conds['rev_page'] = $title->getArticleID();
1581 $timestamp = $dbr->selectField( 'revision', 'rev_timestamp', $conds, __METHOD__ );
1582 if ( $timestamp === false && wfGetLB()->getServerCount() > 1 ) {
1583 # Not in slave, try master
1584 $dbw = wfGetDB( DB_MASTER );
1585 $timestamp = $dbw->selectField( 'revision', 'rev_timestamp', $conds, __METHOD__ );
1586 }
1587 return wfTimestamp( TS_MW, $timestamp );
1588 }
1589
1590 /**
1591 * Get count of revisions per page...not very efficient
1592 *
1593 * @param $db DatabaseBase
1594 * @param $id Integer: page id
1595 * @return Integer
1596 */
1597 static function countByPageId( $db, $id ) {
1598 $row = $db->selectRow( 'revision', array( 'revCount' => 'COUNT(*)' ),
1599 array( 'rev_page' => $id ), __METHOD__ );
1600 if( $row ) {
1601 return $row->revCount;
1602 }
1603 return 0;
1604 }
1605
1606 /**
1607 * Get count of revisions per page...not very efficient
1608 *
1609 * @param $db DatabaseBase
1610 * @param $title Title
1611 * @return Integer
1612 */
1613 static function countByTitle( $db, $title ) {
1614 $id = $title->getArticleID();
1615 if( $id ) {
1616 return self::countByPageId( $db, $id );
1617 }
1618 return 0;
1619 }
1620
1621 /**
1622 * Check if no edits were made by other users since
1623 * the time a user started editing the page. Limit to
1624 * 50 revisions for the sake of performance.
1625 *
1626 * @since 1.20
1627 *
1628 * @param DatabaseBase|int $db the Database to perform the check on. May be given as a Database object or
1629 * a database identifier usable with wfGetDB.
1630 * @param int $pageId the ID of the page in question
1631 * @param int $userId the ID of the user in question
1632 * @param string $since look at edits since this time
1633 *
1634 * @return bool True if the given user was the only one to edit since the given timestamp
1635 */
1636 public static function userWasLastToEdit( $db, $pageId, $userId, $since ) {
1637 if ( !$userId ) return false;
1638
1639 if ( is_int( $db ) ) {
1640 $db = wfGetDB( $db );
1641 }
1642
1643 $res = $db->select( 'revision',
1644 'rev_user',
1645 array(
1646 'rev_page' => $pageId,
1647 'rev_timestamp > ' . $db->addQuotes( $db->timestamp( $since ) )
1648 ),
1649 __METHOD__,
1650 array( 'ORDER BY' => 'rev_timestamp ASC', 'LIMIT' => 50 ) );
1651 foreach ( $res as $row ) {
1652 if ( $row->rev_user != $userId ) {
1653 return false;
1654 }
1655 }
1656 return true;
1657 }
1658 }