MediaWiki REL1_31
RevisionArchiveRecord.php
Go to the documentation of this file.
1<?php
23namespace MediaWiki\Storage;
24
28use User;
29use Wikimedia\Assert\Assert;
30
40
44 protected $mArchiveId;
45
59 function __construct(
60 Title $title,
61 UserIdentity $user,
62 CommentStoreComment $comment,
63 $row,
64 RevisionSlots $slots,
65 $wikiId = false
66 ) {
67 parent::__construct( $title, $slots, $wikiId );
68 Assert::parameterType( 'object', $row, '$row' );
69
70 $timestamp = wfTimestamp( TS_MW, $row->ar_timestamp );
71 Assert::parameter( is_string( $timestamp ), '$row->rev_timestamp', 'must be a valid timestamp' );
72
73 $this->mArchiveId = intval( $row->ar_id );
74
75 // NOTE: ar_page_id may be different from $this->mTitle->getArticleID() in some cases,
76 // notably when a partially restored page has been moved, and a new page has been created
77 // with the same title. Archive rows for that title will then have the wrong page id.
78 $this->mPageId = isset( $row->ar_page_id ) ? intval( $row->ar_page_id ) : $title->getArticleID();
79
80 // NOTE: ar_parent_id = 0 indicates that there is no parent revision, while null
81 // indicates that the parent revision is unknown. As per MW 1.31, the database schema
82 // allows ar_parent_id to be NULL.
83 $this->mParentId = isset( $row->ar_parent_id ) ? intval( $row->ar_parent_id ) : null;
84 $this->mId = isset( $row->ar_rev_id ) ? intval( $row->ar_rev_id ) : null;
85 $this->mComment = $comment;
86 $this->mUser = $user;
87 $this->mTimestamp = $timestamp;
88 $this->mMinorEdit = boolval( $row->ar_minor_edit );
89 $this->mDeleted = intval( $row->ar_deleted );
90 $this->mSize = isset( $row->ar_len ) ? intval( $row->ar_len ) : null;
91 $this->mSha1 = !empty( $row->ar_sha1 ) ? $row->ar_sha1 : null;
92 }
93
99 public function getArchiveId() {
100 return $this->mArchiveId;
101 }
102
107 public function getId() {
108 // overwritten just to refine the contract specification.
109 return parent::getId();
110 }
111
116 public function getSize() {
117 // If length is null, calculate and remember it (potentially SLOW!).
118 // This is for compatibility with old database rows that don't have the field set.
119 if ( $this->mSize === null ) {
120 $this->mSize = $this->mSlots->computeSize();
121 }
122
123 return $this->mSize;
124 }
125
130 public function getSha1() {
131 // If hash is null, calculate it and remember (potentially SLOW!)
132 // This is for compatibility with old database rows that don't have the field set.
133 if ( $this->mSha1 === null ) {
134 $this->mSha1 = $this->mSlots->computeSha1();
135 }
136
137 return $this->mSha1;
138 }
139
146 public function getUser( $audience = self::FOR_PUBLIC, User $user = null ) {
147 // overwritten just to add a guarantee to the contract
148 return parent::getUser( $audience, $user );
149 }
150
157 public function getComment( $audience = self::FOR_PUBLIC, User $user = null ) {
158 // overwritten just to add a guarantee to the contract
159 return parent::getComment( $audience, $user );
160 }
161
165 public function getTimestamp() {
166 // overwritten just to add a guarantee to the contract
167 return parent::getTimestamp();
168 }
169
170}
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
wfTimestamp( $outputtype=TS_UNIX, $ts=0)
Get a timestamp string in one of various formats.
CommentStoreComment represents a comment stored by CommentStore.
A RevisionRecord representing a revision of a deleted page persisted in the archive table.
__construct(Title $title, UserIdentity $user, CommentStoreComment $comment, $row, RevisionSlots $slots, $wikiId=false)
getComment( $audience=self::FOR_PUBLIC, User $user=null)
getUser( $audience=self::FOR_PUBLIC, User $user=null)
Page revision base class.
Value object representing the set of slots belonging to a revision.
Represents a title within MediaWiki.
Definition Title.php:39
The User object encapsulates all of the user-specific settings (user_id, name, rights,...
Definition User.php:53
namespace and then decline to actually register it file or subcat img or subcat $title
Definition hooks.txt:964
please add to it if you re going to add events to the MediaWiki code where normally authentication against an external auth plugin would be creating a local account $user
Definition hooks.txt:247
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition injection.txt:37
Interface for objects representing user identity.