@@ -72,12 +72,12 @@ |
||
72 | 72 | return $this->snakHash; |
73 | 73 | } |
74 | 74 | |
75 | - protected function &getMainArray( array &$container ) { |
|
76 | - $statementArray = &$this->getStatementArray( $container ); |
|
75 | + protected function &getMainArray(array &$container) { |
|
76 | + $statementArray = &$this->getStatementArray($container); |
|
77 | 77 | |
78 | - if ( !array_key_exists( 'mainsnak', $statementArray ) ) { |
|
78 | + if (!array_key_exists('mainsnak', $statementArray)) { |
|
79 | 79 | $snakHash = $this->getSnakHash(); |
80 | - $statementArray['mainsnak'] = [ 'hash' => $snakHash ]; |
|
80 | + $statementArray['mainsnak'] = ['hash' => $snakHash]; |
|
81 | 81 | } |
82 | 82 | $mainsnakArray = &$statementArray['mainsnak']; |
83 | 83 |
@@ -11,8 +11,8 @@ discard block |
||
11 | 11 | */ |
12 | 12 | class ContextCursorDeserializer { |
13 | 13 | |
14 | - public function deserialize( array $serialization ) { |
|
15 | - switch ( $serialization['t'] ) { |
|
14 | + public function deserialize(array $serialization) { |
|
15 | + switch ($serialization['t']) { |
|
16 | 16 | case Context::TYPE_STATEMENT: |
17 | 17 | return new MainSnakContextCursor( |
18 | 18 | $serialization['i'], |
@@ -39,7 +39,7 @@ discard block |
||
39 | 39 | ); |
40 | 40 | default: |
41 | 41 | throw new InvalidArgumentException( |
42 | - 'Unknown serialization type ' . $serialization['t'] |
|
42 | + 'Unknown serialization type '.$serialization['t'] |
|
43 | 43 | ); |
44 | 44 | } |
45 | 45 | } |
@@ -77,15 +77,15 @@ discard block |
||
77 | 77 | * @param array $parameters |
78 | 78 | * @throws ConstraintParameterException |
79 | 79 | */ |
80 | - public function checkError( array $parameters ) { |
|
81 | - if ( array_key_exists( '@error', $parameters ) ) { |
|
80 | + public function checkError(array $parameters) { |
|
81 | + if (array_key_exists('@error', $parameters)) { |
|
82 | 82 | $error = $parameters['@error']; |
83 | - if ( array_key_exists( 'toolong', $error ) && $error['toolong'] ) { |
|
83 | + if (array_key_exists('toolong', $error) && $error['toolong']) { |
|
84 | 84 | $msg = 'wbqc-violation-message-parameters-error-toolong'; |
85 | 85 | } else { |
86 | 86 | $msg = 'wbqc-violation-message-parameters-error-unknown'; |
87 | 87 | } |
88 | - throw new ConstraintParameterException( new ViolationMessage( $msg ) ); |
|
88 | + throw new ConstraintParameterException(new ViolationMessage($msg)); |
|
89 | 89 | } |
90 | 90 | } |
91 | 91 | |
@@ -95,11 +95,11 @@ discard block |
||
95 | 95 | * @param string $parameterId |
96 | 96 | * @throws ConstraintParameterException |
97 | 97 | */ |
98 | - private function requireSingleParameter( array $parameters, $parameterId ) { |
|
99 | - if ( count( $parameters[$parameterId] ) !== 1 ) { |
|
98 | + private function requireSingleParameter(array $parameters, $parameterId) { |
|
99 | + if (count($parameters[$parameterId]) !== 1) { |
|
100 | 100 | throw new ConstraintParameterException( |
101 | - ( new ViolationMessage( 'wbqc-violation-message-parameter-single' ) ) |
|
102 | - ->withEntityId( new PropertyId( $parameterId ), Role::CONSTRAINT_PARAMETER_PROPERTY ) |
|
101 | + (new ViolationMessage('wbqc-violation-message-parameter-single')) |
|
102 | + ->withEntityId(new PropertyId($parameterId), Role::CONSTRAINT_PARAMETER_PROPERTY) |
|
103 | 103 | ); |
104 | 104 | } |
105 | 105 | } |
@@ -111,11 +111,11 @@ discard block |
||
111 | 111 | * @return void |
112 | 112 | * @throws ConstraintParameterException |
113 | 113 | */ |
114 | - private function requireValueParameter( Snak $snak, $parameterId ) { |
|
115 | - if ( !( $snak instanceof PropertyValueSnak ) ) { |
|
114 | + private function requireValueParameter(Snak $snak, $parameterId) { |
|
115 | + if (!($snak instanceof PropertyValueSnak)) { |
|
116 | 116 | throw new ConstraintParameterException( |
117 | - ( new ViolationMessage( 'wbqc-violation-message-parameter-value' ) ) |
|
118 | - ->withEntityId( new PropertyId( $parameterId ), Role::CONSTRAINT_PARAMETER_PROPERTY ) |
|
117 | + (new ViolationMessage('wbqc-violation-message-parameter-value')) |
|
118 | + ->withEntityId(new PropertyId($parameterId), Role::CONSTRAINT_PARAMETER_PROPERTY) |
|
119 | 119 | ); |
120 | 120 | } |
121 | 121 | } |
@@ -127,17 +127,17 @@ discard block |
||
127 | 127 | * @throws ConstraintParameterException |
128 | 128 | * @return EntityId |
129 | 129 | */ |
130 | - private function parseEntityIdParameter( array $snakSerialization, $parameterId ) { |
|
131 | - $snak = $this->snakDeserializer->deserialize( $snakSerialization ); |
|
132 | - $this->requireValueParameter( $snak, $parameterId ); |
|
130 | + private function parseEntityIdParameter(array $snakSerialization, $parameterId) { |
|
131 | + $snak = $this->snakDeserializer->deserialize($snakSerialization); |
|
132 | + $this->requireValueParameter($snak, $parameterId); |
|
133 | 133 | $value = $snak->getDataValue(); |
134 | - if ( $value instanceof EntityIdValue ) { |
|
134 | + if ($value instanceof EntityIdValue) { |
|
135 | 135 | return $value->getEntityId(); |
136 | 136 | } else { |
137 | 137 | throw new ConstraintParameterException( |
138 | - ( new ViolationMessage( 'wbqc-violation-message-parameter-entity' ) ) |
|
139 | - ->withEntityId( new PropertyId( $parameterId ), Role::CONSTRAINT_PARAMETER_PROPERTY ) |
|
140 | - ->withDataValue( $value, Role::CONSTRAINT_PARAMETER_VALUE ) |
|
138 | + (new ViolationMessage('wbqc-violation-message-parameter-entity')) |
|
139 | + ->withEntityId(new PropertyId($parameterId), Role::CONSTRAINT_PARAMETER_PROPERTY) |
|
140 | + ->withDataValue($value, Role::CONSTRAINT_PARAMETER_VALUE) |
|
141 | 141 | ); |
142 | 142 | } |
143 | 143 | } |
@@ -148,20 +148,20 @@ discard block |
||
148 | 148 | * @throws ConstraintParameterException if the parameter is invalid or missing |
149 | 149 | * @return string[] class entity ID serializations |
150 | 150 | */ |
151 | - public function parseClassParameter( array $constraintParameters, $constraintTypeItemId ) { |
|
152 | - $this->checkError( $constraintParameters ); |
|
153 | - $classId = $this->config->get( 'WBQualityConstraintsClassId' ); |
|
154 | - if ( !array_key_exists( $classId, $constraintParameters ) ) { |
|
151 | + public function parseClassParameter(array $constraintParameters, $constraintTypeItemId) { |
|
152 | + $this->checkError($constraintParameters); |
|
153 | + $classId = $this->config->get('WBQualityConstraintsClassId'); |
|
154 | + if (!array_key_exists($classId, $constraintParameters)) { |
|
155 | 155 | throw new ConstraintParameterException( |
156 | - ( new ViolationMessage( 'wbqc-violation-message-parameter-needed' ) ) |
|
157 | - ->withEntityId( new ItemId( $constraintTypeItemId ), Role::CONSTRAINT_TYPE_ITEM ) |
|
158 | - ->withEntityId( new PropertyId( $classId ), Role::CONSTRAINT_PARAMETER_PROPERTY ) |
|
156 | + (new ViolationMessage('wbqc-violation-message-parameter-needed')) |
|
157 | + ->withEntityId(new ItemId($constraintTypeItemId), Role::CONSTRAINT_TYPE_ITEM) |
|
158 | + ->withEntityId(new PropertyId($classId), Role::CONSTRAINT_PARAMETER_PROPERTY) |
|
159 | 159 | ); |
160 | 160 | } |
161 | 161 | |
162 | 162 | $classes = []; |
163 | - foreach ( $constraintParameters[$classId] as $class ) { |
|
164 | - $classes[] = $this->parseEntityIdParameter( $class, $classId )->getSerialization(); |
|
163 | + foreach ($constraintParameters[$classId] as $class) { |
|
164 | + $classes[] = $this->parseEntityIdParameter($class, $classId)->getSerialization(); |
|
165 | 165 | } |
166 | 166 | return $classes; |
167 | 167 | } |
@@ -172,23 +172,23 @@ discard block |
||
172 | 172 | * @throws ConstraintParameterException if the parameter is invalid or missing |
173 | 173 | * @return string 'instance', 'subclass', or 'instanceOrSubclass' |
174 | 174 | */ |
175 | - public function parseRelationParameter( array $constraintParameters, $constraintTypeItemId ) { |
|
176 | - $this->checkError( $constraintParameters ); |
|
177 | - $relationId = $this->config->get( 'WBQualityConstraintsRelationId' ); |
|
178 | - if ( !array_key_exists( $relationId, $constraintParameters ) ) { |
|
175 | + public function parseRelationParameter(array $constraintParameters, $constraintTypeItemId) { |
|
176 | + $this->checkError($constraintParameters); |
|
177 | + $relationId = $this->config->get('WBQualityConstraintsRelationId'); |
|
178 | + if (!array_key_exists($relationId, $constraintParameters)) { |
|
179 | 179 | throw new ConstraintParameterException( |
180 | - ( new ViolationMessage( 'wbqc-violation-message-parameter-needed' ) ) |
|
181 | - ->withEntityId( new ItemId( $constraintTypeItemId ), Role::CONSTRAINT_TYPE_ITEM ) |
|
182 | - ->withEntityId( new PropertyId( $relationId ), Role::CONSTRAINT_PARAMETER_PROPERTY ) |
|
180 | + (new ViolationMessage('wbqc-violation-message-parameter-needed')) |
|
181 | + ->withEntityId(new ItemId($constraintTypeItemId), Role::CONSTRAINT_TYPE_ITEM) |
|
182 | + ->withEntityId(new PropertyId($relationId), Role::CONSTRAINT_PARAMETER_PROPERTY) |
|
183 | 183 | ); |
184 | 184 | } |
185 | 185 | |
186 | - $this->requireSingleParameter( $constraintParameters, $relationId ); |
|
187 | - $relationEntityId = $this->parseEntityIdParameter( $constraintParameters[$relationId][0], $relationId ); |
|
188 | - $instanceId = $this->config->get( 'WBQualityConstraintsInstanceOfRelationId' ); |
|
189 | - $subclassId = $this->config->get( 'WBQualityConstraintsSubclassOfRelationId' ); |
|
190 | - $instanceOrSubclassId = $this->config->get( 'WBQualityConstraintsInstanceOrSubclassOfRelationId' ); |
|
191 | - switch ( $relationEntityId ) { |
|
186 | + $this->requireSingleParameter($constraintParameters, $relationId); |
|
187 | + $relationEntityId = $this->parseEntityIdParameter($constraintParameters[$relationId][0], $relationId); |
|
188 | + $instanceId = $this->config->get('WBQualityConstraintsInstanceOfRelationId'); |
|
189 | + $subclassId = $this->config->get('WBQualityConstraintsSubclassOfRelationId'); |
|
190 | + $instanceOrSubclassId = $this->config->get('WBQualityConstraintsInstanceOrSubclassOfRelationId'); |
|
191 | + switch ($relationEntityId) { |
|
192 | 192 | case $instanceId: |
193 | 193 | return 'instance'; |
194 | 194 | case $subclassId: |
@@ -197,13 +197,13 @@ discard block |
||
197 | 197 | return 'instanceOrSubclass'; |
198 | 198 | default: |
199 | 199 | throw new ConstraintParameterException( |
200 | - ( new ViolationMessage( 'wbqc-violation-message-parameter-oneof' ) ) |
|
201 | - ->withEntityId( new PropertyId( $relationId ), Role::CONSTRAINT_PARAMETER_PROPERTY ) |
|
200 | + (new ViolationMessage('wbqc-violation-message-parameter-oneof')) |
|
201 | + ->withEntityId(new PropertyId($relationId), Role::CONSTRAINT_PARAMETER_PROPERTY) |
|
202 | 202 | ->withEntityIdList( |
203 | 203 | [ |
204 | - new ItemId( $instanceId ), |
|
205 | - new ItemId( $subclassId ), |
|
206 | - new ItemId( $instanceOrSubclassId ), |
|
204 | + new ItemId($instanceId), |
|
205 | + new ItemId($subclassId), |
|
206 | + new ItemId($instanceOrSubclassId), |
|
207 | 207 | ], |
208 | 208 | Role::CONSTRAINT_PARAMETER_VALUE |
209 | 209 | ) |
@@ -218,20 +218,20 @@ discard block |
||
218 | 218 | * @throws ConstraintParameterException |
219 | 219 | * @return PropertyId |
220 | 220 | */ |
221 | - private function parsePropertyIdParameter( array $snakSerialization, $parameterId ) { |
|
222 | - $snak = $this->snakDeserializer->deserialize( $snakSerialization ); |
|
223 | - $this->requireValueParameter( $snak, $parameterId ); |
|
221 | + private function parsePropertyIdParameter(array $snakSerialization, $parameterId) { |
|
222 | + $snak = $this->snakDeserializer->deserialize($snakSerialization); |
|
223 | + $this->requireValueParameter($snak, $parameterId); |
|
224 | 224 | $value = $snak->getDataValue(); |
225 | - if ( $value instanceof EntityIdValue ) { |
|
225 | + if ($value instanceof EntityIdValue) { |
|
226 | 226 | $id = $value->getEntityId(); |
227 | - if ( $id instanceof PropertyId ) { |
|
227 | + if ($id instanceof PropertyId) { |
|
228 | 228 | return $id; |
229 | 229 | } |
230 | 230 | } |
231 | 231 | throw new ConstraintParameterException( |
232 | - ( new ViolationMessage( 'wbqc-violation-message-parameter-property' ) ) |
|
233 | - ->withEntityId( new PropertyId( $parameterId ), Role::CONSTRAINT_PARAMETER_PROPERTY ) |
|
234 | - ->withDataValue( $value, Role::CONSTRAINT_PARAMETER_VALUE ) |
|
232 | + (new ViolationMessage('wbqc-violation-message-parameter-property')) |
|
233 | + ->withEntityId(new PropertyId($parameterId), Role::CONSTRAINT_PARAMETER_PROPERTY) |
|
234 | + ->withDataValue($value, Role::CONSTRAINT_PARAMETER_VALUE) |
|
235 | 235 | ); |
236 | 236 | } |
237 | 237 | |
@@ -242,32 +242,32 @@ discard block |
||
242 | 242 | * @throws ConstraintParameterException if the parameter is invalid or missing |
243 | 243 | * @return PropertyId |
244 | 244 | */ |
245 | - public function parsePropertyParameter( array $constraintParameters, $constraintTypeItemId ) { |
|
246 | - $this->checkError( $constraintParameters ); |
|
247 | - $propertyId = $this->config->get( 'WBQualityConstraintsPropertyId' ); |
|
248 | - if ( !array_key_exists( $propertyId, $constraintParameters ) ) { |
|
245 | + public function parsePropertyParameter(array $constraintParameters, $constraintTypeItemId) { |
|
246 | + $this->checkError($constraintParameters); |
|
247 | + $propertyId = $this->config->get('WBQualityConstraintsPropertyId'); |
|
248 | + if (!array_key_exists($propertyId, $constraintParameters)) { |
|
249 | 249 | throw new ConstraintParameterException( |
250 | - ( new ViolationMessage( 'wbqc-violation-message-parameter-needed' ) ) |
|
251 | - ->withEntityId( new ItemId( $constraintTypeItemId ), Role::CONSTRAINT_TYPE_ITEM ) |
|
252 | - ->withEntityId( new PropertyId( $propertyId ), Role::CONSTRAINT_PARAMETER_PROPERTY ) |
|
250 | + (new ViolationMessage('wbqc-violation-message-parameter-needed')) |
|
251 | + ->withEntityId(new ItemId($constraintTypeItemId), Role::CONSTRAINT_TYPE_ITEM) |
|
252 | + ->withEntityId(new PropertyId($propertyId), Role::CONSTRAINT_PARAMETER_PROPERTY) |
|
253 | 253 | ); |
254 | 254 | } |
255 | 255 | |
256 | - $this->requireSingleParameter( $constraintParameters, $propertyId ); |
|
257 | - return $this->parsePropertyIdParameter( $constraintParameters[$propertyId][0], $propertyId ); |
|
256 | + $this->requireSingleParameter($constraintParameters, $propertyId); |
|
257 | + return $this->parsePropertyIdParameter($constraintParameters[$propertyId][0], $propertyId); |
|
258 | 258 | } |
259 | 259 | |
260 | - private function parseItemIdParameter( PropertyValueSnak $snak, $parameterId ) { |
|
260 | + private function parseItemIdParameter(PropertyValueSnak $snak, $parameterId) { |
|
261 | 261 | $dataValue = $snak->getDataValue(); |
262 | - if ( $dataValue instanceof EntityIdValue && |
|
262 | + if ($dataValue instanceof EntityIdValue && |
|
263 | 263 | $dataValue->getEntityId() instanceof ItemId |
264 | 264 | ) { |
265 | - return ItemIdSnakValue::fromItemId( $dataValue->getEntityId() ); |
|
265 | + return ItemIdSnakValue::fromItemId($dataValue->getEntityId()); |
|
266 | 266 | } else { |
267 | 267 | throw new ConstraintParameterException( |
268 | - ( new ViolationMessage( 'wbqc-violation-message-parameter-item' ) ) |
|
269 | - ->withEntityId( new PropertyId( $parameterId ), Role::CONSTRAINT_PARAMETER_PROPERTY ) |
|
270 | - ->withDataValue( $dataValue, Role::CONSTRAINT_PARAMETER_VALUE ) |
|
268 | + (new ViolationMessage('wbqc-violation-message-parameter-item')) |
|
269 | + ->withEntityId(new PropertyId($parameterId), Role::CONSTRAINT_PARAMETER_PROPERTY) |
|
270 | + ->withDataValue($dataValue, Role::CONSTRAINT_PARAMETER_VALUE) |
|
271 | 271 | ); |
272 | 272 | } |
273 | 273 | } |
@@ -279,15 +279,15 @@ discard block |
||
279 | 279 | * @throws ConstraintParameterException if the parameter is invalid or missing |
280 | 280 | * @return ItemIdSnakValue[] array of values |
281 | 281 | */ |
282 | - public function parseItemsParameter( array $constraintParameters, $constraintTypeItemId, $required ) { |
|
283 | - $this->checkError( $constraintParameters ); |
|
284 | - $qualifierId = $this->config->get( 'WBQualityConstraintsQualifierOfPropertyConstraintId' ); |
|
285 | - if ( !array_key_exists( $qualifierId, $constraintParameters ) ) { |
|
286 | - if ( $required ) { |
|
282 | + public function parseItemsParameter(array $constraintParameters, $constraintTypeItemId, $required) { |
|
283 | + $this->checkError($constraintParameters); |
|
284 | + $qualifierId = $this->config->get('WBQualityConstraintsQualifierOfPropertyConstraintId'); |
|
285 | + if (!array_key_exists($qualifierId, $constraintParameters)) { |
|
286 | + if ($required) { |
|
287 | 287 | throw new ConstraintParameterException( |
288 | - ( new ViolationMessage( 'wbqc-violation-message-parameter-needed' ) ) |
|
289 | - ->withEntityId( new ItemId( $constraintTypeItemId ), Role::CONSTRAINT_TYPE_ITEM ) |
|
290 | - ->withEntityId( new PropertyId( $qualifierId ), Role::CONSTRAINT_PARAMETER_PROPERTY ) |
|
288 | + (new ViolationMessage('wbqc-violation-message-parameter-needed')) |
|
289 | + ->withEntityId(new ItemId($constraintTypeItemId), Role::CONSTRAINT_TYPE_ITEM) |
|
290 | + ->withEntityId(new PropertyId($qualifierId), Role::CONSTRAINT_PARAMETER_PROPERTY) |
|
291 | 291 | ); |
292 | 292 | } else { |
293 | 293 | return []; |
@@ -295,11 +295,11 @@ discard block |
||
295 | 295 | } |
296 | 296 | |
297 | 297 | $values = []; |
298 | - foreach ( $constraintParameters[$qualifierId] as $parameter ) { |
|
299 | - $snak = $this->snakDeserializer->deserialize( $parameter ); |
|
300 | - switch ( true ) { |
|
298 | + foreach ($constraintParameters[$qualifierId] as $parameter) { |
|
299 | + $snak = $this->snakDeserializer->deserialize($parameter); |
|
300 | + switch (true) { |
|
301 | 301 | case $snak instanceof PropertyValueSnak: |
302 | - $values[] = $this->parseItemIdParameter( $snak, $qualifierId ); |
|
302 | + $values[] = $this->parseItemIdParameter($snak, $qualifierId); |
|
303 | 303 | break; |
304 | 304 | case $snak instanceof PropertySomeValueSnak: |
305 | 305 | $values[] = ItemIdSnakValue::someValue(); |
@@ -318,27 +318,27 @@ discard block |
||
318 | 318 | * @throws ConstraintParameterException if the parameter is invalid or missing |
319 | 319 | * @return PropertyId[] |
320 | 320 | */ |
321 | - public function parsePropertiesParameter( array $constraintParameters, $constraintTypeItemId ) { |
|
322 | - $this->checkError( $constraintParameters ); |
|
323 | - $propertyId = $this->config->get( 'WBQualityConstraintsPropertyId' ); |
|
324 | - if ( !array_key_exists( $propertyId, $constraintParameters ) ) { |
|
321 | + public function parsePropertiesParameter(array $constraintParameters, $constraintTypeItemId) { |
|
322 | + $this->checkError($constraintParameters); |
|
323 | + $propertyId = $this->config->get('WBQualityConstraintsPropertyId'); |
|
324 | + if (!array_key_exists($propertyId, $constraintParameters)) { |
|
325 | 325 | throw new ConstraintParameterException( |
326 | - ( new ViolationMessage( 'wbqc-violation-message-parameter-needed' ) ) |
|
327 | - ->withEntityId( new ItemId( $constraintTypeItemId ), Role::CONSTRAINT_TYPE_ITEM ) |
|
328 | - ->withEntityId( new PropertyId( $propertyId ), Role::CONSTRAINT_PARAMETER_PROPERTY ) |
|
326 | + (new ViolationMessage('wbqc-violation-message-parameter-needed')) |
|
327 | + ->withEntityId(new ItemId($constraintTypeItemId), Role::CONSTRAINT_TYPE_ITEM) |
|
328 | + ->withEntityId(new PropertyId($propertyId), Role::CONSTRAINT_PARAMETER_PROPERTY) |
|
329 | 329 | ); |
330 | 330 | } |
331 | 331 | |
332 | 332 | $parameters = $constraintParameters[$propertyId]; |
333 | - if ( count( $parameters ) === 1 && |
|
334 | - $this->snakDeserializer->deserialize( $parameters[0] ) instanceof PropertyNoValueSnak |
|
333 | + if (count($parameters) === 1 && |
|
334 | + $this->snakDeserializer->deserialize($parameters[0]) instanceof PropertyNoValueSnak |
|
335 | 335 | ) { |
336 | 336 | return []; |
337 | 337 | } |
338 | 338 | |
339 | 339 | $properties = []; |
340 | - foreach ( $parameters as $parameter ) { |
|
341 | - $properties[] = $this->parsePropertyIdParameter( $parameter, $propertyId ); |
|
340 | + foreach ($parameters as $parameter) { |
|
341 | + $properties[] = $this->parsePropertyIdParameter($parameter, $propertyId); |
|
342 | 342 | } |
343 | 343 | return $properties; |
344 | 344 | } |
@@ -349,16 +349,16 @@ discard block |
||
349 | 349 | * @throws ConstraintParameterException |
350 | 350 | * @return DataValue|null |
351 | 351 | */ |
352 | - private function parseValueOrNoValueParameter( array $snakSerialization, $parameterId ) { |
|
353 | - $snak = $this->snakDeserializer->deserialize( $snakSerialization ); |
|
354 | - if ( $snak instanceof PropertyValueSnak ) { |
|
352 | + private function parseValueOrNoValueParameter(array $snakSerialization, $parameterId) { |
|
353 | + $snak = $this->snakDeserializer->deserialize($snakSerialization); |
|
354 | + if ($snak instanceof PropertyValueSnak) { |
|
355 | 355 | return $snak->getDataValue(); |
356 | - } elseif ( $snak instanceof PropertyNoValueSnak ) { |
|
356 | + } elseif ($snak instanceof PropertyNoValueSnak) { |
|
357 | 357 | return null; |
358 | 358 | } else { |
359 | 359 | throw new ConstraintParameterException( |
360 | - ( new ViolationMessage( 'wbqc-violation-message-parameter-value-or-novalue' ) ) |
|
361 | - ->withEntityId( new PropertyId( $parameterId ), Role::CONSTRAINT_PARAMETER_PROPERTY ) |
|
360 | + (new ViolationMessage('wbqc-violation-message-parameter-value-or-novalue')) |
|
361 | + ->withEntityId(new PropertyId($parameterId), Role::CONSTRAINT_PARAMETER_PROPERTY) |
|
362 | 362 | ); |
363 | 363 | } |
364 | 364 | } |
@@ -368,10 +368,10 @@ discard block |
||
368 | 368 | * @param string $parameterId |
369 | 369 | * @return DataValue|null |
370 | 370 | */ |
371 | - private function parseValueOrNoValueOrNowParameter( array $snakSerialization, $parameterId ) { |
|
371 | + private function parseValueOrNoValueOrNowParameter(array $snakSerialization, $parameterId) { |
|
372 | 372 | try { |
373 | - return $this->parseValueOrNoValueParameter( $snakSerialization, $parameterId ); |
|
374 | - } catch ( ConstraintParameterException $e ) { |
|
373 | + return $this->parseValueOrNoValueParameter($snakSerialization, $parameterId); |
|
374 | + } catch (ConstraintParameterException $e) { |
|
375 | 375 | // unknown value means “now” |
376 | 376 | return new NowValue(); |
377 | 377 | } |
@@ -384,14 +384,14 @@ discard block |
||
384 | 384 | * @param string $unit |
385 | 385 | * @return bool |
386 | 386 | */ |
387 | - private function exactlyOneQuantityWithUnit( DataValue $min = null, DataValue $max = null, $unit ) { |
|
388 | - if ( !( $min instanceof UnboundedQuantityValue ) || |
|
389 | - !( $max instanceof UnboundedQuantityValue ) |
|
387 | + private function exactlyOneQuantityWithUnit(DataValue $min = null, DataValue $max = null, $unit) { |
|
388 | + if (!($min instanceof UnboundedQuantityValue) || |
|
389 | + !($max instanceof UnboundedQuantityValue) |
|
390 | 390 | ) { |
391 | 391 | return false; |
392 | 392 | } |
393 | 393 | |
394 | - return ( $min->getUnit() === $unit ) !== ( $max->getUnit() === $unit ); |
|
394 | + return ($min->getUnit() === $unit) !== ($max->getUnit() === $unit); |
|
395 | 395 | } |
396 | 396 | |
397 | 397 | /** |
@@ -404,42 +404,42 @@ discard block |
||
404 | 404 | * @throws ConstraintParameterException if the parameter is invalid or missing |
405 | 405 | * @return DataValue[] if the parameter is invalid or missing |
406 | 406 | */ |
407 | - private function parseRangeParameter( array $constraintParameters, $minimumId, $maximumId, $constraintTypeItemId, $type ) { |
|
408 | - $this->checkError( $constraintParameters ); |
|
409 | - if ( !array_key_exists( $minimumId, $constraintParameters ) || |
|
410 | - !array_key_exists( $maximumId, $constraintParameters ) |
|
407 | + private function parseRangeParameter(array $constraintParameters, $minimumId, $maximumId, $constraintTypeItemId, $type) { |
|
408 | + $this->checkError($constraintParameters); |
|
409 | + if (!array_key_exists($minimumId, $constraintParameters) || |
|
410 | + !array_key_exists($maximumId, $constraintParameters) |
|
411 | 411 | ) { |
412 | 412 | throw new ConstraintParameterException( |
413 | - ( new ViolationMessage( 'wbqc-violation-message-range-parameters-needed' ) ) |
|
414 | - ->withDataValueType( $type ) |
|
415 | - ->withEntityId( new PropertyId( $minimumId ), Role::CONSTRAINT_PARAMETER_PROPERTY ) |
|
416 | - ->withEntityId( new PropertyId( $maximumId ), Role::CONSTRAINT_PARAMETER_PROPERTY ) |
|
417 | - ->withEntityId( new ItemId( $constraintTypeItemId ), Role::CONSTRAINT_TYPE_ITEM ) |
|
413 | + (new ViolationMessage('wbqc-violation-message-range-parameters-needed')) |
|
414 | + ->withDataValueType($type) |
|
415 | + ->withEntityId(new PropertyId($minimumId), Role::CONSTRAINT_PARAMETER_PROPERTY) |
|
416 | + ->withEntityId(new PropertyId($maximumId), Role::CONSTRAINT_PARAMETER_PROPERTY) |
|
417 | + ->withEntityId(new ItemId($constraintTypeItemId), Role::CONSTRAINT_TYPE_ITEM) |
|
418 | 418 | ); |
419 | 419 | } |
420 | 420 | |
421 | - $this->requireSingleParameter( $constraintParameters, $minimumId ); |
|
422 | - $this->requireSingleParameter( $constraintParameters, $maximumId ); |
|
421 | + $this->requireSingleParameter($constraintParameters, $minimumId); |
|
422 | + $this->requireSingleParameter($constraintParameters, $maximumId); |
|
423 | 423 | $parseFunction = $type === 'time' ? 'parseValueOrNoValueOrNowParameter' : 'parseValueOrNoValueParameter'; |
424 | - $min = $this->$parseFunction( $constraintParameters[$minimumId][0], $minimumId ); |
|
425 | - $max = $this->$parseFunction( $constraintParameters[$maximumId][0], $maximumId ); |
|
424 | + $min = $this->$parseFunction($constraintParameters[$minimumId][0], $minimumId); |
|
425 | + $max = $this->$parseFunction($constraintParameters[$maximumId][0], $maximumId); |
|
426 | 426 | |
427 | - $yearUnit = $this->config->get( 'WBQualityConstraintsYearUnit' ); |
|
428 | - if ( $this->exactlyOneQuantityWithUnit( $min, $max, $yearUnit ) ) { |
|
427 | + $yearUnit = $this->config->get('WBQualityConstraintsYearUnit'); |
|
428 | + if ($this->exactlyOneQuantityWithUnit($min, $max, $yearUnit)) { |
|
429 | 429 | throw new ConstraintParameterException( |
430 | - new ViolationMessage( 'wbqc-violation-message-range-parameters-one-year' ) |
|
430 | + new ViolationMessage('wbqc-violation-message-range-parameters-one-year') |
|
431 | 431 | ); |
432 | 432 | } |
433 | - if ( $min === null && $max === null || |
|
434 | - $min !== null && $max !== null && $min->equals( $max ) ) { |
|
433 | + if ($min === null && $max === null || |
|
434 | + $min !== null && $max !== null && $min->equals($max)) { |
|
435 | 435 | throw new ConstraintParameterException( |
436 | - ( new ViolationMessage( 'wbqc-violation-message-range-parameters-same' ) ) |
|
437 | - ->withEntityId( new PropertyId( $minimumId ), Role::CONSTRAINT_PARAMETER_PROPERTY ) |
|
438 | - ->withEntityId( new PropertyId( $maximumId ), Role::CONSTRAINT_PARAMETER_PROPERTY ) |
|
436 | + (new ViolationMessage('wbqc-violation-message-range-parameters-same')) |
|
437 | + ->withEntityId(new PropertyId($minimumId), Role::CONSTRAINT_PARAMETER_PROPERTY) |
|
438 | + ->withEntityId(new PropertyId($maximumId), Role::CONSTRAINT_PARAMETER_PROPERTY) |
|
439 | 439 | ); |
440 | 440 | } |
441 | 441 | |
442 | - return [ $min, $max ]; |
|
442 | + return [$min, $max]; |
|
443 | 443 | } |
444 | 444 | |
445 | 445 | /** |
@@ -449,11 +449,11 @@ discard block |
||
449 | 449 | * @throws ConstraintParameterException if the parameter is invalid or missing |
450 | 450 | * @return DataValue[] a pair of two data values, either of which may be null to signify an open range |
451 | 451 | */ |
452 | - public function parseQuantityRangeParameter( array $constraintParameters, $constraintTypeItemId ) { |
|
452 | + public function parseQuantityRangeParameter(array $constraintParameters, $constraintTypeItemId) { |
|
453 | 453 | return $this->parseRangeParameter( |
454 | 454 | $constraintParameters, |
455 | - $this->config->get( 'WBQualityConstraintsMinimumQuantityId' ), |
|
456 | - $this->config->get( 'WBQualityConstraintsMaximumQuantityId' ), |
|
455 | + $this->config->get('WBQualityConstraintsMinimumQuantityId'), |
|
456 | + $this->config->get('WBQualityConstraintsMaximumQuantityId'), |
|
457 | 457 | $constraintTypeItemId, |
458 | 458 | 'quantity' |
459 | 459 | ); |
@@ -466,11 +466,11 @@ discard block |
||
466 | 466 | * @throws ConstraintParameterException if the parameter is invalid or missing |
467 | 467 | * @return DataValue[] a pair of two data values, either of which may be null to signify an open range |
468 | 468 | */ |
469 | - public function parseTimeRangeParameter( array $constraintParameters, $constraintTypeItemId ) { |
|
469 | + public function parseTimeRangeParameter(array $constraintParameters, $constraintTypeItemId) { |
|
470 | 470 | return $this->parseRangeParameter( |
471 | 471 | $constraintParameters, |
472 | - $this->config->get( 'WBQualityConstraintsMinimumDateId' ), |
|
473 | - $this->config->get( 'WBQualityConstraintsMaximumDateId' ), |
|
472 | + $this->config->get('WBQualityConstraintsMinimumDateId'), |
|
473 | + $this->config->get('WBQualityConstraintsMaximumDateId'), |
|
474 | 474 | $constraintTypeItemId, |
475 | 475 | 'time' |
476 | 476 | ); |
@@ -483,17 +483,17 @@ discard block |
||
483 | 483 | * @throws ConstraintParameterException |
484 | 484 | * @return string |
485 | 485 | */ |
486 | - private function parseStringParameter( array $snakSerialization, $parameterId ) { |
|
487 | - $snak = $this->snakDeserializer->deserialize( $snakSerialization ); |
|
488 | - $this->requireValueParameter( $snak, $parameterId ); |
|
486 | + private function parseStringParameter(array $snakSerialization, $parameterId) { |
|
487 | + $snak = $this->snakDeserializer->deserialize($snakSerialization); |
|
488 | + $this->requireValueParameter($snak, $parameterId); |
|
489 | 489 | $value = $snak->getDataValue(); |
490 | - if ( $value instanceof StringValue ) { |
|
490 | + if ($value instanceof StringValue) { |
|
491 | 491 | return $value->getValue(); |
492 | 492 | } else { |
493 | 493 | throw new ConstraintParameterException( |
494 | - ( new ViolationMessage( 'wbqc-violation-message-parameter-string' ) ) |
|
495 | - ->withEntityId( new PropertyId( $parameterId ), Role::CONSTRAINT_PARAMETER_PROPERTY ) |
|
496 | - ->withDataValue( $value, Role::CONSTRAINT_PARAMETER_VALUE ) |
|
494 | + (new ViolationMessage('wbqc-violation-message-parameter-string')) |
|
495 | + ->withEntityId(new PropertyId($parameterId), Role::CONSTRAINT_PARAMETER_PROPERTY) |
|
496 | + ->withDataValue($value, Role::CONSTRAINT_PARAMETER_VALUE) |
|
497 | 497 | ); |
498 | 498 | } |
499 | 499 | } |
@@ -504,15 +504,15 @@ discard block |
||
504 | 504 | * @throws ConstraintParameterException if the parameter is invalid or missing |
505 | 505 | * @return string |
506 | 506 | */ |
507 | - public function parseNamespaceParameter( array $constraintParameters, $constraintTypeItemId ) { |
|
508 | - $this->checkError( $constraintParameters ); |
|
509 | - $namespaceId = $this->config->get( 'WBQualityConstraintsNamespaceId' ); |
|
510 | - if ( !array_key_exists( $namespaceId, $constraintParameters ) ) { |
|
507 | + public function parseNamespaceParameter(array $constraintParameters, $constraintTypeItemId) { |
|
508 | + $this->checkError($constraintParameters); |
|
509 | + $namespaceId = $this->config->get('WBQualityConstraintsNamespaceId'); |
|
510 | + if (!array_key_exists($namespaceId, $constraintParameters)) { |
|
511 | 511 | return ''; |
512 | 512 | } |
513 | 513 | |
514 | - $this->requireSingleParameter( $constraintParameters, $namespaceId ); |
|
515 | - return $this->parseStringParameter( $constraintParameters[$namespaceId][0], $namespaceId ); |
|
514 | + $this->requireSingleParameter($constraintParameters, $namespaceId); |
|
515 | + return $this->parseStringParameter($constraintParameters[$namespaceId][0], $namespaceId); |
|
516 | 516 | } |
517 | 517 | |
518 | 518 | /** |
@@ -521,19 +521,19 @@ discard block |
||
521 | 521 | * @throws ConstraintParameterException if the parameter is invalid or missing |
522 | 522 | * @return string |
523 | 523 | */ |
524 | - public function parseFormatParameter( array $constraintParameters, $constraintTypeItemId ) { |
|
525 | - $this->checkError( $constraintParameters ); |
|
526 | - $formatId = $this->config->get( 'WBQualityConstraintsFormatAsARegularExpressionId' ); |
|
527 | - if ( !array_key_exists( $formatId, $constraintParameters ) ) { |
|
524 | + public function parseFormatParameter(array $constraintParameters, $constraintTypeItemId) { |
|
525 | + $this->checkError($constraintParameters); |
|
526 | + $formatId = $this->config->get('WBQualityConstraintsFormatAsARegularExpressionId'); |
|
527 | + if (!array_key_exists($formatId, $constraintParameters)) { |
|
528 | 528 | throw new ConstraintParameterException( |
529 | - ( new ViolationMessage( 'wbqc-violation-message-parameter-needed' ) ) |
|
530 | - ->withEntityId( new ItemId( $constraintTypeItemId ), Role::CONSTRAINT_TYPE_ITEM ) |
|
531 | - ->withEntityId( new PropertyId( $formatId ), Role::CONSTRAINT_PARAMETER_PROPERTY ) |
|
529 | + (new ViolationMessage('wbqc-violation-message-parameter-needed')) |
|
530 | + ->withEntityId(new ItemId($constraintTypeItemId), Role::CONSTRAINT_TYPE_ITEM) |
|
531 | + ->withEntityId(new PropertyId($formatId), Role::CONSTRAINT_PARAMETER_PROPERTY) |
|
532 | 532 | ); |
533 | 533 | } |
534 | 534 | |
535 | - $this->requireSingleParameter( $constraintParameters, $formatId ); |
|
536 | - return $this->parseStringParameter( $constraintParameters[$formatId][0], $formatId ); |
|
535 | + $this->requireSingleParameter($constraintParameters, $formatId); |
|
536 | + return $this->parseStringParameter($constraintParameters[$formatId][0], $formatId); |
|
537 | 537 | } |
538 | 538 | |
539 | 539 | /** |
@@ -541,16 +541,16 @@ discard block |
||
541 | 541 | * @throws ConstraintParameterException if the parameter is invalid |
542 | 542 | * @return EntityId[] |
543 | 543 | */ |
544 | - public function parseExceptionParameter( array $constraintParameters ) { |
|
545 | - $this->checkError( $constraintParameters ); |
|
546 | - $exceptionId = $this->config->get( 'WBQualityConstraintsExceptionToConstraintId' ); |
|
547 | - if ( !array_key_exists( $exceptionId, $constraintParameters ) ) { |
|
544 | + public function parseExceptionParameter(array $constraintParameters) { |
|
545 | + $this->checkError($constraintParameters); |
|
546 | + $exceptionId = $this->config->get('WBQualityConstraintsExceptionToConstraintId'); |
|
547 | + if (!array_key_exists($exceptionId, $constraintParameters)) { |
|
548 | 548 | return []; |
549 | 549 | } |
550 | 550 | |
551 | 551 | return array_map( |
552 | - function( $snakSerialization ) use ( $exceptionId ) { |
|
553 | - return $this->parseEntityIdParameter( $snakSerialization, $exceptionId ); |
|
552 | + function($snakSerialization) use ($exceptionId) { |
|
553 | + return $this->parseEntityIdParameter($snakSerialization, $exceptionId); |
|
554 | 554 | }, |
555 | 555 | $constraintParameters[$exceptionId] |
556 | 556 | ); |
@@ -561,26 +561,26 @@ discard block |
||
561 | 561 | * @throws ConstraintParameterException if the parameter is invalid |
562 | 562 | * @return string|null 'mandatory' or null |
563 | 563 | */ |
564 | - public function parseConstraintStatusParameter( array $constraintParameters ) { |
|
565 | - $this->checkError( $constraintParameters ); |
|
566 | - $constraintStatusId = $this->config->get( 'WBQualityConstraintsConstraintStatusId' ); |
|
567 | - if ( !array_key_exists( $constraintStatusId, $constraintParameters ) ) { |
|
564 | + public function parseConstraintStatusParameter(array $constraintParameters) { |
|
565 | + $this->checkError($constraintParameters); |
|
566 | + $constraintStatusId = $this->config->get('WBQualityConstraintsConstraintStatusId'); |
|
567 | + if (!array_key_exists($constraintStatusId, $constraintParameters)) { |
|
568 | 568 | return null; |
569 | 569 | } |
570 | 570 | |
571 | - $mandatoryId = $this->config->get( 'WBQualityConstraintsMandatoryConstraintId' ); |
|
572 | - $this->requireSingleParameter( $constraintParameters, $constraintStatusId ); |
|
573 | - $snak = $this->snakDeserializer->deserialize( $constraintParameters[$constraintStatusId][0] ); |
|
574 | - $this->requireValueParameter( $snak, $constraintStatusId ); |
|
571 | + $mandatoryId = $this->config->get('WBQualityConstraintsMandatoryConstraintId'); |
|
572 | + $this->requireSingleParameter($constraintParameters, $constraintStatusId); |
|
573 | + $snak = $this->snakDeserializer->deserialize($constraintParameters[$constraintStatusId][0]); |
|
574 | + $this->requireValueParameter($snak, $constraintStatusId); |
|
575 | 575 | $statusId = $snak->getDataValue()->getEntityId()->getSerialization(); |
576 | 576 | |
577 | - if ( $statusId === $mandatoryId ) { |
|
577 | + if ($statusId === $mandatoryId) { |
|
578 | 578 | return 'mandatory'; |
579 | 579 | } else { |
580 | 580 | throw new ConstraintParameterException( |
581 | - ( new ViolationMessage( 'wbqc-violation-message-parameter-oneof' ) ) |
|
582 | - ->withEntityId( new PropertyId( $constraintStatusId ), Role::CONSTRAINT_PARAMETER_PROPERTY ) |
|
583 | - ->withEntityIdList( [ new ItemId( $mandatoryId ) ], Role::CONSTRAINT_PARAMETER_VALUE ) |
|
581 | + (new ViolationMessage('wbqc-violation-message-parameter-oneof')) |
|
582 | + ->withEntityId(new PropertyId($constraintStatusId), Role::CONSTRAINT_PARAMETER_PROPERTY) |
|
583 | + ->withEntityIdList([new ItemId($mandatoryId)], Role::CONSTRAINT_PARAMETER_VALUE) |
|
584 | 584 | ); |
585 | 585 | } |
586 | 586 | } |
@@ -592,12 +592,12 @@ discard block |
||
592 | 592 | * @return void |
593 | 593 | * @throws ConstraintParameterException |
594 | 594 | */ |
595 | - private function requireMonolingualTextParameter( DataValue $dataValue, $parameterId ) { |
|
596 | - if ( !( $dataValue instanceof MonolingualTextValue ) ) { |
|
595 | + private function requireMonolingualTextParameter(DataValue $dataValue, $parameterId) { |
|
596 | + if (!($dataValue instanceof MonolingualTextValue)) { |
|
597 | 597 | throw new ConstraintParameterException( |
598 | - ( new ViolationMessage( 'wbqc-violation-message-parameter-monolingualtext' ) ) |
|
599 | - ->withEntityId( new PropertyId( $parameterId ), Role::CONSTRAINT_PARAMETER_PROPERTY ) |
|
600 | - ->withDataValue( $dataValue, Role::CONSTRAINT_PARAMETER_VALUE ) |
|
598 | + (new ViolationMessage('wbqc-violation-message-parameter-monolingualtext')) |
|
599 | + ->withEntityId(new PropertyId($parameterId), Role::CONSTRAINT_PARAMETER_PROPERTY) |
|
600 | + ->withDataValue($dataValue, Role::CONSTRAINT_PARAMETER_VALUE) |
|
601 | 601 | ); |
602 | 602 | } |
603 | 603 | } |
@@ -610,30 +610,30 @@ discard block |
||
610 | 610 | * @throws ConstraintParameterException if invalid snaks are found or a language has multiple texts |
611 | 611 | * @return MultilingualTextValue |
612 | 612 | */ |
613 | - private function parseMultilingualTextParameter( array $snakSerializations, $parameterId ) { |
|
613 | + private function parseMultilingualTextParameter(array $snakSerializations, $parameterId) { |
|
614 | 614 | $result = []; |
615 | 615 | |
616 | - foreach ( $snakSerializations as $snakSerialization ) { |
|
617 | - $snak = $this->snakDeserializer->deserialize( $snakSerialization ); |
|
618 | - $this->requireValueParameter( $snak, $parameterId ); |
|
616 | + foreach ($snakSerializations as $snakSerialization) { |
|
617 | + $snak = $this->snakDeserializer->deserialize($snakSerialization); |
|
618 | + $this->requireValueParameter($snak, $parameterId); |
|
619 | 619 | |
620 | 620 | $value = $snak->getDataValue(); |
621 | - $this->requireMonolingualTextParameter( $value, $parameterId ); |
|
621 | + $this->requireMonolingualTextParameter($value, $parameterId); |
|
622 | 622 | /** @var MonolingualTextValue $value */ |
623 | 623 | |
624 | 624 | $code = $value->getLanguageCode(); |
625 | - if ( array_key_exists( $code, $result ) ) { |
|
625 | + if (array_key_exists($code, $result)) { |
|
626 | 626 | throw new ConstraintParameterException( |
627 | - ( new ViolationMessage( 'wbqc-violation-message-parameter-single-per-language' ) ) |
|
628 | - ->withEntityId( new PropertyId( $parameterId ), Role::CONSTRAINT_PARAMETER_PROPERTY ) |
|
629 | - ->withLanguage( $code ) |
|
627 | + (new ViolationMessage('wbqc-violation-message-parameter-single-per-language')) |
|
628 | + ->withEntityId(new PropertyId($parameterId), Role::CONSTRAINT_PARAMETER_PROPERTY) |
|
629 | + ->withLanguage($code) |
|
630 | 630 | ); |
631 | 631 | } |
632 | 632 | |
633 | 633 | $result[$code] = $value; |
634 | 634 | } |
635 | 635 | |
636 | - return new MultilingualTextValue( $result ); |
|
636 | + return new MultilingualTextValue($result); |
|
637 | 637 | } |
638 | 638 | |
639 | 639 | /** |
@@ -641,11 +641,11 @@ discard block |
||
641 | 641 | * @throws ConstraintParameterException if the parameter is invalid |
642 | 642 | * @return MultilingualTextValue |
643 | 643 | */ |
644 | - public function parseSyntaxClarificationParameter( array $constraintParameters ) { |
|
645 | - $syntaxClarificationId = $this->config->get( 'WBQualityConstraintsSyntaxClarificationId' ); |
|
644 | + public function parseSyntaxClarificationParameter(array $constraintParameters) { |
|
645 | + $syntaxClarificationId = $this->config->get('WBQualityConstraintsSyntaxClarificationId'); |
|
646 | 646 | |
647 | - if ( !array_key_exists( $syntaxClarificationId, $constraintParameters ) ) { |
|
648 | - return new MultilingualTextValue( [] ); |
|
647 | + if (!array_key_exists($syntaxClarificationId, $constraintParameters)) { |
|
648 | + return new MultilingualTextValue([]); |
|
649 | 649 | } |
650 | 650 | |
651 | 651 | $syntaxClarifications = $this->parseMultilingualTextParameter( |
@@ -664,20 +664,20 @@ discard block |
||
664 | 664 | * @throws ConstraintParameterException if the parameter is invalid |
665 | 665 | * @return string[]|null Context::TYPE_* constants |
666 | 666 | */ |
667 | - public function parseConstraintScopeParameter( array $constraintParameters, $constraintTypeItemId, array $validScopes = null ) { |
|
668 | - $constraintScopeId = $this->config->get( 'WBQualityConstraintsConstraintScopeId' ); |
|
669 | - $mainSnakId = $this->config->get( 'WBQualityConstraintsConstraintCheckedOnMainValueId' ); |
|
670 | - $qualifiersId = $this->config->get( 'WBQualityConstraintsConstraintCheckedOnQualifiersId' ); |
|
671 | - $referencesId = $this->config->get( 'WBQualityConstraintsConstraintCheckedOnReferencesId' ); |
|
667 | + public function parseConstraintScopeParameter(array $constraintParameters, $constraintTypeItemId, array $validScopes = null) { |
|
668 | + $constraintScopeId = $this->config->get('WBQualityConstraintsConstraintScopeId'); |
|
669 | + $mainSnakId = $this->config->get('WBQualityConstraintsConstraintCheckedOnMainValueId'); |
|
670 | + $qualifiersId = $this->config->get('WBQualityConstraintsConstraintCheckedOnQualifiersId'); |
|
671 | + $referencesId = $this->config->get('WBQualityConstraintsConstraintCheckedOnReferencesId'); |
|
672 | 672 | |
673 | - if ( !array_key_exists( $constraintScopeId, $constraintParameters ) ) { |
|
673 | + if (!array_key_exists($constraintScopeId, $constraintParameters)) { |
|
674 | 674 | return null; |
675 | 675 | } |
676 | 676 | |
677 | 677 | $contextTypes = []; |
678 | - foreach ( $constraintParameters[$constraintScopeId] as $snakSerialization ) { |
|
679 | - $scopeEntityId = $this->parseEntityIdParameter( $snakSerialization, $constraintScopeId ); |
|
680 | - switch ( $scopeEntityId->getSerialization() ) { |
|
678 | + foreach ($constraintParameters[$constraintScopeId] as $snakSerialization) { |
|
679 | + $scopeEntityId = $this->parseEntityIdParameter($snakSerialization, $constraintScopeId); |
|
680 | + switch ($scopeEntityId->getSerialization()) { |
|
681 | 681 | case $mainSnakId: |
682 | 682 | $contextTypes[] = Context::TYPE_STATEMENT; |
683 | 683 | break; |
@@ -689,13 +689,13 @@ discard block |
||
689 | 689 | break; |
690 | 690 | default: |
691 | 691 | throw new ConstraintParameterException( |
692 | - ( new ViolationMessage( 'wbqc-violation-message-parameter-oneof' ) ) |
|
693 | - ->withEntityId( new PropertyId( $constraintScopeId ), Role::CONSTRAINT_PARAMETER_PROPERTY ) |
|
692 | + (new ViolationMessage('wbqc-violation-message-parameter-oneof')) |
|
693 | + ->withEntityId(new PropertyId($constraintScopeId), Role::CONSTRAINT_PARAMETER_PROPERTY) |
|
694 | 694 | ->withEntityIdList( |
695 | 695 | [ |
696 | - new ItemId( $mainSnakId ), |
|
697 | - new ItemId( $qualifiersId ), |
|
698 | - new ItemId( $referencesId ), |
|
696 | + new ItemId($mainSnakId), |
|
697 | + new ItemId($qualifiersId), |
|
698 | + new ItemId($referencesId), |
|
699 | 699 | ], |
700 | 700 | Role::CONSTRAINT_PARAMETER_VALUE |
701 | 701 | ) |
@@ -703,15 +703,15 @@ discard block |
||
703 | 703 | } |
704 | 704 | } |
705 | 705 | |
706 | - if ( $validScopes !== null ) { |
|
707 | - $invalidScopes = array_diff( $contextTypes, $validScopes ); |
|
708 | - if ( $invalidScopes !== [] ) { |
|
709 | - $invalidScope = array_pop( $invalidScopes ); |
|
706 | + if ($validScopes !== null) { |
|
707 | + $invalidScopes = array_diff($contextTypes, $validScopes); |
|
708 | + if ($invalidScopes !== []) { |
|
709 | + $invalidScope = array_pop($invalidScopes); |
|
710 | 710 | throw new ConstraintParameterException( |
711 | - ( new ViolationMessage( 'wbqc-violation-message-invalid-scope' ) ) |
|
712 | - ->withConstraintScope( $invalidScope, Role::CONSTRAINT_PARAMETER_VALUE ) |
|
713 | - ->withEntityId( new ItemId( $constraintTypeItemId ), Role::CONSTRAINT_TYPE_ITEM ) |
|
714 | - ->withConstraintScopeList( $validScopes, Role::CONSTRAINT_PARAMETER_VALUE ) |
|
711 | + (new ViolationMessage('wbqc-violation-message-invalid-scope')) |
|
712 | + ->withConstraintScope($invalidScope, Role::CONSTRAINT_PARAMETER_VALUE) |
|
713 | + ->withEntityId(new ItemId($constraintTypeItemId), Role::CONSTRAINT_TYPE_ITEM) |
|
714 | + ->withConstraintScopeList($validScopes, Role::CONSTRAINT_PARAMETER_VALUE) |
|
715 | 715 | ); |
716 | 716 | } |
717 | 717 | } |
@@ -84,8 +84,8 @@ discard block |
||
84 | 84 | * @throws ConstraintParameterException |
85 | 85 | * @return array [ DataValue|null $min, DataValue|null $max, PropertyId $property, array $parameters ] |
86 | 86 | */ |
87 | - private function parseConstraintParameters( Constraint $constraint ) { |
|
88 | - list( $min, $max ) = $this->constraintParameterParser->parseQuantityRangeParameter( |
|
87 | + private function parseConstraintParameters(Constraint $constraint) { |
|
88 | + list($min, $max) = $this->constraintParameterParser->parseQuantityRangeParameter( |
|
89 | 89 | $constraint->getConstraintParameters(), |
90 | 90 | $constraint->getConstraintTypeItemId() |
91 | 91 | ); |
@@ -94,15 +94,15 @@ discard block |
||
94 | 94 | $constraint->getConstraintTypeItemId() |
95 | 95 | ); |
96 | 96 | |
97 | - if ( $min !== null ) { |
|
98 | - $parameters['minimum_quantity'] = [ $min ]; |
|
97 | + if ($min !== null) { |
|
98 | + $parameters['minimum_quantity'] = [$min]; |
|
99 | 99 | } |
100 | - if ( $max !== null ) { |
|
101 | - $parameters['maximum_quantity'] = [ $max ]; |
|
100 | + if ($max !== null) { |
|
101 | + $parameters['maximum_quantity'] = [$max]; |
|
102 | 102 | } |
103 | - $parameters['property'] = [ $property ]; |
|
103 | + $parameters['property'] = [$property]; |
|
104 | 104 | |
105 | - return [ $min, $max, $property, $parameters ]; |
|
105 | + return [$min, $max, $property, $parameters]; |
|
106 | 106 | } |
107 | 107 | |
108 | 108 | /** |
@@ -112,13 +112,13 @@ discard block |
||
112 | 112 | * |
113 | 113 | * @return bool |
114 | 114 | */ |
115 | - private function rangeInYears( $min, $max ) { |
|
116 | - $yearUnit = $this->config->get( 'WBQualityConstraintsYearUnit' ); |
|
115 | + private function rangeInYears($min, $max) { |
|
116 | + $yearUnit = $this->config->get('WBQualityConstraintsYearUnit'); |
|
117 | 117 | |
118 | - if ( $min !== null && $min->getUnit() === $yearUnit ) { |
|
118 | + if ($min !== null && $min->getUnit() === $yearUnit) { |
|
119 | 119 | return true; |
120 | 120 | } |
121 | - if ( $max !== null && $max->getUnit() === $yearUnit ) { |
|
121 | + if ($max !== null && $max->getUnit() === $yearUnit) { |
|
122 | 122 | return true; |
123 | 123 | } |
124 | 124 | |
@@ -134,59 +134,58 @@ discard block |
||
134 | 134 | * @throws ConstraintParameterException |
135 | 135 | * @return CheckResult |
136 | 136 | */ |
137 | - public function checkConstraint( Context $context, Constraint $constraint ) { |
|
138 | - if ( $context->getSnakRank() === Statement::RANK_DEPRECATED ) { |
|
139 | - return new CheckResult( $context, $constraint, [], CheckResult::STATUS_DEPRECATED ); |
|
137 | + public function checkConstraint(Context $context, Constraint $constraint) { |
|
138 | + if ($context->getSnakRank() === Statement::RANK_DEPRECATED) { |
|
139 | + return new CheckResult($context, $constraint, [], CheckResult::STATUS_DEPRECATED); |
|
140 | 140 | } |
141 | 141 | |
142 | 142 | $parameters = []; |
143 | 143 | |
144 | 144 | $snak = $context->getSnak(); |
145 | 145 | |
146 | - if ( !$snak instanceof PropertyValueSnak ) { |
|
146 | + if (!$snak instanceof PropertyValueSnak) { |
|
147 | 147 | // nothing to check |
148 | - return new CheckResult( $context, $constraint, $parameters, CheckResult::STATUS_COMPLIANCE ); |
|
148 | + return new CheckResult($context, $constraint, $parameters, CheckResult::STATUS_COMPLIANCE); |
|
149 | 149 | } |
150 | 150 | |
151 | 151 | $minuend = $snak->getDataValue(); |
152 | 152 | |
153 | 153 | /** @var PropertyId $property */ |
154 | - list( $min, $max, $property, $parameters ) = $this->parseConstraintParameters( $constraint ); |
|
154 | + list($min, $max, $property, $parameters) = $this->parseConstraintParameters($constraint); |
|
155 | 155 | |
156 | 156 | // checks only the first occurrence of the referenced property (this constraint implies a single value constraint on that property) |
157 | - foreach ( $context->getSnakGroup() as $otherSnak ) { |
|
157 | + foreach ($context->getSnakGroup() as $otherSnak) { |
|
158 | 158 | if ( |
159 | - !$property->equals( $otherSnak->getPropertyId() ) || |
|
159 | + !$property->equals($otherSnak->getPropertyId()) || |
|
160 | 160 | !$otherSnak instanceof PropertyValueSnak |
161 | 161 | ) { |
162 | 162 | continue; |
163 | 163 | } |
164 | 164 | |
165 | 165 | $subtrahend = $otherSnak->getDataValue(); |
166 | - if ( $subtrahend->getType() === $minuend->getType() ) { |
|
167 | - $diff = $this->rangeInYears( $min, $max ) && $minuend->getType() === 'time' ? |
|
168 | - $this->rangeCheckerHelper->getDifferenceInYears( $minuend, $subtrahend ) : |
|
169 | - $this->rangeCheckerHelper->getDifference( $minuend, $subtrahend ); |
|
166 | + if ($subtrahend->getType() === $minuend->getType()) { |
|
167 | + $diff = $this->rangeInYears($min, $max) && $minuend->getType() === 'time' ? |
|
168 | + $this->rangeCheckerHelper->getDifferenceInYears($minuend, $subtrahend) : $this->rangeCheckerHelper->getDifference($minuend, $subtrahend); |
|
170 | 169 | |
171 | - if ( $this->rangeCheckerHelper->getComparison( $min, $diff ) > 0 || |
|
172 | - $this->rangeCheckerHelper->getComparison( $diff, $max ) > 0 |
|
170 | + if ($this->rangeCheckerHelper->getComparison($min, $diff) > 0 || |
|
171 | + $this->rangeCheckerHelper->getComparison($diff, $max) > 0 |
|
173 | 172 | ) { |
174 | 173 | // at least one of $min, $max is set at this point, otherwise there could be no violation |
175 | - $openness = $min !== null ? ( $max !== null ? '' : '-rightopen' ) : '-leftopen'; |
|
174 | + $openness = $min !== null ? ($max !== null ? '' : '-rightopen') : '-leftopen'; |
|
176 | 175 | // possible message keys: |
177 | 176 | // wbqc-violation-message-diff-within-range |
178 | 177 | // wbqc-violation-message-diff-within-range-leftopen |
179 | 178 | // wbqc-violation-message-diff-within-range-rightopen |
180 | - $message = ( new ViolationMessage( "wbqc-violation-message-diff-within-range$openness" ) ) |
|
181 | - ->withEntityId( $context->getSnak()->getPropertyId(), Role::PREDICATE ) |
|
182 | - ->withDataValue( $minuend, Role::OBJECT ) |
|
183 | - ->withEntityId( $otherSnak->getPropertyId(), Role::PREDICATE ) |
|
184 | - ->withDataValue( $subtrahend, Role::OBJECT ); |
|
185 | - if ( $min !== null ) { |
|
186 | - $message = $message->withDataValue( $min, Role::OBJECT ); |
|
179 | + $message = (new ViolationMessage("wbqc-violation-message-diff-within-range$openness")) |
|
180 | + ->withEntityId($context->getSnak()->getPropertyId(), Role::PREDICATE) |
|
181 | + ->withDataValue($minuend, Role::OBJECT) |
|
182 | + ->withEntityId($otherSnak->getPropertyId(), Role::PREDICATE) |
|
183 | + ->withDataValue($subtrahend, Role::OBJECT); |
|
184 | + if ($min !== null) { |
|
185 | + $message = $message->withDataValue($min, Role::OBJECT); |
|
187 | 186 | } |
188 | - if ( $max !== null ) { |
|
189 | - $message = $message->withDataValue( $max, Role::OBJECT ); |
|
187 | + if ($max !== null) { |
|
188 | + $message = $message->withDataValue($max, Role::OBJECT); |
|
190 | 189 | } |
191 | 190 | $status = CheckResult::STATUS_VIOLATION; |
192 | 191 | } else { |
@@ -194,19 +193,19 @@ discard block |
||
194 | 193 | $status = CheckResult::STATUS_COMPLIANCE; |
195 | 194 | } |
196 | 195 | } else { |
197 | - $message = new ViolationMessage( 'wbqc-violation-message-diff-within-range-must-have-equal-types' ); |
|
196 | + $message = new ViolationMessage('wbqc-violation-message-diff-within-range-must-have-equal-types'); |
|
198 | 197 | $status = CheckResult::STATUS_VIOLATION; |
199 | 198 | } |
200 | 199 | |
201 | - return new CheckResult( $context, $constraint, $parameters, $status, $message ); |
|
200 | + return new CheckResult($context, $constraint, $parameters, $status, $message); |
|
202 | 201 | } |
203 | 202 | |
204 | - $message = new ViolationMessage( 'wbqc-violation-message-diff-within-range-property-must-exist' ); |
|
203 | + $message = new ViolationMessage('wbqc-violation-message-diff-within-range-property-must-exist'); |
|
205 | 204 | $status = CheckResult::STATUS_VIOLATION; |
206 | - return new CheckResult( $context, $constraint, $parameters, $status, $message ); |
|
205 | + return new CheckResult($context, $constraint, $parameters, $status, $message); |
|
207 | 206 | } |
208 | 207 | |
209 | - public function checkConstraintParameters( Constraint $constraint ) { |
|
208 | + public function checkConstraintParameters(Constraint $constraint) { |
|
210 | 209 | $constraintParameters = $constraint->getConstraintParameters(); |
211 | 210 | $exceptions = []; |
212 | 211 | try { |
@@ -214,12 +213,12 @@ discard block |
||
214 | 213 | $constraintParameters, |
215 | 214 | $constraint->getConstraintTypeItemId() |
216 | 215 | ); |
217 | - } catch ( ConstraintParameterException $e ) { |
|
216 | + } catch (ConstraintParameterException $e) { |
|
218 | 217 | $exceptions[] = $e; |
219 | 218 | } |
220 | 219 | try { |
221 | - $this->constraintParameterParser->parsePropertyParameter( $constraintParameters, $constraint->getConstraintTypeItemId() ); |
|
222 | - } catch ( ConstraintParameterException $e ) { |
|
220 | + $this->constraintParameterParser->parsePropertyParameter($constraintParameters, $constraint->getConstraintTypeItemId()); |
|
221 | + } catch (ConstraintParameterException $e) { |
|
223 | 222 | $exceptions[] = $e; |
224 | 223 | } |
225 | 224 | return $exceptions; |
@@ -92,9 +92,9 @@ discard block |
||
92 | 92 | * @throws ConstraintParameterException |
93 | 93 | * @return CheckResult |
94 | 94 | */ |
95 | - public function checkConstraint( Context $context, Constraint $constraint ) { |
|
96 | - if ( $context->getSnakRank() === Statement::RANK_DEPRECATED ) { |
|
97 | - return new CheckResult( $context, $constraint, [], CheckResult::STATUS_DEPRECATED ); |
|
95 | + public function checkConstraint(Context $context, Constraint $constraint) { |
|
96 | + if ($context->getSnakRank() === Statement::RANK_DEPRECATED) { |
|
97 | + return new CheckResult($context, $constraint, [], CheckResult::STATUS_DEPRECATED); |
|
98 | 98 | } |
99 | 99 | |
100 | 100 | $parameters = []; |
@@ -102,28 +102,28 @@ discard block |
||
102 | 102 | |
103 | 103 | $snak = $context->getSnak(); |
104 | 104 | |
105 | - if ( !$snak instanceof PropertyValueSnak ) { |
|
105 | + if (!$snak instanceof PropertyValueSnak) { |
|
106 | 106 | // nothing to check |
107 | - return new CheckResult( $context, $constraint, $parameters, CheckResult::STATUS_COMPLIANCE ); |
|
107 | + return new CheckResult($context, $constraint, $parameters, CheckResult::STATUS_COMPLIANCE); |
|
108 | 108 | } |
109 | 109 | |
110 | 110 | $dataValue = $snak->getDataValue(); |
111 | 111 | |
112 | - list( $min, $max ) = $this->parseRangeParameter( |
|
112 | + list($min, $max) = $this->parseRangeParameter( |
|
113 | 113 | $constraintParameters, |
114 | 114 | $constraint->getConstraintTypeItemId(), |
115 | 115 | $dataValue->getType() |
116 | 116 | ); |
117 | 117 | $parameterKey = $dataValue->getType() === 'quantity' ? 'quantity' : 'date'; |
118 | - if ( $min !== null ) { |
|
119 | - $parameters['minimum_' . $parameterKey] = [ $min ]; |
|
118 | + if ($min !== null) { |
|
119 | + $parameters['minimum_'.$parameterKey] = [$min]; |
|
120 | 120 | } |
121 | - if ( $max !== null ) { |
|
122 | - $parameters['maximum_' . $parameterKey] = [ $max ]; |
|
121 | + if ($max !== null) { |
|
122 | + $parameters['maximum_'.$parameterKey] = [$max]; |
|
123 | 123 | } |
124 | 124 | |
125 | - if ( $this->rangeCheckerHelper->getComparison( $min, $dataValue ) > 0 || |
|
126 | - $this->rangeCheckerHelper->getComparison( $dataValue, $max ) > 0 |
|
125 | + if ($this->rangeCheckerHelper->getComparison($min, $dataValue) > 0 || |
|
126 | + $this->rangeCheckerHelper->getComparison($dataValue, $max) > 0 |
|
127 | 127 | ) { |
128 | 128 | $message = $this->getViolationMessage( |
129 | 129 | $context->getSnak()->getPropertyId(), |
@@ -139,16 +139,16 @@ discard block |
||
139 | 139 | |
140 | 140 | if ( |
141 | 141 | $dataValue instanceof TimeValue && |
142 | - ( $min instanceof NowValue || $max instanceof NowValue ) && |
|
143 | - $this->rangeCheckerHelper->isFutureTime( $dataValue ) |
|
142 | + ($min instanceof NowValue || $max instanceof NowValue) && |
|
143 | + $this->rangeCheckerHelper->isFutureTime($dataValue) |
|
144 | 144 | ) { |
145 | - $dependencyMetadata = DependencyMetadata::ofFutureTime( $dataValue ); |
|
145 | + $dependencyMetadata = DependencyMetadata::ofFutureTime($dataValue); |
|
146 | 146 | } else { |
147 | 147 | $dependencyMetadata = DependencyMetadata::blank(); |
148 | 148 | } |
149 | 149 | |
150 | - return ( new CheckResult( $context, $constraint, $parameters, $status, $message ) ) |
|
151 | - ->withMetadata( Metadata::ofDependencyMetadata( $dependencyMetadata ) ); |
|
150 | + return (new CheckResult($context, $constraint, $parameters, $status, $message)) |
|
151 | + ->withMetadata(Metadata::ofDependencyMetadata($dependencyMetadata)); |
|
152 | 152 | } |
153 | 153 | |
154 | 154 | /** |
@@ -159,8 +159,8 @@ discard block |
||
159 | 159 | * @throws ConstraintParameterException if the parameter is invalid or missing |
160 | 160 | * @return DataValue[] a pair of two data values, either of which may be null to signify an open range |
161 | 161 | */ |
162 | - private function parseRangeParameter( array $constraintParameters, $constraintTypeItemId, $type ) { |
|
163 | - switch ( $type ) { |
|
162 | + private function parseRangeParameter(array $constraintParameters, $constraintTypeItemId, $type) { |
|
163 | + switch ($type) { |
|
164 | 164 | case 'quantity': |
165 | 165 | return $this->constraintParameterParser->parseQuantityRangeParameter( |
166 | 166 | $constraintParameters, |
@@ -174,10 +174,10 @@ discard block |
||
174 | 174 | } |
175 | 175 | |
176 | 176 | throw new ConstraintParameterException( |
177 | - ( new ViolationMessage( 'wbqc-violation-message-value-needed-of-types-2' ) ) |
|
178 | - ->withEntityId( new ItemId( $constraintTypeItemId ), Role::CONSTRAINT_TYPE_ITEM ) |
|
179 | - ->withDataValueType( 'quantity' ) |
|
180 | - ->withDataValueType( 'time' ) |
|
177 | + (new ViolationMessage('wbqc-violation-message-value-needed-of-types-2')) |
|
178 | + ->withEntityId(new ItemId($constraintTypeItemId), Role::CONSTRAINT_TYPE_ITEM) |
|
179 | + ->withDataValueType('quantity') |
|
180 | + ->withDataValueType('time') |
|
181 | 181 | ); |
182 | 182 | } |
183 | 183 | |
@@ -189,7 +189,7 @@ discard block |
||
189 | 189 | * |
190 | 190 | * @return ViolationMessage |
191 | 191 | */ |
192 | - private function getViolationMessage( PropertyId $predicate, DataValue $value, $min, $max ) { |
|
192 | + private function getViolationMessage(PropertyId $predicate, DataValue $value, $min, $max) { |
|
193 | 193 | // possible message keys: |
194 | 194 | // wbqc-violation-message-range-quantity-closed |
195 | 195 | // wbqc-violation-message-range-quantity-leftopen |
@@ -202,39 +202,39 @@ discard block |
||
202 | 202 | // wbqc-violation-message-range-time-rightopen |
203 | 203 | // wbqc-violation-message-range-time-rightopen-leftnow |
204 | 204 | $messageKey = 'wbqc-violation-message-range'; |
205 | - $messageKey .= '-' . $value->getType(); |
|
205 | + $messageKey .= '-'.$value->getType(); |
|
206 | 206 | // at least one of $min, $max is set, otherwise there could be no violation |
207 | - $messageKey .= '-' . ( $min !== null ? ( $max !== null ? 'closed' : 'rightopen' ) : 'leftopen' ); |
|
208 | - if ( $min instanceof NowValue ) { |
|
207 | + $messageKey .= '-'.($min !== null ? ($max !== null ? 'closed' : 'rightopen') : 'leftopen'); |
|
208 | + if ($min instanceof NowValue) { |
|
209 | 209 | $messageKey .= '-leftnow'; |
210 | - } elseif ( $max instanceof NowValue ) { |
|
210 | + } elseif ($max instanceof NowValue) { |
|
211 | 211 | $messageKey .= '-rightnow'; |
212 | 212 | } |
213 | - $message = ( new ViolationMessage( $messageKey ) ) |
|
214 | - ->withEntityId( $predicate, Role::PREDICATE ) |
|
215 | - ->withDataValue( $value, Role::OBJECT ); |
|
216 | - if ( $min !== null && !( $min instanceof NowValue ) ) { |
|
217 | - $message = $message->withDataValue( $min, Role::OBJECT ); |
|
213 | + $message = (new ViolationMessage($messageKey)) |
|
214 | + ->withEntityId($predicate, Role::PREDICATE) |
|
215 | + ->withDataValue($value, Role::OBJECT); |
|
216 | + if ($min !== null && !($min instanceof NowValue)) { |
|
217 | + $message = $message->withDataValue($min, Role::OBJECT); |
|
218 | 218 | } |
219 | - if ( $max !== null && !( $max instanceof NowValue ) ) { |
|
220 | - $message = $message->withDataValue( $max, Role::OBJECT ); |
|
219 | + if ($max !== null && !($max instanceof NowValue)) { |
|
220 | + $message = $message->withDataValue($max, Role::OBJECT); |
|
221 | 221 | } |
222 | 222 | return $message; |
223 | 223 | } |
224 | 224 | |
225 | - public function checkConstraintParameters( Constraint $constraint ) { |
|
225 | + public function checkConstraintParameters(Constraint $constraint) { |
|
226 | 226 | $constraintParameters = $constraint->getConstraintParameters(); |
227 | 227 | $exceptions = []; |
228 | 228 | try { |
229 | 229 | // we don’t have a data value here, so get the type from the property instead |
230 | 230 | // (the distinction between data type and data value type is irrelevant for 'quantity' and 'time') |
231 | - $type = $this->propertyDataTypeLookup->getDataTypeIdForProperty( $constraint->getPropertyId() ); |
|
231 | + $type = $this->propertyDataTypeLookup->getDataTypeIdForProperty($constraint->getPropertyId()); |
|
232 | 232 | $this->parseRangeParameter( |
233 | 233 | $constraintParameters, |
234 | 234 | $constraint->getConstraintTypeItemId(), |
235 | 235 | $type |
236 | 236 | ); |
237 | - } catch ( ConstraintParameterException $e ) { |
|
237 | + } catch (ConstraintParameterException $e) { |
|
238 | 238 | $exceptions[] = $e; |
239 | 239 | } |
240 | 240 | return $exceptions; |
@@ -24,22 +24,22 @@ |
||
24 | 24 | */ |
25 | 25 | const NULL_PROPERTY_ID = 'P2147483647'; |
26 | 26 | |
27 | - public function __construct( ContextCursor $contextCursor ) { |
|
27 | + public function __construct(ContextCursor $contextCursor) { |
|
28 | 28 | $constraint = new Constraint( |
29 | 29 | 'null', |
30 | - new PropertyId( self::NULL_PROPERTY_ID ), |
|
30 | + new PropertyId(self::NULL_PROPERTY_ID), |
|
31 | 31 | 'none', |
32 | 32 | [] |
33 | 33 | ); |
34 | - parent::__construct( $contextCursor, $constraint ); |
|
34 | + parent::__construct($contextCursor, $constraint); |
|
35 | 35 | } |
36 | 36 | |
37 | 37 | public function getConstraint() { |
38 | - throw new DomainException( 'NullResult holds no constraint' ); |
|
38 | + throw new DomainException('NullResult holds no constraint'); |
|
39 | 39 | } |
40 | 40 | |
41 | 41 | public function getConstraintId() { |
42 | - throw new DomainException( 'NullResult holds no constraint' ); |
|
42 | + throw new DomainException('NullResult holds no constraint'); |
|
43 | 43 | } |
44 | 44 | |
45 | 45 | } |
@@ -27,15 +27,15 @@ discard block |
||
27 | 27 | * @param array[] &$container |
28 | 28 | * @return array |
29 | 29 | */ |
30 | - protected function &getClaimsArray( array &$container ) { |
|
30 | + protected function &getClaimsArray(array &$container) { |
|
31 | 31 | $entityId = $this->getEntityId(); |
32 | 32 | |
33 | - if ( !array_key_exists( $entityId, $container ) ) { |
|
33 | + if (!array_key_exists($entityId, $container)) { |
|
34 | 34 | $container[$entityId] = []; |
35 | 35 | } |
36 | 36 | $entityContainer = &$container[$entityId]; |
37 | 37 | |
38 | - if ( !array_key_exists( 'claims', $entityContainer ) ) { |
|
38 | + if (!array_key_exists('claims', $entityContainer)) { |
|
39 | 39 | $entityContainer['claims'] = []; |
40 | 40 | } |
41 | 41 | $claimsArray = &$entityContainer['claims']; |
@@ -49,25 +49,25 @@ discard block |
||
49 | 49 | * @param array[] &$container |
50 | 50 | * @return array |
51 | 51 | */ |
52 | - protected function &getStatementArray( array &$container ) { |
|
52 | + protected function &getStatementArray(array &$container) { |
|
53 | 53 | $statementPropertyId = $this->getStatementPropertyId(); |
54 | 54 | $statementGuid = $this->getStatementGuid(); |
55 | 55 | |
56 | - $claimsContainer = &$this->getClaimsArray( $container ); |
|
56 | + $claimsContainer = &$this->getClaimsArray($container); |
|
57 | 57 | |
58 | - if ( !array_key_exists( $statementPropertyId, $claimsContainer ) ) { |
|
58 | + if (!array_key_exists($statementPropertyId, $claimsContainer)) { |
|
59 | 59 | $claimsContainer[$statementPropertyId] = []; |
60 | 60 | } |
61 | 61 | $propertyContainer = &$claimsContainer[$statementPropertyId]; |
62 | 62 | |
63 | - foreach ( $propertyContainer as &$statement ) { |
|
64 | - if ( $statement['id'] === $statementGuid ) { |
|
63 | + foreach ($propertyContainer as &$statement) { |
|
64 | + if ($statement['id'] === $statementGuid) { |
|
65 | 65 | $statementArray = &$statement; |
66 | 66 | break; |
67 | 67 | } |
68 | 68 | } |
69 | - if ( !isset( $statementArray ) ) { |
|
70 | - $statementArray = [ 'id' => $statementGuid ]; |
|
69 | + if (!isset($statementArray)) { |
|
70 | + $statementArray = ['id' => $statementGuid]; |
|
71 | 71 | $propertyContainer[] = &$statementArray; |
72 | 72 | } |
73 | 73 | |
@@ -82,19 +82,19 @@ discard block |
||
82 | 82 | * @param array[] &$container |
83 | 83 | * @return array |
84 | 84 | */ |
85 | - abstract protected function &getMainArray( array &$container ); |
|
85 | + abstract protected function &getMainArray(array &$container); |
|
86 | 86 | |
87 | 87 | /** |
88 | 88 | * @param array|null $result |
89 | 89 | * @param array[] &$container |
90 | 90 | */ |
91 | - public function storeCheckResultInArray( array $result = null, array &$container ) { |
|
92 | - $mainArray = &$this->getMainArray( $container ); |
|
93 | - if ( !array_key_exists( 'results', $mainArray ) ) { |
|
91 | + public function storeCheckResultInArray(array $result = null, array &$container) { |
|
92 | + $mainArray = &$this->getMainArray($container); |
|
93 | + if (!array_key_exists('results', $mainArray)) { |
|
94 | 94 | $mainArray['results'] = []; |
95 | 95 | } |
96 | 96 | |
97 | - if ( $result !== null ) { |
|
97 | + if ($result !== null) { |
|
98 | 98 | $mainArray['results'][] = $result; |
99 | 99 | } |
100 | 100 | } |
@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | * @codeCoverageIgnore This method is not supported. |
34 | 34 | */ |
35 | 35 | public function getType() { |
36 | - throw new LogicException( 'EntityContextCursor has no full associated context' ); |
|
36 | + throw new LogicException('EntityContextCursor has no full associated context'); |
|
37 | 37 | } |
38 | 38 | |
39 | 39 | public function getEntityId() { |
@@ -44,35 +44,35 @@ discard block |
||
44 | 44 | * @codeCoverageIgnore This method is not supported. |
45 | 45 | */ |
46 | 46 | public function getStatementPropertyId() { |
47 | - throw new LogicException( 'EntityContextCursor has no full associated context' ); |
|
47 | + throw new LogicException('EntityContextCursor has no full associated context'); |
|
48 | 48 | } |
49 | 49 | |
50 | 50 | /** |
51 | 51 | * @codeCoverageIgnore This method is not supported. |
52 | 52 | */ |
53 | 53 | public function getStatementGuid() { |
54 | - throw new LogicException( 'EntityContextCursor has no full associated context' ); |
|
54 | + throw new LogicException('EntityContextCursor has no full associated context'); |
|
55 | 55 | } |
56 | 56 | |
57 | 57 | /** |
58 | 58 | * @codeCoverageIgnore This method is not supported. |
59 | 59 | */ |
60 | 60 | public function getSnakPropertyId() { |
61 | - throw new LogicException( 'EntityContextCursor has no full associated context' ); |
|
61 | + throw new LogicException('EntityContextCursor has no full associated context'); |
|
62 | 62 | } |
63 | 63 | |
64 | 64 | /** |
65 | 65 | * @codeCoverageIgnore This method is not supported. |
66 | 66 | */ |
67 | 67 | public function getSnakHash() { |
68 | - throw new LogicException( 'EntityContextCursor has no full associated context' ); |
|
68 | + throw new LogicException('EntityContextCursor has no full associated context'); |
|
69 | 69 | } |
70 | 70 | |
71 | 71 | /** |
72 | 72 | * @codeCoverageIgnore This method is not supported. |
73 | 73 | */ |
74 | - public function &getMainArray( array &$container ) { |
|
75 | - throw new LogicException( 'EntityContextCursor cannot store check results' ); |
|
74 | + public function &getMainArray(array &$container) { |
|
75 | + throw new LogicException('EntityContextCursor cannot store check results'); |
|
76 | 76 | } |
77 | 77 | |
78 | 78 | /** |
@@ -81,12 +81,12 @@ discard block |
||
81 | 81 | * @param array|null $result must be null |
82 | 82 | * @param array[] &$container |
83 | 83 | */ |
84 | - public function storeCheckResultInArray( array $result = null, array &$container ) { |
|
85 | - if ( $result !== null ) { |
|
86 | - throw new LogicException( 'EntityContextCursor cannot store check results' ); |
|
84 | + public function storeCheckResultInArray(array $result = null, array &$container) { |
|
85 | + if ($result !== null) { |
|
86 | + throw new LogicException('EntityContextCursor cannot store check results'); |
|
87 | 87 | } |
88 | 88 | |
89 | - $this->getClaimsArray( $container ); |
|
89 | + $this->getClaimsArray($container); |
|
90 | 90 | } |
91 | 91 | |
92 | 92 | } |
@@ -310,7 +310,7 @@ discard block |
||
310 | 310 | } |
311 | 311 | |
312 | 312 | /** |
313 | - * @param EntityDocument|StatementListProvider $entity |
|
313 | + * @param EntityDocument $entity |
|
314 | 314 | * @param string[]|null $constraintIds list of constraints to check (if null: all constraints) |
315 | 315 | * @param callable|null $defaultResultsPerContext optional function to pre-populate the check results |
316 | 316 | * |
@@ -338,7 +338,7 @@ discard block |
||
338 | 338 | } |
339 | 339 | |
340 | 340 | /** |
341 | - * @param EntityDocument|StatementListProvider $entity |
|
341 | + * @param EntityDocument $entity |
|
342 | 342 | * @param Statement $statement |
343 | 343 | * @param string[]|null $constraintIds list of constraints to check (if null: all constraints) |
344 | 344 | * @param callable|null $defaultResultsPerContext optional function to pre-populate the check results |
@@ -144,21 +144,21 @@ discard block |
||
144 | 144 | callable $defaultResultsPerEntity = null |
145 | 145 | ) { |
146 | 146 | $checkResults = []; |
147 | - $entity = $this->entityLookup->getEntity( $entityId ); |
|
147 | + $entity = $this->entityLookup->getEntity($entityId); |
|
148 | 148 | |
149 | - if ( $entity instanceof StatementListProvider ) { |
|
149 | + if ($entity instanceof StatementListProvider) { |
|
150 | 150 | $checkResults = $this->checkEveryStatement( |
151 | - $this->entityLookup->getEntity( $entityId ), |
|
151 | + $this->entityLookup->getEntity($entityId), |
|
152 | 152 | $constraintIds, |
153 | 153 | $defaultResultsPerContext |
154 | 154 | ); |
155 | 155 | } |
156 | 156 | |
157 | - if ( $defaultResultsPerEntity !== null ) { |
|
158 | - $checkResults = array_merge( $defaultResultsPerEntity( $entityId ), $checkResults ); |
|
157 | + if ($defaultResultsPerEntity !== null) { |
|
158 | + $checkResults = array_merge($defaultResultsPerEntity($entityId), $checkResults); |
|
159 | 159 | } |
160 | 160 | |
161 | - return $this->sortResult( $checkResults ); |
|
161 | + return $this->sortResult($checkResults); |
|
162 | 162 | } |
163 | 163 | |
164 | 164 | /** |
@@ -180,19 +180,19 @@ discard block |
||
180 | 180 | callable $defaultResults = null |
181 | 181 | ) { |
182 | 182 | |
183 | - $parsedGuid = $this->statementGuidParser->parse( $guid ); |
|
183 | + $parsedGuid = $this->statementGuidParser->parse($guid); |
|
184 | 184 | $entityId = $parsedGuid->getEntityId(); |
185 | - $entity = $this->entityLookup->getEntity( $entityId ); |
|
186 | - if ( $entity instanceof StatementListProvider ) { |
|
187 | - $statement = $entity->getStatements()->getFirstStatementWithGuid( $guid ); |
|
188 | - if ( $statement ) { |
|
185 | + $entity = $this->entityLookup->getEntity($entityId); |
|
186 | + if ($entity instanceof StatementListProvider) { |
|
187 | + $statement = $entity->getStatements()->getFirstStatementWithGuid($guid); |
|
188 | + if ($statement) { |
|
189 | 189 | $result = $this->checkStatement( |
190 | 190 | $entity, |
191 | 191 | $statement, |
192 | 192 | $constraintIds, |
193 | 193 | $defaultResults |
194 | 194 | ); |
195 | - $output = $this->sortResult( $result ); |
|
195 | + $output = $this->sortResult($result); |
|
196 | 196 | return $output; |
197 | 197 | } |
198 | 198 | } |
@@ -200,8 +200,8 @@ discard block |
||
200 | 200 | return []; |
201 | 201 | } |
202 | 202 | |
203 | - private function getAllowedContextTypes( Constraint $constraint ) { |
|
204 | - if ( !array_key_exists( $constraint->getConstraintTypeItemId(), $this->checkerMap ) ) { |
|
203 | + private function getAllowedContextTypes(Constraint $constraint) { |
|
204 | + if (!array_key_exists($constraint->getConstraintTypeItemId(), $this->checkerMap)) { |
|
205 | 205 | return [ |
206 | 206 | Context::TYPE_STATEMENT, |
207 | 207 | Context::TYPE_QUALIFIER, |
@@ -209,12 +209,12 @@ discard block |
||
209 | 209 | ]; |
210 | 210 | } |
211 | 211 | |
212 | - return array_keys( array_filter( |
|
212 | + return array_keys(array_filter( |
|
213 | 213 | $this->checkerMap[$constraint->getConstraintTypeItemId()]->getSupportedContextTypes(), |
214 | - function ( $resultStatus ) { |
|
214 | + function($resultStatus) { |
|
215 | 215 | return $resultStatus !== CheckResult::STATUS_NOT_IN_SCOPE; |
216 | 216 | } |
217 | - ) ); |
|
217 | + )); |
|
218 | 218 | } |
219 | 219 | |
220 | 220 | /** |
@@ -225,32 +225,32 @@ discard block |
||
225 | 225 | * |
226 | 226 | * @return ConstraintParameterException[] |
227 | 227 | */ |
228 | - private function checkCommonConstraintParameters( Constraint $constraint ) { |
|
228 | + private function checkCommonConstraintParameters(Constraint $constraint) { |
|
229 | 229 | $constraintParameters = $constraint->getConstraintParameters(); |
230 | 230 | try { |
231 | - $this->constraintParameterParser->checkError( $constraintParameters ); |
|
232 | - } catch ( ConstraintParameterException $e ) { |
|
233 | - return [ $e ]; |
|
231 | + $this->constraintParameterParser->checkError($constraintParameters); |
|
232 | + } catch (ConstraintParameterException $e) { |
|
233 | + return [$e]; |
|
234 | 234 | } |
235 | 235 | |
236 | 236 | $problems = []; |
237 | 237 | try { |
238 | - $this->constraintParameterParser->parseExceptionParameter( $constraintParameters ); |
|
239 | - } catch ( ConstraintParameterException $e ) { |
|
238 | + $this->constraintParameterParser->parseExceptionParameter($constraintParameters); |
|
239 | + } catch (ConstraintParameterException $e) { |
|
240 | 240 | $problems[] = $e; |
241 | 241 | } |
242 | 242 | try { |
243 | - $this->constraintParameterParser->parseConstraintStatusParameter( $constraintParameters ); |
|
244 | - } catch ( ConstraintParameterException $e ) { |
|
243 | + $this->constraintParameterParser->parseConstraintStatusParameter($constraintParameters); |
|
244 | + } catch (ConstraintParameterException $e) { |
|
245 | 245 | $problems[] = $e; |
246 | 246 | } |
247 | 247 | try { |
248 | 248 | $this->constraintParameterParser->parseConstraintScopeParameter( |
249 | 249 | $constraintParameters, |
250 | 250 | $constraint->getConstraintTypeItemId(), |
251 | - $this->getAllowedContextTypes( $constraint ) |
|
251 | + $this->getAllowedContextTypes($constraint) |
|
252 | 252 | ); |
253 | - } catch ( ConstraintParameterException $e ) { |
|
253 | + } catch (ConstraintParameterException $e) { |
|
254 | 254 | $problems[] = $e; |
255 | 255 | } |
256 | 256 | return $problems; |
@@ -263,16 +263,16 @@ discard block |
||
263 | 263 | * @return ConstraintParameterException[][] first level indexed by constraint ID, |
264 | 264 | * second level like checkConstraintParametersOnConstraintId (but without possibility of null) |
265 | 265 | */ |
266 | - public function checkConstraintParametersOnPropertyId( PropertyId $propertyId ) { |
|
267 | - $constraints = $this->constraintLookup->queryConstraintsForProperty( $propertyId ); |
|
266 | + public function checkConstraintParametersOnPropertyId(PropertyId $propertyId) { |
|
267 | + $constraints = $this->constraintLookup->queryConstraintsForProperty($propertyId); |
|
268 | 268 | $result = []; |
269 | 269 | |
270 | - foreach ( $constraints as $constraint ) { |
|
271 | - $problems = $this->checkCommonConstraintParameters( $constraint ); |
|
270 | + foreach ($constraints as $constraint) { |
|
271 | + $problems = $this->checkCommonConstraintParameters($constraint); |
|
272 | 272 | |
273 | - if ( array_key_exists( $constraint->getConstraintTypeItemId(), $this->checkerMap ) ) { |
|
273 | + if (array_key_exists($constraint->getConstraintTypeItemId(), $this->checkerMap)) { |
|
274 | 274 | $checker = $this->checkerMap[$constraint->getConstraintTypeItemId()]; |
275 | - $problems = array_merge( $problems, $checker->checkConstraintParameters( $constraint ) ); |
|
275 | + $problems = array_merge($problems, $checker->checkConstraintParameters($constraint)); |
|
276 | 276 | } |
277 | 277 | |
278 | 278 | $result[$constraint->getConstraintId()] = $problems; |
@@ -289,17 +289,17 @@ discard block |
||
289 | 289 | * @return ConstraintParameterException[]|null list of constraint parameter exceptions |
290 | 290 | * (empty means all parameters okay), or null if constraint is not found |
291 | 291 | */ |
292 | - public function checkConstraintParametersOnConstraintId( $constraintId ) { |
|
293 | - $propertyId = $this->statementGuidParser->parse( $constraintId )->getEntityId(); |
|
294 | - $constraints = $this->constraintLookup->queryConstraintsForProperty( $propertyId ); |
|
292 | + public function checkConstraintParametersOnConstraintId($constraintId) { |
|
293 | + $propertyId = $this->statementGuidParser->parse($constraintId)->getEntityId(); |
|
294 | + $constraints = $this->constraintLookup->queryConstraintsForProperty($propertyId); |
|
295 | 295 | |
296 | - foreach ( $constraints as $constraint ) { |
|
297 | - if ( $constraint->getConstraintId() === $constraintId ) { |
|
298 | - $problems = $this->checkCommonConstraintParameters( $constraint ); |
|
296 | + foreach ($constraints as $constraint) { |
|
297 | + if ($constraint->getConstraintId() === $constraintId) { |
|
298 | + $problems = $this->checkCommonConstraintParameters($constraint); |
|
299 | 299 | |
300 | - if ( array_key_exists( $constraint->getConstraintTypeItemId(), $this->checkerMap ) ) { |
|
300 | + if (array_key_exists($constraint->getConstraintTypeItemId(), $this->checkerMap)) { |
|
301 | 301 | $checker = $this->checkerMap[$constraint->getConstraintTypeItemId()]; |
302 | - $problems = array_merge( $problems, $checker->checkConstraintParameters( $constraint ) ); |
|
302 | + $problems = array_merge($problems, $checker->checkConstraintParameters($constraint)); |
|
303 | 303 | } |
304 | 304 | |
305 | 305 | return $problems; |
@@ -324,14 +324,14 @@ discard block |
||
324 | 324 | $result = []; |
325 | 325 | |
326 | 326 | /** @var Statement $statement */ |
327 | - foreach ( $entity->getStatements() as $statement ) { |
|
328 | - $result = array_merge( $result, |
|
327 | + foreach ($entity->getStatements() as $statement) { |
|
328 | + $result = array_merge($result, |
|
329 | 329 | $this->checkStatement( |
330 | 330 | $entity, |
331 | 331 | $statement, |
332 | 332 | $constraintIds, |
333 | 333 | $defaultResultsPerContext |
334 | - ) ); |
|
334 | + )); |
|
335 | 335 | } |
336 | 336 | |
337 | 337 | return $result; |
@@ -353,32 +353,32 @@ discard block |
||
353 | 353 | ) { |
354 | 354 | $result = []; |
355 | 355 | |
356 | - $result = array_merge( $result, |
|
356 | + $result = array_merge($result, |
|
357 | 357 | $this->checkConstraintsForMainSnak( |
358 | 358 | $entity, |
359 | 359 | $statement, |
360 | 360 | $constraintIds, |
361 | 361 | $defaultResultsPerContext |
362 | - ) ); |
|
362 | + )); |
|
363 | 363 | |
364 | - if ( $this->checkQualifiers ) { |
|
365 | - $result = array_merge( $result, |
|
364 | + if ($this->checkQualifiers) { |
|
365 | + $result = array_merge($result, |
|
366 | 366 | $this->checkConstraintsForQualifiers( |
367 | 367 | $entity, |
368 | 368 | $statement, |
369 | 369 | $constraintIds, |
370 | 370 | $defaultResultsPerContext |
371 | - ) ); |
|
371 | + )); |
|
372 | 372 | } |
373 | 373 | |
374 | - if ( $this->checkReferences ) { |
|
375 | - $result = array_merge( $result, |
|
374 | + if ($this->checkReferences) { |
|
375 | + $result = array_merge($result, |
|
376 | 376 | $this->checkConstraintsForReferences( |
377 | 377 | $entity, |
378 | 378 | $statement, |
379 | 379 | $constraintIds, |
380 | 380 | $defaultResultsPerContext |
381 | - ) ); |
|
381 | + )); |
|
382 | 382 | } |
383 | 383 | |
384 | 384 | return $result; |
@@ -393,12 +393,12 @@ discard block |
||
393 | 393 | * @param string[]|null $constraintIds |
394 | 394 | * @return Constraint[] |
395 | 395 | */ |
396 | - private function getConstraintsToUse( PropertyId $propertyId, array $constraintIds = null ) { |
|
397 | - $constraints = $this->constraintLookup->queryConstraintsForProperty( $propertyId ); |
|
398 | - if ( $constraintIds !== null ) { |
|
396 | + private function getConstraintsToUse(PropertyId $propertyId, array $constraintIds = null) { |
|
397 | + $constraints = $this->constraintLookup->queryConstraintsForProperty($propertyId); |
|
398 | + if ($constraintIds !== null) { |
|
399 | 399 | $constraintsToUse = []; |
400 | - foreach ( $constraints as $constraint ) { |
|
401 | - if ( in_array( $constraint->getConstraintId(), $constraintIds ) ) { |
|
400 | + foreach ($constraints as $constraint) { |
|
401 | + if (in_array($constraint->getConstraintId(), $constraintIds)) { |
|
402 | 402 | $constraintsToUse[] = $constraint; |
403 | 403 | } |
404 | 404 | } |
@@ -422,29 +422,29 @@ discard block |
||
422 | 422 | array $constraintIds = null, |
423 | 423 | callable $defaultResults = null |
424 | 424 | ) { |
425 | - $context = new MainSnakContext( $entity, $statement ); |
|
425 | + $context = new MainSnakContext($entity, $statement); |
|
426 | 426 | $constraints = $this->getConstraintsToUse( |
427 | 427 | $statement->getPropertyId(), |
428 | 428 | $constraintIds |
429 | 429 | ); |
430 | - $result = $defaultResults !== null ? $defaultResults( $context ) : []; |
|
430 | + $result = $defaultResults !== null ? $defaultResults($context) : []; |
|
431 | 431 | |
432 | - foreach ( $constraints as $constraint ) { |
|
432 | + foreach ($constraints as $constraint) { |
|
433 | 433 | $parameters = $constraint->getConstraintParameters(); |
434 | 434 | try { |
435 | - $exceptions = $this->constraintParameterParser->parseExceptionParameter( $parameters ); |
|
436 | - } catch ( ConstraintParameterException $e ) { |
|
437 | - $result[] = new CheckResult( $context, $constraint, [], CheckResult::STATUS_BAD_PARAMETERS, $e->getViolationMessage() ); |
|
435 | + $exceptions = $this->constraintParameterParser->parseExceptionParameter($parameters); |
|
436 | + } catch (ConstraintParameterException $e) { |
|
437 | + $result[] = new CheckResult($context, $constraint, [], CheckResult::STATUS_BAD_PARAMETERS, $e->getViolationMessage()); |
|
438 | 438 | continue; |
439 | 439 | } |
440 | 440 | |
441 | - if ( in_array( $entity->getId(), $exceptions ) ) { |
|
442 | - $message = new ViolationMessage( 'wbqc-violation-message-exception' ); |
|
443 | - $result[] = new CheckResult( $context, $constraint, [], CheckResult::STATUS_EXCEPTION, $message ); |
|
441 | + if (in_array($entity->getId(), $exceptions)) { |
|
442 | + $message = new ViolationMessage('wbqc-violation-message-exception'); |
|
443 | + $result[] = new CheckResult($context, $constraint, [], CheckResult::STATUS_EXCEPTION, $message); |
|
444 | 444 | continue; |
445 | 445 | } |
446 | 446 | |
447 | - $result[] = $this->getCheckResultFor( $context, $constraint ); |
|
447 | + $result[] = $this->getCheckResultFor($context, $constraint); |
|
448 | 448 | } |
449 | 449 | |
450 | 450 | return $result; |
@@ -466,24 +466,24 @@ discard block |
||
466 | 466 | ) { |
467 | 467 | $result = []; |
468 | 468 | |
469 | - if ( in_array( |
|
469 | + if (in_array( |
|
470 | 470 | $statement->getPropertyId()->getSerialization(), |
471 | 471 | $this->propertiesWithViolatingQualifiers |
472 | - ) ) { |
|
472 | + )) { |
|
473 | 473 | return $result; |
474 | 474 | } |
475 | 475 | |
476 | - foreach ( $statement->getQualifiers() as $qualifier ) { |
|
477 | - $qualifierContext = new QualifierContext( $entity, $statement, $qualifier ); |
|
478 | - if ( $defaultResultsPerContext !== null ) { |
|
479 | - $result = array_merge( $result, $defaultResultsPerContext( $qualifierContext ) ); |
|
476 | + foreach ($statement->getQualifiers() as $qualifier) { |
|
477 | + $qualifierContext = new QualifierContext($entity, $statement, $qualifier); |
|
478 | + if ($defaultResultsPerContext !== null) { |
|
479 | + $result = array_merge($result, $defaultResultsPerContext($qualifierContext)); |
|
480 | 480 | } |
481 | 481 | $qualifierConstraints = $this->getConstraintsToUse( |
482 | 482 | $qualifierContext->getSnak()->getPropertyId(), |
483 | 483 | $constraintIds |
484 | 484 | ); |
485 | - foreach ( $qualifierConstraints as $qualifierConstraint ) { |
|
486 | - $result[] = $this->getCheckResultFor( $qualifierContext, $qualifierConstraint ); |
|
485 | + foreach ($qualifierConstraints as $qualifierConstraint) { |
|
486 | + $result[] = $this->getCheckResultFor($qualifierContext, $qualifierConstraint); |
|
487 | 487 | } |
488 | 488 | } |
489 | 489 | |
@@ -507,19 +507,19 @@ discard block |
||
507 | 507 | $result = []; |
508 | 508 | |
509 | 509 | /** @var Reference $reference */ |
510 | - foreach ( $statement->getReferences() as $reference ) { |
|
511 | - foreach ( $reference->getSnaks() as $snak ) { |
|
510 | + foreach ($statement->getReferences() as $reference) { |
|
511 | + foreach ($reference->getSnaks() as $snak) { |
|
512 | 512 | $referenceContext = new ReferenceContext( |
513 | 513 | $entity, $statement, $reference, $snak |
514 | 514 | ); |
515 | - if ( $defaultResultsPerContext !== null ) { |
|
516 | - $result = array_merge( $result, $defaultResultsPerContext( $referenceContext ) ); |
|
515 | + if ($defaultResultsPerContext !== null) { |
|
516 | + $result = array_merge($result, $defaultResultsPerContext($referenceContext)); |
|
517 | 517 | } |
518 | 518 | $referenceConstraints = $this->getConstraintsToUse( |
519 | 519 | $referenceContext->getSnak()->getPropertyId(), |
520 | 520 | $constraintIds |
521 | 521 | ); |
522 | - foreach ( $referenceConstraints as $referenceConstraint ) { |
|
522 | + foreach ($referenceConstraints as $referenceConstraint) { |
|
523 | 523 | $result[] = $this->getCheckResultFor( |
524 | 524 | $referenceContext, |
525 | 525 | $referenceConstraint |
@@ -538,65 +538,65 @@ discard block |
||
538 | 538 | * @throws InvalidArgumentException |
539 | 539 | * @return CheckResult |
540 | 540 | */ |
541 | - private function getCheckResultFor( Context $context, Constraint $constraint ) { |
|
542 | - if ( array_key_exists( $constraint->getConstraintTypeItemId(), $this->checkerMap ) ) { |
|
541 | + private function getCheckResultFor(Context $context, Constraint $constraint) { |
|
542 | + if (array_key_exists($constraint->getConstraintTypeItemId(), $this->checkerMap)) { |
|
543 | 543 | $checker = $this->checkerMap[$constraint->getConstraintTypeItemId()]; |
544 | - $result = $this->handleScope( $checker, $context, $constraint ); |
|
544 | + $result = $this->handleScope($checker, $context, $constraint); |
|
545 | 545 | |
546 | - if ( $result !== null ) { |
|
547 | - $this->addMetadata( $context, $result ); |
|
546 | + if ($result !== null) { |
|
547 | + $this->addMetadata($context, $result); |
|
548 | 548 | return $result; |
549 | 549 | } |
550 | 550 | |
551 | - $startTime = microtime( true ); |
|
551 | + $startTime = microtime(true); |
|
552 | 552 | try { |
553 | - $result = $checker->checkConstraint( $context, $constraint ); |
|
554 | - } catch ( ConstraintParameterException $e ) { |
|
555 | - $result = new CheckResult( $context, $constraint, [], CheckResult::STATUS_BAD_PARAMETERS, $e->getViolationMessage() ); |
|
556 | - } catch ( SparqlHelperException $e ) { |
|
557 | - $message = new ViolationMessage( 'wbqc-violation-message-sparql-error' ); |
|
558 | - $result = new CheckResult( $context, $constraint, [], CheckResult::STATUS_VIOLATION, $message ); |
|
553 | + $result = $checker->checkConstraint($context, $constraint); |
|
554 | + } catch (ConstraintParameterException $e) { |
|
555 | + $result = new CheckResult($context, $constraint, [], CheckResult::STATUS_BAD_PARAMETERS, $e->getViolationMessage()); |
|
556 | + } catch (SparqlHelperException $e) { |
|
557 | + $message = new ViolationMessage('wbqc-violation-message-sparql-error'); |
|
558 | + $result = new CheckResult($context, $constraint, [], CheckResult::STATUS_VIOLATION, $message); |
|
559 | 559 | } |
560 | - $endTime = microtime( true ); |
|
560 | + $endTime = microtime(true); |
|
561 | 561 | |
562 | - $this->addMetadata( $context, $result ); |
|
562 | + $this->addMetadata($context, $result); |
|
563 | 563 | |
564 | 564 | try { |
565 | 565 | $constraintStatus = $this->constraintParameterParser |
566 | - ->parseConstraintStatusParameter( $constraint->getConstraintParameters() ); |
|
567 | - } catch ( ConstraintParameterException $e ) { |
|
568 | - $result = new CheckResult( $context, $constraint, [], CheckResult::STATUS_BAD_PARAMETERS, $e->getViolationMessage() ); |
|
566 | + ->parseConstraintStatusParameter($constraint->getConstraintParameters()); |
|
567 | + } catch (ConstraintParameterException $e) { |
|
568 | + $result = new CheckResult($context, $constraint, [], CheckResult::STATUS_BAD_PARAMETERS, $e->getViolationMessage()); |
|
569 | 569 | $constraintStatus = null; |
570 | 570 | } |
571 | - if ( $constraintStatus === null ) { |
|
571 | + if ($constraintStatus === null) { |
|
572 | 572 | // downgrade violation to warning |
573 | - if ( $result->getStatus() === CheckResult::STATUS_VIOLATION ) { |
|
574 | - $result->setStatus( CheckResult::STATUS_WARNING ); |
|
573 | + if ($result->getStatus() === CheckResult::STATUS_VIOLATION) { |
|
574 | + $result->setStatus(CheckResult::STATUS_WARNING); |
|
575 | 575 | } |
576 | 576 | } else { |
577 | - if ( $constraintStatus !== 'mandatory' ) { |
|
577 | + if ($constraintStatus !== 'mandatory') { |
|
578 | 578 | // @codeCoverageIgnoreStart |
579 | 579 | throw new LogicException( |
580 | - "Unknown constraint status '$constraintStatus', " . |
|
580 | + "Unknown constraint status '$constraintStatus', ". |
|
581 | 581 | "only known status is 'mandatory'" |
582 | 582 | ); |
583 | 583 | // @codeCoverageIgnoreEnd |
584 | 584 | } |
585 | - $result->addParameter( 'constraint_status', $constraintStatus ); |
|
585 | + $result->addParameter('constraint_status', $constraintStatus); |
|
586 | 586 | } |
587 | 587 | |
588 | 588 | $this->loggingHelper->logConstraintCheck( |
589 | 589 | $context, |
590 | 590 | $constraint, |
591 | 591 | $result, |
592 | - get_class( $checker ), |
|
592 | + get_class($checker), |
|
593 | 593 | $endTime - $startTime, |
594 | 594 | __METHOD__ |
595 | 595 | ); |
596 | 596 | |
597 | 597 | return $result; |
598 | 598 | } else { |
599 | - return new CheckResult( $context, $constraint, [], CheckResult::STATUS_TODO, null ); |
|
599 | + return new CheckResult($context, $constraint, [], CheckResult::STATUS_TODO, null); |
|
600 | 600 | } |
601 | 601 | } |
602 | 602 | |
@@ -610,29 +610,29 @@ discard block |
||
610 | 610 | $constraint->getConstraintParameters(), |
611 | 611 | $constraint->getConstraintTypeItemId() |
612 | 612 | ); |
613 | - } catch ( ConstraintParameterException $e ) { |
|
614 | - return new CheckResult( $context, $constraint, [], CheckResult::STATUS_BAD_PARAMETERS, $e->getViolationMessage() ); |
|
613 | + } catch (ConstraintParameterException $e) { |
|
614 | + return new CheckResult($context, $constraint, [], CheckResult::STATUS_BAD_PARAMETERS, $e->getViolationMessage()); |
|
615 | 615 | } |
616 | - if ( $checkedContextTypes === null ) { |
|
616 | + if ($checkedContextTypes === null) { |
|
617 | 617 | $checkedContextTypes = $checker->getDefaultContextTypes(); |
618 | 618 | } |
619 | - if ( !in_array( $context->getType(), $checkedContextTypes ) ) { |
|
620 | - return new CheckResult( $context, $constraint, [], CheckResult::STATUS_NOT_IN_SCOPE, null ); |
|
619 | + if (!in_array($context->getType(), $checkedContextTypes)) { |
|
620 | + return new CheckResult($context, $constraint, [], CheckResult::STATUS_NOT_IN_SCOPE, null); |
|
621 | 621 | } |
622 | - if ( $checker->getSupportedContextTypes()[$context->getType()] === CheckResult::STATUS_TODO ) { |
|
623 | - return new CheckResult( $context, $constraint, [], CheckResult::STATUS_TODO, null ); |
|
622 | + if ($checker->getSupportedContextTypes()[$context->getType()] === CheckResult::STATUS_TODO) { |
|
623 | + return new CheckResult($context, $constraint, [], CheckResult::STATUS_TODO, null); |
|
624 | 624 | } |
625 | 625 | return null; |
626 | 626 | } |
627 | 627 | |
628 | - private function addMetadata( Context $context, CheckResult $result ) { |
|
629 | - $result->withMetadata( Metadata::merge( [ |
|
628 | + private function addMetadata(Context $context, CheckResult $result) { |
|
629 | + $result->withMetadata(Metadata::merge([ |
|
630 | 630 | $result->getMetadata(), |
631 | - Metadata::ofDependencyMetadata( DependencyMetadata::merge( [ |
|
632 | - DependencyMetadata::ofEntityId( $context->getEntity()->getId() ), |
|
633 | - DependencyMetadata::ofEntityId( $result->getConstraint()->getPropertyId() ), |
|
634 | - ] ) ), |
|
635 | - ] ) ); |
|
631 | + Metadata::ofDependencyMetadata(DependencyMetadata::merge([ |
|
632 | + DependencyMetadata::ofEntityId($context->getEntity()->getId()), |
|
633 | + DependencyMetadata::ofEntityId($result->getConstraint()->getPropertyId()), |
|
634 | + ])), |
|
635 | + ])); |
|
636 | 636 | } |
637 | 637 | |
638 | 638 | /** |
@@ -640,12 +640,12 @@ discard block |
||
640 | 640 | * |
641 | 641 | * @return CheckResult[] |
642 | 642 | */ |
643 | - private function sortResult( array $result ) { |
|
644 | - if ( count( $result ) < 2 ) { |
|
643 | + private function sortResult(array $result) { |
|
644 | + if (count($result) < 2) { |
|
645 | 645 | return $result; |
646 | 646 | } |
647 | 647 | |
648 | - $sortFunction = function ( CheckResult $a, CheckResult $b ) { |
|
648 | + $sortFunction = function(CheckResult $a, CheckResult $b) { |
|
649 | 649 | $orderNum = 0; |
650 | 650 | $order = [ |
651 | 651 | CheckResult::STATUS_BAD_PARAMETERS => $orderNum++, |
@@ -661,55 +661,55 @@ discard block |
||
661 | 661 | $statusA = $a->getStatus(); |
662 | 662 | $statusB = $b->getStatus(); |
663 | 663 | |
664 | - $orderA = array_key_exists( $statusA, $order ) ? $order[ $statusA ] : $order[ 'other' ]; |
|
665 | - $orderB = array_key_exists( $statusB, $order ) ? $order[ $statusB ] : $order[ 'other' ]; |
|
664 | + $orderA = array_key_exists($statusA, $order) ? $order[$statusA] : $order['other']; |
|
665 | + $orderB = array_key_exists($statusB, $order) ? $order[$statusB] : $order['other']; |
|
666 | 666 | |
667 | - if ( $orderA === $orderB ) { |
|
667 | + if ($orderA === $orderB) { |
|
668 | 668 | $cursorA = $a->getContextCursor(); |
669 | 669 | $cursorB = $b->getContextCursor(); |
670 | 670 | |
671 | - if ( $cursorA instanceof EntityContextCursor ) { |
|
671 | + if ($cursorA instanceof EntityContextCursor) { |
|
672 | 672 | return $cursorB instanceof EntityContextCursor ? 0 : -1; |
673 | 673 | } |
674 | - if ( $cursorB instanceof EntityContextCursor ) { |
|
674 | + if ($cursorB instanceof EntityContextCursor) { |
|
675 | 675 | return $cursorA instanceof EntityContextCursor ? 0 : 1; |
676 | 676 | } |
677 | 677 | |
678 | 678 | $pidA = $cursorA->getSnakPropertyId(); |
679 | 679 | $pidB = $cursorB->getSnakPropertyId(); |
680 | 680 | |
681 | - if ( $pidA === $pidB ) { |
|
681 | + if ($pidA === $pidB) { |
|
682 | 682 | $hashA = $cursorA->getSnakHash(); |
683 | 683 | $hashB = $cursorB->getSnakHash(); |
684 | 684 | |
685 | - if ( $hashA === $hashB ) { |
|
686 | - if ( $a instanceof NullResult ) { |
|
685 | + if ($hashA === $hashB) { |
|
686 | + if ($a instanceof NullResult) { |
|
687 | 687 | return $b instanceof NullResult ? 0 : -1; |
688 | 688 | } |
689 | - if ( $b instanceof NullResult ) { |
|
689 | + if ($b instanceof NullResult) { |
|
690 | 690 | return $a instanceof NullResult ? 0 : 1; |
691 | 691 | } |
692 | 692 | |
693 | 693 | $typeA = $a->getConstraint()->getConstraintTypeItemId(); |
694 | 694 | $typeB = $b->getConstraint()->getConstraintTypeItemId(); |
695 | 695 | |
696 | - if ( $typeA == $typeB ) { |
|
696 | + if ($typeA == $typeB) { |
|
697 | 697 | return 0; |
698 | 698 | } else { |
699 | - return ( $typeA > $typeB ) ? 1 : -1; |
|
699 | + return ($typeA > $typeB) ? 1 : -1; |
|
700 | 700 | } |
701 | 701 | } else { |
702 | - return ( $hashA > $hashB ) ? 1 : -1; |
|
702 | + return ($hashA > $hashB) ? 1 : -1; |
|
703 | 703 | } |
704 | 704 | } else { |
705 | - return ( $pidA > $pidB ) ? 1 : -1; |
|
705 | + return ($pidA > $pidB) ? 1 : -1; |
|
706 | 706 | } |
707 | 707 | } else { |
708 | - return ( $orderA > $orderB ) ? 1 : -1; |
|
708 | + return ($orderA > $orderB) ? 1 : -1; |
|
709 | 709 | } |
710 | 710 | }; |
711 | 711 | |
712 | - uasort( $result, $sortFunction ); |
|
712 | + uasort($result, $sortFunction); |
|
713 | 713 | |
714 | 714 | return $result; |
715 | 715 | } |