MediaWiki  1.34.0
RevisionSlotsUpdate.php
Go to the documentation of this file.
1 <?php
23 namespace MediaWiki\Storage;
24 
25 use Content;
30 
37 
41  private $modifiedSlots = [];
42 
46  private $removedRoles = [];
47 
58  public static function newFromRevisionSlots(
59  RevisionSlots $newSlots,
60  RevisionSlots $parentSlots = null
61  ) {
62  $modified = $newSlots->getSlots();
63  $removed = [];
64 
65  if ( $parentSlots ) {
66  foreach ( $parentSlots->getSlots() as $role => $slot ) {
67  if ( !isset( $modified[$role] ) ) {
68  $removed[] = $role;
69  } elseif ( $slot->hasSameContent( $modified[$role] ) ) {
70  // Unset slots that had the same content in the parent revision from $modified.
71  unset( $modified[$role] );
72  }
73  }
74  }
75 
76  return new RevisionSlotsUpdate( $modified, $removed );
77  }
78 
92  public static function newFromContent( array $newContent, RevisionSlots $parentSlots = null ) {
93  $modified = [];
94 
95  foreach ( $newContent as $role => $content ) {
96  $slot = SlotRecord::newUnsaved( $role, $content );
97 
98  if ( $parentSlots
99  && $parentSlots->hasSlot( $role )
100  && $slot->hasSameContent( $parentSlots->getSlot( $role ) )
101  ) {
102  // Skip slots that had the same content in the parent revision from $modified.
103  continue;
104  }
105 
106  $modified[$role] = $slot;
107  }
108 
109  return new RevisionSlotsUpdate( $modified );
110  }
111 
116  public function __construct( array $modifiedSlots = [], array $removedRoles = [] ) {
117  foreach ( $modifiedSlots as $slot ) {
118  $this->modifySlot( $slot );
119  }
120 
121  foreach ( $removedRoles as $role ) {
122  $this->removeSlot( $role );
123  }
124  }
125 
137  public function getModifiedRoles() {
138  return array_keys( $this->modifiedSlots );
139  }
140 
147  public function getRemovedRoles() {
148  return array_keys( $this->removedRoles );
149  }
150 
156  public function getTouchedRoles() {
157  return array_merge( $this->getModifiedRoles(), $this->getRemovedRoles() );
158  }
159 
169  public function modifySlot( SlotRecord $slot ) {
170  $role = $slot->getRole();
171 
172  // XXX: We should perhaps require this to be an unsaved slot!
173  unset( $this->removedRoles[$role] );
174  $this->modifiedSlots[$role] = $slot;
175  }
176 
184  public function modifyContent( $role, Content $content ) {
185  $slot = SlotRecord::newUnsaved( $role, $content );
186  $this->modifySlot( $slot );
187  }
188 
197  public function removeSlot( $role ) {
198  unset( $this->modifiedSlots[$role] );
199  $this->removedRoles[$role] = true;
200  }
201 
217  public function getModifiedSlot( $role ) {
218  if ( isset( $this->modifiedSlots[$role] ) ) {
219  return $this->modifiedSlots[$role];
220  } else {
221  throw new RevisionAccessException( 'No such slot: ' . $role );
222  }
223  }
224 
234  public function isModifiedSlot( $role ) {
235  return isset( $this->modifiedSlots[$role] );
236  }
237 
247  public function isRemovedSlot( $role ) {
248  return isset( $this->removedRoles[$role] );
249  }
250 
261  public function hasSameUpdates( RevisionSlotsUpdate $other ) {
262  // NOTE: use != not !==, since the order of entries is not significant!
263 
264  if ( $this->getModifiedRoles() != $other->getModifiedRoles() ) {
265  return false;
266  }
267 
268  if ( $this->getRemovedRoles() != $other->getRemovedRoles() ) {
269  return false;
270  }
271 
272  foreach ( $this->getModifiedRoles() as $role ) {
273  $s = $this->getModifiedSlot( $role );
274  $t = $other->getModifiedSlot( $role );
275 
276  if ( !$s->hasSameContent( $t ) ) {
277  return false;
278  }
279  }
280 
281  return true;
282  }
283 
290  public function apply( MutableRevisionSlots $slots ) {
291  foreach ( $this->getModifiedRoles() as $role ) {
292  $slots->setSlot( $this->getModifiedSlot( $role ) );
293  }
294 
295  foreach ( $this->getRemovedRoles() as $role ) {
296  $slots->removeSlot( $role );
297  }
298  }
299 
300 }
MediaWiki\Storage\RevisionSlotsUpdate\getModifiedRoles
getModifiedRoles()
Returns a list of modified slot roles, that is, roles modified by calling modifySlot(),...
Definition: RevisionSlotsUpdate.php:137
MediaWiki\Storage\RevisionSlotsUpdate\getModifiedSlot
getModifiedSlot( $role)
Returns the SlotRecord associated with the given role, if the slot with that role was modified (and n...
Definition: RevisionSlotsUpdate.php:217
MediaWiki\Storage\RevisionSlotsUpdate\isModifiedSlot
isModifiedSlot( $role)
Returns whether getModifiedSlot() will return a SlotRecord for the given role.
Definition: RevisionSlotsUpdate.php:234
Revision\RevisionAccessException
Exception representing a failure to look up a revision.
Definition: RevisionAccessException.php:33
MediaWiki\Storage\RevisionSlotsUpdate\$modifiedSlots
SlotRecord[] $modifiedSlots
modified slots, using the slot role as the key.
Definition: RevisionSlotsUpdate.php:41
MediaWiki\Storage\RevisionSlotsUpdate\isRemovedSlot
isRemovedSlot( $role)
Returns whether the given role is to be removed from the page.
Definition: RevisionSlotsUpdate.php:247
$s
$s
Definition: mergeMessageFileList.php:185
Revision\MutableRevisionSlots
Mutable version of RevisionSlots, for constructing a new revision.
Definition: MutableRevisionSlots.php:33
MediaWiki\Storage\RevisionSlotsUpdate\$removedRoles
bool[] $removedRoles
removed roles, stored in the keys of the array.
Definition: RevisionSlotsUpdate.php:46
MediaWiki\Storage\RevisionSlotsUpdate\removeSlot
removeSlot( $role)
Remove the slot for the given role, discontinue the corresponding stream.
Definition: RevisionSlotsUpdate.php:197
MediaWiki\Storage\RevisionSlotsUpdate\modifyContent
modifyContent( $role, Content $content)
Sets the content for the slot with the given role to be modified.
Definition: RevisionSlotsUpdate.php:184
Revision\MutableRevisionSlots\setSlot
setSlot(SlotRecord $slot)
Sets the given slot.
Definition: MutableRevisionSlots.php:66
Revision\SlotRecord\getRole
getRole()
Returns the role of the slot.
Definition: SlotRecord.php:489
MediaWiki\Storage\RevisionSlotsUpdate\hasSameUpdates
hasSameUpdates(RevisionSlotsUpdate $other)
Returns true if $other represents the same update - that is, if all methods defined by RevisionSlotsU...
Definition: RevisionSlotsUpdate.php:261
$t
$t
Definition: make-normalization-table.php:143
MediaWiki\Storage\RevisionSlotsUpdate\modifySlot
modifySlot(SlotRecord $slot)
Sets the given slot to be modified.
Definition: RevisionSlotsUpdate.php:169
MediaWiki\Storage\RevisionSlotsUpdate\__construct
__construct(array $modifiedSlots=[], array $removedRoles=[])
Definition: RevisionSlotsUpdate.php:116
Revision\SlotRecord\newUnsaved
static newUnsaved( $role, Content $content)
Constructs a new Slot from a Content object for a new revision.
Definition: SlotRecord.php:129
MediaWiki\Storage\RevisionSlotsUpdate
Value object representing a modification of revision slots.
Definition: RevisionSlotsUpdate.php:36
$content
$content
Definition: router.php:78
MediaWiki\Storage\RevisionSlotsUpdate\getTouchedRoles
getTouchedRoles()
Returns a list of all slot roles that modified or removed.
Definition: RevisionSlotsUpdate.php:156
Revision\RevisionSlots\getSlots
getSlots()
Returns an associative array that maps role names to SlotRecords.
Definition: RevisionSlots.php:163
MediaWiki\Storage
Definition: BlobAccessException.php:23
MediaWiki\Storage\RevisionSlotsUpdate\apply
apply(MutableRevisionSlots $slots)
Applies this update to the given MutableRevisionSlots, setting all modified slots,...
Definition: RevisionSlotsUpdate.php:290
Content
Base interface for content objects.
Definition: Content.php:34
MediaWiki\Storage\RevisionSlotsUpdate\newFromRevisionSlots
static newFromRevisionSlots(RevisionSlots $newSlots, RevisionSlots $parentSlots=null)
Constructs a RevisionSlotsUpdate representing the update that turned $parentSlots into $newSlots.
Definition: RevisionSlotsUpdate.php:58
MediaWiki\Storage\RevisionSlotsUpdate\getRemovedRoles
getRemovedRoles()
Returns a list of removed slot roles, that is, roles removed by calling removeSlot(),...
Definition: RevisionSlotsUpdate.php:147
Revision\RevisionSlots
Value object representing the set of slots belonging to a revision.
Definition: RevisionSlots.php:35
Revision\MutableRevisionSlots\removeSlot
removeSlot( $role)
Remove the slot for the given role, discontinue the corresponding stream.
Definition: MutableRevisionSlots.php:102
Revision\SlotRecord
Value object representing a content slot associated with a page revision.
Definition: SlotRecord.php:39
MediaWiki\Storage\RevisionSlotsUpdate\newFromContent
static newFromContent(array $newContent, RevisionSlots $parentSlots=null)
Constructs a RevisionSlotsUpdate representing the update of $parentSlots when changing $newContent.
Definition: RevisionSlotsUpdate.php:92