MediaWiki REL1_34
RevisionSlotsUpdate.php
Go to the documentation of this file.
1<?php
23namespace MediaWiki\Storage;
24
25use 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}
Mutable version of RevisionSlots, for constructing a new revision.
setSlot(SlotRecord $slot)
Sets the given slot.
removeSlot( $role)
Remove the slot for the given role, discontinue the corresponding stream.
Exception representing a failure to look up a revision.
Value object representing the set of slots belonging to a revision.
getSlots()
Returns an associative array that maps role names to SlotRecords.
Value object representing a content slot associated with a page revision.
getRole()
Returns the role of the slot.
Value object representing a modification of revision slots.
getRemovedRoles()
Returns a list of removed slot roles, that is, roles removed by calling removeSlot(),...
static newFromContent(array $newContent, RevisionSlots $parentSlots=null)
Constructs a RevisionSlotsUpdate representing the update of $parentSlots when changing $newContent.
hasSameUpdates(RevisionSlotsUpdate $other)
Returns true if $other represents the same update - that is, if all methods defined by RevisionSlotsU...
SlotRecord[] $modifiedSlots
modified slots, using the slot role as the key.
isRemovedSlot( $role)
Returns whether the given role is to be removed from the page.
removeSlot( $role)
Remove the slot for the given role, discontinue the corresponding stream.
getModifiedRoles()
Returns a list of modified slot roles, that is, roles modified by calling modifySlot(),...
__construct(array $modifiedSlots=[], array $removedRoles=[])
modifyContent( $role, Content $content)
Sets the content for the slot with the given role to be modified.
getModifiedSlot( $role)
Returns the SlotRecord associated with the given role, if the slot with that role was modified (and n...
apply(MutableRevisionSlots $slots)
Applies this update to the given MutableRevisionSlots, setting all modified slots,...
static newFromRevisionSlots(RevisionSlots $newSlots, RevisionSlots $parentSlots=null)
Constructs a RevisionSlotsUpdate representing the update that turned $parentSlots into $newSlots.
modifySlot(SlotRecord $slot)
Sets the given slot to be modified.
isModifiedSlot( $role)
Returns whether getModifiedSlot() will return a SlotRecord for the given role.
bool[] $removedRoles
removed roles, stored in the keys of the array.
getTouchedRoles()
Returns a list of all slot roles that modified or removed.
Base interface for content objects.
Definition Content.php:34
$content
Definition router.php:78