MediaWiki REL1_39
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
93 public static function newFromContent( array $newContent, RevisionSlots $parentSlots = null ) {
94 $modified = [];
95
96 foreach ( $newContent as $role => $content ) {
97 $slot = SlotRecord::newUnsaved( $role, $content );
98
99 if ( $parentSlots
100 && $parentSlots->hasSlot( $role )
101 && $slot->hasSameContent( $parentSlots->getSlot( $role ) )
102 ) {
103 // Skip slots that had the same content in the parent revision from $modified.
104 continue;
105 }
106
107 $modified[$role] = $slot;
108 }
109
110 return new RevisionSlotsUpdate( $modified );
111 }
112
117 public function __construct( array $modifiedSlots = [], array $removedRoles = [] ) {
118 foreach ( $modifiedSlots as $slot ) {
119 $this->modifySlot( $slot );
120 }
121
122 foreach ( $removedRoles as $role ) {
123 $this->removeSlot( $role );
124 }
125 }
126
138 public function getModifiedRoles() {
139 return array_keys( $this->modifiedSlots );
140 }
141
148 public function getRemovedRoles() {
149 return array_keys( $this->removedRoles );
150 }
151
157 public function getTouchedRoles() {
158 return array_merge( $this->getModifiedRoles(), $this->getRemovedRoles() );
159 }
160
170 public function modifySlot( SlotRecord $slot ) {
171 $role = $slot->getRole();
172
173 // XXX: We should perhaps require this to be an unsaved slot!
174 unset( $this->removedRoles[$role] );
175 $this->modifiedSlots[$role] = $slot;
176 }
177
185 public function modifyContent( $role, Content $content ) {
186 $slot = SlotRecord::newUnsaved( $role, $content );
187 $this->modifySlot( $slot );
188 }
189
198 public function removeSlot( $role ) {
199 unset( $this->modifiedSlots[$role] );
200 $this->removedRoles[$role] = true;
201 }
202
218 public function getModifiedSlot( $role ) {
219 if ( isset( $this->modifiedSlots[$role] ) ) {
220 return $this->modifiedSlots[$role];
221 } else {
222 throw new RevisionAccessException(
223 'No such slot: {role}',
224 [ 'role' => $role ]
225 );
226 }
227 }
228
238 public function isModifiedSlot( $role ) {
239 return isset( $this->modifiedSlots[$role] );
240 }
241
251 public function isRemovedSlot( $role ) {
252 return isset( $this->removedRoles[$role] );
253 }
254
265 public function hasSameUpdates( RevisionSlotsUpdate $other ) {
266 // NOTE: use != not !==, since the order of entries is not significant!
267
268 if ( $this->getModifiedRoles() != $other->getModifiedRoles() ) {
269 return false;
270 }
271
272 if ( $this->getRemovedRoles() != $other->getRemovedRoles() ) {
273 return false;
274 }
275
276 foreach ( $this->getModifiedRoles() as $role ) {
277 $s = $this->getModifiedSlot( $role );
278 $t = $other->getModifiedSlot( $role );
279
280 if ( !$s->hasSameContent( $t ) ) {
281 return false;
282 }
283 }
284
285 return true;
286 }
287
294 public function apply( MutableRevisionSlots $slots ) {
295 foreach ( $this->getModifiedRoles() as $role ) {
296 $slots->setSlot( $this->getModifiedSlot( $role ) );
297 }
298
299 foreach ( $this->getRemovedRoles() as $role ) {
300 $slots->removeSlot( $role );
301 }
302 }
303
304}
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...
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.
getTouchedRoles()
Returns a list of all slot roles that modified or removed.
Base interface for content objects.
Definition Content.php:35
foreach( $mmfl['setupFiles'] as $fileName) if($queue) if(empty( $mmfl['quiet'])) $s
$content
Definition router.php:76