@@ -38,8 +38,8 @@ discard block |
||
| 38 | 38 | */ |
| 39 | 39 | private const BATCH_SIZE = 50; |
| 40 | 40 | |
| 41 | - public static function newFromGlobalState( Title $title, array $params ) { |
|
| 42 | - Assert::parameterType( 'string', $params['propertyId'], '$params["propertyId"]' ); |
|
| 41 | + public static function newFromGlobalState(Title $title, array $params) { |
|
| 42 | + Assert::parameterType('string', $params['propertyId'], '$params["propertyId"]'); |
|
| 43 | 43 | $services = MediaWikiServices::getInstance(); |
| 44 | 44 | return new UpdateConstraintsTableJob( |
| 45 | 45 | $title, |
@@ -49,8 +49,8 @@ discard block |
||
| 49 | 49 | $services->getMainConfig(), |
| 50 | 50 | ConstraintsServices::getConstraintStore(), |
| 51 | 51 | $services->getDBLoadBalancerFactory(), |
| 52 | - WikibaseRepo::getStore()->getEntityRevisionLookup( Store::LOOKUP_CACHING_DISABLED ), |
|
| 53 | - WikibaseRepo::getBaseDataModelSerializerFactory( $services ) |
|
| 52 | + WikibaseRepo::getStore()->getEntityRevisionLookup(Store::LOOKUP_CACHING_DISABLED), |
|
| 53 | + WikibaseRepo::getBaseDataModelSerializerFactory($services) |
|
| 54 | 54 | ->newSnakSerializer() |
| 55 | 55 | ); |
| 56 | 56 | } |
@@ -110,7 +110,7 @@ discard block |
||
| 110 | 110 | EntityRevisionLookup $entityRevisionLookup, |
| 111 | 111 | Serializer $snakSerializer |
| 112 | 112 | ) { |
| 113 | - parent::__construct( 'constraintsTableUpdate', $title, $params ); |
|
| 113 | + parent::__construct('constraintsTableUpdate', $title, $params); |
|
| 114 | 114 | |
| 115 | 115 | $this->propertyId = $propertyId; |
| 116 | 116 | $this->revisionId = $revisionId; |
@@ -121,11 +121,11 @@ discard block |
||
| 121 | 121 | $this->snakSerializer = $snakSerializer; |
| 122 | 122 | } |
| 123 | 123 | |
| 124 | - public function extractParametersFromQualifiers( SnakList $qualifiers ) { |
|
| 124 | + public function extractParametersFromQualifiers(SnakList $qualifiers) { |
|
| 125 | 125 | $parameters = []; |
| 126 | - foreach ( $qualifiers as $qualifier ) { |
|
| 126 | + foreach ($qualifiers as $qualifier) { |
|
| 127 | 127 | $qualifierId = $qualifier->getPropertyId()->getSerialization(); |
| 128 | - $paramSerialization = $this->snakSerializer->serialize( $qualifier ); |
|
| 128 | + $paramSerialization = $this->snakSerializer->serialize($qualifier); |
|
| 129 | 129 | $parameters[$qualifierId][] = $paramSerialization; |
| 130 | 130 | } |
| 131 | 131 | return $parameters; |
@@ -142,7 +142,7 @@ discard block |
||
| 142 | 142 | '@phan-var \Wikibase\DataModel\Entity\EntityIdValue $dataValue'; |
| 143 | 143 | $entityId = $dataValue->getEntityId(); |
| 144 | 144 | $constraintTypeQid = $entityId->getSerialization(); |
| 145 | - $parameters = $this->extractParametersFromQualifiers( $constraintStatement->getQualifiers() ); |
|
| 145 | + $parameters = $this->extractParametersFromQualifiers($constraintStatement->getQualifiers()); |
|
| 146 | 146 | return new Constraint( |
| 147 | 147 | $constraintId, |
| 148 | 148 | $propertyId, |
@@ -157,25 +157,25 @@ discard block |
||
| 157 | 157 | NumericPropertyId $propertyConstraintPropertyId |
| 158 | 158 | ) { |
| 159 | 159 | $constraintsStatements = $property->getStatements() |
| 160 | - ->getByPropertyId( $propertyConstraintPropertyId ) |
|
| 161 | - ->getByRank( [ Statement::RANK_PREFERRED, Statement::RANK_NORMAL ] ); |
|
| 160 | + ->getByPropertyId($propertyConstraintPropertyId) |
|
| 161 | + ->getByRank([Statement::RANK_PREFERRED, Statement::RANK_NORMAL]); |
|
| 162 | 162 | $constraints = []; |
| 163 | - foreach ( $constraintsStatements->getIterator() as $constraintStatement ) { |
|
| 163 | + foreach ($constraintsStatements->getIterator() as $constraintStatement) { |
|
| 164 | 164 | // @phan-suppress-next-line PhanTypeMismatchArgumentSuperType |
| 165 | - $constraints[] = $this->extractConstraintFromStatement( $property->getId(), $constraintStatement ); |
|
| 166 | - if ( count( $constraints ) >= self::BATCH_SIZE ) { |
|
| 167 | - $constraintStore->insertBatch( $constraints ); |
|
| 165 | + $constraints[] = $this->extractConstraintFromStatement($property->getId(), $constraintStatement); |
|
| 166 | + if (count($constraints) >= self::BATCH_SIZE) { |
|
| 167 | + $constraintStore->insertBatch($constraints); |
|
| 168 | 168 | // interrupt transaction and wait for replication |
| 169 | - $connection = $this->lbFactory->getMainLB()->getConnection( DB_PRIMARY ); |
|
| 170 | - $connection->endAtomic( __CLASS__ ); |
|
| 171 | - if ( !$connection->explicitTrxActive() ) { |
|
| 169 | + $connection = $this->lbFactory->getMainLB()->getConnection(DB_PRIMARY); |
|
| 170 | + $connection->endAtomic(__CLASS__); |
|
| 171 | + if (!$connection->explicitTrxActive()) { |
|
| 172 | 172 | $this->lbFactory->waitForReplication(); |
| 173 | 173 | } |
| 174 | - $connection->startAtomic( __CLASS__ ); |
|
| 174 | + $connection->startAtomic(__CLASS__); |
|
| 175 | 175 | $constraints = []; |
| 176 | 176 | } |
| 177 | 177 | } |
| 178 | - $constraintStore->insertBatch( $constraints ); |
|
| 178 | + $constraintStore->insertBatch($constraints); |
|
| 179 | 179 | } |
| 180 | 180 | |
| 181 | 181 | /** |
@@ -186,24 +186,24 @@ discard block |
||
| 186 | 186 | public function run() { |
| 187 | 187 | // TODO in the future: only touch constraints affected by the edit (requires T163465) |
| 188 | 188 | |
| 189 | - $propertyId = new NumericPropertyId( $this->propertyId ); |
|
| 189 | + $propertyId = new NumericPropertyId($this->propertyId); |
|
| 190 | 190 | $propertyRevision = $this->entityRevisionLookup->getEntityRevision( |
| 191 | 191 | $propertyId, |
| 192 | 192 | 0, // latest |
| 193 | 193 | LookupConstants::LATEST_FROM_REPLICA |
| 194 | 194 | ); |
| 195 | 195 | |
| 196 | - if ( $this->revisionId !== null && $propertyRevision->getRevisionId() < $this->revisionId ) { |
|
| 197 | - JobQueueGroup::singleton()->push( $this ); |
|
| 196 | + if ($this->revisionId !== null && $propertyRevision->getRevisionId() < $this->revisionId) { |
|
| 197 | + JobQueueGroup::singleton()->push($this); |
|
| 198 | 198 | return true; |
| 199 | 199 | } |
| 200 | 200 | |
| 201 | - $connection = $this->lbFactory->getMainLB()->getConnection( DB_PRIMARY ); |
|
| 201 | + $connection = $this->lbFactory->getMainLB()->getConnection(DB_PRIMARY); |
|
| 202 | 202 | // start transaction (if not started yet) – using __CLASS__, not __METHOD__, |
| 203 | 203 | // because importConstraintsForProperty() can interrupt the transaction |
| 204 | - $connection->startAtomic( __CLASS__ ); |
|
| 204 | + $connection->startAtomic(__CLASS__); |
|
| 205 | 205 | |
| 206 | - $this->constraintStore->deleteForProperty( $propertyId ); |
|
| 206 | + $this->constraintStore->deleteForProperty($propertyId); |
|
| 207 | 207 | |
| 208 | 208 | /** @var Property $property */ |
| 209 | 209 | $property = $propertyRevision->getEntity(); |
@@ -211,10 +211,10 @@ discard block |
||
| 211 | 211 | $this->importConstraintsForProperty( |
| 212 | 212 | $property, |
| 213 | 213 | $this->constraintStore, |
| 214 | - new NumericPropertyId( $this->config->get( 'WBQualityConstraintsPropertyConstraintId' ) ) |
|
| 214 | + new NumericPropertyId($this->config->get('WBQualityConstraintsPropertyConstraintId')) |
|
| 215 | 215 | ); |
| 216 | 216 | |
| 217 | - $connection->endAtomic( __CLASS__ ); |
|
| 217 | + $connection->endAtomic(__CLASS__); |
|
| 218 | 218 | |
| 219 | 219 | return true; |
| 220 | 220 | } |
@@ -26,7 +26,7 @@ discard block |
||
| 26 | 26 | /** |
| 27 | 27 | * @param BagOStuff $cache |
| 28 | 28 | */ |
| 29 | - public function __construct( BagOStuff $cache ) { |
|
| 29 | + public function __construct(BagOStuff $cache) { |
|
| 30 | 30 | $this->cache = $cache; |
| 31 | 31 | } |
| 32 | 32 | |
@@ -37,17 +37,17 @@ discard block |
||
| 37 | 37 | * |
| 38 | 38 | * @throws \Wikimedia\Assert\ParameterTypeException |
| 39 | 39 | */ |
| 40 | - private function makeKey( $id ) { |
|
| 41 | - if ( empty( trim( $id ) ) ) { |
|
| 42 | - throw new ParameterTypeException( '$id', 'non-empty string' ); |
|
| 40 | + private function makeKey($id) { |
|
| 41 | + if (empty(trim($id))) { |
|
| 42 | + throw new ParameterTypeException('$id', 'non-empty string'); |
|
| 43 | 43 | } |
| 44 | 44 | |
| 45 | - Assert::parameterType( 'string', $id, '$id' ); |
|
| 45 | + Assert::parameterType('string', $id, '$id'); |
|
| 46 | 46 | |
| 47 | 47 | return $this->cache->makeKey( |
| 48 | 48 | 'WikibaseQualityConstraints', |
| 49 | 49 | 'ExpiryLock', |
| 50 | - (string)$id |
|
| 50 | + (string) $id |
|
| 51 | 51 | ); |
| 52 | 52 | } |
| 53 | 53 | |
@@ -59,15 +59,15 @@ discard block |
||
| 59 | 59 | * |
| 60 | 60 | * @throws \Wikimedia\Assert\ParameterTypeException |
| 61 | 61 | */ |
| 62 | - public function lock( $id, ConvertibleTimestamp $expiryTimestamp ) { |
|
| 62 | + public function lock($id, ConvertibleTimestamp $expiryTimestamp) { |
|
| 63 | 63 | |
| 64 | - $cacheId = $this->makeKey( $id ); |
|
| 64 | + $cacheId = $this->makeKey($id); |
|
| 65 | 65 | |
| 66 | - if ( !$this->isLockedInternal( $cacheId ) ) { |
|
| 66 | + if (!$this->isLockedInternal($cacheId)) { |
|
| 67 | 67 | return $this->cache->set( |
| 68 | 68 | $cacheId, |
| 69 | - $expiryTimestamp->getTimestamp( TS_UNIX ), |
|
| 70 | - (int)$expiryTimestamp->getTimestamp( TS_UNIX ) |
|
| 69 | + $expiryTimestamp->getTimestamp(TS_UNIX), |
|
| 70 | + (int) $expiryTimestamp->getTimestamp(TS_UNIX) |
|
| 71 | 71 | ); |
| 72 | 72 | } else { |
| 73 | 73 | return false; |
@@ -81,20 +81,20 @@ discard block |
||
| 81 | 81 | * |
| 82 | 82 | * @throws \Wikimedia\Assert\ParameterTypeException |
| 83 | 83 | */ |
| 84 | - private function isLockedInternal( $cacheId ) { |
|
| 85 | - $expiryTime = $this->cache->get( $cacheId ); |
|
| 86 | - if ( !$expiryTime ) { |
|
| 84 | + private function isLockedInternal($cacheId) { |
|
| 85 | + $expiryTime = $this->cache->get($cacheId); |
|
| 86 | + if (!$expiryTime) { |
|
| 87 | 87 | return false; |
| 88 | 88 | } |
| 89 | 89 | |
| 90 | 90 | try { |
| 91 | - $lockExpiryTimeStamp = new ConvertibleTimestamp( $expiryTime ); |
|
| 92 | - } catch ( TimestampException $exception ) { |
|
| 91 | + $lockExpiryTimeStamp = new ConvertibleTimestamp($expiryTime); |
|
| 92 | + } catch (TimestampException $exception) { |
|
| 93 | 93 | return false; |
| 94 | 94 | } |
| 95 | 95 | |
| 96 | 96 | $now = new ConvertibleTimestamp(); |
| 97 | - if ( $now->timestamp < $lockExpiryTimeStamp->timestamp ) { |
|
| 97 | + if ($now->timestamp < $lockExpiryTimeStamp->timestamp) { |
|
| 98 | 98 | return true; |
| 99 | 99 | } else { |
| 100 | 100 | return false; |
@@ -108,8 +108,8 @@ discard block |
||
| 108 | 108 | * |
| 109 | 109 | * @throws \Wikimedia\Assert\ParameterTypeException |
| 110 | 110 | */ |
| 111 | - public function isLocked( $id ) { |
|
| 112 | - return $this->isLockedInternal( $this->makeKey( $id ) ); |
|
| 111 | + public function isLocked($id) { |
|
| 112 | + return $this->isLockedInternal($this->makeKey($id)); |
|
| 113 | 113 | } |
| 114 | 114 | |
| 115 | 115 | } |
@@ -71,20 +71,20 @@ discard block |
||
| 71 | 71 | * |
| 72 | 72 | * @return string HTML |
| 73 | 73 | */ |
| 74 | - public function formatValue( $value ) { |
|
| 75 | - if ( is_string( $value ) ) { |
|
| 74 | + public function formatValue($value) { |
|
| 75 | + if (is_string($value)) { |
|
| 76 | 76 | // Cases like 'Format' 'pattern' or 'minimum'/'maximum' values, which we have stored as |
| 77 | 77 | // strings |
| 78 | - return htmlspecialchars( $value ); |
|
| 79 | - } elseif ( $value instanceof EntityId ) { |
|
| 78 | + return htmlspecialchars($value); |
|
| 79 | + } elseif ($value instanceof EntityId) { |
|
| 80 | 80 | // Cases like 'Conflicts with' 'property', to which we can link |
| 81 | - return $this->formatEntityId( $value ); |
|
| 82 | - } elseif ( $value instanceof ItemIdSnakValue ) { |
|
| 81 | + return $this->formatEntityId($value); |
|
| 82 | + } elseif ($value instanceof ItemIdSnakValue) { |
|
| 83 | 83 | // Cases like EntityId but can also be somevalue or novalue |
| 84 | - return $this->formatItemIdSnakValue( $value ); |
|
| 84 | + return $this->formatItemIdSnakValue($value); |
|
| 85 | 85 | } else { |
| 86 | 86 | // Cases where we format a DataValue |
| 87 | - return $this->formatDataValue( $value ); |
|
| 87 | + return $this->formatDataValue($value); |
|
| 88 | 88 | } |
| 89 | 89 | } |
| 90 | 90 | |
@@ -95,23 +95,23 @@ discard block |
||
| 95 | 95 | * |
| 96 | 96 | * @return string|null HTML |
| 97 | 97 | */ |
| 98 | - public function formatParameters( $parameters ) { |
|
| 99 | - if ( $parameters === null || $parameters === [] ) { |
|
| 98 | + public function formatParameters($parameters) { |
|
| 99 | + if ($parameters === null || $parameters === []) { |
|
| 100 | 100 | return null; |
| 101 | 101 | } |
| 102 | 102 | |
| 103 | - $valueFormatter = function ( $value ) { |
|
| 104 | - return $this->formatValue( $value ); |
|
| 103 | + $valueFormatter = function($value) { |
|
| 104 | + return $this->formatValue($value); |
|
| 105 | 105 | }; |
| 106 | 106 | |
| 107 | 107 | $formattedParameters = []; |
| 108 | - foreach ( $parameters as $parameterName => $parameterValue ) { |
|
| 109 | - $formattedParameterValues = implode( ', ', |
|
| 110 | - $this->limitArrayLength( array_map( $valueFormatter, $parameterValue ) ) ); |
|
| 111 | - $formattedParameters[] = sprintf( '%s: %s', $parameterName, $formattedParameterValues ); |
|
| 108 | + foreach ($parameters as $parameterName => $parameterValue) { |
|
| 109 | + $formattedParameterValues = implode(', ', |
|
| 110 | + $this->limitArrayLength(array_map($valueFormatter, $parameterValue))); |
|
| 111 | + $formattedParameters[] = sprintf('%s: %s', $parameterName, $formattedParameterValues); |
|
| 112 | 112 | } |
| 113 | 113 | |
| 114 | - return implode( '; ', $formattedParameters ); |
|
| 114 | + return implode('; ', $formattedParameters); |
|
| 115 | 115 | } |
| 116 | 116 | |
| 117 | 117 | /** |
@@ -121,10 +121,10 @@ discard block |
||
| 121 | 121 | * |
| 122 | 122 | * @return string[] |
| 123 | 123 | */ |
| 124 | - private function limitArrayLength( array $array ) { |
|
| 125 | - if ( count( $array ) > self::MAX_PARAMETER_ARRAY_LENGTH ) { |
|
| 126 | - $array = array_slice( $array, 0, self::MAX_PARAMETER_ARRAY_LENGTH ); |
|
| 127 | - array_push( $array, '...' ); |
|
| 124 | + private function limitArrayLength(array $array) { |
|
| 125 | + if (count($array) > self::MAX_PARAMETER_ARRAY_LENGTH) { |
|
| 126 | + $array = array_slice($array, 0, self::MAX_PARAMETER_ARRAY_LENGTH); |
|
| 127 | + array_push($array, '...'); |
|
| 128 | 128 | } |
| 129 | 129 | |
| 130 | 130 | return $array; |
@@ -134,16 +134,16 @@ discard block |
||
| 134 | 134 | * @param DataValue $value |
| 135 | 135 | * @return string HTML |
| 136 | 136 | */ |
| 137 | - public function formatDataValue( DataValue $value ) { |
|
| 138 | - return $this->dataValueFormatter->format( $value ); |
|
| 137 | + public function formatDataValue(DataValue $value) { |
|
| 138 | + return $this->dataValueFormatter->format($value); |
|
| 139 | 139 | } |
| 140 | 140 | |
| 141 | 141 | /** |
| 142 | 142 | * @param EntityId $entityId |
| 143 | 143 | * @return string HTML |
| 144 | 144 | */ |
| 145 | - public function formatEntityId( EntityId $entityId ) { |
|
| 146 | - return $this->entityIdLabelFormatter->formatEntityId( $entityId ); |
|
| 145 | + public function formatEntityId(EntityId $entityId) { |
|
| 146 | + return $this->entityIdLabelFormatter->formatEntityId($entityId); |
|
| 147 | 147 | } |
| 148 | 148 | |
| 149 | 149 | /** |
@@ -152,17 +152,17 @@ discard block |
||
| 152 | 152 | * @param ItemIdSnakValue $value |
| 153 | 153 | * @return string HTML |
| 154 | 154 | */ |
| 155 | - public function formatItemIdSnakValue( ItemIdSnakValue $value ) { |
|
| 156 | - switch ( true ) { |
|
| 155 | + public function formatItemIdSnakValue(ItemIdSnakValue $value) { |
|
| 156 | + switch (true) { |
|
| 157 | 157 | case $value->isValue(): |
| 158 | - return $this->formatEntityId( $value->getItemId() ); |
|
| 158 | + return $this->formatEntityId($value->getItemId()); |
|
| 159 | 159 | case $value->isSomeValue(): |
| 160 | 160 | return $this->messageLocalizer |
| 161 | - ->msg( 'wikibase-snakview-snaktypeselector-somevalue' ) |
|
| 161 | + ->msg('wikibase-snakview-snaktypeselector-somevalue') |
|
| 162 | 162 | ->escaped(); |
| 163 | 163 | case $value->isNoValue(): |
| 164 | 164 | return $this->messageLocalizer |
| 165 | - ->msg( 'wikibase-snakview-snaktypeselector-novalue' ) |
|
| 165 | + ->msg('wikibase-snakview-snaktypeselector-novalue') |
|
| 166 | 166 | ->escaped(); |
| 167 | 167 | } |
| 168 | 168 | } |
@@ -200,73 +200,73 @@ discard block |
||
| 200 | 200 | $this->defaultUserAgent = $defaultUserAgent; |
| 201 | 201 | $this->requestFactory = $requestFactory; |
| 202 | 202 | $this->entityPrefixes = []; |
| 203 | - foreach ( $rdfVocabulary->entityNamespaceNames as $namespaceName ) { |
|
| 204 | - $this->entityPrefixes[] = $rdfVocabulary->getNamespaceURI( $namespaceName ); |
|
| 203 | + foreach ($rdfVocabulary->entityNamespaceNames as $namespaceName) { |
|
| 204 | + $this->entityPrefixes[] = $rdfVocabulary->getNamespaceURI($namespaceName); |
|
| 205 | 205 | } |
| 206 | 206 | |
| 207 | - $this->endpoint = $config->get( 'WBQualityConstraintsSparqlEndpoint' ); |
|
| 208 | - $this->maxQueryTimeMillis = $config->get( 'WBQualityConstraintsSparqlMaxMillis' ); |
|
| 209 | - $this->instanceOfId = $config->get( 'WBQualityConstraintsInstanceOfId' ); |
|
| 210 | - $this->subclassOfId = $config->get( 'WBQualityConstraintsSubclassOfId' ); |
|
| 211 | - $this->cacheMapSize = $config->get( 'WBQualityConstraintsFormatCacheMapSize' ); |
|
| 207 | + $this->endpoint = $config->get('WBQualityConstraintsSparqlEndpoint'); |
|
| 208 | + $this->maxQueryTimeMillis = $config->get('WBQualityConstraintsSparqlMaxMillis'); |
|
| 209 | + $this->instanceOfId = $config->get('WBQualityConstraintsInstanceOfId'); |
|
| 210 | + $this->subclassOfId = $config->get('WBQualityConstraintsSubclassOfId'); |
|
| 211 | + $this->cacheMapSize = $config->get('WBQualityConstraintsFormatCacheMapSize'); |
|
| 212 | 212 | $this->timeoutExceptionClasses = $config->get( |
| 213 | 213 | 'WBQualityConstraintsSparqlTimeoutExceptionClasses' |
| 214 | 214 | ); |
| 215 | 215 | $this->sparqlHasWikibaseSupport = $config->get( |
| 216 | 216 | 'WBQualityConstraintsSparqlHasWikibaseSupport' |
| 217 | 217 | ); |
| 218 | - $this->sparqlThrottlingFallbackDuration = (int)$config->get( |
|
| 218 | + $this->sparqlThrottlingFallbackDuration = (int) $config->get( |
|
| 219 | 219 | 'WBQualityConstraintsSparqlThrottlingFallbackDuration' |
| 220 | 220 | ); |
| 221 | 221 | |
| 222 | - $this->prefixes = $this->getQueryPrefixes( $rdfVocabulary ); |
|
| 222 | + $this->prefixes = $this->getQueryPrefixes($rdfVocabulary); |
|
| 223 | 223 | } |
| 224 | 224 | |
| 225 | - private function getQueryPrefixes( RdfVocabulary $rdfVocabulary ) { |
|
| 225 | + private function getQueryPrefixes(RdfVocabulary $rdfVocabulary) { |
|
| 226 | 226 | // TODO: it would probably be smarter that RdfVocubulary exposed these prefixes somehow |
| 227 | 227 | $prefixes = ''; |
| 228 | - foreach ( $rdfVocabulary->entityNamespaceNames as $sourceName => $namespaceName ) { |
|
| 228 | + foreach ($rdfVocabulary->entityNamespaceNames as $sourceName => $namespaceName) { |
|
| 229 | 229 | $prefixes .= <<<END |
| 230 | -PREFIX {$namespaceName}: <{$rdfVocabulary->getNamespaceURI( $namespaceName )}>\n |
|
| 230 | +PREFIX {$namespaceName}: <{$rdfVocabulary->getNamespaceURI($namespaceName)}>\n |
|
| 231 | 231 | END; |
| 232 | 232 | } |
| 233 | 233 | $prefixes .= <<<END |
| 234 | -PREFIX wds: <{$rdfVocabulary->getNamespaceURI( RdfVocabulary::NS_STATEMENT )}> |
|
| 235 | -PREFIX wdv: <{$rdfVocabulary->getNamespaceURI( RdfVocabulary::NS_VALUE )}>\n |
|
| 234 | +PREFIX wds: <{$rdfVocabulary->getNamespaceURI(RdfVocabulary::NS_STATEMENT)}> |
|
| 235 | +PREFIX wdv: <{$rdfVocabulary->getNamespaceURI(RdfVocabulary::NS_VALUE)}>\n |
|
| 236 | 236 | END; |
| 237 | 237 | |
| 238 | - foreach ( $rdfVocabulary->propertyNamespaceNames as $sourceName => $sourceNamespaces ) { |
|
| 238 | + foreach ($rdfVocabulary->propertyNamespaceNames as $sourceName => $sourceNamespaces) { |
|
| 239 | 239 | $namespaceName = $sourceNamespaces[RdfVocabulary::NSP_DIRECT_CLAIM]; |
| 240 | 240 | $prefixes .= <<<END |
| 241 | -PREFIX {$namespaceName}: <{$rdfVocabulary->getNamespaceURI( $namespaceName )}>\n |
|
| 241 | +PREFIX {$namespaceName}: <{$rdfVocabulary->getNamespaceURI($namespaceName)}>\n |
|
| 242 | 242 | END; |
| 243 | 243 | $namespaceName = $sourceNamespaces[RdfVocabulary::NSP_CLAIM]; |
| 244 | 244 | $prefixes .= <<<END |
| 245 | -PREFIX {$namespaceName}: <{$rdfVocabulary->getNamespaceURI( $namespaceName )}>\n |
|
| 245 | +PREFIX {$namespaceName}: <{$rdfVocabulary->getNamespaceURI($namespaceName)}>\n |
|
| 246 | 246 | END; |
| 247 | 247 | $namespaceName = $sourceNamespaces[RdfVocabulary::NSP_CLAIM_STATEMENT]; |
| 248 | 248 | $prefixes .= <<<END |
| 249 | -PREFIX {$namespaceName}: <{$rdfVocabulary->getNamespaceURI( $namespaceName )}>\n |
|
| 249 | +PREFIX {$namespaceName}: <{$rdfVocabulary->getNamespaceURI($namespaceName)}>\n |
|
| 250 | 250 | END; |
| 251 | 251 | $namespaceName = $sourceNamespaces[RdfVocabulary::NSP_QUALIFIER]; |
| 252 | 252 | $prefixes .= <<<END |
| 253 | -PREFIX {$namespaceName}: <{$rdfVocabulary->getNamespaceURI( $namespaceName )}>\n |
|
| 253 | +PREFIX {$namespaceName}: <{$rdfVocabulary->getNamespaceURI($namespaceName)}>\n |
|
| 254 | 254 | END; |
| 255 | 255 | $namespaceName = $sourceNamespaces[RdfVocabulary::NSP_QUALIFIER_VALUE]; |
| 256 | 256 | $prefixes .= <<<END |
| 257 | -PREFIX {$namespaceName}: <{$rdfVocabulary->getNamespaceURI( $namespaceName )}>\n |
|
| 257 | +PREFIX {$namespaceName}: <{$rdfVocabulary->getNamespaceURI($namespaceName)}>\n |
|
| 258 | 258 | END; |
| 259 | 259 | $namespaceName = $sourceNamespaces[RdfVocabulary::NSP_REFERENCE]; |
| 260 | 260 | $prefixes .= <<<END |
| 261 | -PREFIX {$namespaceName}: <{$rdfVocabulary->getNamespaceURI( $namespaceName )}>\n |
|
| 261 | +PREFIX {$namespaceName}: <{$rdfVocabulary->getNamespaceURI($namespaceName)}>\n |
|
| 262 | 262 | END; |
| 263 | 263 | $namespaceName = $sourceNamespaces[RdfVocabulary::NSP_REFERENCE_VALUE]; |
| 264 | 264 | $prefixes .= <<<END |
| 265 | -PREFIX {$namespaceName}: <{$rdfVocabulary->getNamespaceURI( $namespaceName )}>\n |
|
| 265 | +PREFIX {$namespaceName}: <{$rdfVocabulary->getNamespaceURI($namespaceName)}>\n |
|
| 266 | 266 | END; |
| 267 | 267 | } |
| 268 | 268 | $prefixes .= <<<END |
| 269 | -PREFIX wikibase: <{$rdfVocabulary->getNamespaceURI( RdfVocabulary::NS_ONTOLOGY )}>\n |
|
| 269 | +PREFIX wikibase: <{$rdfVocabulary->getNamespaceURI(RdfVocabulary::NS_ONTOLOGY)}>\n |
|
| 270 | 270 | END; |
| 271 | 271 | return $prefixes; |
| 272 | 272 | } |
@@ -278,21 +278,20 @@ discard block |
||
| 278 | 278 | * @return CachedBool |
| 279 | 279 | * @throws SparqlHelperException if the query times out or some other error occurs |
| 280 | 280 | */ |
| 281 | - public function hasType( $id, array $classes ) { |
|
| 281 | + public function hasType($id, array $classes) { |
|
| 282 | 282 | // TODO hint:gearing is a workaround for T168973 and can hopefully be removed eventually |
| 283 | 283 | $gearingHint = $this->sparqlHasWikibaseSupport ? |
| 284 | - ' hint:Prior hint:gearing "forward".' : |
|
| 285 | - ''; |
|
| 284 | + ' hint:Prior hint:gearing "forward".' : ''; |
|
| 286 | 285 | |
| 287 | 286 | $metadatas = []; |
| 288 | 287 | |
| 289 | - foreach ( array_chunk( $classes, 20 ) as $classesChunk ) { |
|
| 290 | - $classesValues = implode( ' ', array_map( |
|
| 291 | - static function ( $class ) { |
|
| 292 | - return 'wd:' . $class; |
|
| 288 | + foreach (array_chunk($classes, 20) as $classesChunk) { |
|
| 289 | + $classesValues = implode(' ', array_map( |
|
| 290 | + static function($class) { |
|
| 291 | + return 'wd:'.$class; |
|
| 293 | 292 | }, |
| 294 | 293 | $classesChunk |
| 295 | - ) ); |
|
| 294 | + )); |
|
| 296 | 295 | |
| 297 | 296 | $query = <<<EOF |
| 298 | 297 | ASK { |
@@ -302,19 +301,19 @@ discard block |
||
| 302 | 301 | } |
| 303 | 302 | EOF; |
| 304 | 303 | |
| 305 | - $result = $this->runQuery( $query ); |
|
| 304 | + $result = $this->runQuery($query); |
|
| 306 | 305 | $metadatas[] = $result->getMetadata(); |
| 307 | - if ( $result->getArray()['boolean'] ) { |
|
| 306 | + if ($result->getArray()['boolean']) { |
|
| 308 | 307 | return new CachedBool( |
| 309 | 308 | true, |
| 310 | - Metadata::merge( $metadatas ) |
|
| 309 | + Metadata::merge($metadatas) |
|
| 311 | 310 | ); |
| 312 | 311 | } |
| 313 | 312 | } |
| 314 | 313 | |
| 315 | 314 | return new CachedBool( |
| 316 | 315 | false, |
| 317 | - Metadata::merge( $metadatas ) |
|
| 316 | + Metadata::merge($metadatas) |
|
| 318 | 317 | ); |
| 319 | 318 | } |
| 320 | 319 | |
@@ -325,7 +324,7 @@ discard block |
||
| 325 | 324 | * @param PropertyId $separator |
| 326 | 325 | * @return string |
| 327 | 326 | */ |
| 328 | - private function nestedSeparatorFilter( PropertyId $separator ) { |
|
| 327 | + private function nestedSeparatorFilter(PropertyId $separator) { |
|
| 329 | 328 | $filter = <<<EOF |
| 330 | 329 | MINUS { |
| 331 | 330 | ?statement pq:$separator ?qualifier. |
@@ -367,10 +366,10 @@ discard block |
||
| 367 | 366 | array $separators |
| 368 | 367 | ) { |
| 369 | 368 | $pid = $statement->getPropertyId()->serialize(); |
| 370 | - $guid = str_replace( '$', '-', $statement->getGuid() ); |
|
| 369 | + $guid = str_replace('$', '-', $statement->getGuid()); |
|
| 371 | 370 | |
| 372 | - $separatorFilters = array_map( [ $this, 'nestedSeparatorFilter' ], $separators ); |
|
| 373 | - $finalSeparatorFilter = implode( "\n", $separatorFilters ); |
|
| 371 | + $separatorFilters = array_map([$this, 'nestedSeparatorFilter'], $separators); |
|
| 372 | + $finalSeparatorFilter = implode("\n", $separatorFilters); |
|
| 374 | 373 | |
| 375 | 374 | $query = <<<EOF |
| 376 | 375 | SELECT DISTINCT ?otherEntity WHERE { |
@@ -388,9 +387,9 @@ discard block |
||
| 388 | 387 | LIMIT 10 |
| 389 | 388 | EOF; |
| 390 | 389 | |
| 391 | - $result = $this->runQuery( $query ); |
|
| 390 | + $result = $this->runQuery($query); |
|
| 392 | 391 | |
| 393 | - return $this->getOtherEntities( $result ); |
|
| 392 | + return $this->getOtherEntities($result); |
|
| 394 | 393 | } |
| 395 | 394 | |
| 396 | 395 | /** |
@@ -415,16 +414,15 @@ discard block |
||
| 415 | 414 | $dataType = $this->propertyDataTypeLookup->getDataTypeIdForProperty( |
| 416 | 415 | $snak->getPropertyId() |
| 417 | 416 | ); |
| 418 | - list( $value, $isFullValue ) = $this->getRdfLiteral( $dataType, $dataValue ); |
|
| 419 | - if ( $isFullValue ) { |
|
| 417 | + list($value, $isFullValue) = $this->getRdfLiteral($dataType, $dataValue); |
|
| 418 | + if ($isFullValue) { |
|
| 420 | 419 | $prefix .= 'v'; |
| 421 | 420 | } |
| 422 | 421 | $path = $type === Context::TYPE_QUALIFIER ? |
| 423 | - "$prefix:$pid" : |
|
| 424 | - "prov:wasDerivedFrom/$prefix:$pid"; |
|
| 422 | + "$prefix:$pid" : "prov:wasDerivedFrom/$prefix:$pid"; |
|
| 425 | 423 | |
| 426 | 424 | $deprecatedFilter = ''; |
| 427 | - if ( $ignoreDeprecatedStatements ) { |
|
| 425 | + if ($ignoreDeprecatedStatements) { |
|
| 428 | 426 | $deprecatedFilter = <<< EOF |
| 429 | 427 | MINUS { ?otherStatement wikibase:rank wikibase:DeprecatedRank. } |
| 430 | 428 | EOF; |
@@ -444,9 +442,9 @@ discard block |
||
| 444 | 442 | LIMIT 10 |
| 445 | 443 | EOF; |
| 446 | 444 | |
| 447 | - $result = $this->runQuery( $query ); |
|
| 445 | + $result = $this->runQuery($query); |
|
| 448 | 446 | |
| 449 | - return $this->getOtherEntities( $result ); |
|
| 447 | + return $this->getOtherEntities($result); |
|
| 450 | 448 | } |
| 451 | 449 | |
| 452 | 450 | /** |
@@ -456,8 +454,8 @@ discard block |
||
| 456 | 454 | * |
| 457 | 455 | * @return string |
| 458 | 456 | */ |
| 459 | - private function stringLiteral( $text ) { |
|
| 460 | - return '"' . strtr( $text, [ '"' => '\\"', '\\' => '\\\\' ] ) . '"'; |
|
| 457 | + private function stringLiteral($text) { |
|
| 458 | + return '"'.strtr($text, ['"' => '\\"', '\\' => '\\\\']).'"'; |
|
| 461 | 459 | } |
| 462 | 460 | |
| 463 | 461 | /** |
@@ -467,18 +465,18 @@ discard block |
||
| 467 | 465 | * |
| 468 | 466 | * @return CachedEntityIds |
| 469 | 467 | */ |
| 470 | - private function getOtherEntities( CachedQueryResults $results ) { |
|
| 471 | - return new CachedEntityIds( array_map( |
|
| 472 | - function ( $resultBindings ) { |
|
| 468 | + private function getOtherEntities(CachedQueryResults $results) { |
|
| 469 | + return new CachedEntityIds(array_map( |
|
| 470 | + function($resultBindings) { |
|
| 473 | 471 | $entityIRI = $resultBindings['otherEntity']['value']; |
| 474 | - foreach ( $this->entityPrefixes as $entityPrefix ) { |
|
| 475 | - $entityPrefixLength = strlen( $entityPrefix ); |
|
| 476 | - if ( substr( $entityIRI, 0, $entityPrefixLength ) === $entityPrefix ) { |
|
| 472 | + foreach ($this->entityPrefixes as $entityPrefix) { |
|
| 473 | + $entityPrefixLength = strlen($entityPrefix); |
|
| 474 | + if (substr($entityIRI, 0, $entityPrefixLength) === $entityPrefix) { |
|
| 477 | 475 | try { |
| 478 | 476 | return $this->entityIdParser->parse( |
| 479 | - substr( $entityIRI, $entityPrefixLength ) |
|
| 477 | + substr($entityIRI, $entityPrefixLength) |
|
| 480 | 478 | ); |
| 481 | - } catch ( EntityIdParsingException $e ) { |
|
| 479 | + } catch (EntityIdParsingException $e) { |
|
| 482 | 480 | // fall through |
| 483 | 481 | } |
| 484 | 482 | } |
@@ -489,7 +487,7 @@ discard block |
||
| 489 | 487 | return null; |
| 490 | 488 | }, |
| 491 | 489 | $results->getArray()['results']['bindings'] |
| 492 | - ), $results->getMetadata() ); |
|
| 490 | + ), $results->getMetadata()); |
|
| 493 | 491 | } |
| 494 | 492 | |
| 495 | 493 | // phpcs:disable Generic.Metrics.CyclomaticComplexity,Squiz.WhiteSpace.FunctionSpacing |
@@ -502,50 +500,50 @@ discard block |
||
| 502 | 500 | * @return array the literal or IRI as a string in SPARQL syntax, |
| 503 | 501 | * and a boolean indicating whether it refers to a full value node or not |
| 504 | 502 | */ |
| 505 | - private function getRdfLiteral( $dataType, DataValue $dataValue ) { |
|
| 506 | - switch ( $dataType ) { |
|
| 503 | + private function getRdfLiteral($dataType, DataValue $dataValue) { |
|
| 504 | + switch ($dataType) { |
|
| 507 | 505 | case 'string': |
| 508 | 506 | case 'external-id': |
| 509 | - return [ $this->stringLiteral( $dataValue->getValue() ), false ]; |
|
| 507 | + return [$this->stringLiteral($dataValue->getValue()), false]; |
|
| 510 | 508 | case 'commonsMedia': |
| 511 | - $url = $this->rdfVocabulary->getMediaFileURI( $dataValue->getValue() ); |
|
| 512 | - return [ '<' . $url . '>', false ]; |
|
| 509 | + $url = $this->rdfVocabulary->getMediaFileURI($dataValue->getValue()); |
|
| 510 | + return ['<'.$url.'>', false]; |
|
| 513 | 511 | case 'geo-shape': |
| 514 | - $url = $this->rdfVocabulary->getGeoShapeURI( $dataValue->getValue() ); |
|
| 515 | - return [ '<' . $url . '>', false ]; |
|
| 512 | + $url = $this->rdfVocabulary->getGeoShapeURI($dataValue->getValue()); |
|
| 513 | + return ['<'.$url.'>', false]; |
|
| 516 | 514 | case 'tabular-data': |
| 517 | - $url = $this->rdfVocabulary->getTabularDataURI( $dataValue->getValue() ); |
|
| 518 | - return [ '<' . $url . '>', false ]; |
|
| 515 | + $url = $this->rdfVocabulary->getTabularDataURI($dataValue->getValue()); |
|
| 516 | + return ['<'.$url.'>', false]; |
|
| 519 | 517 | case 'url': |
| 520 | 518 | $url = $dataValue->getValue(); |
| 521 | - if ( !preg_match( '/^[^<>"{}\\\\|^`\\x00-\\x20]*$/D', $url ) ) { |
|
| 519 | + if (!preg_match('/^[^<>"{}\\\\|^`\\x00-\\x20]*$/D', $url)) { |
|
| 522 | 520 | // not a valid URL for SPARQL (see SPARQL spec, production 139 IRIREF) |
| 523 | 521 | // such an URL should never reach us, so just throw |
| 524 | - throw new InvalidArgumentException( 'invalid URL: ' . $url ); |
|
| 522 | + throw new InvalidArgumentException('invalid URL: '.$url); |
|
| 525 | 523 | } |
| 526 | - return [ '<' . $url . '>', false ]; |
|
| 524 | + return ['<'.$url.'>', false]; |
|
| 527 | 525 | case 'wikibase-item': |
| 528 | 526 | case 'wikibase-property': |
| 529 | 527 | /** @var EntityIdValue $dataValue */ |
| 530 | 528 | '@phan-var EntityIdValue $dataValue'; |
| 531 | - return [ 'wd:' . $dataValue->getEntityId()->getSerialization(), false ]; |
|
| 529 | + return ['wd:'.$dataValue->getEntityId()->getSerialization(), false]; |
|
| 532 | 530 | case 'monolingualtext': |
| 533 | 531 | /** @var MonolingualTextValue $dataValue */ |
| 534 | 532 | '@phan-var MonolingualTextValue $dataValue'; |
| 535 | 533 | $lang = $dataValue->getLanguageCode(); |
| 536 | - if ( !preg_match( '/^[a-zA-Z]+(-[a-zA-Z0-9]+)*$/D', $lang ) ) { |
|
| 534 | + if (!preg_match('/^[a-zA-Z]+(-[a-zA-Z0-9]+)*$/D', $lang)) { |
|
| 537 | 535 | // not a valid language tag for SPARQL (see SPARQL spec, production 145 LANGTAG) |
| 538 | 536 | // such a language tag should never reach us, so just throw |
| 539 | - throw new InvalidArgumentException( 'invalid language tag: ' . $lang ); |
|
| 537 | + throw new InvalidArgumentException('invalid language tag: '.$lang); |
|
| 540 | 538 | } |
| 541 | - return [ $this->stringLiteral( $dataValue->getText() ) . '@' . $lang, false ]; |
|
| 539 | + return [$this->stringLiteral($dataValue->getText()).'@'.$lang, false]; |
|
| 542 | 540 | case 'globe-coordinate': |
| 543 | 541 | case 'quantity': |
| 544 | 542 | case 'time': |
| 545 | 543 | // @phan-suppress-next-line PhanUndeclaredMethod |
| 546 | - return [ 'wdv:' . $dataValue->getHash(), true ]; |
|
| 544 | + return ['wdv:'.$dataValue->getHash(), true]; |
|
| 547 | 545 | default: |
| 548 | - throw new InvalidArgumentException( 'unknown data type: ' . $dataType ); |
|
| 546 | + throw new InvalidArgumentException('unknown data type: '.$dataType); |
|
| 549 | 547 | } |
| 550 | 548 | } |
| 551 | 549 | // phpcs:enable |
@@ -558,43 +556,43 @@ discard block |
||
| 558 | 556 | * @throws SparqlHelperException if the query times out or some other error occurs |
| 559 | 557 | * @throws ConstraintParameterException if the $regex is invalid |
| 560 | 558 | */ |
| 561 | - public function matchesRegularExpression( $text, $regex ) { |
|
| 559 | + public function matchesRegularExpression($text, $regex) { |
|
| 562 | 560 | // caching wrapper around matchesRegularExpressionWithSparql |
| 563 | 561 | |
| 564 | - $textHash = hash( 'sha256', $text ); |
|
| 562 | + $textHash = hash('sha256', $text); |
|
| 565 | 563 | $cacheKey = $this->cache->makeKey( |
| 566 | 564 | 'WikibaseQualityConstraints', // extension |
| 567 | 565 | 'regex', // action |
| 568 | 566 | 'WDQS-Java', // regex flavor |
| 569 | - hash( 'sha256', $regex ) |
|
| 567 | + hash('sha256', $regex) |
|
| 570 | 568 | ); |
| 571 | 569 | |
| 572 | 570 | $cacheMapArray = $this->cache->getWithSetCallback( |
| 573 | 571 | $cacheKey, |
| 574 | 572 | WANObjectCache::TTL_DAY, |
| 575 | - function ( $cacheMapArray ) use ( $text, $regex, $textHash ) { |
|
| 573 | + function($cacheMapArray) use ($text, $regex, $textHash) { |
|
| 576 | 574 | // Initialize the cache map if not set |
| 577 | - if ( $cacheMapArray === false ) { |
|
| 575 | + if ($cacheMapArray === false) { |
|
| 578 | 576 | $key = 'wikibase.quality.constraints.regex.cache.refresh.init'; |
| 579 | - $this->dataFactory->increment( $key ); |
|
| 577 | + $this->dataFactory->increment($key); |
|
| 580 | 578 | return []; |
| 581 | 579 | } |
| 582 | 580 | |
| 583 | 581 | $key = 'wikibase.quality.constraints.regex.cache.refresh'; |
| 584 | - $this->dataFactory->increment( $key ); |
|
| 585 | - $cacheMap = MapCacheLRU::newFromArray( $cacheMapArray, $this->cacheMapSize ); |
|
| 586 | - if ( $cacheMap->has( $textHash ) ) { |
|
| 582 | + $this->dataFactory->increment($key); |
|
| 583 | + $cacheMap = MapCacheLRU::newFromArray($cacheMapArray, $this->cacheMapSize); |
|
| 584 | + if ($cacheMap->has($textHash)) { |
|
| 587 | 585 | $key = 'wikibase.quality.constraints.regex.cache.refresh.hit'; |
| 588 | - $this->dataFactory->increment( $key ); |
|
| 589 | - $cacheMap->get( $textHash ); // ping cache |
|
| 586 | + $this->dataFactory->increment($key); |
|
| 587 | + $cacheMap->get($textHash); // ping cache |
|
| 590 | 588 | } else { |
| 591 | 589 | $key = 'wikibase.quality.constraints.regex.cache.refresh.miss'; |
| 592 | - $this->dataFactory->increment( $key ); |
|
| 590 | + $this->dataFactory->increment($key); |
|
| 593 | 591 | try { |
| 594 | - $matches = $this->matchesRegularExpressionWithSparql( $text, $regex ); |
|
| 595 | - } catch ( ConstraintParameterException $e ) { |
|
| 596 | - $matches = $this->serializeConstraintParameterException( $e ); |
|
| 597 | - } catch ( SparqlHelperException $e ) { |
|
| 592 | + $matches = $this->matchesRegularExpressionWithSparql($text, $regex); |
|
| 593 | + } catch (ConstraintParameterException $e) { |
|
| 594 | + $matches = $this->serializeConstraintParameterException($e); |
|
| 595 | + } catch (SparqlHelperException $e) { |
|
| 598 | 596 | // don’t cache this |
| 599 | 597 | return $cacheMap->toArray(); |
| 600 | 598 | } |
@@ -618,42 +616,42 @@ discard block |
||
| 618 | 616 | ] |
| 619 | 617 | ); |
| 620 | 618 | |
| 621 | - if ( isset( $cacheMapArray[$textHash] ) ) { |
|
| 619 | + if (isset($cacheMapArray[$textHash])) { |
|
| 622 | 620 | $key = 'wikibase.quality.constraints.regex.cache.hit'; |
| 623 | - $this->dataFactory->increment( $key ); |
|
| 621 | + $this->dataFactory->increment($key); |
|
| 624 | 622 | $matches = $cacheMapArray[$textHash]; |
| 625 | - if ( is_bool( $matches ) ) { |
|
| 623 | + if (is_bool($matches)) { |
|
| 626 | 624 | return $matches; |
| 627 | - } elseif ( is_array( $matches ) && |
|
| 628 | - $matches['type'] == ConstraintParameterException::class ) { |
|
| 629 | - throw $this->deserializeConstraintParameterException( $matches ); |
|
| 625 | + } elseif (is_array($matches) && |
|
| 626 | + $matches['type'] == ConstraintParameterException::class) { |
|
| 627 | + throw $this->deserializeConstraintParameterException($matches); |
|
| 630 | 628 | } else { |
| 631 | 629 | throw new MWException( |
| 632 | - 'Value of unknown type in object cache (' . |
|
| 633 | - 'cache key: ' . $cacheKey . ', ' . |
|
| 634 | - 'cache map key: ' . $textHash . ', ' . |
|
| 635 | - 'value type: ' . gettype( $matches ) . ')' |
|
| 630 | + 'Value of unknown type in object cache ('. |
|
| 631 | + 'cache key: '.$cacheKey.', '. |
|
| 632 | + 'cache map key: '.$textHash.', '. |
|
| 633 | + 'value type: '.gettype($matches).')' |
|
| 636 | 634 | ); |
| 637 | 635 | } |
| 638 | 636 | } else { |
| 639 | 637 | $key = 'wikibase.quality.constraints.regex.cache.miss'; |
| 640 | - $this->dataFactory->increment( $key ); |
|
| 641 | - return $this->matchesRegularExpressionWithSparql( $text, $regex ); |
|
| 638 | + $this->dataFactory->increment($key); |
|
| 639 | + return $this->matchesRegularExpressionWithSparql($text, $regex); |
|
| 642 | 640 | } |
| 643 | 641 | } |
| 644 | 642 | |
| 645 | - private function serializeConstraintParameterException( ConstraintParameterException $cpe ) { |
|
| 643 | + private function serializeConstraintParameterException(ConstraintParameterException $cpe) { |
|
| 646 | 644 | return [ |
| 647 | 645 | 'type' => ConstraintParameterException::class, |
| 648 | - 'violationMessage' => $this->violationMessageSerializer->serialize( $cpe->getViolationMessage() ), |
|
| 646 | + 'violationMessage' => $this->violationMessageSerializer->serialize($cpe->getViolationMessage()), |
|
| 649 | 647 | ]; |
| 650 | 648 | } |
| 651 | 649 | |
| 652 | - private function deserializeConstraintParameterException( array $serialization ) { |
|
| 650 | + private function deserializeConstraintParameterException(array $serialization) { |
|
| 653 | 651 | $message = $this->violationMessageDeserializer->deserialize( |
| 654 | 652 | $serialization['violationMessage'] |
| 655 | 653 | ); |
| 656 | - return new ConstraintParameterException( $message ); |
|
| 654 | + return new ConstraintParameterException($message); |
|
| 657 | 655 | } |
| 658 | 656 | |
| 659 | 657 | /** |
@@ -667,25 +665,25 @@ discard block |
||
| 667 | 665 | * @throws SparqlHelperException if the query times out or some other error occurs |
| 668 | 666 | * @throws ConstraintParameterException if the $regex is invalid |
| 669 | 667 | */ |
| 670 | - public function matchesRegularExpressionWithSparql( $text, $regex ) { |
|
| 671 | - $textStringLiteral = $this->stringLiteral( $text ); |
|
| 672 | - $regexStringLiteral = $this->stringLiteral( '^(?:' . $regex . ')$' ); |
|
| 668 | + public function matchesRegularExpressionWithSparql($text, $regex) { |
|
| 669 | + $textStringLiteral = $this->stringLiteral($text); |
|
| 670 | + $regexStringLiteral = $this->stringLiteral('^(?:'.$regex.')$'); |
|
| 673 | 671 | |
| 674 | 672 | $query = <<<EOF |
| 675 | 673 | SELECT (REGEX($textStringLiteral, $regexStringLiteral) AS ?matches) {} |
| 676 | 674 | EOF; |
| 677 | 675 | |
| 678 | - $result = $this->runQuery( $query, false ); |
|
| 676 | + $result = $this->runQuery($query, false); |
|
| 679 | 677 | |
| 680 | 678 | $vars = $result->getArray()['results']['bindings'][0]; |
| 681 | - if ( array_key_exists( 'matches', $vars ) ) { |
|
| 679 | + if (array_key_exists('matches', $vars)) { |
|
| 682 | 680 | // true or false ⇒ regex okay, text matches or not |
| 683 | 681 | return $vars['matches']['value'] === 'true'; |
| 684 | 682 | } else { |
| 685 | 683 | // empty result: regex broken |
| 686 | 684 | throw new ConstraintParameterException( |
| 687 | - ( new ViolationMessage( 'wbqc-violation-message-parameter-regex' ) ) |
|
| 688 | - ->withInlineCode( $regex, Role::CONSTRAINT_PARAMETER_VALUE ) |
|
| 685 | + (new ViolationMessage('wbqc-violation-message-parameter-regex')) |
|
| 686 | + ->withInlineCode($regex, Role::CONSTRAINT_PARAMETER_VALUE) |
|
| 689 | 687 | ); |
| 690 | 688 | } |
| 691 | 689 | } |
@@ -697,14 +695,14 @@ discard block |
||
| 697 | 695 | * |
| 698 | 696 | * @return boolean |
| 699 | 697 | */ |
| 700 | - public function isTimeout( $responseContent ) { |
|
| 701 | - $timeoutRegex = implode( '|', array_map( |
|
| 702 | - static function ( $fqn ) { |
|
| 703 | - return preg_quote( $fqn, '/' ); |
|
| 698 | + public function isTimeout($responseContent) { |
|
| 699 | + $timeoutRegex = implode('|', array_map( |
|
| 700 | + static function($fqn) { |
|
| 701 | + return preg_quote($fqn, '/'); |
|
| 704 | 702 | }, |
| 705 | 703 | $this->timeoutExceptionClasses |
| 706 | - ) ); |
|
| 707 | - return (bool)preg_match( '/' . $timeoutRegex . '/', $responseContent ); |
|
| 704 | + )); |
|
| 705 | + return (bool) preg_match('/'.$timeoutRegex.'/', $responseContent); |
|
| 708 | 706 | } |
| 709 | 707 | |
| 710 | 708 | /** |
@@ -716,17 +714,17 @@ discard block |
||
| 716 | 714 | * @return int|boolean the max-age (in seconds) |
| 717 | 715 | * or a plain boolean if no max-age can be determined |
| 718 | 716 | */ |
| 719 | - public function getCacheMaxAge( $responseHeaders ) { |
|
| 717 | + public function getCacheMaxAge($responseHeaders) { |
|
| 720 | 718 | if ( |
| 721 | - array_key_exists( 'x-cache-status', $responseHeaders ) && |
|
| 722 | - preg_match( '/^hit(?:-.*)?$/', $responseHeaders['x-cache-status'][0] ) |
|
| 719 | + array_key_exists('x-cache-status', $responseHeaders) && |
|
| 720 | + preg_match('/^hit(?:-.*)?$/', $responseHeaders['x-cache-status'][0]) |
|
| 723 | 721 | ) { |
| 724 | 722 | $maxage = []; |
| 725 | 723 | if ( |
| 726 | - array_key_exists( 'cache-control', $responseHeaders ) && |
|
| 727 | - preg_match( '/\bmax-age=(\d+)\b/', $responseHeaders['cache-control'][0], $maxage ) |
|
| 724 | + array_key_exists('cache-control', $responseHeaders) && |
|
| 725 | + preg_match('/\bmax-age=(\d+)\b/', $responseHeaders['cache-control'][0], $maxage) |
|
| 728 | 726 | ) { |
| 729 | - return intval( $maxage[1] ); |
|
| 727 | + return intval($maxage[1]); |
|
| 730 | 728 | } else { |
| 731 | 729 | return true; |
| 732 | 730 | } |
@@ -747,34 +745,34 @@ discard block |
||
| 747 | 745 | * or SparlHelper::EMPTY_RETRY_AFTER if there is an empty Retry-After |
| 748 | 746 | * or SparlHelper::INVALID_RETRY_AFTER if there is something wrong with the format |
| 749 | 747 | */ |
| 750 | - public function getThrottling( MWHttpRequest $request ) { |
|
| 751 | - $retryAfterValue = $request->getResponseHeader( 'Retry-After' ); |
|
| 752 | - if ( $retryAfterValue === null ) { |
|
| 748 | + public function getThrottling(MWHttpRequest $request) { |
|
| 749 | + $retryAfterValue = $request->getResponseHeader('Retry-After'); |
|
| 750 | + if ($retryAfterValue === null) { |
|
| 753 | 751 | return self::NO_RETRY_AFTER; |
| 754 | 752 | } |
| 755 | 753 | |
| 756 | - $trimmedRetryAfterValue = trim( $retryAfterValue ); |
|
| 757 | - if ( empty( $trimmedRetryAfterValue ) ) { |
|
| 754 | + $trimmedRetryAfterValue = trim($retryAfterValue); |
|
| 755 | + if (empty($trimmedRetryAfterValue)) { |
|
| 758 | 756 | return self::EMPTY_RETRY_AFTER; |
| 759 | 757 | } |
| 760 | 758 | |
| 761 | - if ( is_numeric( $trimmedRetryAfterValue ) ) { |
|
| 762 | - $delaySeconds = (int)$trimmedRetryAfterValue; |
|
| 763 | - if ( $delaySeconds >= 0 ) { |
|
| 764 | - return $this->getTimestampInFuture( new DateInterval( 'PT' . $delaySeconds . 'S' ) ); |
|
| 759 | + if (is_numeric($trimmedRetryAfterValue)) { |
|
| 760 | + $delaySeconds = (int) $trimmedRetryAfterValue; |
|
| 761 | + if ($delaySeconds >= 0) { |
|
| 762 | + return $this->getTimestampInFuture(new DateInterval('PT'.$delaySeconds.'S')); |
|
| 765 | 763 | } |
| 766 | 764 | } else { |
| 767 | - $return = strtotime( $trimmedRetryAfterValue ); |
|
| 768 | - if ( !empty( $return ) ) { |
|
| 769 | - return new ConvertibleTimestamp( $return ); |
|
| 765 | + $return = strtotime($trimmedRetryAfterValue); |
|
| 766 | + if (!empty($return)) { |
|
| 767 | + return new ConvertibleTimestamp($return); |
|
| 770 | 768 | } |
| 771 | 769 | } |
| 772 | 770 | return self::INVALID_RETRY_AFTER; |
| 773 | 771 | } |
| 774 | 772 | |
| 775 | - private function getTimestampInFuture( DateInterval $delta ) { |
|
| 773 | + private function getTimestampInFuture(DateInterval $delta) { |
|
| 776 | 774 | $now = new ConvertibleTimestamp(); |
| 777 | - return new ConvertibleTimestamp( $now->timestamp->add( $delta ) ); |
|
| 775 | + return new ConvertibleTimestamp($now->timestamp->add($delta)); |
|
| 778 | 776 | } |
| 779 | 777 | |
| 780 | 778 | /** |
@@ -788,65 +786,64 @@ discard block |
||
| 788 | 786 | * |
| 789 | 787 | * @throws SparqlHelperException if the query times out or some other error occurs |
| 790 | 788 | */ |
| 791 | - public function runQuery( $query, $needsPrefixes = true ) { |
|
| 789 | + public function runQuery($query, $needsPrefixes = true) { |
|
| 792 | 790 | |
| 793 | - if ( $this->throttlingLock->isLocked( self::EXPIRY_LOCK_ID ) ) { |
|
| 794 | - $this->dataFactory->increment( 'wikibase.quality.constraints.sparql.throttling' ); |
|
| 791 | + if ($this->throttlingLock->isLocked(self::EXPIRY_LOCK_ID)) { |
|
| 792 | + $this->dataFactory->increment('wikibase.quality.constraints.sparql.throttling'); |
|
| 795 | 793 | throw new TooManySparqlRequestsException(); |
| 796 | 794 | } |
| 797 | 795 | |
| 798 | - if ( $this->sparqlHasWikibaseSupport ) { |
|
| 796 | + if ($this->sparqlHasWikibaseSupport) { |
|
| 799 | 797 | $needsPrefixes = false; |
| 800 | 798 | } |
| 801 | 799 | |
| 802 | - if ( $needsPrefixes ) { |
|
| 803 | - $query = $this->prefixes . $query; |
|
| 800 | + if ($needsPrefixes) { |
|
| 801 | + $query = $this->prefixes.$query; |
|
| 804 | 802 | } |
| 805 | - $query = "#wbqc\n" . $query; |
|
| 803 | + $query = "#wbqc\n".$query; |
|
| 806 | 804 | |
| 807 | - $url = $this->endpoint . '?' . http_build_query( |
|
| 805 | + $url = $this->endpoint.'?'.http_build_query( |
|
| 808 | 806 | [ |
| 809 | 807 | 'query' => $query, |
| 810 | 808 | 'format' => 'json', |
| 811 | 809 | 'maxQueryTimeMillis' => $this->maxQueryTimeMillis, |
| 812 | 810 | ], |
| 813 | - '', ini_get( 'arg_separator.output' ), |
|
| 811 | + '', ini_get('arg_separator.output'), |
|
| 814 | 812 | // encode spaces with %20, not + |
| 815 | 813 | PHP_QUERY_RFC3986 |
| 816 | 814 | ); |
| 817 | 815 | |
| 818 | 816 | $options = [ |
| 819 | 817 | 'method' => 'GET', |
| 820 | - 'timeout' => (int)round( ( $this->maxQueryTimeMillis + 1000 ) / 1000 ), |
|
| 818 | + 'timeout' => (int) round(($this->maxQueryTimeMillis + 1000) / 1000), |
|
| 821 | 819 | 'connectTimeout' => 'default', |
| 822 | 820 | 'userAgent' => $this->defaultUserAgent, |
| 823 | 821 | ]; |
| 824 | - $request = $this->requestFactory->create( $url, $options, __METHOD__ ); |
|
| 825 | - $startTime = microtime( true ); |
|
| 822 | + $request = $this->requestFactory->create($url, $options, __METHOD__); |
|
| 823 | + $startTime = microtime(true); |
|
| 826 | 824 | $requestStatus = $request->execute(); |
| 827 | - $endTime = microtime( true ); |
|
| 825 | + $endTime = microtime(true); |
|
| 828 | 826 | $this->dataFactory->timing( |
| 829 | 827 | 'wikibase.quality.constraints.sparql.timing', |
| 830 | - ( $endTime - $startTime ) * 1000 |
|
| 828 | + ($endTime - $startTime) * 1000 |
|
| 831 | 829 | ); |
| 832 | 830 | |
| 833 | - $this->guardAgainstTooManyRequestsError( $request ); |
|
| 831 | + $this->guardAgainstTooManyRequestsError($request); |
|
| 834 | 832 | |
| 835 | - $maxAge = $this->getCacheMaxAge( $request->getResponseHeaders() ); |
|
| 836 | - if ( $maxAge ) { |
|
| 837 | - $this->dataFactory->increment( 'wikibase.quality.constraints.sparql.cached' ); |
|
| 833 | + $maxAge = $this->getCacheMaxAge($request->getResponseHeaders()); |
|
| 834 | + if ($maxAge) { |
|
| 835 | + $this->dataFactory->increment('wikibase.quality.constraints.sparql.cached'); |
|
| 838 | 836 | } |
| 839 | 837 | |
| 840 | - if ( $requestStatus->isOK() ) { |
|
| 838 | + if ($requestStatus->isOK()) { |
|
| 841 | 839 | $json = $request->getContent(); |
| 842 | - $jsonStatus = FormatJson::parse( $json, FormatJson::FORCE_ASSOC ); |
|
| 843 | - if ( $jsonStatus->isOK() ) { |
|
| 840 | + $jsonStatus = FormatJson::parse($json, FormatJson::FORCE_ASSOC); |
|
| 841 | + if ($jsonStatus->isOK()) { |
|
| 844 | 842 | return new CachedQueryResults( |
| 845 | 843 | $jsonStatus->getValue(), |
| 846 | 844 | Metadata::ofCachingMetadata( |
| 847 | 845 | $maxAge ? |
| 848 | - CachingMetadata::ofMaximumAgeInSeconds( $maxAge ) : |
|
| 849 | - CachingMetadata::fresh() |
|
| 846 | + CachingMetadata::ofMaximumAgeInSeconds($maxAge) : CachingMetadata::fresh() |
|
| 850 | 847 | ) |
| 851 | 848 | ); |
| 852 | 849 | } else { |
@@ -863,9 +860,9 @@ discard block |
||
| 863 | 860 | // fall through to general error handling |
| 864 | 861 | } |
| 865 | 862 | |
| 866 | - $this->dataFactory->increment( 'wikibase.quality.constraints.sparql.error' ); |
|
| 863 | + $this->dataFactory->increment('wikibase.quality.constraints.sparql.error'); |
|
| 867 | 864 | |
| 868 | - if ( $this->isTimeout( $request->getContent() ) ) { |
|
| 865 | + if ($this->isTimeout($request->getContent())) { |
|
| 869 | 866 | $this->dataFactory->increment( |
| 870 | 867 | 'wikibase.quality.constraints.sparql.error.timeout' |
| 871 | 868 | ); |
@@ -880,29 +877,29 @@ discard block |
||
| 880 | 877 | * @param MWHttpRequest $request |
| 881 | 878 | * @throws TooManySparqlRequestsException |
| 882 | 879 | */ |
| 883 | - private function guardAgainstTooManyRequestsError( MWHttpRequest $request ): void { |
|
| 884 | - if ( $request->getStatus() !== self::HTTP_TOO_MANY_REQUESTS ) { |
|
| 880 | + private function guardAgainstTooManyRequestsError(MWHttpRequest $request): void { |
|
| 881 | + if ($request->getStatus() !== self::HTTP_TOO_MANY_REQUESTS) { |
|
| 885 | 882 | return; |
| 886 | 883 | } |
| 887 | 884 | |
| 888 | 885 | $fallbackBlockDuration = $this->sparqlThrottlingFallbackDuration; |
| 889 | 886 | |
| 890 | - if ( $fallbackBlockDuration < 0 ) { |
|
| 891 | - throw new InvalidArgumentException( 'Fallback duration must be positive int but is: ' . |
|
| 892 | - $fallbackBlockDuration ); |
|
| 887 | + if ($fallbackBlockDuration < 0) { |
|
| 888 | + throw new InvalidArgumentException('Fallback duration must be positive int but is: '. |
|
| 889 | + $fallbackBlockDuration); |
|
| 893 | 890 | } |
| 894 | 891 | |
| 895 | - $this->dataFactory->increment( 'wikibase.quality.constraints.sparql.throttling' ); |
|
| 896 | - $throttlingUntil = $this->getThrottling( $request ); |
|
| 897 | - if ( !( $throttlingUntil instanceof ConvertibleTimestamp ) ) { |
|
| 898 | - $this->loggingHelper->logSparqlHelperTooManyRequestsRetryAfterInvalid( $request ); |
|
| 892 | + $this->dataFactory->increment('wikibase.quality.constraints.sparql.throttling'); |
|
| 893 | + $throttlingUntil = $this->getThrottling($request); |
|
| 894 | + if (!($throttlingUntil instanceof ConvertibleTimestamp)) { |
|
| 895 | + $this->loggingHelper->logSparqlHelperTooManyRequestsRetryAfterInvalid($request); |
|
| 899 | 896 | $this->throttlingLock->lock( |
| 900 | 897 | self::EXPIRY_LOCK_ID, |
| 901 | - $this->getTimestampInFuture( new DateInterval( 'PT' . $fallbackBlockDuration . 'S' ) ) |
|
| 898 | + $this->getTimestampInFuture(new DateInterval('PT'.$fallbackBlockDuration.'S')) |
|
| 902 | 899 | ); |
| 903 | 900 | } else { |
| 904 | - $this->loggingHelper->logSparqlHelperTooManyRequestsRetryAfterPresent( $throttlingUntil, $request ); |
|
| 905 | - $this->throttlingLock->lock( self::EXPIRY_LOCK_ID, $throttlingUntil ); |
|
| 901 | + $this->loggingHelper->logSparqlHelperTooManyRequestsRetryAfterPresent($throttlingUntil, $request); |
|
| 902 | + $this->throttlingLock->lock(self::EXPIRY_LOCK_ID, $throttlingUntil); |
|
| 906 | 903 | } |
| 907 | 904 | throw new TooManySparqlRequestsException(); |
| 908 | 905 | } |
@@ -26,7 +26,7 @@ discard block |
||
| 26 | 26 | /** |
| 27 | 27 | * @param ConstraintLookup $lookup The lookup to which all queries are delegated. |
| 28 | 28 | */ |
| 29 | - public function __construct( ConstraintLookup $lookup ) { |
|
| 29 | + public function __construct(ConstraintLookup $lookup) { |
|
| 30 | 30 | $this->lookup = $lookup; |
| 31 | 31 | } |
| 32 | 32 | |
@@ -35,10 +35,10 @@ discard block |
||
| 35 | 35 | * |
| 36 | 36 | * @return Constraint[] |
| 37 | 37 | */ |
| 38 | - public function queryConstraintsForProperty( NumericPropertyId $propertyId ) { |
|
| 38 | + public function queryConstraintsForProperty(NumericPropertyId $propertyId) { |
|
| 39 | 39 | $id = $propertyId->getSerialization(); |
| 40 | - if ( !array_key_exists( $id, $this->cache ) ) { |
|
| 41 | - $this->cache[$id] = $this->lookup->queryConstraintsForProperty( $propertyId ); |
|
| 40 | + if (!array_key_exists($id, $this->cache)) { |
|
| 41 | + $this->cache[$id] = $this->lookup->queryConstraintsForProperty($propertyId); |
|
| 42 | 42 | } |
| 43 | 43 | return $this->cache[$id]; |
| 44 | 44 | } |
@@ -14,6 +14,6 @@ |
||
| 14 | 14 | * |
| 15 | 15 | * @return Constraint[] |
| 16 | 16 | */ |
| 17 | - public function queryConstraintsForProperty( NumericPropertyId $propertyId ); |
|
| 17 | + public function queryConstraintsForProperty(NumericPropertyId $propertyId); |
|
| 18 | 18 | |
| 19 | 19 | } |
@@ -102,9 +102,9 @@ discard block |
||
| 102 | 102 | StatementGuidParser $statementGuidParser, |
| 103 | 103 | IBufferingStatsdDataFactory $dataFactory |
| 104 | 104 | ) { |
| 105 | - parent::__construct( $main, $name ); |
|
| 105 | + parent::__construct($main, $name); |
|
| 106 | 106 | |
| 107 | - $this->apiErrorReporter = $apiHelperFactory->getErrorReporter( $this ); |
|
| 107 | + $this->apiErrorReporter = $apiHelperFactory->getErrorReporter($this); |
|
| 108 | 108 | $this->delegatingConstraintChecker = $delegatingConstraintChecker; |
| 109 | 109 | $this->violationMessageRendererFactory = $violationMessageRendererFactory; |
| 110 | 110 | $this->statementGuidParser = $statementGuidParser; |
@@ -119,39 +119,39 @@ discard block |
||
| 119 | 119 | $params = $this->extractRequestParams(); |
| 120 | 120 | $result = $this->getResult(); |
| 121 | 121 | |
| 122 | - $propertyIds = $this->parsePropertyIds( $params[self::PARAM_PROPERTY_ID] ); |
|
| 123 | - $constraintIds = $this->parseConstraintIds( $params[self::PARAM_CONSTRAINT_ID] ); |
|
| 122 | + $propertyIds = $this->parsePropertyIds($params[self::PARAM_PROPERTY_ID]); |
|
| 123 | + $constraintIds = $this->parseConstraintIds($params[self::PARAM_CONSTRAINT_ID]); |
|
| 124 | 124 | |
| 125 | - $this->checkPropertyIds( $propertyIds, $result ); |
|
| 126 | - $this->checkConstraintIds( $constraintIds, $result ); |
|
| 125 | + $this->checkPropertyIds($propertyIds, $result); |
|
| 126 | + $this->checkConstraintIds($constraintIds, $result); |
|
| 127 | 127 | |
| 128 | - $result->addValue( null, 'success', 1 ); |
|
| 128 | + $result->addValue(null, 'success', 1); |
|
| 129 | 129 | } |
| 130 | 130 | |
| 131 | 131 | /** |
| 132 | 132 | * @param array|null $propertyIdSerializations |
| 133 | 133 | * @return NumericPropertyId[] |
| 134 | 134 | */ |
| 135 | - private function parsePropertyIds( $propertyIdSerializations ) { |
|
| 136 | - if ( $propertyIdSerializations === null ) { |
|
| 135 | + private function parsePropertyIds($propertyIdSerializations) { |
|
| 136 | + if ($propertyIdSerializations === null) { |
|
| 137 | 137 | return []; |
| 138 | - } elseif ( empty( $propertyIdSerializations ) ) { |
|
| 138 | + } elseif (empty($propertyIdSerializations)) { |
|
| 139 | 139 | $this->apiErrorReporter->dieError( |
| 140 | - 'If ' . self::PARAM_PROPERTY_ID . ' is specified, it must be nonempty.', |
|
| 140 | + 'If '.self::PARAM_PROPERTY_ID.' is specified, it must be nonempty.', |
|
| 141 | 141 | 'no-data' |
| 142 | 142 | ); |
| 143 | 143 | } |
| 144 | 144 | |
| 145 | 145 | return array_map( |
| 146 | - function ( $propertyIdSerialization ) { |
|
| 146 | + function($propertyIdSerialization) { |
|
| 147 | 147 | try { |
| 148 | - return new NumericPropertyId( $propertyIdSerialization ); |
|
| 149 | - } catch ( InvalidArgumentException $e ) { |
|
| 148 | + return new NumericPropertyId($propertyIdSerialization); |
|
| 149 | + } catch (InvalidArgumentException $e) { |
|
| 150 | 150 | $this->apiErrorReporter->dieError( |
| 151 | 151 | "Invalid id: $propertyIdSerialization", |
| 152 | 152 | 'invalid-property-id', |
| 153 | 153 | 0, // default argument |
| 154 | - [ self::PARAM_PROPERTY_ID => $propertyIdSerialization ] |
|
| 154 | + [self::PARAM_PROPERTY_ID => $propertyIdSerialization] |
|
| 155 | 155 | ); |
| 156 | 156 | } |
| 157 | 157 | }, |
@@ -163,35 +163,35 @@ discard block |
||
| 163 | 163 | * @param array|null $constraintIds |
| 164 | 164 | * @return string[] |
| 165 | 165 | */ |
| 166 | - private function parseConstraintIds( $constraintIds ) { |
|
| 167 | - if ( $constraintIds === null ) { |
|
| 166 | + private function parseConstraintIds($constraintIds) { |
|
| 167 | + if ($constraintIds === null) { |
|
| 168 | 168 | return []; |
| 169 | - } elseif ( empty( $constraintIds ) ) { |
|
| 169 | + } elseif (empty($constraintIds)) { |
|
| 170 | 170 | $this->apiErrorReporter->dieError( |
| 171 | - 'If ' . self::PARAM_CONSTRAINT_ID . ' is specified, it must be nonempty.', |
|
| 171 | + 'If '.self::PARAM_CONSTRAINT_ID.' is specified, it must be nonempty.', |
|
| 172 | 172 | 'no-data' |
| 173 | 173 | ); |
| 174 | 174 | } |
| 175 | 175 | |
| 176 | 176 | return array_map( |
| 177 | - function ( $constraintId ) { |
|
| 177 | + function($constraintId) { |
|
| 178 | 178 | try { |
| 179 | - $propertyId = $this->statementGuidParser->parse( $constraintId )->getEntityId(); |
|
| 180 | - if ( !$propertyId instanceof NumericPropertyId ) { |
|
| 179 | + $propertyId = $this->statementGuidParser->parse($constraintId)->getEntityId(); |
|
| 180 | + if (!$propertyId instanceof NumericPropertyId) { |
|
| 181 | 181 | $this->apiErrorReporter->dieError( |
| 182 | 182 | "Invalid property ID: {$propertyId->getSerialization()}", |
| 183 | 183 | 'invalid-property-id', |
| 184 | 184 | 0, // default argument |
| 185 | - [ self::PARAM_CONSTRAINT_ID => $constraintId ] |
|
| 185 | + [self::PARAM_CONSTRAINT_ID => $constraintId] |
|
| 186 | 186 | ); |
| 187 | 187 | } |
| 188 | 188 | return $constraintId; |
| 189 | - } catch ( StatementGuidParsingException $e ) { |
|
| 189 | + } catch (StatementGuidParsingException $e) { |
|
| 190 | 190 | $this->apiErrorReporter->dieError( |
| 191 | 191 | "Invalid statement GUID: $constraintId", |
| 192 | 192 | 'invalid-guid', |
| 193 | 193 | 0, // default argument |
| 194 | - [ self::PARAM_CONSTRAINT_ID => $constraintId ] |
|
| 194 | + [self::PARAM_CONSTRAINT_ID => $constraintId] |
|
| 195 | 195 | ); |
| 196 | 196 | } |
| 197 | 197 | }, |
@@ -203,12 +203,12 @@ discard block |
||
| 203 | 203 | * @param NumericPropertyId[] $propertyIds |
| 204 | 204 | * @param ApiResult $result |
| 205 | 205 | */ |
| 206 | - private function checkPropertyIds( array $propertyIds, ApiResult $result ) { |
|
| 207 | - foreach ( $propertyIds as $propertyId ) { |
|
| 208 | - $result->addArrayType( $this->getResultPathForPropertyId( $propertyId ), 'assoc' ); |
|
| 206 | + private function checkPropertyIds(array $propertyIds, ApiResult $result) { |
|
| 207 | + foreach ($propertyIds as $propertyId) { |
|
| 208 | + $result->addArrayType($this->getResultPathForPropertyId($propertyId), 'assoc'); |
|
| 209 | 209 | $allConstraintExceptions = $this->delegatingConstraintChecker |
| 210 | - ->checkConstraintParametersOnPropertyId( $propertyId ); |
|
| 211 | - foreach ( $allConstraintExceptions as $constraintId => $constraintParameterExceptions ) { |
|
| 210 | + ->checkConstraintParametersOnPropertyId($propertyId); |
|
| 211 | + foreach ($allConstraintExceptions as $constraintId => $constraintParameterExceptions) { |
|
| 212 | 212 | $this->addConstraintParameterExceptionsToResult( |
| 213 | 213 | $constraintId, |
| 214 | 214 | $constraintParameterExceptions, |
@@ -222,15 +222,15 @@ discard block |
||
| 222 | 222 | * @param string[] $constraintIds |
| 223 | 223 | * @param ApiResult $result |
| 224 | 224 | */ |
| 225 | - private function checkConstraintIds( array $constraintIds, ApiResult $result ) { |
|
| 226 | - foreach ( $constraintIds as $constraintId ) { |
|
| 227 | - if ( $result->getResultData( $this->getResultPathForConstraintId( $constraintId ) ) ) { |
|
| 225 | + private function checkConstraintIds(array $constraintIds, ApiResult $result) { |
|
| 226 | + foreach ($constraintIds as $constraintId) { |
|
| 227 | + if ($result->getResultData($this->getResultPathForConstraintId($constraintId))) { |
|
| 228 | 228 | // already checked as part of checkPropertyIds() |
| 229 | 229 | continue; |
| 230 | 230 | } |
| 231 | 231 | $constraintParameterExceptions = $this->delegatingConstraintChecker |
| 232 | - ->checkConstraintParametersOnConstraintId( $constraintId ); |
|
| 233 | - $this->addConstraintParameterExceptionsToResult( $constraintId, $constraintParameterExceptions, $result ); |
|
| 232 | + ->checkConstraintParametersOnConstraintId($constraintId); |
|
| 233 | + $this->addConstraintParameterExceptionsToResult($constraintId, $constraintParameterExceptions, $result); |
|
| 234 | 234 | } |
| 235 | 235 | } |
| 236 | 236 | |
@@ -238,18 +238,18 @@ discard block |
||
| 238 | 238 | * @param NumericPropertyId $propertyId |
| 239 | 239 | * @return string[] |
| 240 | 240 | */ |
| 241 | - private function getResultPathForPropertyId( NumericPropertyId $propertyId ) { |
|
| 242 | - return [ $this->getModuleName(), $propertyId->getSerialization() ]; |
|
| 241 | + private function getResultPathForPropertyId(NumericPropertyId $propertyId) { |
|
| 242 | + return [$this->getModuleName(), $propertyId->getSerialization()]; |
|
| 243 | 243 | } |
| 244 | 244 | |
| 245 | 245 | /** |
| 246 | 246 | * @param string $constraintId |
| 247 | 247 | * @return string[] |
| 248 | 248 | */ |
| 249 | - private function getResultPathForConstraintId( $constraintId ) { |
|
| 250 | - $propertyId = $this->statementGuidParser->parse( $constraintId )->getEntityId(); |
|
| 249 | + private function getResultPathForConstraintId($constraintId) { |
|
| 250 | + $propertyId = $this->statementGuidParser->parse($constraintId)->getEntityId(); |
|
| 251 | 251 | '@phan-var NumericPropertyId $propertyId'; |
| 252 | - return array_merge( $this->getResultPathForPropertyId( $propertyId ), [ $constraintId ] ); |
|
| 252 | + return array_merge($this->getResultPathForPropertyId($propertyId), [$constraintId]); |
|
| 253 | 253 | } |
| 254 | 254 | |
| 255 | 255 | /** |
@@ -264,8 +264,8 @@ discard block |
||
| 264 | 264 | $constraintParameterExceptions, |
| 265 | 265 | ApiResult $result |
| 266 | 266 | ) { |
| 267 | - $path = $this->getResultPathForConstraintId( $constraintId ); |
|
| 268 | - if ( $constraintParameterExceptions === null ) { |
|
| 267 | + $path = $this->getResultPathForConstraintId($constraintId); |
|
| 268 | + if ($constraintParameterExceptions === null) { |
|
| 269 | 269 | $result->addValue( |
| 270 | 270 | $path, |
| 271 | 271 | self::KEY_STATUS, |
@@ -275,13 +275,13 @@ discard block |
||
| 275 | 275 | $result->addValue( |
| 276 | 276 | $path, |
| 277 | 277 | self::KEY_STATUS, |
| 278 | - empty( $constraintParameterExceptions ) ? self::STATUS_OKAY : self::STATUS_NOT_OKAY |
|
| 278 | + empty($constraintParameterExceptions) ? self::STATUS_OKAY : self::STATUS_NOT_OKAY |
|
| 279 | 279 | ); |
| 280 | 280 | |
| 281 | 281 | $violationMessageRenderer = $this->violationMessageRendererFactory |
| 282 | - ->getViolationMessageRenderer( $this->getLanguage() ); |
|
| 282 | + ->getViolationMessageRenderer($this->getLanguage()); |
|
| 283 | 283 | $problems = []; |
| 284 | - foreach ( $constraintParameterExceptions as $constraintParameterException ) { |
|
| 284 | + foreach ($constraintParameterExceptions as $constraintParameterException) { |
|
| 285 | 285 | $problems[] = [ |
| 286 | 286 | self::KEY_MESSAGE_HTML => $violationMessageRenderer->render( |
| 287 | 287 | $constraintParameterException->getViolationMessage() ), |
@@ -320,8 +320,8 @@ discard block |
||
| 320 | 320 | return [ |
| 321 | 321 | 'action=wbcheckconstraintparameters&propertyid=P247' |
| 322 | 322 | => 'apihelp-wbcheckconstraintparameters-example-propertyid-1', |
| 323 | - 'action=wbcheckconstraintparameters&' . |
|
| 324 | - 'constraintid=P247$0fe1711e-4c0f-82ce-3af0-830b721d0fba|' . |
|
| 323 | + 'action=wbcheckconstraintparameters&'. |
|
| 324 | + 'constraintid=P247$0fe1711e-4c0f-82ce-3af0-830b721d0fba|'. |
|
| 325 | 325 | 'P225$cdc71e4a-47a0-12c5-dfb3-3f6fc0b6613f' |
| 326 | 326 | => 'apihelp-wbcheckconstraintparameters-example-constraintid-2', |
| 327 | 327 | ]; |
@@ -25,7 +25,7 @@ discard block |
||
| 25 | 25 | * then using the main DBLoadBalancer service may be incorrect. |
| 26 | 26 | * @param string|false $dbName Database name ($domain for ILoadBalancer methods). |
| 27 | 27 | */ |
| 28 | - public function __construct( ILoadBalancer $lb, $dbName ) { |
|
| 28 | + public function __construct(ILoadBalancer $lb, $dbName) { |
|
| 29 | 29 | $this->lb = $lb; |
| 30 | 30 | $this->dbName = $dbName; |
| 31 | 31 | } |
@@ -35,17 +35,17 @@ discard block |
||
| 35 | 35 | * |
| 36 | 36 | * @return Constraint[] |
| 37 | 37 | */ |
| 38 | - public function queryConstraintsForProperty( NumericPropertyId $propertyId ) { |
|
| 39 | - $dbr = $this->lb->getConnectionRef( ILoadBalancer::DB_REPLICA, [], $this->dbName ); |
|
| 38 | + public function queryConstraintsForProperty(NumericPropertyId $propertyId) { |
|
| 39 | + $dbr = $this->lb->getConnectionRef(ILoadBalancer::DB_REPLICA, [], $this->dbName); |
|
| 40 | 40 | |
| 41 | 41 | $results = $dbr->select( |
| 42 | 42 | 'wbqc_constraints', |
| 43 | 43 | '*', |
| 44 | - [ 'pid' => $propertyId->getNumericId() ], |
|
| 44 | + ['pid' => $propertyId->getNumericId()], |
|
| 45 | 45 | __METHOD__ |
| 46 | 46 | ); |
| 47 | 47 | |
| 48 | - return $this->convertToConstraints( $results ); |
|
| 48 | + return $this->convertToConstraints($results); |
|
| 49 | 49 | } |
| 50 | 50 | |
| 51 | 51 | /** |
@@ -53,26 +53,26 @@ discard block |
||
| 53 | 53 | * |
| 54 | 54 | * @return Constraint[] |
| 55 | 55 | */ |
| 56 | - private function convertToConstraints( IResultWrapper $results ) { |
|
| 56 | + private function convertToConstraints(IResultWrapper $results) { |
|
| 57 | 57 | $constraints = []; |
| 58 | - $logger = LoggerFactory::getInstance( 'WikibaseQualityConstraints' ); |
|
| 59 | - foreach ( $results as $result ) { |
|
| 58 | + $logger = LoggerFactory::getInstance('WikibaseQualityConstraints'); |
|
| 59 | + foreach ($results as $result) { |
|
| 60 | 60 | $constraintTypeItemId = $result->constraint_type_qid; |
| 61 | - $constraintParameters = json_decode( $result->constraint_parameters, true ); |
|
| 61 | + $constraintParameters = json_decode($result->constraint_parameters, true); |
|
| 62 | 62 | |
| 63 | - if ( $constraintParameters === null ) { |
|
| 63 | + if ($constraintParameters === null) { |
|
| 64 | 64 | // T171295 |
| 65 | - $logger->warning( 'Constraint {constraintId} has invalid constraint parameters.', [ |
|
| 65 | + $logger->warning('Constraint {constraintId} has invalid constraint parameters.', [ |
|
| 66 | 66 | 'method' => __METHOD__, |
| 67 | 67 | 'constraintId' => $result->constraint_guid, |
| 68 | 68 | 'constraintParameters' => $result->constraint_parameters, |
| 69 | - ] ); |
|
| 70 | - $constraintParameters = [ '@error' => [ /* unknown */ ] ]; |
|
| 69 | + ]); |
|
| 70 | + $constraintParameters = ['@error' => [/* unknown */]]; |
|
| 71 | 71 | } |
| 72 | 72 | |
| 73 | 73 | $constraints[] = new Constraint( |
| 74 | 74 | $result->constraint_guid, |
| 75 | - NumericPropertyId::newFromNumber( $result->pid ), |
|
| 75 | + NumericPropertyId::newFromNumber($result->pid), |
|
| 76 | 76 | $constraintTypeItemId, |
| 77 | 77 | $constraintParameters |
| 78 | 78 | ); |
@@ -144,10 +144,10 @@ 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 StatementListProvidingEntity ) { |
|
| 150 | - $startTime = microtime( true ); |
|
| 149 | + if ($entity instanceof StatementListProvidingEntity) { |
|
| 150 | + $startTime = microtime(true); |
|
| 151 | 151 | |
| 152 | 152 | $checkResults = $this->checkEveryStatement( |
| 153 | 153 | $entity, |
@@ -155,9 +155,9 @@ discard block |
||
| 155 | 155 | $defaultResultsPerContext |
| 156 | 156 | ); |
| 157 | 157 | |
| 158 | - $endTime = microtime( true ); |
|
| 158 | + $endTime = microtime(true); |
|
| 159 | 159 | |
| 160 | - if ( $constraintIds === null ) { // only log full constraint checks |
|
| 160 | + if ($constraintIds === null) { // only log full constraint checks |
|
| 161 | 161 | $this->loggingHelper->logConstraintCheckOnEntity( |
| 162 | 162 | $entityId, |
| 163 | 163 | $checkResults, |
@@ -167,11 +167,11 @@ discard block |
||
| 167 | 167 | } |
| 168 | 168 | } |
| 169 | 169 | |
| 170 | - if ( $defaultResultsPerEntity !== null ) { |
|
| 171 | - $checkResults = array_merge( $defaultResultsPerEntity( $entityId ), $checkResults ); |
|
| 170 | + if ($defaultResultsPerEntity !== null) { |
|
| 171 | + $checkResults = array_merge($defaultResultsPerEntity($entityId), $checkResults); |
|
| 172 | 172 | } |
| 173 | 173 | |
| 174 | - return $this->sortResult( $checkResults ); |
|
| 174 | + return $this->sortResult($checkResults); |
|
| 175 | 175 | } |
| 176 | 176 | |
| 177 | 177 | /** |
@@ -193,19 +193,19 @@ discard block |
||
| 193 | 193 | callable $defaultResults = null |
| 194 | 194 | ) { |
| 195 | 195 | |
| 196 | - $parsedGuid = $this->statementGuidParser->parse( $guid ); |
|
| 196 | + $parsedGuid = $this->statementGuidParser->parse($guid); |
|
| 197 | 197 | $entityId = $parsedGuid->getEntityId(); |
| 198 | - $entity = $this->entityLookup->getEntity( $entityId ); |
|
| 199 | - if ( $entity instanceof StatementListProvidingEntity ) { |
|
| 200 | - $statement = $entity->getStatements()->getFirstStatementWithGuid( $guid ); |
|
| 201 | - if ( $statement ) { |
|
| 198 | + $entity = $this->entityLookup->getEntity($entityId); |
|
| 199 | + if ($entity instanceof StatementListProvidingEntity) { |
|
| 200 | + $statement = $entity->getStatements()->getFirstStatementWithGuid($guid); |
|
| 201 | + if ($statement) { |
|
| 202 | 202 | $result = $this->checkStatement( |
| 203 | 203 | $entity, |
| 204 | 204 | $statement, |
| 205 | 205 | $constraintIds, |
| 206 | 206 | $defaultResults |
| 207 | 207 | ); |
| 208 | - $output = $this->sortResult( $result ); |
|
| 208 | + $output = $this->sortResult($result); |
|
| 209 | 209 | return $output; |
| 210 | 210 | } |
| 211 | 211 | } |
@@ -213,8 +213,8 @@ discard block |
||
| 213 | 213 | return []; |
| 214 | 214 | } |
| 215 | 215 | |
| 216 | - private function getValidContextTypes( Constraint $constraint ) { |
|
| 217 | - if ( !array_key_exists( $constraint->getConstraintTypeItemId(), $this->checkerMap ) ) { |
|
| 216 | + private function getValidContextTypes(Constraint $constraint) { |
|
| 217 | + if (!array_key_exists($constraint->getConstraintTypeItemId(), $this->checkerMap)) { |
|
| 218 | 218 | return [ |
| 219 | 219 | Context::TYPE_STATEMENT, |
| 220 | 220 | Context::TYPE_QUALIFIER, |
@@ -222,25 +222,25 @@ discard block |
||
| 222 | 222 | ]; |
| 223 | 223 | } |
| 224 | 224 | |
| 225 | - return array_keys( array_filter( |
|
| 225 | + return array_keys(array_filter( |
|
| 226 | 226 | $this->checkerMap[$constraint->getConstraintTypeItemId()]->getSupportedContextTypes(), |
| 227 | - static function ( $resultStatus ) { |
|
| 227 | + static function($resultStatus) { |
|
| 228 | 228 | return $resultStatus !== CheckResult::STATUS_NOT_IN_SCOPE; |
| 229 | 229 | } |
| 230 | - ) ); |
|
| 230 | + )); |
|
| 231 | 231 | } |
| 232 | 232 | |
| 233 | - private function getValidEntityTypes( Constraint $constraint ) { |
|
| 234 | - if ( !array_key_exists( $constraint->getConstraintTypeItemId(), $this->checkerMap ) ) { |
|
| 235 | - return array_keys( ConstraintChecker::ALL_ENTITY_TYPES_SUPPORTED ); |
|
| 233 | + private function getValidEntityTypes(Constraint $constraint) { |
|
| 234 | + if (!array_key_exists($constraint->getConstraintTypeItemId(), $this->checkerMap)) { |
|
| 235 | + return array_keys(ConstraintChecker::ALL_ENTITY_TYPES_SUPPORTED); |
|
| 236 | 236 | } |
| 237 | 237 | |
| 238 | - return array_keys( array_filter( |
|
| 238 | + return array_keys(array_filter( |
|
| 239 | 239 | $this->checkerMap[$constraint->getConstraintTypeItemId()]->getSupportedEntityTypes(), |
| 240 | - static function ( $resultStatus ) { |
|
| 240 | + static function($resultStatus) { |
|
| 241 | 241 | return $resultStatus !== CheckResult::STATUS_NOT_IN_SCOPE; |
| 242 | 242 | } |
| 243 | - ) ); |
|
| 243 | + )); |
|
| 244 | 244 | } |
| 245 | 245 | |
| 246 | 246 | /** |
@@ -251,33 +251,33 @@ discard block |
||
| 251 | 251 | * |
| 252 | 252 | * @return ConstraintParameterException[] |
| 253 | 253 | */ |
| 254 | - private function checkCommonConstraintParameters( Constraint $constraint ) { |
|
| 254 | + private function checkCommonConstraintParameters(Constraint $constraint) { |
|
| 255 | 255 | $constraintParameters = $constraint->getConstraintParameters(); |
| 256 | 256 | try { |
| 257 | - $this->constraintParameterParser->checkError( $constraintParameters ); |
|
| 258 | - } catch ( ConstraintParameterException $e ) { |
|
| 259 | - return [ $e ]; |
|
| 257 | + $this->constraintParameterParser->checkError($constraintParameters); |
|
| 258 | + } catch (ConstraintParameterException $e) { |
|
| 259 | + return [$e]; |
|
| 260 | 260 | } |
| 261 | 261 | |
| 262 | 262 | $problems = []; |
| 263 | 263 | try { |
| 264 | - $this->constraintParameterParser->parseExceptionParameter( $constraintParameters ); |
|
| 265 | - } catch ( ConstraintParameterException $e ) { |
|
| 264 | + $this->constraintParameterParser->parseExceptionParameter($constraintParameters); |
|
| 265 | + } catch (ConstraintParameterException $e) { |
|
| 266 | 266 | $problems[] = $e; |
| 267 | 267 | } |
| 268 | 268 | try { |
| 269 | - $this->constraintParameterParser->parseConstraintStatusParameter( $constraintParameters ); |
|
| 270 | - } catch ( ConstraintParameterException $e ) { |
|
| 269 | + $this->constraintParameterParser->parseConstraintStatusParameter($constraintParameters); |
|
| 270 | + } catch (ConstraintParameterException $e) { |
|
| 271 | 271 | $problems[] = $e; |
| 272 | 272 | } |
| 273 | 273 | try { |
| 274 | 274 | $this->constraintParameterParser->parseConstraintScopeParameters( |
| 275 | 275 | $constraintParameters, |
| 276 | 276 | $constraint->getConstraintTypeItemId(), |
| 277 | - $this->getValidContextTypes( $constraint ), |
|
| 278 | - $this->getValidEntityTypes( $constraint ) |
|
| 277 | + $this->getValidContextTypes($constraint), |
|
| 278 | + $this->getValidEntityTypes($constraint) |
|
| 279 | 279 | ); |
| 280 | - } catch ( ConstraintParameterException $e ) { |
|
| 280 | + } catch (ConstraintParameterException $e) { |
|
| 281 | 281 | $problems[] = $e; |
| 282 | 282 | } |
| 283 | 283 | return $problems; |
@@ -290,16 +290,16 @@ discard block |
||
| 290 | 290 | * @return ConstraintParameterException[][] first level indexed by constraint ID, |
| 291 | 291 | * second level like checkConstraintParametersOnConstraintId (but without possibility of null) |
| 292 | 292 | */ |
| 293 | - public function checkConstraintParametersOnPropertyId( NumericPropertyId $propertyId ) { |
|
| 294 | - $constraints = $this->constraintLookup->queryConstraintsForProperty( $propertyId ); |
|
| 293 | + public function checkConstraintParametersOnPropertyId(NumericPropertyId $propertyId) { |
|
| 294 | + $constraints = $this->constraintLookup->queryConstraintsForProperty($propertyId); |
|
| 295 | 295 | $result = []; |
| 296 | 296 | |
| 297 | - foreach ( $constraints as $constraint ) { |
|
| 298 | - $problems = $this->checkCommonConstraintParameters( $constraint ); |
|
| 297 | + foreach ($constraints as $constraint) { |
|
| 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 | $result[$constraint->getConstraintId()] = $problems; |
@@ -316,18 +316,18 @@ discard block |
||
| 316 | 316 | * @return ConstraintParameterException[]|null list of constraint parameter exceptions |
| 317 | 317 | * (empty means all parameters okay), or null if constraint is not found |
| 318 | 318 | */ |
| 319 | - public function checkConstraintParametersOnConstraintId( $constraintId ) { |
|
| 320 | - $propertyId = $this->statementGuidParser->parse( $constraintId )->getEntityId(); |
|
| 319 | + public function checkConstraintParametersOnConstraintId($constraintId) { |
|
| 320 | + $propertyId = $this->statementGuidParser->parse($constraintId)->getEntityId(); |
|
| 321 | 321 | '@phan-var NumericPropertyId $propertyId'; |
| 322 | - $constraints = $this->constraintLookup->queryConstraintsForProperty( $propertyId ); |
|
| 322 | + $constraints = $this->constraintLookup->queryConstraintsForProperty($propertyId); |
|
| 323 | 323 | |
| 324 | - foreach ( $constraints as $constraint ) { |
|
| 325 | - if ( $constraint->getConstraintId() === $constraintId ) { |
|
| 326 | - $problems = $this->checkCommonConstraintParameters( $constraint ); |
|
| 324 | + foreach ($constraints as $constraint) { |
|
| 325 | + if ($constraint->getConstraintId() === $constraintId) { |
|
| 326 | + $problems = $this->checkCommonConstraintParameters($constraint); |
|
| 327 | 327 | |
| 328 | - if ( array_key_exists( $constraint->getConstraintTypeItemId(), $this->checkerMap ) ) { |
|
| 328 | + if (array_key_exists($constraint->getConstraintTypeItemId(), $this->checkerMap)) { |
|
| 329 | 329 | $checker = $this->checkerMap[$constraint->getConstraintTypeItemId()]; |
| 330 | - $problems = array_merge( $problems, $checker->checkConstraintParameters( $constraint ) ); |
|
| 330 | + $problems = array_merge($problems, $checker->checkConstraintParameters($constraint)); |
|
| 331 | 331 | } |
| 332 | 332 | |
| 333 | 333 | return $problems; |
@@ -352,14 +352,14 @@ discard block |
||
| 352 | 352 | $result = []; |
| 353 | 353 | |
| 354 | 354 | /** @var Statement $statement */ |
| 355 | - foreach ( $entity->getStatements() as $statement ) { |
|
| 356 | - $result = array_merge( $result, |
|
| 355 | + foreach ($entity->getStatements() as $statement) { |
|
| 356 | + $result = array_merge($result, |
|
| 357 | 357 | $this->checkStatement( |
| 358 | 358 | $entity, |
| 359 | 359 | $statement, |
| 360 | 360 | $constraintIds, |
| 361 | 361 | $defaultResultsPerContext |
| 362 | - ) ); |
|
| 362 | + )); |
|
| 363 | 363 | } |
| 364 | 364 | |
| 365 | 365 | return $result; |
@@ -381,32 +381,32 @@ discard block |
||
| 381 | 381 | ) { |
| 382 | 382 | $result = []; |
| 383 | 383 | |
| 384 | - $result = array_merge( $result, |
|
| 384 | + $result = array_merge($result, |
|
| 385 | 385 | $this->checkConstraintsForMainSnak( |
| 386 | 386 | $entity, |
| 387 | 387 | $statement, |
| 388 | 388 | $constraintIds, |
| 389 | 389 | $defaultResultsPerContext |
| 390 | - ) ); |
|
| 390 | + )); |
|
| 391 | 391 | |
| 392 | - if ( $this->checkQualifiers ) { |
|
| 393 | - $result = array_merge( $result, |
|
| 392 | + if ($this->checkQualifiers) { |
|
| 393 | + $result = array_merge($result, |
|
| 394 | 394 | $this->checkConstraintsForQualifiers( |
| 395 | 395 | $entity, |
| 396 | 396 | $statement, |
| 397 | 397 | $constraintIds, |
| 398 | 398 | $defaultResultsPerContext |
| 399 | - ) ); |
|
| 399 | + )); |
|
| 400 | 400 | } |
| 401 | 401 | |
| 402 | - if ( $this->checkReferences ) { |
|
| 403 | - $result = array_merge( $result, |
|
| 402 | + if ($this->checkReferences) { |
|
| 403 | + $result = array_merge($result, |
|
| 404 | 404 | $this->checkConstraintsForReferences( |
| 405 | 405 | $entity, |
| 406 | 406 | $statement, |
| 407 | 407 | $constraintIds, |
| 408 | 408 | $defaultResultsPerContext |
| 409 | - ) ); |
|
| 409 | + )); |
|
| 410 | 410 | } |
| 411 | 411 | |
| 412 | 412 | return $result; |
@@ -421,17 +421,17 @@ discard block |
||
| 421 | 421 | * @param string[]|null $constraintIds |
| 422 | 422 | * @return Constraint[] |
| 423 | 423 | */ |
| 424 | - private function getConstraintsToUse( PropertyId $propertyId, array $constraintIds = null ) { |
|
| 425 | - if ( !( $propertyId instanceof NumericPropertyId ) ) { |
|
| 424 | + private function getConstraintsToUse(PropertyId $propertyId, array $constraintIds = null) { |
|
| 425 | + if (!($propertyId instanceof NumericPropertyId)) { |
|
| 426 | 426 | throw new InvalidArgumentException( |
| 427 | - 'Non-numeric property ID not supported:' . $propertyId->getSerialization() |
|
| 427 | + 'Non-numeric property ID not supported:'.$propertyId->getSerialization() |
|
| 428 | 428 | ); |
| 429 | 429 | } |
| 430 | - $constraints = $this->constraintLookup->queryConstraintsForProperty( $propertyId ); |
|
| 431 | - if ( $constraintIds !== null ) { |
|
| 430 | + $constraints = $this->constraintLookup->queryConstraintsForProperty($propertyId); |
|
| 431 | + if ($constraintIds !== null) { |
|
| 432 | 432 | $constraintsToUse = []; |
| 433 | - foreach ( $constraints as $constraint ) { |
|
| 434 | - if ( in_array( $constraint->getConstraintId(), $constraintIds ) ) { |
|
| 433 | + foreach ($constraints as $constraint) { |
|
| 434 | + if (in_array($constraint->getConstraintId(), $constraintIds)) { |
|
| 435 | 435 | $constraintsToUse[] = $constraint; |
| 436 | 436 | } |
| 437 | 437 | } |
@@ -455,18 +455,18 @@ discard block |
||
| 455 | 455 | array $constraintIds = null, |
| 456 | 456 | callable $defaultResults = null |
| 457 | 457 | ) { |
| 458 | - $context = new MainSnakContext( $entity, $statement ); |
|
| 458 | + $context = new MainSnakContext($entity, $statement); |
|
| 459 | 459 | $constraints = $this->getConstraintsToUse( |
| 460 | 460 | $statement->getPropertyId(), |
| 461 | 461 | $constraintIds |
| 462 | 462 | ); |
| 463 | - $result = $defaultResults !== null ? $defaultResults( $context ) : []; |
|
| 463 | + $result = $defaultResults !== null ? $defaultResults($context) : []; |
|
| 464 | 464 | |
| 465 | - foreach ( $constraints as $constraint ) { |
|
| 465 | + foreach ($constraints as $constraint) { |
|
| 466 | 466 | $parameters = $constraint->getConstraintParameters(); |
| 467 | 467 | try { |
| 468 | - $exceptions = $this->constraintParameterParser->parseExceptionParameter( $parameters ); |
|
| 469 | - } catch ( ConstraintParameterException $e ) { |
|
| 468 | + $exceptions = $this->constraintParameterParser->parseExceptionParameter($parameters); |
|
| 469 | + } catch (ConstraintParameterException $e) { |
|
| 470 | 470 | $result[] = new CheckResult( |
| 471 | 471 | $context, |
| 472 | 472 | $constraint, |
@@ -476,13 +476,13 @@ discard block |
||
| 476 | 476 | continue; |
| 477 | 477 | } |
| 478 | 478 | |
| 479 | - if ( in_array( $entity->getId(), $exceptions ) ) { |
|
| 480 | - $message = new ViolationMessage( 'wbqc-violation-message-exception' ); |
|
| 481 | - $result[] = new CheckResult( $context, $constraint, [], CheckResult::STATUS_EXCEPTION, $message ); |
|
| 479 | + if (in_array($entity->getId(), $exceptions)) { |
|
| 480 | + $message = new ViolationMessage('wbqc-violation-message-exception'); |
|
| 481 | + $result[] = new CheckResult($context, $constraint, [], CheckResult::STATUS_EXCEPTION, $message); |
|
| 482 | 482 | continue; |
| 483 | 483 | } |
| 484 | 484 | |
| 485 | - $result[] = $this->getCheckResultFor( $context, $constraint ); |
|
| 485 | + $result[] = $this->getCheckResultFor($context, $constraint); |
|
| 486 | 486 | } |
| 487 | 487 | |
| 488 | 488 | return $result; |
@@ -504,24 +504,24 @@ discard block |
||
| 504 | 504 | ) { |
| 505 | 505 | $result = []; |
| 506 | 506 | |
| 507 | - if ( in_array( |
|
| 507 | + if (in_array( |
|
| 508 | 508 | $statement->getPropertyId()->getSerialization(), |
| 509 | 509 | $this->propertiesWithViolatingQualifiers |
| 510 | - ) ) { |
|
| 510 | + )) { |
|
| 511 | 511 | return $result; |
| 512 | 512 | } |
| 513 | 513 | |
| 514 | - foreach ( $statement->getQualifiers() as $qualifier ) { |
|
| 515 | - $qualifierContext = new QualifierContext( $entity, $statement, $qualifier ); |
|
| 516 | - if ( $defaultResultsPerContext !== null ) { |
|
| 517 | - $result = array_merge( $result, $defaultResultsPerContext( $qualifierContext ) ); |
|
| 514 | + foreach ($statement->getQualifiers() as $qualifier) { |
|
| 515 | + $qualifierContext = new QualifierContext($entity, $statement, $qualifier); |
|
| 516 | + if ($defaultResultsPerContext !== null) { |
|
| 517 | + $result = array_merge($result, $defaultResultsPerContext($qualifierContext)); |
|
| 518 | 518 | } |
| 519 | 519 | $qualifierConstraints = $this->getConstraintsToUse( |
| 520 | 520 | $qualifierContext->getSnak()->getPropertyId(), |
| 521 | 521 | $constraintIds |
| 522 | 522 | ); |
| 523 | - foreach ( $qualifierConstraints as $qualifierConstraint ) { |
|
| 524 | - $result[] = $this->getCheckResultFor( $qualifierContext, $qualifierConstraint ); |
|
| 523 | + foreach ($qualifierConstraints as $qualifierConstraint) { |
|
| 524 | + $result[] = $this->getCheckResultFor($qualifierContext, $qualifierConstraint); |
|
| 525 | 525 | } |
| 526 | 526 | } |
| 527 | 527 | |
@@ -545,19 +545,19 @@ discard block |
||
| 545 | 545 | $result = []; |
| 546 | 546 | |
| 547 | 547 | /** @var Reference $reference */ |
| 548 | - foreach ( $statement->getReferences() as $reference ) { |
|
| 549 | - foreach ( $reference->getSnaks() as $snak ) { |
|
| 548 | + foreach ($statement->getReferences() as $reference) { |
|
| 549 | + foreach ($reference->getSnaks() as $snak) { |
|
| 550 | 550 | $referenceContext = new ReferenceContext( |
| 551 | 551 | $entity, $statement, $reference, $snak |
| 552 | 552 | ); |
| 553 | - if ( $defaultResultsPerContext !== null ) { |
|
| 554 | - $result = array_merge( $result, $defaultResultsPerContext( $referenceContext ) ); |
|
| 553 | + if ($defaultResultsPerContext !== null) { |
|
| 554 | + $result = array_merge($result, $defaultResultsPerContext($referenceContext)); |
|
| 555 | 555 | } |
| 556 | 556 | $referenceConstraints = $this->getConstraintsToUse( |
| 557 | 557 | $referenceContext->getSnak()->getPropertyId(), |
| 558 | 558 | $constraintIds |
| 559 | 559 | ); |
| 560 | - foreach ( $referenceConstraints as $referenceConstraint ) { |
|
| 560 | + foreach ($referenceConstraints as $referenceConstraint) { |
|
| 561 | 561 | $result[] = $this->getCheckResultFor( |
| 562 | 562 | $referenceContext, |
| 563 | 563 | $referenceConstraint |
@@ -576,20 +576,20 @@ discard block |
||
| 576 | 576 | * @throws InvalidArgumentException |
| 577 | 577 | * @return CheckResult |
| 578 | 578 | */ |
| 579 | - private function getCheckResultFor( Context $context, Constraint $constraint ) { |
|
| 580 | - if ( array_key_exists( $constraint->getConstraintTypeItemId(), $this->checkerMap ) ) { |
|
| 579 | + private function getCheckResultFor(Context $context, Constraint $constraint) { |
|
| 580 | + if (array_key_exists($constraint->getConstraintTypeItemId(), $this->checkerMap)) { |
|
| 581 | 581 | $checker = $this->checkerMap[$constraint->getConstraintTypeItemId()]; |
| 582 | - $result = $this->handleScope( $checker, $context, $constraint ); |
|
| 582 | + $result = $this->handleScope($checker, $context, $constraint); |
|
| 583 | 583 | |
| 584 | - if ( $result !== null ) { |
|
| 585 | - $this->addMetadata( $context, $result ); |
|
| 584 | + if ($result !== null) { |
|
| 585 | + $this->addMetadata($context, $result); |
|
| 586 | 586 | return $result; |
| 587 | 587 | } |
| 588 | 588 | |
| 589 | - $startTime = microtime( true ); |
|
| 589 | + $startTime = microtime(true); |
|
| 590 | 590 | try { |
| 591 | - $result = $checker->checkConstraint( $context, $constraint ); |
|
| 592 | - } catch ( ConstraintParameterException $e ) { |
|
| 591 | + $result = $checker->checkConstraint($context, $constraint); |
|
| 592 | + } catch (ConstraintParameterException $e) { |
|
| 593 | 593 | $result = new CheckResult( |
| 594 | 594 | $context, |
| 595 | 595 | $constraint, |
@@ -597,28 +597,28 @@ discard block |
||
| 597 | 597 | CheckResult::STATUS_BAD_PARAMETERS, |
| 598 | 598 | $e->getViolationMessage() |
| 599 | 599 | ); |
| 600 | - } catch ( SparqlHelperException $e ) { |
|
| 601 | - $message = new ViolationMessage( 'wbqc-violation-message-sparql-error' ); |
|
| 602 | - $result = new CheckResult( $context, $constraint, [], CheckResult::STATUS_TODO, $message ); |
|
| 600 | + } catch (SparqlHelperException $e) { |
|
| 601 | + $message = new ViolationMessage('wbqc-violation-message-sparql-error'); |
|
| 602 | + $result = new CheckResult($context, $constraint, [], CheckResult::STATUS_TODO, $message); |
|
| 603 | 603 | } |
| 604 | - $endTime = microtime( true ); |
|
| 604 | + $endTime = microtime(true); |
|
| 605 | 605 | |
| 606 | - $this->addMetadata( $context, $result ); |
|
| 606 | + $this->addMetadata($context, $result); |
|
| 607 | 607 | |
| 608 | - $this->downgradeResultStatus( $context, $result ); |
|
| 608 | + $this->downgradeResultStatus($context, $result); |
|
| 609 | 609 | |
| 610 | 610 | $this->loggingHelper->logConstraintCheck( |
| 611 | 611 | $context, |
| 612 | 612 | $constraint, |
| 613 | 613 | $result, |
| 614 | - get_class( $checker ), |
|
| 614 | + get_class($checker), |
|
| 615 | 615 | $endTime - $startTime, |
| 616 | 616 | __METHOD__ |
| 617 | 617 | ); |
| 618 | 618 | |
| 619 | 619 | return $result; |
| 620 | 620 | } else { |
| 621 | - return new CheckResult( $context, $constraint, [], CheckResult::STATUS_TODO, null ); |
|
| 621 | + return new CheckResult($context, $constraint, [], CheckResult::STATUS_TODO, null); |
|
| 622 | 622 | } |
| 623 | 623 | } |
| 624 | 624 | |
@@ -627,84 +627,84 @@ discard block |
||
| 627 | 627 | Context $context, |
| 628 | 628 | Constraint $constraint |
| 629 | 629 | ): ?CheckResult { |
| 630 | - $validContextTypes = $this->getValidContextTypes( $constraint ); |
|
| 631 | - $validEntityTypes = $this->getValidEntityTypes( $constraint ); |
|
| 630 | + $validContextTypes = $this->getValidContextTypes($constraint); |
|
| 631 | + $validEntityTypes = $this->getValidEntityTypes($constraint); |
|
| 632 | 632 | try { |
| 633 | - [ $checkedContextTypes, $checkedEntityTypes ] = $this->constraintParameterParser->parseConstraintScopeParameters( |
|
| 633 | + [$checkedContextTypes, $checkedEntityTypes] = $this->constraintParameterParser->parseConstraintScopeParameters( |
|
| 634 | 634 | $constraint->getConstraintParameters(), |
| 635 | 635 | $constraint->getConstraintTypeItemId(), |
| 636 | 636 | $validContextTypes, |
| 637 | 637 | $validEntityTypes |
| 638 | 638 | ); |
| 639 | - } catch ( ConstraintParameterException $e ) { |
|
| 640 | - return new CheckResult( $context, $constraint, [], CheckResult::STATUS_BAD_PARAMETERS, $e->getViolationMessage() ); |
|
| 639 | + } catch (ConstraintParameterException $e) { |
|
| 640 | + return new CheckResult($context, $constraint, [], CheckResult::STATUS_BAD_PARAMETERS, $e->getViolationMessage()); |
|
| 641 | 641 | } |
| 642 | 642 | |
| 643 | - if ( $checkedContextTypes === null ) { |
|
| 643 | + if ($checkedContextTypes === null) { |
|
| 644 | 644 | $checkedContextTypes = $checker->getDefaultContextTypes(); |
| 645 | 645 | } |
| 646 | 646 | $contextType = $context->getType(); |
| 647 | - if ( !in_array( $contextType, $checkedContextTypes ) ) { |
|
| 648 | - return new CheckResult( $context, $constraint, [], CheckResult::STATUS_NOT_IN_SCOPE, null ); |
|
| 647 | + if (!in_array($contextType, $checkedContextTypes)) { |
|
| 648 | + return new CheckResult($context, $constraint, [], CheckResult::STATUS_NOT_IN_SCOPE, null); |
|
| 649 | 649 | } |
| 650 | - if ( $checker->getSupportedContextTypes()[$contextType] === CheckResult::STATUS_TODO ) { |
|
| 651 | - return new CheckResult( $context, $constraint, [], CheckResult::STATUS_TODO, null ); |
|
| 650 | + if ($checker->getSupportedContextTypes()[$contextType] === CheckResult::STATUS_TODO) { |
|
| 651 | + return new CheckResult($context, $constraint, [], CheckResult::STATUS_TODO, null); |
|
| 652 | 652 | } |
| 653 | 653 | |
| 654 | - if ( $checkedEntityTypes === null ) { |
|
| 654 | + if ($checkedEntityTypes === null) { |
|
| 655 | 655 | $checkedEntityTypes = $validEntityTypes; |
| 656 | 656 | } |
| 657 | 657 | $entityType = $context->getEntity()->getType(); |
| 658 | - if ( !in_array( $entityType, $checkedEntityTypes ) ) { |
|
| 659 | - return new CheckResult( $context, $constraint, [], CheckResult::STATUS_NOT_IN_SCOPE, null ); |
|
| 658 | + if (!in_array($entityType, $checkedEntityTypes)) { |
|
| 659 | + return new CheckResult($context, $constraint, [], CheckResult::STATUS_NOT_IN_SCOPE, null); |
|
| 660 | 660 | } |
| 661 | - if ( $checker->getSupportedEntityTypes()[$entityType] === CheckResult::STATUS_TODO ) { |
|
| 662 | - return new CheckResult( $context, $constraint, [], CheckResult::STATUS_TODO, null ); |
|
| 661 | + if ($checker->getSupportedEntityTypes()[$entityType] === CheckResult::STATUS_TODO) { |
|
| 662 | + return new CheckResult($context, $constraint, [], CheckResult::STATUS_TODO, null); |
|
| 663 | 663 | } |
| 664 | 664 | |
| 665 | 665 | return null; |
| 666 | 666 | } |
| 667 | 667 | |
| 668 | - private function addMetadata( Context $context, CheckResult $result ) { |
|
| 669 | - $result->withMetadata( Metadata::merge( [ |
|
| 668 | + private function addMetadata(Context $context, CheckResult $result) { |
|
| 669 | + $result->withMetadata(Metadata::merge([ |
|
| 670 | 670 | $result->getMetadata(), |
| 671 | - Metadata::ofDependencyMetadata( DependencyMetadata::merge( [ |
|
| 672 | - DependencyMetadata::ofEntityId( $context->getEntity()->getId() ), |
|
| 673 | - DependencyMetadata::ofEntityId( $result->getConstraint()->getPropertyId() ), |
|
| 674 | - ] ) ), |
|
| 675 | - ] ) ); |
|
| 671 | + Metadata::ofDependencyMetadata(DependencyMetadata::merge([ |
|
| 672 | + DependencyMetadata::ofEntityId($context->getEntity()->getId()), |
|
| 673 | + DependencyMetadata::ofEntityId($result->getConstraint()->getPropertyId()), |
|
| 674 | + ])), |
|
| 675 | + ])); |
|
| 676 | 676 | } |
| 677 | 677 | |
| 678 | - private function downgradeResultStatus( Context $context, CheckResult &$result ) { |
|
| 678 | + private function downgradeResultStatus(Context $context, CheckResult &$result) { |
|
| 679 | 679 | $constraint = $result->getConstraint(); |
| 680 | 680 | try { |
| 681 | 681 | $constraintStatus = $this->constraintParameterParser |
| 682 | - ->parseConstraintStatusParameter( $constraint->getConstraintParameters() ); |
|
| 683 | - } catch ( ConstraintParameterException $e ) { |
|
| 684 | - $result = new CheckResult( $context, $constraint, [], CheckResult::STATUS_BAD_PARAMETERS, $e->getViolationMessage() ); |
|
| 682 | + ->parseConstraintStatusParameter($constraint->getConstraintParameters()); |
|
| 683 | + } catch (ConstraintParameterException $e) { |
|
| 684 | + $result = new CheckResult($context, $constraint, [], CheckResult::STATUS_BAD_PARAMETERS, $e->getViolationMessage()); |
|
| 685 | 685 | $constraintStatus = null; |
| 686 | 686 | } |
| 687 | - if ( $constraintStatus === null ) { |
|
| 687 | + if ($constraintStatus === null) { |
|
| 688 | 688 | // downgrade violation to warning |
| 689 | - if ( $result->getStatus() === CheckResult::STATUS_VIOLATION ) { |
|
| 690 | - $result->setStatus( CheckResult::STATUS_WARNING ); |
|
| 689 | + if ($result->getStatus() === CheckResult::STATUS_VIOLATION) { |
|
| 690 | + $result->setStatus(CheckResult::STATUS_WARNING); |
|
| 691 | 691 | } |
| 692 | - } elseif ( $constraintStatus === 'suggestion' ) { |
|
| 692 | + } elseif ($constraintStatus === 'suggestion') { |
|
| 693 | 693 | // downgrade violation to suggestion |
| 694 | - if ( $result->getStatus() === CheckResult::STATUS_VIOLATION ) { |
|
| 695 | - $result->setStatus( CheckResult::STATUS_SUGGESTION ); |
|
| 694 | + if ($result->getStatus() === CheckResult::STATUS_VIOLATION) { |
|
| 695 | + $result->setStatus(CheckResult::STATUS_SUGGESTION); |
|
| 696 | 696 | } |
| 697 | - $result->addParameter( 'constraint_status', $constraintStatus ); |
|
| 697 | + $result->addParameter('constraint_status', $constraintStatus); |
|
| 698 | 698 | } else { |
| 699 | - if ( $constraintStatus !== 'mandatory' ) { |
|
| 699 | + if ($constraintStatus !== 'mandatory') { |
|
| 700 | 700 | // @codeCoverageIgnoreStart |
| 701 | 701 | throw new LogicException( |
| 702 | - "Unknown constraint status '$constraintStatus', " . |
|
| 702 | + "Unknown constraint status '$constraintStatus', ". |
|
| 703 | 703 | "only known statuses are 'mandatory' and 'suggestion'" |
| 704 | 704 | ); |
| 705 | 705 | // @codeCoverageIgnoreEnd |
| 706 | 706 | } |
| 707 | - $result->addParameter( 'constraint_status', $constraintStatus ); |
|
| 707 | + $result->addParameter('constraint_status', $constraintStatus); |
|
| 708 | 708 | } |
| 709 | 709 | } |
| 710 | 710 | |
@@ -713,12 +713,12 @@ discard block |
||
| 713 | 713 | * |
| 714 | 714 | * @return CheckResult[] |
| 715 | 715 | */ |
| 716 | - private function sortResult( array $result ) { |
|
| 717 | - if ( count( $result ) < 2 ) { |
|
| 716 | + private function sortResult(array $result) { |
|
| 717 | + if (count($result) < 2) { |
|
| 718 | 718 | return $result; |
| 719 | 719 | } |
| 720 | 720 | |
| 721 | - $sortFunction = static function ( CheckResult $a, CheckResult $b ) { |
|
| 721 | + $sortFunction = static function(CheckResult $a, CheckResult $b) { |
|
| 722 | 722 | $orderNum = 0; |
| 723 | 723 | $order = [ |
| 724 | 724 | CheckResult::STATUS_BAD_PARAMETERS => $orderNum++, |
@@ -735,55 +735,55 @@ discard block |
||
| 735 | 735 | $statusA = $a->getStatus(); |
| 736 | 736 | $statusB = $b->getStatus(); |
| 737 | 737 | |
| 738 | - $orderA = array_key_exists( $statusA, $order ) ? $order[ $statusA ] : $order[ 'other' ]; |
|
| 739 | - $orderB = array_key_exists( $statusB, $order ) ? $order[ $statusB ] : $order[ 'other' ]; |
|
| 738 | + $orderA = array_key_exists($statusA, $order) ? $order[$statusA] : $order['other']; |
|
| 739 | + $orderB = array_key_exists($statusB, $order) ? $order[$statusB] : $order['other']; |
|
| 740 | 740 | |
| 741 | - if ( $orderA === $orderB ) { |
|
| 741 | + if ($orderA === $orderB) { |
|
| 742 | 742 | $cursorA = $a->getContextCursor(); |
| 743 | 743 | $cursorB = $b->getContextCursor(); |
| 744 | 744 | |
| 745 | - if ( $cursorA instanceof EntityContextCursor ) { |
|
| 745 | + if ($cursorA instanceof EntityContextCursor) { |
|
| 746 | 746 | return $cursorB instanceof EntityContextCursor ? 0 : -1; |
| 747 | 747 | } |
| 748 | - if ( $cursorB instanceof EntityContextCursor ) { |
|
| 748 | + if ($cursorB instanceof EntityContextCursor) { |
|
| 749 | 749 | return $cursorA instanceof EntityContextCursor ? 0 : 1; |
| 750 | 750 | } |
| 751 | 751 | |
| 752 | 752 | $pidA = $cursorA->getSnakPropertyId(); |
| 753 | 753 | $pidB = $cursorB->getSnakPropertyId(); |
| 754 | 754 | |
| 755 | - if ( $pidA === $pidB ) { |
|
| 755 | + if ($pidA === $pidB) { |
|
| 756 | 756 | $hashA = $cursorA->getSnakHash(); |
| 757 | 757 | $hashB = $cursorB->getSnakHash(); |
| 758 | 758 | |
| 759 | - if ( $hashA === $hashB ) { |
|
| 760 | - if ( $a instanceof NullResult ) { |
|
| 759 | + if ($hashA === $hashB) { |
|
| 760 | + if ($a instanceof NullResult) { |
|
| 761 | 761 | return $b instanceof NullResult ? 0 : -1; |
| 762 | 762 | } |
| 763 | - if ( $b instanceof NullResult ) { |
|
| 763 | + if ($b instanceof NullResult) { |
|
| 764 | 764 | return $a instanceof NullResult ? 0 : 1; |
| 765 | 765 | } |
| 766 | 766 | |
| 767 | 767 | $typeA = $a->getConstraint()->getConstraintTypeItemId(); |
| 768 | 768 | $typeB = $b->getConstraint()->getConstraintTypeItemId(); |
| 769 | 769 | |
| 770 | - if ( $typeA == $typeB ) { |
|
| 770 | + if ($typeA == $typeB) { |
|
| 771 | 771 | return 0; |
| 772 | 772 | } else { |
| 773 | - return ( $typeA > $typeB ) ? 1 : -1; |
|
| 773 | + return ($typeA > $typeB) ? 1 : -1; |
|
| 774 | 774 | } |
| 775 | 775 | } else { |
| 776 | - return ( $hashA > $hashB ) ? 1 : -1; |
|
| 776 | + return ($hashA > $hashB) ? 1 : -1; |
|
| 777 | 777 | } |
| 778 | 778 | } else { |
| 779 | - return ( $pidA > $pidB ) ? 1 : -1; |
|
| 779 | + return ($pidA > $pidB) ? 1 : -1; |
|
| 780 | 780 | } |
| 781 | 781 | } else { |
| 782 | - return ( $orderA > $orderB ) ? 1 : -1; |
|
| 782 | + return ($orderA > $orderB) ? 1 : -1; |
|
| 783 | 783 | } |
| 784 | 784 | }; |
| 785 | 785 | |
| 786 | - uasort( $result, $sortFunction ); |
|
| 786 | + uasort($result, $sortFunction); |
|
| 787 | 787 | |
| 788 | 788 | return $result; |
| 789 | 789 | } |