@@ -161,19 +161,19 @@ discard block |
||
161 | 161 | $this->loggingHelper = $loggingHelper; |
162 | 162 | $this->defaultUserAgent = $defaultUserAgent; |
163 | 163 | $this->requestFactory = $requestFactory; |
164 | - $this->entityPrefix = $rdfVocabulary->getNamespaceURI( RdfVocabulary::NS_ENTITY ); |
|
164 | + $this->entityPrefix = $rdfVocabulary->getNamespaceURI(RdfVocabulary::NS_ENTITY); |
|
165 | 165 | $this->prefixes = <<<EOT |
166 | -PREFIX wd: <{$rdfVocabulary->getNamespaceURI( RdfVocabulary::NS_ENTITY )}> |
|
167 | -PREFIX wds: <{$rdfVocabulary->getNamespaceURI( RdfVocabulary::NS_STATEMENT )}> |
|
168 | -PREFIX wdt: <{$rdfVocabulary->getNamespaceURI( RdfVocabulary::NSP_DIRECT_CLAIM )}> |
|
169 | -PREFIX wdv: <{$rdfVocabulary->getNamespaceURI( RdfVocabulary::NS_VALUE )}> |
|
170 | -PREFIX p: <{$rdfVocabulary->getNamespaceURI( RdfVocabulary::NSP_CLAIM )}> |
|
171 | -PREFIX ps: <{$rdfVocabulary->getNamespaceURI( RdfVocabulary::NSP_CLAIM_STATEMENT )}> |
|
172 | -PREFIX pq: <{$rdfVocabulary->getNamespaceURI( RdfVocabulary::NSP_QUALIFIER )}> |
|
173 | -PREFIX pqv: <{$rdfVocabulary->getNamespaceURI( RdfVocabulary::NSP_QUALIFIER_VALUE )}> |
|
174 | -PREFIX pr: <{$rdfVocabulary->getNamespaceURI( RdfVocabulary::NSP_REFERENCE )}> |
|
175 | -PREFIX prv: <{$rdfVocabulary->getNamespaceURI( RdfVocabulary::NSP_REFERENCE_VALUE )}> |
|
176 | -PREFIX wikibase: <{$rdfVocabulary->getNamespaceURI( RdfVocabulary::NS_ONTOLOGY )}> |
|
166 | +PREFIX wd: <{$rdfVocabulary->getNamespaceURI(RdfVocabulary::NS_ENTITY)}> |
|
167 | +PREFIX wds: <{$rdfVocabulary->getNamespaceURI(RdfVocabulary::NS_STATEMENT)}> |
|
168 | +PREFIX wdt: <{$rdfVocabulary->getNamespaceURI(RdfVocabulary::NSP_DIRECT_CLAIM)}> |
|
169 | +PREFIX wdv: <{$rdfVocabulary->getNamespaceURI(RdfVocabulary::NS_VALUE)}> |
|
170 | +PREFIX p: <{$rdfVocabulary->getNamespaceURI(RdfVocabulary::NSP_CLAIM)}> |
|
171 | +PREFIX ps: <{$rdfVocabulary->getNamespaceURI(RdfVocabulary::NSP_CLAIM_STATEMENT)}> |
|
172 | +PREFIX pq: <{$rdfVocabulary->getNamespaceURI(RdfVocabulary::NSP_QUALIFIER)}> |
|
173 | +PREFIX pqv: <{$rdfVocabulary->getNamespaceURI(RdfVocabulary::NSP_QUALIFIER_VALUE)}> |
|
174 | +PREFIX pr: <{$rdfVocabulary->getNamespaceURI(RdfVocabulary::NSP_REFERENCE)}> |
|
175 | +PREFIX prv: <{$rdfVocabulary->getNamespaceURI(RdfVocabulary::NSP_REFERENCE_VALUE)}> |
|
176 | +PREFIX wikibase: <{$rdfVocabulary->getNamespaceURI(RdfVocabulary::NS_ONTOLOGY)}> |
|
177 | 177 | EOT; |
178 | 178 | } |
179 | 179 | |
@@ -184,22 +184,21 @@ discard block |
||
184 | 184 | * @return CachedBool |
185 | 185 | * @throws SparqlHelperException if the query times out or some other error occurs |
186 | 186 | */ |
187 | - public function hasType( $id, array $classes ) { |
|
188 | - $subclassOfId = $this->config->get( 'WBQualityConstraintsSubclassOfId' ); |
|
187 | + public function hasType($id, array $classes) { |
|
188 | + $subclassOfId = $this->config->get('WBQualityConstraintsSubclassOfId'); |
|
189 | 189 | // TODO hint:gearing is a workaround for T168973 and can hopefully be removed eventually |
190 | - $gearingHint = $this->config->get( 'WBQualityConstraintsSparqlHasWikibaseSupport' ) ? |
|
191 | - ' hint:Prior hint:gearing "forward".' : |
|
192 | - ''; |
|
190 | + $gearingHint = $this->config->get('WBQualityConstraintsSparqlHasWikibaseSupport') ? |
|
191 | + ' hint:Prior hint:gearing "forward".' : ''; |
|
193 | 192 | |
194 | 193 | $metadatas = []; |
195 | 194 | |
196 | - foreach ( array_chunk( $classes, 20 ) as $classesChunk ) { |
|
197 | - $classesValues = implode( ' ', array_map( |
|
198 | - function( $class ) { |
|
199 | - return 'wd:' . $class; |
|
195 | + foreach (array_chunk($classes, 20) as $classesChunk) { |
|
196 | + $classesValues = implode(' ', array_map( |
|
197 | + function($class) { |
|
198 | + return 'wd:'.$class; |
|
200 | 199 | }, |
201 | 200 | $classesChunk |
202 | - ) ); |
|
201 | + )); |
|
203 | 202 | |
204 | 203 | $query = <<<EOF |
205 | 204 | ASK { |
@@ -209,19 +208,19 @@ discard block |
||
209 | 208 | } |
210 | 209 | EOF; |
211 | 210 | |
212 | - $result = $this->runQuery( $query ); |
|
211 | + $result = $this->runQuery($query); |
|
213 | 212 | $metadatas[] = $result->getMetadata(); |
214 | - if ( $result->getArray()['boolean'] ) { |
|
213 | + if ($result->getArray()['boolean']) { |
|
215 | 214 | return new CachedBool( |
216 | 215 | true, |
217 | - Metadata::merge( $metadatas ) |
|
216 | + Metadata::merge($metadatas) |
|
218 | 217 | ); |
219 | 218 | } |
220 | 219 | } |
221 | 220 | |
222 | 221 | return new CachedBool( |
223 | 222 | false, |
224 | - Metadata::merge( $metadatas ) |
|
223 | + Metadata::merge($metadatas) |
|
225 | 224 | ); |
226 | 225 | } |
227 | 226 | |
@@ -237,10 +236,10 @@ discard block |
||
237 | 236 | $ignoreDeprecatedStatements |
238 | 237 | ) { |
239 | 238 | $pid = $statement->getPropertyId()->serialize(); |
240 | - $guid = str_replace( '$', '-', $statement->getGuid() ); |
|
239 | + $guid = str_replace('$', '-', $statement->getGuid()); |
|
241 | 240 | |
242 | 241 | $deprecatedFilter = ''; |
243 | - if ( $ignoreDeprecatedStatements ) { |
|
242 | + if ($ignoreDeprecatedStatements) { |
|
244 | 243 | $deprecatedFilter = 'MINUS { ?otherStatement wikibase:rank wikibase:DeprecatedRank. }'; |
245 | 244 | } |
246 | 245 | |
@@ -259,9 +258,9 @@ discard block |
||
259 | 258 | LIMIT 10 |
260 | 259 | EOF; |
261 | 260 | |
262 | - $result = $this->runQuery( $query ); |
|
261 | + $result = $this->runQuery($query); |
|
263 | 262 | |
264 | - return $this->getOtherEntities( $result ); |
|
263 | + return $this->getOtherEntities($result); |
|
265 | 264 | } |
266 | 265 | |
267 | 266 | /** |
@@ -286,16 +285,15 @@ discard block |
||
286 | 285 | $dataType = $this->propertyDataTypeLookup->getDataTypeIdForProperty( |
287 | 286 | $snak->getPropertyId() |
288 | 287 | ); |
289 | - list( $value, $isFullValue ) = $this->getRdfLiteral( $dataType, $dataValue ); |
|
290 | - if ( $isFullValue ) { |
|
288 | + list($value, $isFullValue) = $this->getRdfLiteral($dataType, $dataValue); |
|
289 | + if ($isFullValue) { |
|
291 | 290 | $prefix .= 'v'; |
292 | 291 | } |
293 | 292 | $path = $type === Context::TYPE_QUALIFIER ? |
294 | - "$prefix:$pid" : |
|
295 | - "prov:wasDerivedFrom/$prefix:$pid"; |
|
293 | + "$prefix:$pid" : "prov:wasDerivedFrom/$prefix:$pid"; |
|
296 | 294 | |
297 | 295 | $deprecatedFilter = ''; |
298 | - if ( $ignoreDeprecatedStatements ) { |
|
296 | + if ($ignoreDeprecatedStatements) { |
|
299 | 297 | $deprecatedFilter = <<< EOF |
300 | 298 | MINUS { ?otherStatement wikibase:rank wikibase:DeprecatedRank. } |
301 | 299 | EOF; |
@@ -315,9 +313,9 @@ discard block |
||
315 | 313 | LIMIT 10 |
316 | 314 | EOF; |
317 | 315 | |
318 | - $result = $this->runQuery( $query ); |
|
316 | + $result = $this->runQuery($query); |
|
319 | 317 | |
320 | - return $this->getOtherEntities( $result ); |
|
318 | + return $this->getOtherEntities($result); |
|
321 | 319 | } |
322 | 320 | |
323 | 321 | /** |
@@ -327,8 +325,8 @@ discard block |
||
327 | 325 | * |
328 | 326 | * @return string |
329 | 327 | */ |
330 | - private function stringLiteral( $text ) { |
|
331 | - return '"' . strtr( $text, [ '"' => '\\"', '\\' => '\\\\' ] ) . '"'; |
|
328 | + private function stringLiteral($text) { |
|
329 | + return '"'.strtr($text, ['"' => '\\"', '\\' => '\\\\']).'"'; |
|
332 | 330 | } |
333 | 331 | |
334 | 332 | /** |
@@ -338,17 +336,17 @@ discard block |
||
338 | 336 | * |
339 | 337 | * @return CachedEntityIds |
340 | 338 | */ |
341 | - private function getOtherEntities( CachedQueryResults $results ) { |
|
342 | - return new CachedEntityIds( array_map( |
|
343 | - function ( $resultBindings ) { |
|
339 | + private function getOtherEntities(CachedQueryResults $results) { |
|
340 | + return new CachedEntityIds(array_map( |
|
341 | + function($resultBindings) { |
|
344 | 342 | $entityIRI = $resultBindings['otherEntity']['value']; |
345 | - $entityPrefixLength = strlen( $this->entityPrefix ); |
|
346 | - if ( substr( $entityIRI, 0, $entityPrefixLength ) === $this->entityPrefix ) { |
|
343 | + $entityPrefixLength = strlen($this->entityPrefix); |
|
344 | + if (substr($entityIRI, 0, $entityPrefixLength) === $this->entityPrefix) { |
|
347 | 345 | try { |
348 | 346 | return $this->entityIdParser->parse( |
349 | - substr( $entityIRI, $entityPrefixLength ) |
|
347 | + substr($entityIRI, $entityPrefixLength) |
|
350 | 348 | ); |
351 | - } catch ( EntityIdParsingException $e ) { |
|
349 | + } catch (EntityIdParsingException $e) { |
|
352 | 350 | // fall through |
353 | 351 | } |
354 | 352 | } |
@@ -356,7 +354,7 @@ discard block |
||
356 | 354 | return null; |
357 | 355 | }, |
358 | 356 | $results->getArray()['results']['bindings'] |
359 | - ), $results->getMetadata() ); |
|
357 | + ), $results->getMetadata()); |
|
360 | 358 | } |
361 | 359 | |
362 | 360 | // @codingStandardsIgnoreStart cyclomatic complexity of this function is too high |
@@ -369,47 +367,47 @@ discard block |
||
369 | 367 | * @return array the literal or IRI as a string in SPARQL syntax, |
370 | 368 | * and a boolean indicating whether it refers to a full value node or not |
371 | 369 | */ |
372 | - private function getRdfLiteral( $dataType, DataValue $dataValue ) { |
|
373 | - switch ( $dataType ) { |
|
370 | + private function getRdfLiteral($dataType, DataValue $dataValue) { |
|
371 | + switch ($dataType) { |
|
374 | 372 | case 'string': |
375 | 373 | case 'external-id': |
376 | - return [ $this->stringLiteral( $dataValue->getValue() ), false ]; |
|
374 | + return [$this->stringLiteral($dataValue->getValue()), false]; |
|
377 | 375 | case 'commonsMedia': |
378 | - $url = $this->rdfVocabulary->getMediaFileURI( $dataValue->getValue() ); |
|
379 | - return [ '<' . $url . '>', false ]; |
|
376 | + $url = $this->rdfVocabulary->getMediaFileURI($dataValue->getValue()); |
|
377 | + return ['<'.$url.'>', false]; |
|
380 | 378 | case 'geo-shape': |
381 | - $url = $this->rdfVocabulary->getGeoShapeURI( $dataValue->getValue() ); |
|
382 | - return [ '<' . $url . '>', false ]; |
|
379 | + $url = $this->rdfVocabulary->getGeoShapeURI($dataValue->getValue()); |
|
380 | + return ['<'.$url.'>', false]; |
|
383 | 381 | case 'tabular-data': |
384 | - $url = $this->rdfVocabulary->getTabularDataURI( $dataValue->getValue() ); |
|
385 | - return [ '<' . $url . '>', false ]; |
|
382 | + $url = $this->rdfVocabulary->getTabularDataURI($dataValue->getValue()); |
|
383 | + return ['<'.$url.'>', false]; |
|
386 | 384 | case 'url': |
387 | 385 | $url = $dataValue->getValue(); |
388 | - if ( !preg_match( '/^[^<>"{}\\\\|^`\\x00-\\x20]*$/D', $url ) ) { |
|
386 | + if (!preg_match('/^[^<>"{}\\\\|^`\\x00-\\x20]*$/D', $url)) { |
|
389 | 387 | // not a valid URL for SPARQL (see SPARQL spec, production 139 IRIREF) |
390 | 388 | // such an URL should never reach us, so just throw |
391 | - throw new InvalidArgumentException( 'invalid URL: ' . $url ); |
|
389 | + throw new InvalidArgumentException('invalid URL: '.$url); |
|
392 | 390 | } |
393 | - return [ '<' . $url . '>', false ]; |
|
391 | + return ['<'.$url.'>', false]; |
|
394 | 392 | case 'wikibase-item': |
395 | 393 | case 'wikibase-property': |
396 | 394 | /** @var EntityIdValue $dataValue */ |
397 | - return [ 'wd:' . $dataValue->getEntityId()->getSerialization(), false ]; |
|
395 | + return ['wd:'.$dataValue->getEntityId()->getSerialization(), false]; |
|
398 | 396 | case 'monolingualtext': |
399 | 397 | /** @var MonolingualTextValue $dataValue */ |
400 | 398 | $lang = $dataValue->getLanguageCode(); |
401 | - if ( !preg_match( '/^[a-zA-Z]+(-[a-zA-Z0-9]+)*$/D', $lang ) ) { |
|
399 | + if (!preg_match('/^[a-zA-Z]+(-[a-zA-Z0-9]+)*$/D', $lang)) { |
|
402 | 400 | // not a valid language tag for SPARQL (see SPARQL spec, production 145 LANGTAG) |
403 | 401 | // such a language tag should never reach us, so just throw |
404 | - throw new InvalidArgumentException( 'invalid language tag: ' . $lang ); |
|
402 | + throw new InvalidArgumentException('invalid language tag: '.$lang); |
|
405 | 403 | } |
406 | - return [ $this->stringLiteral( $dataValue->getText() ) . '@' . $lang, false ]; |
|
404 | + return [$this->stringLiteral($dataValue->getText()).'@'.$lang, false]; |
|
407 | 405 | case 'globe-coordinate': |
408 | 406 | case 'quantity': |
409 | 407 | case 'time': |
410 | - return [ 'wdv:' . $dataValue->getHash(), true ]; |
|
408 | + return ['wdv:'.$dataValue->getHash(), true]; |
|
411 | 409 | default: |
412 | - throw new InvalidArgumentException( 'unknown data type: ' . $dataType ); |
|
410 | + throw new InvalidArgumentException('unknown data type: '.$dataType); |
|
413 | 411 | } |
414 | 412 | } |
415 | 413 | // @codingStandardsIgnoreEnd |
@@ -422,44 +420,44 @@ discard block |
||
422 | 420 | * @throws SparqlHelperException if the query times out or some other error occurs |
423 | 421 | * @throws ConstraintParameterException if the $regex is invalid |
424 | 422 | */ |
425 | - public function matchesRegularExpression( $text, $regex ) { |
|
423 | + public function matchesRegularExpression($text, $regex) { |
|
426 | 424 | // caching wrapper around matchesRegularExpressionWithSparql |
427 | 425 | |
428 | - $textHash = hash( 'sha256', $text ); |
|
426 | + $textHash = hash('sha256', $text); |
|
429 | 427 | $cacheKey = $this->cache->makeKey( |
430 | 428 | 'WikibaseQualityConstraints', // extension |
431 | 429 | 'regex', // action |
432 | 430 | 'WDQS-Java', // regex flavor |
433 | - hash( 'sha256', $regex ) |
|
431 | + hash('sha256', $regex) |
|
434 | 432 | ); |
435 | - $cacheMapSize = $this->config->get( 'WBQualityConstraintsFormatCacheMapSize' ); |
|
433 | + $cacheMapSize = $this->config->get('WBQualityConstraintsFormatCacheMapSize'); |
|
436 | 434 | |
437 | 435 | $cacheMapArray = $this->cache->getWithSetCallback( |
438 | 436 | $cacheKey, |
439 | 437 | WANObjectCache::TTL_DAY, |
440 | - function( $cacheMapArray ) use ( $text, $regex, $textHash, $cacheMapSize ) { |
|
438 | + function($cacheMapArray) use ($text, $regex, $textHash, $cacheMapSize) { |
|
441 | 439 | // Initialize the cache map if not set |
442 | - if ( $cacheMapArray === false ) { |
|
440 | + if ($cacheMapArray === false) { |
|
443 | 441 | $key = 'wikibase.quality.constraints.regex.cache.refresh.init'; |
444 | - $this->dataFactory->increment( $key ); |
|
442 | + $this->dataFactory->increment($key); |
|
445 | 443 | return []; |
446 | 444 | } |
447 | 445 | |
448 | 446 | $key = 'wikibase.quality.constraints.regex.cache.refresh'; |
449 | - $this->dataFactory->increment( $key ); |
|
450 | - $cacheMap = MapCacheLRU::newFromArray( $cacheMapArray, $cacheMapSize ); |
|
451 | - if ( $cacheMap->has( $textHash ) ) { |
|
447 | + $this->dataFactory->increment($key); |
|
448 | + $cacheMap = MapCacheLRU::newFromArray($cacheMapArray, $cacheMapSize); |
|
449 | + if ($cacheMap->has($textHash)) { |
|
452 | 450 | $key = 'wikibase.quality.constraints.regex.cache.refresh.hit'; |
453 | - $this->dataFactory->increment( $key ); |
|
454 | - $cacheMap->get( $textHash ); // ping cache |
|
451 | + $this->dataFactory->increment($key); |
|
452 | + $cacheMap->get($textHash); // ping cache |
|
455 | 453 | } else { |
456 | 454 | $key = 'wikibase.quality.constraints.regex.cache.refresh.miss'; |
457 | - $this->dataFactory->increment( $key ); |
|
455 | + $this->dataFactory->increment($key); |
|
458 | 456 | try { |
459 | - $matches = $this->matchesRegularExpressionWithSparql( $text, $regex ); |
|
460 | - } catch ( ConstraintParameterException $e ) { |
|
461 | - $matches = $this->serializeConstraintParameterException( $e ); |
|
462 | - } catch ( SparqlHelperException $e ) { |
|
457 | + $matches = $this->matchesRegularExpressionWithSparql($text, $regex); |
|
458 | + } catch (ConstraintParameterException $e) { |
|
459 | + $matches = $this->serializeConstraintParameterException($e); |
|
460 | + } catch (SparqlHelperException $e) { |
|
463 | 461 | // don’t cache this |
464 | 462 | return $cacheMap->toArray(); |
465 | 463 | } |
@@ -483,42 +481,42 @@ discard block |
||
483 | 481 | ] |
484 | 482 | ); |
485 | 483 | |
486 | - if ( isset( $cacheMapArray[$textHash] ) ) { |
|
484 | + if (isset($cacheMapArray[$textHash])) { |
|
487 | 485 | $key = 'wikibase.quality.constraints.regex.cache.hit'; |
488 | - $this->dataFactory->increment( $key ); |
|
486 | + $this->dataFactory->increment($key); |
|
489 | 487 | $matches = $cacheMapArray[$textHash]; |
490 | - if ( is_bool( $matches ) ) { |
|
488 | + if (is_bool($matches)) { |
|
491 | 489 | return $matches; |
492 | - } elseif ( is_array( $matches ) && |
|
493 | - $matches['type'] == ConstraintParameterException::class ) { |
|
494 | - throw $this->deserializeConstraintParameterException( $matches ); |
|
490 | + } elseif (is_array($matches) && |
|
491 | + $matches['type'] == ConstraintParameterException::class) { |
|
492 | + throw $this->deserializeConstraintParameterException($matches); |
|
495 | 493 | } else { |
496 | 494 | throw new MWException( |
497 | - 'Value of unknown type in object cache (' . |
|
498 | - 'cache key: ' . $cacheKey . ', ' . |
|
499 | - 'cache map key: ' . $textHash . ', ' . |
|
500 | - 'value type: ' . gettype( $matches ) . ')' |
|
495 | + 'Value of unknown type in object cache ('. |
|
496 | + 'cache key: '.$cacheKey.', '. |
|
497 | + 'cache map key: '.$textHash.', '. |
|
498 | + 'value type: '.gettype($matches).')' |
|
501 | 499 | ); |
502 | 500 | } |
503 | 501 | } else { |
504 | 502 | $key = 'wikibase.quality.constraints.regex.cache.miss'; |
505 | - $this->dataFactory->increment( $key ); |
|
506 | - return $this->matchesRegularExpressionWithSparql( $text, $regex ); |
|
503 | + $this->dataFactory->increment($key); |
|
504 | + return $this->matchesRegularExpressionWithSparql($text, $regex); |
|
507 | 505 | } |
508 | 506 | } |
509 | 507 | |
510 | - private function serializeConstraintParameterException( ConstraintParameterException $cpe ) { |
|
508 | + private function serializeConstraintParameterException(ConstraintParameterException $cpe) { |
|
511 | 509 | return [ |
512 | 510 | 'type' => ConstraintParameterException::class, |
513 | - 'violationMessage' => $this->violationMessageSerializer->serialize( $cpe->getViolationMessage() ), |
|
511 | + 'violationMessage' => $this->violationMessageSerializer->serialize($cpe->getViolationMessage()), |
|
514 | 512 | ]; |
515 | 513 | } |
516 | 514 | |
517 | - private function deserializeConstraintParameterException( array $serialization ) { |
|
515 | + private function deserializeConstraintParameterException(array $serialization) { |
|
518 | 516 | $message = $this->violationMessageDeserializer->deserialize( |
519 | 517 | $serialization['violationMessage'] |
520 | 518 | ); |
521 | - return new ConstraintParameterException( $message ); |
|
519 | + return new ConstraintParameterException($message); |
|
522 | 520 | } |
523 | 521 | |
524 | 522 | /** |
@@ -532,25 +530,25 @@ discard block |
||
532 | 530 | * @throws SparqlHelperException if the query times out or some other error occurs |
533 | 531 | * @throws ConstraintParameterException if the $regex is invalid |
534 | 532 | */ |
535 | - public function matchesRegularExpressionWithSparql( $text, $regex ) { |
|
536 | - $textStringLiteral = $this->stringLiteral( $text ); |
|
537 | - $regexStringLiteral = $this->stringLiteral( '^(?:' . $regex . ')$' ); |
|
533 | + public function matchesRegularExpressionWithSparql($text, $regex) { |
|
534 | + $textStringLiteral = $this->stringLiteral($text); |
|
535 | + $regexStringLiteral = $this->stringLiteral('^(?:'.$regex.')$'); |
|
538 | 536 | |
539 | 537 | $query = <<<EOF |
540 | 538 | SELECT (REGEX($textStringLiteral, $regexStringLiteral) AS ?matches) {} |
541 | 539 | EOF; |
542 | 540 | |
543 | - $result = $this->runQuery( $query, false ); |
|
541 | + $result = $this->runQuery($query, false); |
|
544 | 542 | |
545 | 543 | $vars = $result->getArray()['results']['bindings'][0]; |
546 | - if ( array_key_exists( 'matches', $vars ) ) { |
|
544 | + if (array_key_exists('matches', $vars)) { |
|
547 | 545 | // true or false ⇒ regex okay, text matches or not |
548 | 546 | return $vars['matches']['value'] === 'true'; |
549 | 547 | } else { |
550 | 548 | // empty result: regex broken |
551 | 549 | throw new ConstraintParameterException( |
552 | - ( new ViolationMessage( 'wbqc-violation-message-parameter-regex' ) ) |
|
553 | - ->withInlineCode( $regex, Role::CONSTRAINT_PARAMETER_VALUE ) |
|
550 | + (new ViolationMessage('wbqc-violation-message-parameter-regex')) |
|
551 | + ->withInlineCode($regex, Role::CONSTRAINT_PARAMETER_VALUE) |
|
554 | 552 | ); |
555 | 553 | } |
556 | 554 | } |
@@ -562,14 +560,14 @@ discard block |
||
562 | 560 | * |
563 | 561 | * @return boolean |
564 | 562 | */ |
565 | - public function isTimeout( $responseContent ) { |
|
566 | - $timeoutRegex = implode( '|', array_map( |
|
567 | - function ( $fqn ) { |
|
568 | - return preg_quote( $fqn, '/' ); |
|
563 | + public function isTimeout($responseContent) { |
|
564 | + $timeoutRegex = implode('|', array_map( |
|
565 | + function($fqn) { |
|
566 | + return preg_quote($fqn, '/'); |
|
569 | 567 | }, |
570 | - $this->config->get( 'WBQualityConstraintsSparqlTimeoutExceptionClasses' ) |
|
571 | - ) ); |
|
572 | - return (bool)preg_match( '/' . $timeoutRegex . '/', $responseContent ); |
|
568 | + $this->config->get('WBQualityConstraintsSparqlTimeoutExceptionClasses') |
|
569 | + )); |
|
570 | + return (bool) preg_match('/'.$timeoutRegex.'/', $responseContent); |
|
573 | 571 | } |
574 | 572 | |
575 | 573 | /** |
@@ -581,17 +579,17 @@ discard block |
||
581 | 579 | * @return int|boolean the max-age (in seconds) |
582 | 580 | * or a plain boolean if no max-age can be determined |
583 | 581 | */ |
584 | - public function getCacheMaxAge( $responseHeaders ) { |
|
582 | + public function getCacheMaxAge($responseHeaders) { |
|
585 | 583 | if ( |
586 | - array_key_exists( 'x-cache-status', $responseHeaders ) && |
|
587 | - preg_match( '/^hit(?:-.*)?$/', $responseHeaders['x-cache-status'][0] ) |
|
584 | + array_key_exists('x-cache-status', $responseHeaders) && |
|
585 | + preg_match('/^hit(?:-.*)?$/', $responseHeaders['x-cache-status'][0]) |
|
588 | 586 | ) { |
589 | 587 | $maxage = []; |
590 | 588 | if ( |
591 | - array_key_exists( 'cache-control', $responseHeaders ) && |
|
592 | - preg_match( '/\bmax-age=(\d+)\b/', $responseHeaders['cache-control'][0], $maxage ) |
|
589 | + array_key_exists('cache-control', $responseHeaders) && |
|
590 | + preg_match('/\bmax-age=(\d+)\b/', $responseHeaders['cache-control'][0], $maxage) |
|
593 | 591 | ) { |
594 | - return intval( $maxage[1] ); |
|
592 | + return intval($maxage[1]); |
|
595 | 593 | } else { |
596 | 594 | return true; |
597 | 595 | } |
@@ -613,33 +611,33 @@ discard block |
||
613 | 611 | * or SparlHelper::INVALID_RETRY_AFTER if there is something wrong with the format |
614 | 612 | * |
615 | 613 | */ |
616 | - public function getThrottling( array $responseHeaders ) { |
|
617 | - if ( !array_key_exists( 'Retry-After', $responseHeaders ) ) { |
|
614 | + public function getThrottling(array $responseHeaders) { |
|
615 | + if (!array_key_exists('Retry-After', $responseHeaders)) { |
|
618 | 616 | return self::NO_RETRY_AFTER; |
619 | 617 | } |
620 | 618 | |
621 | - $trimmedRetryAfterValue = trim( $responseHeaders[ 'Retry-After' ] ); |
|
622 | - if ( empty( $trimmedRetryAfterValue ) ) { |
|
619 | + $trimmedRetryAfterValue = trim($responseHeaders['Retry-After']); |
|
620 | + if (empty($trimmedRetryAfterValue)) { |
|
623 | 621 | return self::EMPTY_RETRY_AFTER; |
624 | 622 | } |
625 | 623 | |
626 | - if ( is_numeric( $trimmedRetryAfterValue ) ) { |
|
627 | - $delaySeconds = (int)$trimmedRetryAfterValue; |
|
628 | - if ( $delaySeconds >= 0 ) { |
|
629 | - return $this->getTimestampInFuture( new DateInterval( 'PT' . $delaySeconds . 'S' ) ); |
|
624 | + if (is_numeric($trimmedRetryAfterValue)) { |
|
625 | + $delaySeconds = (int) $trimmedRetryAfterValue; |
|
626 | + if ($delaySeconds >= 0) { |
|
627 | + return $this->getTimestampInFuture(new DateInterval('PT'.$delaySeconds.'S')); |
|
630 | 628 | } |
631 | 629 | } else { |
632 | - $return = strtotime( $responseHeaders[ 'Retry-After' ] ); |
|
633 | - if ( !empty( $return ) ) { |
|
634 | - return new ConvertibleTimestamp( $return ); |
|
630 | + $return = strtotime($responseHeaders['Retry-After']); |
|
631 | + if (!empty($return)) { |
|
632 | + return new ConvertibleTimestamp($return); |
|
635 | 633 | } |
636 | 634 | } |
637 | 635 | return self::INVALID_RETRY_AFTER; |
638 | 636 | } |
639 | 637 | |
640 | - private function getTimestampInFuture( DateInterval $delta ) { |
|
638 | + private function getTimestampInFuture(DateInterval $delta) { |
|
641 | 639 | $now = new ConvertibleTimestamp(); |
642 | - return new ConvertibleTimestamp( $now->timestamp->add( $delta ) ); |
|
640 | + return new ConvertibleTimestamp($now->timestamp->add($delta)); |
|
643 | 641 | } |
644 | 642 | |
645 | 643 | /** |
@@ -653,97 +651,96 @@ discard block |
||
653 | 651 | * |
654 | 652 | * @throws SparqlHelperException if the query times out or some other error occurs |
655 | 653 | */ |
656 | - public function runQuery( $query, $needsPrefixes = true ) { |
|
654 | + public function runQuery($query, $needsPrefixes = true) { |
|
657 | 655 | |
658 | - if ( $this->throttlingLock->isLocked( self::EXPIRY_LOCK_ID ) ) { |
|
659 | - $this->dataFactory->increment( 'wikibase.quality.constraints.sparql.throttling' ); |
|
656 | + if ($this->throttlingLock->isLocked(self::EXPIRY_LOCK_ID)) { |
|
657 | + $this->dataFactory->increment('wikibase.quality.constraints.sparql.throttling'); |
|
660 | 658 | throw new TooManySparqlRequestsException(); |
661 | 659 | } |
662 | 660 | |
663 | - $endpoint = $this->config->get( 'WBQualityConstraintsSparqlEndpoint' ); |
|
664 | - $maxQueryTimeMillis = $this->config->get( 'WBQualityConstraintsSparqlMaxMillis' ); |
|
665 | - $fallbackBlockDuration = (int)$this->config->get( 'WBQualityConstraintsSparqlThrottlingFallbackDuration' ); |
|
661 | + $endpoint = $this->config->get('WBQualityConstraintsSparqlEndpoint'); |
|
662 | + $maxQueryTimeMillis = $this->config->get('WBQualityConstraintsSparqlMaxMillis'); |
|
663 | + $fallbackBlockDuration = (int) $this->config->get('WBQualityConstraintsSparqlThrottlingFallbackDuration'); |
|
666 | 664 | |
667 | - if ( $fallbackBlockDuration < 0 ) { |
|
668 | - throw new InvalidArgumentException( 'Fallback duration must be positive int but is: '. |
|
669 | - $fallbackBlockDuration ); |
|
665 | + if ($fallbackBlockDuration < 0) { |
|
666 | + throw new InvalidArgumentException('Fallback duration must be positive int but is: '. |
|
667 | + $fallbackBlockDuration); |
|
670 | 668 | } |
671 | 669 | |
672 | - if ( $this->config->get( 'WBQualityConstraintsSparqlHasWikibaseSupport' ) ) { |
|
670 | + if ($this->config->get('WBQualityConstraintsSparqlHasWikibaseSupport')) { |
|
673 | 671 | $needsPrefixes = false; |
674 | 672 | } |
675 | 673 | |
676 | - if ( $needsPrefixes ) { |
|
677 | - $query = $this->prefixes . $query; |
|
674 | + if ($needsPrefixes) { |
|
675 | + $query = $this->prefixes.$query; |
|
678 | 676 | } |
679 | - $query = "#wbqc\n" . $query; |
|
677 | + $query = "#wbqc\n".$query; |
|
680 | 678 | |
681 | - $url = $endpoint . '?' . http_build_query( |
|
679 | + $url = $endpoint.'?'.http_build_query( |
|
682 | 680 | [ |
683 | 681 | 'query' => $query, |
684 | 682 | 'format' => 'json', |
685 | 683 | 'maxQueryTimeMillis' => $maxQueryTimeMillis, |
686 | 684 | ], |
687 | - null, ini_get( 'arg_separator.output' ), |
|
685 | + null, ini_get('arg_separator.output'), |
|
688 | 686 | // encode spaces with %20, not + |
689 | 687 | PHP_QUERY_RFC3986 |
690 | 688 | ); |
691 | 689 | |
692 | 690 | $options = [ |
693 | 691 | 'method' => 'GET', |
694 | - 'timeout' => (int)round( ( $maxQueryTimeMillis + 1000 ) / 1000 ), |
|
692 | + 'timeout' => (int) round(($maxQueryTimeMillis + 1000) / 1000), |
|
695 | 693 | 'connectTimeout' => 'default', |
696 | 694 | 'userAgent' => $this->defaultUserAgent, |
697 | 695 | ]; |
698 | - $request = $this->requestFactory->create( $url, $options ); |
|
699 | - $startTime = microtime( true ); |
|
696 | + $request = $this->requestFactory->create($url, $options); |
|
697 | + $startTime = microtime(true); |
|
700 | 698 | $status = $request->execute(); |
701 | - $endTime = microtime( true ); |
|
699 | + $endTime = microtime(true); |
|
702 | 700 | $this->dataFactory->timing( |
703 | 701 | 'wikibase.quality.constraints.sparql.timing', |
704 | - ( $endTime - $startTime ) * 1000 |
|
702 | + ($endTime - $startTime) * 1000 |
|
705 | 703 | ); |
706 | 704 | |
707 | - if ( $request->getStatus() === self::HTTP_TOO_MANY_REQUESTS ) { |
|
708 | - $this->dataFactory->increment( 'wikibase.quality.constraints.sparql.throttling' ); |
|
709 | - $throttlingUntil = $this->getThrottling( $request->getResponseHeaders() ); |
|
710 | - if ( !( $throttlingUntil instanceof ConvertibleTimestamp ) ) { |
|
711 | - $this->loggingHelper->logSparqlHelperTooManyRequestsRetryAfterInvalid( $request ); |
|
705 | + if ($request->getStatus() === self::HTTP_TOO_MANY_REQUESTS) { |
|
706 | + $this->dataFactory->increment('wikibase.quality.constraints.sparql.throttling'); |
|
707 | + $throttlingUntil = $this->getThrottling($request->getResponseHeaders()); |
|
708 | + if (!($throttlingUntil instanceof ConvertibleTimestamp)) { |
|
709 | + $this->loggingHelper->logSparqlHelperTooManyRequestsRetryAfterInvalid($request); |
|
712 | 710 | $this->throttlingLock->lock( |
713 | 711 | self::EXPIRY_LOCK_ID, |
714 | - $this->getTimestampInFuture( new DateInterval( 'PT' . $fallbackBlockDuration . 'S' ) ) |
|
712 | + $this->getTimestampInFuture(new DateInterval('PT'.$fallbackBlockDuration.'S')) |
|
715 | 713 | ); |
716 | 714 | } else { |
717 | - $this->loggingHelper->logSparqlHelperTooManyRequestsRetryAfterPresent( $throttlingUntil, $request ); |
|
718 | - $this->throttlingLock->lock( self::EXPIRY_LOCK_ID, $throttlingUntil ); |
|
715 | + $this->loggingHelper->logSparqlHelperTooManyRequestsRetryAfterPresent($throttlingUntil, $request); |
|
716 | + $this->throttlingLock->lock(self::EXPIRY_LOCK_ID, $throttlingUntil); |
|
719 | 717 | } |
720 | 718 | throw new TooManySparqlRequestsException(); |
721 | 719 | } |
722 | 720 | |
723 | - $maxAge = $this->getCacheMaxAge( $request->getResponseHeaders() ); |
|
724 | - if ( $maxAge ) { |
|
725 | - $this->dataFactory->increment( 'wikibase.quality.constraints.sparql.cached' ); |
|
721 | + $maxAge = $this->getCacheMaxAge($request->getResponseHeaders()); |
|
722 | + if ($maxAge) { |
|
723 | + $this->dataFactory->increment('wikibase.quality.constraints.sparql.cached'); |
|
726 | 724 | } |
727 | 725 | |
728 | - if ( $status->isOK() ) { |
|
726 | + if ($status->isOK()) { |
|
729 | 727 | $json = $request->getContent(); |
730 | - $arr = json_decode( $json, true ); |
|
728 | + $arr = json_decode($json, true); |
|
731 | 729 | return new CachedQueryResults( |
732 | 730 | $arr, |
733 | 731 | Metadata::ofCachingMetadata( |
734 | 732 | $maxAge ? |
735 | - CachingMetadata::ofMaximumAgeInSeconds( $maxAge ) : |
|
736 | - CachingMetadata::fresh() |
|
733 | + CachingMetadata::ofMaximumAgeInSeconds($maxAge) : CachingMetadata::fresh() |
|
737 | 734 | ) |
738 | 735 | ); |
739 | 736 | } else { |
740 | - $this->dataFactory->increment( 'wikibase.quality.constraints.sparql.error' ); |
|
737 | + $this->dataFactory->increment('wikibase.quality.constraints.sparql.error'); |
|
741 | 738 | |
742 | 739 | $this->dataFactory->increment( |
743 | 740 | "wikibase.quality.constraints.sparql.error.http.{$request->getStatus()}" |
744 | 741 | ); |
745 | 742 | |
746 | - if ( $this->isTimeout( $request->getContent() ) ) { |
|
743 | + if ($this->isTimeout($request->getContent())) { |
|
747 | 744 | $this->dataFactory->increment( |
748 | 745 | 'wikibase.quality.constraints.sparql.error.timeout' |
749 | 746 | ); |
@@ -39,13 +39,13 @@ discard block |
||
39 | 39 | EntityIdLookup $entityIdLookup, |
40 | 40 | RdfVocabulary $rdfVocabulary |
41 | 41 | ) { |
42 | - parent::__construct( $page, $context ); |
|
42 | + parent::__construct($page, $context); |
|
43 | 43 | $this->resultsSource = $resultsSource; |
44 | 44 | $this->entityIdLookup = $entityIdLookup; |
45 | 45 | $this->rdfVocabulary = $rdfVocabulary; |
46 | 46 | } |
47 | 47 | |
48 | - public static function newFromGlobalState( Page $page, IContextSource $context ) { |
|
48 | + public static function newFromGlobalState(Page $page, IContextSource $context) { |
|
49 | 49 | $repo = WikibaseRepo::getDefaultInstance(); |
50 | 50 | |
51 | 51 | return new static( |
@@ -92,8 +92,8 @@ discard block |
||
92 | 92 | * @param string $guid |
93 | 93 | * @return string |
94 | 94 | */ |
95 | - private function cleanupGuid( $guid ) { |
|
96 | - return preg_replace( '/[^\w-]/', '-', $guid ); |
|
95 | + private function cleanupGuid($guid) { |
|
96 | + return preg_replace('/[^\w-]/', '-', $guid); |
|
97 | 97 | } |
98 | 98 | |
99 | 99 | /** |
@@ -105,51 +105,51 @@ discard block |
||
105 | 105 | $response = $this->getRequest()->response(); |
106 | 106 | $this->getOutput()->disable(); |
107 | 107 | |
108 | - if ( !$this->resultsSource instanceof CachingResultsSource ) { |
|
108 | + if (!$this->resultsSource instanceof CachingResultsSource) { |
|
109 | 109 | // TODO: make configurable whether only cached results are returned |
110 | - $response->statusHeader( 501 ); // Not Implemented |
|
110 | + $response->statusHeader(501); // Not Implemented |
|
111 | 111 | return null; |
112 | 112 | } |
113 | 113 | |
114 | - $entityId = $this->entityIdLookup->getEntityIdForTitle( $this->getTitle() ); |
|
115 | - if ( $entityId === null ) { |
|
116 | - $response->statusHeader( 404 ); // Not Found |
|
114 | + $entityId = $this->entityIdLookup->getEntityIdForTitle($this->getTitle()); |
|
115 | + if ($entityId === null) { |
|
116 | + $response->statusHeader(404); // Not Found |
|
117 | 117 | return null; |
118 | 118 | } |
119 | 119 | |
120 | - $results = $this->resultsSource->getStoredResults( $entityId ); |
|
121 | - if ( $results === null ) { |
|
122 | - $response->statusHeader( 204 ); // No Content |
|
120 | + $results = $this->resultsSource->getStoredResults($entityId); |
|
121 | + if ($results === null) { |
|
122 | + $response->statusHeader(204); // No Content |
|
123 | 123 | return null; |
124 | 124 | } |
125 | 125 | |
126 | 126 | $format = 'ttl'; // TODO: make format an option |
127 | 127 | |
128 | 128 | $writerFactory = new RdfWriterFactory(); |
129 | - $formatName = $writerFactory->getFormatName( $format ); |
|
130 | - $contentType = $writerFactory->getMimeTypes( $formatName )[0]; |
|
129 | + $formatName = $writerFactory->getFormatName($format); |
|
130 | + $contentType = $writerFactory->getMimeTypes($formatName)[0]; |
|
131 | 131 | |
132 | - $response->header( "Content-Type: $contentType; charset=UTF-8" ); |
|
132 | + $response->header("Content-Type: $contentType; charset=UTF-8"); |
|
133 | 133 | |
134 | - $writer = $writerFactory->getWriter( $formatName ); |
|
135 | - foreach ( [ RdfVocabulary::NS_STATEMENT, RdfVocabulary::NS_ONTOLOGY ] as $ns ) { |
|
136 | - $writer->prefix( $ns, $this->rdfVocabulary->getNamespaceURI( $ns ) ); |
|
134 | + $writer = $writerFactory->getWriter($formatName); |
|
135 | + foreach ([RdfVocabulary::NS_STATEMENT, RdfVocabulary::NS_ONTOLOGY] as $ns) { |
|
136 | + $writer->prefix($ns, $this->rdfVocabulary->getNamespaceURI($ns)); |
|
137 | 137 | } |
138 | 138 | $writer->start(); |
139 | 139 | |
140 | - foreach ( $results->getArray() as $checkResult ) { |
|
141 | - if ( $checkResult instanceof NullResult ) { |
|
140 | + foreach ($results->getArray() as $checkResult) { |
|
141 | + if ($checkResult instanceof NullResult) { |
|
142 | 142 | continue; |
143 | 143 | } |
144 | - if ( $checkResult->getStatus() === CheckResult::STATUS_BAD_PARAMETERS ) { |
|
144 | + if ($checkResult->getStatus() === CheckResult::STATUS_BAD_PARAMETERS) { |
|
145 | 145 | continue; |
146 | 146 | } |
147 | 147 | |
148 | - $writer->about( RdfVocabulary::NS_STATEMENT, |
|
149 | - $this->cleanupGuid( $checkResult->getContextCursor()->getStatementGuid() ) ) |
|
150 | - ->say( RdfVocabulary::NS_ONTOLOGY, 'hasViolationForConstraint' ) |
|
151 | - ->is( RdfVocabulary::NS_STATEMENT, |
|
152 | - $this->cleanupGuid( $checkResult->getConstraint()->getConstraintId() ) ); |
|
148 | + $writer->about(RdfVocabulary::NS_STATEMENT, |
|
149 | + $this->cleanupGuid($checkResult->getContextCursor()->getStatementGuid())) |
|
150 | + ->say(RdfVocabulary::NS_ONTOLOGY, 'hasViolationForConstraint') |
|
151 | + ->is(RdfVocabulary::NS_STATEMENT, |
|
152 | + $this->cleanupGuid($checkResult->getConstraint()->getConstraintId())); |
|
153 | 153 | } |
154 | 154 | $writer->finish(); |
155 | 155 | echo $writer->drain(); |
@@ -15,10 +15,10 @@ discard block |
||
15 | 15 | use Wikibase\Repo\WikibaseRepo; |
16 | 16 | |
17 | 17 | // @codeCoverageIgnoreStart |
18 | -$basePath = getenv( "MW_INSTALL_PATH" ) !== false |
|
19 | - ? getenv( "MW_INSTALL_PATH" ) : __DIR__ . "/../../.."; |
|
18 | +$basePath = getenv("MW_INSTALL_PATH") !== false |
|
19 | + ? getenv("MW_INSTALL_PATH") : __DIR__."/../../.."; |
|
20 | 20 | |
21 | -require_once $basePath . "/maintenance/Maintenance.php"; |
|
21 | +require_once $basePath."/maintenance/Maintenance.php"; |
|
22 | 22 | // @codeCoverageIgnoreEnd |
23 | 23 | |
24 | 24 | /** |
@@ -52,13 +52,13 @@ discard block |
||
52 | 52 | parent::__construct(); |
53 | 53 | |
54 | 54 | $this->addDescription( |
55 | - 'Import entities needed for constraint checks ' . |
|
55 | + 'Import entities needed for constraint checks '. |
|
56 | 56 | 'from Wikidata into the local repository.' |
57 | 57 | ); |
58 | 58 | $this->addOption( |
59 | 59 | 'config-format', |
60 | - 'The format in which the resulting configuration will be omitted: ' . |
|
61 | - '"globals" for directly settings global variables, suitable for inclusion in LocalSettings.php (default), ' . |
|
60 | + 'The format in which the resulting configuration will be omitted: '. |
|
61 | + '"globals" for directly settings global variables, suitable for inclusion in LocalSettings.php (default), '. |
|
62 | 62 | 'or "wgConf" for printing parts of arrays suitable for inclusion in $wgConf->settings.' |
63 | 63 | ); |
64 | 64 | $this->addOption( |
@@ -75,7 +75,7 @@ discard block |
||
75 | 75 | $this->entitySerializer = $repo->getAllTypesEntitySerializer(); |
76 | 76 | $this->entityDeserializer = $repo->getInternalFormatEntityDeserializer(); |
77 | 77 | $this->entityStore = $repo->getEntityStore(); |
78 | - $this->user = User::newSystemUser( 'WikibaseQualityConstraints importer' ); |
|
78 | + $this->user = User::newSystemUser('WikibaseQualityConstraints importer'); |
|
79 | 79 | } |
80 | 80 | |
81 | 81 | public function execute() { |
@@ -83,20 +83,20 @@ discard block |
||
83 | 83 | |
84 | 84 | $configUpdates = []; |
85 | 85 | |
86 | - $extensionJsonFile = __DIR__ . '/../extension.json'; |
|
87 | - $extensionJsonText = file_get_contents( $extensionJsonFile ); |
|
88 | - $extensionJson = json_decode( $extensionJsonText, /* assoc = */ true ); |
|
89 | - $wikidataEntityIds = $this->getEntitiesToImport( $extensionJson['config'], $this->getConfig() ); |
|
86 | + $extensionJsonFile = __DIR__.'/../extension.json'; |
|
87 | + $extensionJsonText = file_get_contents($extensionJsonFile); |
|
88 | + $extensionJson = json_decode($extensionJsonText, /* assoc = */ true); |
|
89 | + $wikidataEntityIds = $this->getEntitiesToImport($extensionJson['config'], $this->getConfig()); |
|
90 | 90 | |
91 | - foreach ( $wikidataEntityIds as $key => $wikidataEntityId ) { |
|
92 | - $localEntityId = $this->importEntityFromWikidata( $wikidataEntityId ); |
|
91 | + foreach ($wikidataEntityIds as $key => $wikidataEntityId) { |
|
92 | + $localEntityId = $this->importEntityFromWikidata($wikidataEntityId); |
|
93 | 93 | $configUpdates[$key] = [ |
94 | 94 | 'wikidata' => $wikidataEntityId, |
95 | 95 | 'local' => $localEntityId, |
96 | 96 | ]; |
97 | 97 | } |
98 | 98 | |
99 | - $this->outputConfigUpdates( $configUpdates ); |
|
99 | + $this->outputConfigUpdates($configUpdates); |
|
100 | 100 | } |
101 | 101 | |
102 | 102 | /** |
@@ -104,18 +104,18 @@ discard block |
||
104 | 104 | * @param Config $wikiConfig |
105 | 105 | * @return string[] |
106 | 106 | */ |
107 | - private function getEntitiesToImport( array $extensionJsonConfig, Config $wikiConfig ) { |
|
107 | + private function getEntitiesToImport(array $extensionJsonConfig, Config $wikiConfig) { |
|
108 | 108 | $wikidataEntityIds = []; |
109 | 109 | |
110 | - foreach ( $extensionJsonConfig as $key => $value ) { |
|
111 | - if ( !preg_match( '/Id$/', $key ) ) { |
|
110 | + foreach ($extensionJsonConfig as $key => $value) { |
|
111 | + if (!preg_match('/Id$/', $key)) { |
|
112 | 112 | continue; |
113 | 113 | } |
114 | 114 | |
115 | 115 | $wikidataEntityId = $value['value']; |
116 | - $localEntityId = $wikiConfig->get( $key ); |
|
116 | + $localEntityId = $wikiConfig->get($key); |
|
117 | 117 | |
118 | - if ( $localEntityId === $wikidataEntityId ) { |
|
118 | + if ($localEntityId === $wikidataEntityId) { |
|
119 | 119 | $wikidataEntityIds[$key] = $wikidataEntityId; |
120 | 120 | } |
121 | 121 | } |
@@ -127,10 +127,10 @@ discard block |
||
127 | 127 | * @param string $wikidataEntityId |
128 | 128 | * @return string local entity ID |
129 | 129 | */ |
130 | - private function importEntityFromWikidata( $wikidataEntityId ) { |
|
130 | + private function importEntityFromWikidata($wikidataEntityId) { |
|
131 | 131 | $wikidataEntityUrl = "https://www.wikidata.org/wiki/Special:EntityData/$wikidataEntityId.json"; |
132 | - $wikidataEntitiesJson = file_get_contents( $wikidataEntityUrl ); |
|
133 | - return $this->importEntityFromJson( $wikidataEntityId, $wikidataEntitiesJson ); |
|
132 | + $wikidataEntitiesJson = file_get_contents($wikidataEntityUrl); |
|
133 | + return $this->importEntityFromJson($wikidataEntityId, $wikidataEntitiesJson); |
|
134 | 134 | } |
135 | 135 | |
136 | 136 | /** |
@@ -138,23 +138,23 @@ discard block |
||
138 | 138 | * @param string $wikidataEntitiesJson |
139 | 139 | * @return string local entity ID |
140 | 140 | */ |
141 | - private function importEntityFromJson( $wikidataEntityId, $wikidataEntitiesJson ) { |
|
142 | - $wikidataEntityArray = json_decode( $wikidataEntitiesJson, true )['entities'][$wikidataEntityId]; |
|
143 | - $wikidataEntity = $this->entityDeserializer->deserialize( $wikidataEntityArray ); |
|
141 | + private function importEntityFromJson($wikidataEntityId, $wikidataEntitiesJson) { |
|
142 | + $wikidataEntityArray = json_decode($wikidataEntitiesJson, true)['entities'][$wikidataEntityId]; |
|
143 | + $wikidataEntity = $this->entityDeserializer->deserialize($wikidataEntityArray); |
|
144 | 144 | |
145 | - $wikidataEntity->setId( null ); |
|
145 | + $wikidataEntity->setId(null); |
|
146 | 146 | |
147 | - if ( $wikidataEntity instanceof StatementListProvider ) { |
|
147 | + if ($wikidataEntity instanceof StatementListProvider) { |
|
148 | 148 | $wikidataEntity->getStatements()->clear(); |
149 | 149 | } |
150 | 150 | |
151 | - if ( $wikidataEntity instanceof Item ) { |
|
152 | - $wikidataEntity->setSiteLinkList( new SiteLinkList() ); |
|
151 | + if ($wikidataEntity instanceof Item) { |
|
152 | + $wikidataEntity->setSiteLinkList(new SiteLinkList()); |
|
153 | 153 | } |
154 | 154 | |
155 | - if ( $this->getOption( 'dry-run', false ) ) { |
|
156 | - $wikidataEntityJson = json_encode( $this->entitySerializer->serialize( $wikidataEntity ) ); |
|
157 | - $this->output( $wikidataEntityJson . "\n" ); |
|
155 | + if ($this->getOption('dry-run', false)) { |
|
156 | + $wikidataEntityJson = json_encode($this->entitySerializer->serialize($wikidataEntity)); |
|
157 | + $this->output($wikidataEntityJson."\n"); |
|
158 | 158 | return "-$wikidataEntityId"; |
159 | 159 | } |
160 | 160 | |
@@ -167,14 +167,14 @@ discard block |
||
167 | 167 | )->getEntity(); |
168 | 168 | |
169 | 169 | return $localEntity->getId()->getSerialization(); |
170 | - } catch ( StorageException $storageException ) { |
|
170 | + } catch (StorageException $storageException) { |
|
171 | 171 | $message = $storageException->getMessage(); |
172 | 172 | // example message: |
173 | 173 | // * Item [[Item:Q475|Q475]] already has label "as references" associated with language code en, using the same description text. |
174 | 174 | // note that the label and language code may vary (conflicts in any language), |
175 | 175 | // and that the item link may or may not be in the main namespace |
176 | 176 | $pattern = '/[[|]([^]|]*)]] already has label .* using the same description text/'; |
177 | - if ( preg_match( $pattern, $message, $matches ) ) { |
|
177 | + if (preg_match($pattern, $message, $matches)) { |
|
178 | 178 | return $matches[1]; |
179 | 179 | } else { |
180 | 180 | throw $storageException; |
@@ -182,35 +182,35 @@ discard block |
||
182 | 182 | } |
183 | 183 | } |
184 | 184 | |
185 | - private function outputConfigUpdates( array $configUpdates ) { |
|
186 | - $configFormat = $this->getOption( 'config-format', 'globals' ); |
|
187 | - switch ( $configFormat ) { |
|
185 | + private function outputConfigUpdates(array $configUpdates) { |
|
186 | + $configFormat = $this->getOption('config-format', 'globals'); |
|
187 | + switch ($configFormat) { |
|
188 | 188 | case 'globals': |
189 | - $this->outputConfigUpdatesGlobals( $configUpdates ); |
|
189 | + $this->outputConfigUpdatesGlobals($configUpdates); |
|
190 | 190 | break; |
191 | 191 | case 'wgConf': |
192 | - $this->outputConfigUpdatesWgConf( $configUpdates ); |
|
192 | + $this->outputConfigUpdatesWgConf($configUpdates); |
|
193 | 193 | break; |
194 | 194 | default: |
195 | - $this->error( "Invalid config format \"$configFormat\", using \"globals\"" ); |
|
196 | - $this->outputConfigUpdatesGlobals( $configUpdates ); |
|
195 | + $this->error("Invalid config format \"$configFormat\", using \"globals\""); |
|
196 | + $this->outputConfigUpdatesGlobals($configUpdates); |
|
197 | 197 | break; |
198 | 198 | } |
199 | 199 | } |
200 | 200 | |
201 | - private function outputConfigUpdatesGlobals( array $configUpdates ) { |
|
202 | - foreach ( $configUpdates as $key => $value ) { |
|
203 | - $localValueCode = var_export( $value['local'], true ); |
|
204 | - $this->output( "\$wg$key = $localValueCode;\n" ); |
|
201 | + private function outputConfigUpdatesGlobals(array $configUpdates) { |
|
202 | + foreach ($configUpdates as $key => $value) { |
|
203 | + $localValueCode = var_export($value['local'], true); |
|
204 | + $this->output("\$wg$key = $localValueCode;\n"); |
|
205 | 205 | } |
206 | 206 | } |
207 | 207 | |
208 | - private function outputConfigUpdatesWgConf( array $configUpdates ) { |
|
209 | - foreach ( $configUpdates as $key => $value ) { |
|
210 | - $keyCode = var_export( $key, true ); |
|
211 | - $wikidataValueCode = var_export( $value['wikidata'], true ); |
|
212 | - $localValueCode = var_export( $value['local'], true ); |
|
213 | - $wikiIdCode = var_export( wfWikiID(), true ); |
|
208 | + private function outputConfigUpdatesWgConf(array $configUpdates) { |
|
209 | + foreach ($configUpdates as $key => $value) { |
|
210 | + $keyCode = var_export($key, true); |
|
211 | + $wikidataValueCode = var_export($value['wikidata'], true); |
|
212 | + $localValueCode = var_export($value['local'], true); |
|
213 | + $wikiIdCode = var_export(wfWikiID(), true); |
|
214 | 214 | $block = <<< EOF |
215 | 215 | $keyCode => [ |
216 | 216 | 'default' => $wikidataValueCode, |
@@ -219,7 +219,7 @@ discard block |
||
219 | 219 | |
220 | 220 | |
221 | 221 | EOF; |
222 | - $this->output( $block ); |
|
222 | + $this->output($block); |
|
223 | 223 | } |
224 | 224 | } |
225 | 225 |
@@ -80,23 +80,23 @@ discard block |
||
80 | 80 | * @return bool |
81 | 81 | * @throws OverflowException if $entitiesChecked exceeds the configured limit |
82 | 82 | */ |
83 | - private function isSubclassOf( EntityId $comparativeClass, array $classesToCheck, &$entitiesChecked = 0 ) { |
|
84 | - $maxEntities = $this->config->get( 'WBQualityConstraintsTypeCheckMaxEntities' ); |
|
83 | + private function isSubclassOf(EntityId $comparativeClass, array $classesToCheck, &$entitiesChecked = 0) { |
|
84 | + $maxEntities = $this->config->get('WBQualityConstraintsTypeCheckMaxEntities'); |
|
85 | 85 | if ( ++$entitiesChecked > $maxEntities ) { |
86 | - throw new OverflowException( 'Too many entities to check' ); |
|
86 | + throw new OverflowException('Too many entities to check'); |
|
87 | 87 | } |
88 | 88 | |
89 | - $item = $this->entityLookup->getEntity( $comparativeClass ); |
|
90 | - if ( !( $item instanceof StatementListProvider ) ) { |
|
89 | + $item = $this->entityLookup->getEntity($comparativeClass); |
|
90 | + if (!($item instanceof StatementListProvider)) { |
|
91 | 91 | return false; // lookup failed, probably because item doesn't exist |
92 | 92 | } |
93 | 93 | |
94 | - $subclassId = $this->config->get( 'WBQualityConstraintsSubclassOfId' ); |
|
94 | + $subclassId = $this->config->get('WBQualityConstraintsSubclassOfId'); |
|
95 | 95 | /** @var Statement $statement */ |
96 | - foreach ( $item->getStatements()->getByPropertyId( new PropertyId( $subclassId ) ) as $statement ) { |
|
96 | + foreach ($item->getStatements()->getByPropertyId(new PropertyId($subclassId)) as $statement) { |
|
97 | 97 | $mainSnak = $statement->getMainSnak(); |
98 | 98 | |
99 | - if ( !( $this->hasCorrectType( $mainSnak ) ) ) { |
|
99 | + if (!($this->hasCorrectType($mainSnak))) { |
|
100 | 100 | continue; |
101 | 101 | } |
102 | 102 | /** @var PropertyValueSnak $mainSnak */ |
@@ -105,11 +105,11 @@ discard block |
||
105 | 105 | $dataValue = $mainSnak->getDataValue(); |
106 | 106 | $comparativeClass = $dataValue->getEntityId(); |
107 | 107 | |
108 | - if ( in_array( $comparativeClass->getSerialization(), $classesToCheck ) ) { |
|
108 | + if (in_array($comparativeClass->getSerialization(), $classesToCheck)) { |
|
109 | 109 | return true; |
110 | 110 | } |
111 | 111 | |
112 | - if ( $this->isSubclassOf( $comparativeClass, $classesToCheck, $entitiesChecked ) ) { |
|
112 | + if ($this->isSubclassOf($comparativeClass, $classesToCheck, $entitiesChecked)) { |
|
113 | 113 | return true; |
114 | 114 | } |
115 | 115 | } |
@@ -130,48 +130,48 @@ discard block |
||
130 | 130 | * @return CachedBool |
131 | 131 | * @throws SparqlHelperException if SPARQL is used and the query times out or some other error occurs |
132 | 132 | */ |
133 | - public function isSubclassOfWithSparqlFallback( EntityId $comparativeClass, array $classesToCheck ) { |
|
133 | + public function isSubclassOfWithSparqlFallback(EntityId $comparativeClass, array $classesToCheck) { |
|
134 | 134 | try { |
135 | 135 | $entitiesChecked = 0; |
136 | - $start1 = microtime( true ); |
|
137 | - $isSubclass = $this->isSubclassOf( $comparativeClass, $classesToCheck, $entitiesChecked ); |
|
138 | - $end1 = microtime( true ); |
|
136 | + $start1 = microtime(true); |
|
137 | + $isSubclass = $this->isSubclassOf($comparativeClass, $classesToCheck, $entitiesChecked); |
|
138 | + $end1 = microtime(true); |
|
139 | 139 | $this->dataFactory->timing( |
140 | 140 | 'wikibase.quality.constraints.type.php.success.timing', |
141 | - ( $end1 - $start1 ) * 1000 |
|
141 | + ($end1 - $start1) * 1000 |
|
142 | 142 | ); |
143 | 143 | $this->dataFactory->timing( // not really a timing, but works like one (we want percentiles etc.) |
144 | 144 | 'wikibase.quality.constraints.type.php.success.entities', |
145 | 145 | $entitiesChecked |
146 | 146 | ); |
147 | 147 | |
148 | - return new CachedBool( $isSubclass, Metadata::blank() ); |
|
149 | - } catch ( OverflowException $e ) { |
|
150 | - $end1 = microtime( true ); |
|
148 | + return new CachedBool($isSubclass, Metadata::blank()); |
|
149 | + } catch (OverflowException $e) { |
|
150 | + $end1 = microtime(true); |
|
151 | 151 | $this->dataFactory->timing( |
152 | 152 | 'wikibase.quality.constraints.type.php.overflow.timing', |
153 | - ( $end1 - $start1 ) * 1000 |
|
153 | + ($end1 - $start1) * 1000 |
|
154 | 154 | ); |
155 | 155 | |
156 | - if ( !( $this->sparqlHelper instanceof DummySparqlHelper ) ) { |
|
156 | + if (!($this->sparqlHelper instanceof DummySparqlHelper)) { |
|
157 | 157 | $this->dataFactory->increment( |
158 | 158 | 'wikibase.quality.constraints.sparql.typeFallback' |
159 | 159 | ); |
160 | 160 | |
161 | - $start2 = microtime( true ); |
|
161 | + $start2 = microtime(true); |
|
162 | 162 | $hasType = $this->sparqlHelper->hasType( |
163 | 163 | $comparativeClass->getSerialization(), |
164 | 164 | $classesToCheck |
165 | 165 | ); |
166 | - $end2 = microtime( true ); |
|
166 | + $end2 = microtime(true); |
|
167 | 167 | $this->dataFactory->timing( |
168 | 168 | 'wikibase.quality.constraints.type.sparql.success.timing', |
169 | - ( $end2 - $start2 ) * 1000 |
|
169 | + ($end2 - $start2) * 1000 |
|
170 | 170 | ); |
171 | 171 | |
172 | 172 | return $hasType; |
173 | 173 | } else { |
174 | - return new CachedBool( false, Metadata::blank() ); |
|
174 | + return new CachedBool(false, Metadata::blank()); |
|
175 | 175 | } |
176 | 176 | } |
177 | 177 | } |
@@ -189,13 +189,13 @@ discard block |
||
189 | 189 | * @return CachedBool |
190 | 190 | * @throws SparqlHelperException if SPARQL is used and the query times out or some other error occurs |
191 | 191 | */ |
192 | - public function hasClassInRelation( StatementList $statements, array $relationIds, array $classesToCheck ) { |
|
192 | + public function hasClassInRelation(StatementList $statements, array $relationIds, array $classesToCheck) { |
|
193 | 193 | $metadatas = []; |
194 | 194 | |
195 | - foreach ( $this->getStatementsByPropertyIds( $statements, $relationIds ) as $statement ) { |
|
195 | + foreach ($this->getStatementsByPropertyIds($statements, $relationIds) as $statement) { |
|
196 | 196 | $mainSnak = $statement->getMainSnak(); |
197 | 197 | |
198 | - if ( !$this->hasCorrectType( $mainSnak ) ) { |
|
198 | + if (!$this->hasCorrectType($mainSnak)) { |
|
199 | 199 | continue; |
200 | 200 | } |
201 | 201 | /** @var PropertyValueSnak $mainSnak */ |
@@ -204,28 +204,28 @@ discard block |
||
204 | 204 | $dataValue = $mainSnak->getDataValue(); |
205 | 205 | $comparativeClass = $dataValue->getEntityId(); |
206 | 206 | |
207 | - if ( in_array( $comparativeClass->getSerialization(), $classesToCheck ) ) { |
|
207 | + if (in_array($comparativeClass->getSerialization(), $classesToCheck)) { |
|
208 | 208 | // discard $metadatas, we know this is fresh |
209 | - return new CachedBool( true, Metadata::blank() ); |
|
209 | + return new CachedBool(true, Metadata::blank()); |
|
210 | 210 | } |
211 | 211 | |
212 | - $result = $this->isSubclassOfWithSparqlFallback( $comparativeClass, $classesToCheck ); |
|
212 | + $result = $this->isSubclassOfWithSparqlFallback($comparativeClass, $classesToCheck); |
|
213 | 213 | $metadatas[] = $result->getMetadata(); |
214 | - if ( $result->getBool() ) { |
|
214 | + if ($result->getBool()) { |
|
215 | 215 | return new CachedBool( |
216 | 216 | true, |
217 | - Metadata::merge( $metadatas ) |
|
217 | + Metadata::merge($metadatas) |
|
218 | 218 | ); |
219 | 219 | } |
220 | 220 | } |
221 | 221 | |
222 | 222 | return new CachedBool( |
223 | 223 | false, |
224 | - Metadata::merge( $metadatas ) |
|
224 | + Metadata::merge($metadatas) |
|
225 | 225 | ); |
226 | 226 | } |
227 | 227 | |
228 | - private function hasCorrectType( Snak $mainSnak ) { |
|
228 | + private function hasCorrectType(Snak $mainSnak) { |
|
229 | 229 | return $mainSnak instanceof PropertyValueSnak |
230 | 230 | && $mainSnak->getDataValue()->getType() === 'wikibase-entityid'; |
231 | 231 | } |
@@ -242,12 +242,12 @@ discard block |
||
242 | 242 | ) { |
243 | 243 | $statementArrays = []; |
244 | 244 | |
245 | - foreach ( $propertyIdSerializations as $propertyIdSerialization ) { |
|
246 | - $propertyId = new PropertyId( $propertyIdSerialization ); |
|
247 | - $statementArrays[] = $statements->getByPropertyId( $propertyId )->toArray(); |
|
245 | + foreach ($propertyIdSerializations as $propertyIdSerialization) { |
|
246 | + $propertyId = new PropertyId($propertyIdSerialization); |
|
247 | + $statementArrays[] = $statements->getByPropertyId($propertyId)->toArray(); |
|
248 | 248 | } |
249 | 249 | |
250 | - return call_user_func_array( 'array_merge', $statementArrays ); |
|
250 | + return call_user_func_array('array_merge', $statementArrays); |
|
251 | 251 | } |
252 | 252 | |
253 | 253 | /** |
@@ -259,10 +259,10 @@ discard block |
||
259 | 259 | * |
260 | 260 | * @return ViolationMessage |
261 | 261 | */ |
262 | - public function getViolationMessage( PropertyId $propertyId, EntityId $entityId, array $classes, $checker, $relation ) { |
|
262 | + public function getViolationMessage(PropertyId $propertyId, EntityId $entityId, array $classes, $checker, $relation) { |
|
263 | 263 | $classes = array_map( |
264 | - function( $itemIdSerialization ) { |
|
265 | - return new ItemId( $itemIdSerialization ); |
|
264 | + function($itemIdSerialization) { |
|
265 | + return new ItemId($itemIdSerialization); |
|
266 | 266 | }, |
267 | 267 | $classes |
268 | 268 | ); |
@@ -274,10 +274,10 @@ discard block |
||
274 | 274 | // wbqc-violation-message-valueType-instance |
275 | 275 | // wbqc-violation-message-valueType-subclass |
276 | 276 | // wbqc-violation-message-valueType-instanceOrSubclass |
277 | - return ( new ViolationMessage( 'wbqc-violation-message-' . $checker . '-' . $relation ) ) |
|
278 | - ->withEntityId( $propertyId, Role::CONSTRAINT_PROPERTY ) |
|
279 | - ->withEntityId( $entityId, Role::SUBJECT ) |
|
280 | - ->withEntityIdList( $classes, Role::OBJECT ); |
|
277 | + return (new ViolationMessage('wbqc-violation-message-'.$checker.'-'.$relation)) |
|
278 | + ->withEntityId($propertyId, Role::CONSTRAINT_PROPERTY) |
|
279 | + ->withEntityId($entityId, Role::SUBJECT) |
|
280 | + ->withEntityIdList($classes, Role::OBJECT); |
|
281 | 281 | } |
282 | 282 | |
283 | 283 | } |