@@ -1,6 +1,6 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -declare( strict_types = 1 ); |
|
| 3 | +declare(strict_types=1); |
|
| 4 | 4 | |
| 5 | 5 | namespace WikibaseQuality\ConstraintReport\ConstraintCheck\Result; |
| 6 | 6 | |
@@ -60,14 +60,14 @@ discard block |
||
| 60 | 60 | $this->serializeDependencyMetadata = $serializeDependencyMetadata; |
| 61 | 61 | } |
| 62 | 62 | |
| 63 | - public function serialize( CheckResult $checkResult ): array { |
|
| 63 | + public function serialize(CheckResult $checkResult): array { |
|
| 64 | 64 | $contextCursor = $checkResult->getContextCursor(); |
| 65 | 65 | |
| 66 | 66 | $serialization = [ |
| 67 | - self::KEY_CONTEXT_CURSOR => $this->contextCursorSerializer->serialize( $contextCursor ), |
|
| 67 | + self::KEY_CONTEXT_CURSOR => $this->contextCursorSerializer->serialize($contextCursor), |
|
| 68 | 68 | ]; |
| 69 | 69 | |
| 70 | - if ( $checkResult instanceof NullResult ) { |
|
| 70 | + if ($checkResult instanceof NullResult) { |
|
| 71 | 71 | $serialization[self::KEY_NULL_RESULT] = 1; |
| 72 | 72 | } else { |
| 73 | 73 | $constraint = $checkResult->getConstraint(); |
@@ -76,57 +76,57 @@ discard block |
||
| 76 | 76 | $clarification = $checkResult->getConstraintClarification(); |
| 77 | 77 | |
| 78 | 78 | $serialization[self::KEY_CONSTRAINT] = |
| 79 | - $this->constraintSerializer->serialize( $constraint ); |
|
| 79 | + $this->constraintSerializer->serialize($constraint); |
|
| 80 | 80 | $serialization[self::KEY_CHECK_RESULT_STATUS] = |
| 81 | 81 | $checkResult->getStatus(); |
| 82 | 82 | $serialization[self::KEY_CACHING_METADATA] = |
| 83 | - $this->serializeCachingMetadata( $cachingMetadata ); |
|
| 83 | + $this->serializeCachingMetadata($cachingMetadata); |
|
| 84 | 84 | |
| 85 | - if ( $violationMessage !== null ) { |
|
| 85 | + if ($violationMessage !== null) { |
|
| 86 | 86 | $serialization[self::KEY_VIOLATION_MESSAGE] = |
| 87 | - $this->violationMessageSerializer->serialize( $violationMessage ); |
|
| 87 | + $this->violationMessageSerializer->serialize($violationMessage); |
|
| 88 | 88 | } |
| 89 | - if ( $clarification->getTexts() !== [] ) { |
|
| 89 | + if ($clarification->getTexts() !== []) { |
|
| 90 | 90 | $serialization[self::KEY_CONSTRAINT_CLARIFICATION] = |
| 91 | 91 | $clarification->getArrayValue(); |
| 92 | 92 | } |
| 93 | 93 | } |
| 94 | 94 | |
| 95 | - if ( $this->serializeDependencyMetadata ) { |
|
| 95 | + if ($this->serializeDependencyMetadata) { |
|
| 96 | 96 | $serialization[self::KEY_DEPENDENCY_METADATA] = |
| 97 | - $this->serializeDependencyMetadata( $checkResult ); |
|
| 97 | + $this->serializeDependencyMetadata($checkResult); |
|
| 98 | 98 | } |
| 99 | 99 | |
| 100 | 100 | return $serialization; |
| 101 | 101 | } |
| 102 | 102 | |
| 103 | - private function serializeCachingMetadata( CachingMetadata $cachingMetadata ): array { |
|
| 103 | + private function serializeCachingMetadata(CachingMetadata $cachingMetadata): array { |
|
| 104 | 104 | $maximumAge = $cachingMetadata->getMaximumAgeInSeconds(); |
| 105 | 105 | |
| 106 | 106 | $serialization = []; |
| 107 | 107 | |
| 108 | - if ( $maximumAge > 0 ) { |
|
| 108 | + if ($maximumAge > 0) { |
|
| 109 | 109 | $serialization[self::KEY_CACHING_METADATA_MAX_AGE] = $maximumAge; |
| 110 | 110 | } |
| 111 | 111 | |
| 112 | 112 | return $serialization; |
| 113 | 113 | } |
| 114 | 114 | |
| 115 | - private function serializeDependencyMetadata( CheckResult $checkResult ): array { |
|
| 115 | + private function serializeDependencyMetadata(CheckResult $checkResult): array { |
|
| 116 | 116 | $dependencyMetadata = $checkResult->getMetadata()->getDependencyMetadata(); |
| 117 | 117 | $entityIds = $dependencyMetadata->getEntityIds(); |
| 118 | 118 | $futureTime = $dependencyMetadata->getFutureTime(); |
| 119 | 119 | |
| 120 | 120 | $serialization = [ |
| 121 | 121 | self::KEY_DEPENDENCY_METADATA_ENTITY_IDS => array_map( |
| 122 | - static function ( EntityId $entityId ) { |
|
| 122 | + static function(EntityId $entityId) { |
|
| 123 | 123 | return $entityId->getSerialization(); |
| 124 | 124 | }, |
| 125 | 125 | $entityIds |
| 126 | 126 | ), |
| 127 | 127 | ]; |
| 128 | 128 | |
| 129 | - if ( $futureTime !== null ) { |
|
| 129 | + if ($futureTime !== null) { |
|
| 130 | 130 | $serialization[self::KEY_DEPENDENCY_METADATA_FUTURE_TIME] = |
| 131 | 131 | $futureTime->getArrayValue(); |
| 132 | 132 | } |
@@ -1,6 +1,6 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -declare( strict_types = 1 ); |
|
| 3 | +declare(strict_types=1); |
|
| 4 | 4 | |
| 5 | 5 | namespace WikibaseQuality\ConstraintReport\Api; |
| 6 | 6 | |
@@ -41,11 +41,11 @@ discard block |
||
| 41 | 41 | $this->violationMessageRenderer = $violationMessageRenderer; |
| 42 | 42 | } |
| 43 | 43 | |
| 44 | - public function render( CachedCheckResults $checkResults ): CachedCheckConstraintsResponse { |
|
| 44 | + public function render(CachedCheckResults $checkResults): CachedCheckConstraintsResponse { |
|
| 45 | 45 | $response = []; |
| 46 | - foreach ( $checkResults->getArray() as $checkResult ) { |
|
| 47 | - $resultArray = $this->checkResultToArray( $checkResult ); |
|
| 48 | - $checkResult->getContextCursor()->storeCheckResultInArray( $resultArray, $response ); |
|
| 46 | + foreach ($checkResults->getArray() as $checkResult) { |
|
| 47 | + $resultArray = $this->checkResultToArray($checkResult); |
|
| 48 | + $checkResult->getContextCursor()->storeCheckResultInArray($resultArray, $response); |
|
| 49 | 49 | } |
| 50 | 50 | return new CachedCheckConstraintsResponse( |
| 51 | 51 | $response, |
@@ -53,19 +53,19 @@ discard block |
||
| 53 | 53 | ); |
| 54 | 54 | } |
| 55 | 55 | |
| 56 | - public function checkResultToArray( CheckResult $checkResult ): ?array { |
|
| 57 | - if ( $checkResult instanceof NullResult ) { |
|
| 56 | + public function checkResultToArray(CheckResult $checkResult): ?array { |
|
| 57 | + if ($checkResult instanceof NullResult) { |
|
| 58 | 58 | return null; |
| 59 | 59 | } |
| 60 | 60 | |
| 61 | 61 | $constraintId = $checkResult->getConstraint()->getConstraintId(); |
| 62 | 62 | $typeItemId = $checkResult->getConstraint()->getConstraintTypeItemId(); |
| 63 | - $constraintPropertyId = new NumericPropertyId( $checkResult->getContextCursor()->getSnakPropertyId() ); |
|
| 63 | + $constraintPropertyId = new NumericPropertyId($checkResult->getContextCursor()->getSnakPropertyId()); |
|
| 64 | 64 | |
| 65 | - $title = $this->entityTitleLookup->getTitleForId( $constraintPropertyId ); |
|
| 65 | + $title = $this->entityTitleLookup->getTitleForId($constraintPropertyId); |
|
| 66 | 66 | $talkTitle = $title->getTalkPageIfDefined(); |
| 67 | - $typeLabel = $this->entityIdLabelFormatter->formatEntityId( new ItemId( $typeItemId ) ); |
|
| 68 | - $link = $title->getFullURL() . '#' . $constraintId; |
|
| 67 | + $typeLabel = $this->entityIdLabelFormatter->formatEntityId(new ItemId($typeItemId)); |
|
| 68 | + $link = $title->getFullURL().'#'.$constraintId; |
|
| 69 | 69 | |
| 70 | 70 | $constraint = [ |
| 71 | 71 | 'id' => $constraintId, |
@@ -81,28 +81,28 @@ discard block |
||
| 81 | 81 | 'constraint' => $constraint, |
| 82 | 82 | ]; |
| 83 | 83 | $message = $checkResult->getMessage(); |
| 84 | - if ( $message ) { |
|
| 85 | - $result['message-html'] = $this->violationMessageRenderer->render( $message ); |
|
| 84 | + if ($message) { |
|
| 85 | + $result['message-html'] = $this->violationMessageRenderer->render($message); |
|
| 86 | 86 | } |
| 87 | - $constraintClarification = $this->renderConstraintClarification( $checkResult ); |
|
| 88 | - if ( $constraintClarification !== null ) { |
|
| 87 | + $constraintClarification = $this->renderConstraintClarification($checkResult); |
|
| 88 | + if ($constraintClarification !== null) { |
|
| 89 | 89 | $result['constraint-clarification'] = $constraintClarification; |
| 90 | 90 | } |
| 91 | - if ( $checkResult->getContextCursor()->getType() === Context::TYPE_STATEMENT ) { |
|
| 91 | + if ($checkResult->getContextCursor()->getType() === Context::TYPE_STATEMENT) { |
|
| 92 | 92 | $result['claim'] = $checkResult->getContextCursor()->getStatementGuid(); |
| 93 | 93 | } |
| 94 | 94 | $cachingMetadataArray = $checkResult->getMetadata()->getCachingMetadata()->toArray(); |
| 95 | - if ( $cachingMetadataArray !== null ) { |
|
| 95 | + if ($cachingMetadataArray !== null) { |
|
| 96 | 96 | $result['cached'] = $cachingMetadataArray; |
| 97 | 97 | } |
| 98 | 98 | |
| 99 | 99 | return $result; |
| 100 | 100 | } |
| 101 | 101 | |
| 102 | - private function renderConstraintClarification( CheckResult $result ): ?string { |
|
| 102 | + private function renderConstraintClarification(CheckResult $result): ?string { |
|
| 103 | 103 | $texts = $result->getConstraintClarification()->getTexts(); |
| 104 | - foreach ( $this->languageFallbackChain->getFetchLanguageCodes() as $languageCode ) { |
|
| 105 | - if ( array_key_exists( $languageCode, $texts ) ) { |
|
| 104 | + foreach ($this->languageFallbackChain->getFetchLanguageCodes() as $languageCode) { |
|
| 105 | + if (array_key_exists($languageCode, $texts)) { |
|
| 106 | 106 | return $texts[$languageCode]->getText(); |
| 107 | 107 | } |
| 108 | 108 | } |
@@ -1,6 +1,6 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -declare( strict_types = 1 ); |
|
| 3 | +declare(strict_types=1); |
|
| 4 | 4 | |
| 5 | 5 | namespace WikibaseQuality\ConstraintReport\ConstraintCheck\Result; |
| 6 | 6 | |
@@ -40,13 +40,13 @@ discard block |
||
| 40 | 40 | $this->entityIdParser = $entityIdParser; |
| 41 | 41 | } |
| 42 | 42 | |
| 43 | - public function deserialize( array $serialization ): CheckResult { |
|
| 43 | + public function deserialize(array $serialization): CheckResult { |
|
| 44 | 44 | $contextCursor = $this->contextCursorDeserializer->deserialize( |
| 45 | 45 | $serialization[CheckResultSerializer::KEY_CONTEXT_CURSOR] |
| 46 | 46 | ); |
| 47 | 47 | |
| 48 | - if ( array_key_exists( CheckResultSerializer::KEY_NULL_RESULT, $serialization ) ) { |
|
| 49 | - $result = new NullResult( $contextCursor ); |
|
| 48 | + if (array_key_exists(CheckResultSerializer::KEY_NULL_RESULT, $serialization)) { |
|
| 49 | + $result = new NullResult($contextCursor); |
|
| 50 | 50 | $cachingMetadata = CachingMetadata::fresh(); |
| 51 | 51 | } else { |
| 52 | 52 | $constraint = $this->constraintDeserializer->deserialize( |
@@ -57,7 +57,7 @@ discard block |
||
| 57 | 57 | |
| 58 | 58 | $status = $serialization[CheckResultSerializer::KEY_CHECK_RESULT_STATUS]; |
| 59 | 59 | |
| 60 | - $violationMessage = $this->getViolationMessageFromSerialization( $serialization ); |
|
| 60 | + $violationMessage = $this->getViolationMessageFromSerialization($serialization); |
|
| 61 | 61 | |
| 62 | 62 | $result = new CheckResult( |
| 63 | 63 | $contextCursor, |
@@ -68,7 +68,7 @@ discard block |
||
| 68 | 68 | ); |
| 69 | 69 | |
| 70 | 70 | $result->setConstraintClarification( |
| 71 | - $this->getConstraintClarificationFromSerialization( $serialization ) |
|
| 71 | + $this->getConstraintClarificationFromSerialization($serialization) |
|
| 72 | 72 | ); |
| 73 | 73 | |
| 74 | 74 | $cachingMetadata = $this->deserializeCachingMetadata( |
@@ -76,18 +76,18 @@ discard block |
||
| 76 | 76 | ); |
| 77 | 77 | } |
| 78 | 78 | |
| 79 | - $dependencyMetadata = $this->getDependencyMetadataFromSerialization( $serialization ); |
|
| 79 | + $dependencyMetadata = $this->getDependencyMetadataFromSerialization($serialization); |
|
| 80 | 80 | |
| 81 | 81 | return $result->withMetadata( |
| 82 | - Metadata::merge( [ |
|
| 83 | - Metadata::ofCachingMetadata( $cachingMetadata ), |
|
| 84 | - Metadata::ofDependencyMetadata( $dependencyMetadata ), |
|
| 85 | - ] ) |
|
| 82 | + Metadata::merge([ |
|
| 83 | + Metadata::ofCachingMetadata($cachingMetadata), |
|
| 84 | + Metadata::ofDependencyMetadata($dependencyMetadata), |
|
| 85 | + ]) |
|
| 86 | 86 | ); |
| 87 | 87 | } |
| 88 | 88 | |
| 89 | - private function getViolationMessageFromSerialization( array $serialization ): ?ViolationMessage { |
|
| 90 | - if ( array_key_exists( CheckResultSerializer::KEY_VIOLATION_MESSAGE, $serialization ) ) { |
|
| 89 | + private function getViolationMessageFromSerialization(array $serialization): ?ViolationMessage { |
|
| 90 | + if (array_key_exists(CheckResultSerializer::KEY_VIOLATION_MESSAGE, $serialization)) { |
|
| 91 | 91 | return $this->violationMessageDeserializer->deserialize( |
| 92 | 92 | $serialization[CheckResultSerializer::KEY_VIOLATION_MESSAGE] |
| 93 | 93 | ); |
@@ -99,17 +99,17 @@ discard block |
||
| 99 | 99 | private function getConstraintClarificationFromSerialization( |
| 100 | 100 | array $serialization |
| 101 | 101 | ): MultilingualTextValue { |
| 102 | - if ( array_key_exists( CheckResultSerializer::KEY_CONSTRAINT_CLARIFICATION, $serialization ) ) { |
|
| 102 | + if (array_key_exists(CheckResultSerializer::KEY_CONSTRAINT_CLARIFICATION, $serialization)) { |
|
| 103 | 103 | return MultilingualTextValue::newFromArray( |
| 104 | 104 | $serialization[CheckResultSerializer::KEY_CONSTRAINT_CLARIFICATION] |
| 105 | 105 | ); |
| 106 | 106 | } else { |
| 107 | - return new MultilingualTextValue( [] ); |
|
| 107 | + return new MultilingualTextValue([]); |
|
| 108 | 108 | } |
| 109 | 109 | } |
| 110 | 110 | |
| 111 | - private function getDependencyMetadataFromSerialization( array $serialization ): DependencyMetadata { |
|
| 112 | - if ( array_key_exists( CheckResultSerializer::KEY_DEPENDENCY_METADATA, $serialization ) ) { |
|
| 111 | + private function getDependencyMetadataFromSerialization(array $serialization): DependencyMetadata { |
|
| 112 | + if (array_key_exists(CheckResultSerializer::KEY_DEPENDENCY_METADATA, $serialization)) { |
|
| 113 | 113 | return $this->deserializeDependencyMetadata( |
| 114 | 114 | $serialization[CheckResultSerializer::KEY_DEPENDENCY_METADATA] |
| 115 | 115 | ); |
@@ -118,7 +118,7 @@ discard block |
||
| 118 | 118 | } |
| 119 | 119 | } |
| 120 | 120 | |
| 121 | - private function deserializeCachingMetadata( array $serialization ): CachingMetadata { |
|
| 121 | + private function deserializeCachingMetadata(array $serialization): CachingMetadata { |
|
| 122 | 122 | if ( |
| 123 | 123 | array_key_exists( |
| 124 | 124 | CheckResultSerializer::KEY_CACHING_METADATA_MAX_AGE, |
@@ -133,7 +133,7 @@ discard block |
||
| 133 | 133 | } |
| 134 | 134 | } |
| 135 | 135 | |
| 136 | - private function deserializeDependencyMetadata( array $serialization ): DependencyMetadata { |
|
| 136 | + private function deserializeDependencyMetadata(array $serialization): DependencyMetadata { |
|
| 137 | 137 | if ( |
| 138 | 138 | array_key_exists( |
| 139 | 139 | CheckResultSerializer::KEY_DEPENDENCY_METADATA_FUTURE_TIME, |
@@ -143,20 +143,20 @@ discard block |
||
| 143 | 143 | $futureTime = TimeValue::newFromArray( |
| 144 | 144 | $serialization[CheckResultSerializer::KEY_DEPENDENCY_METADATA_FUTURE_TIME] |
| 145 | 145 | ); |
| 146 | - $futureTimeDependencyMetadata = DependencyMetadata::ofFutureTime( $futureTime ); |
|
| 146 | + $futureTimeDependencyMetadata = DependencyMetadata::ofFutureTime($futureTime); |
|
| 147 | 147 | } else { |
| 148 | 148 | $futureTimeDependencyMetadata = DependencyMetadata::blank(); |
| 149 | 149 | } |
| 150 | 150 | |
| 151 | 151 | $dependencyMetadata = array_reduce( |
| 152 | 152 | $serialization[CheckResultSerializer::KEY_DEPENDENCY_METADATA_ENTITY_IDS], |
| 153 | - function ( DependencyMetadata $metadata, $entityIdSerialization ) { |
|
| 154 | - $entityId = $this->entityIdParser->parse( $entityIdSerialization ); |
|
| 153 | + function(DependencyMetadata $metadata, $entityIdSerialization) { |
|
| 154 | + $entityId = $this->entityIdParser->parse($entityIdSerialization); |
|
| 155 | 155 | |
| 156 | - return DependencyMetadata::merge( [ |
|
| 156 | + return DependencyMetadata::merge([ |
|
| 157 | 157 | $metadata, |
| 158 | - DependencyMetadata::ofEntityId( $entityId ), |
|
| 159 | - ] ); |
|
| 158 | + DependencyMetadata::ofEntityId($entityId), |
|
| 159 | + ]); |
|
| 160 | 160 | }, |
| 161 | 161 | $futureTimeDependencyMetadata |
| 162 | 162 | ); |
@@ -1,6 +1,6 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -declare( strict_types = 1 ); |
|
| 3 | +declare(strict_types=1); |
|
| 4 | 4 | |
| 5 | 5 | namespace WikibaseQuality\ConstraintReport\ConstraintCheck\Checker; |
| 6 | 6 | |
@@ -74,26 +74,26 @@ discard block |
||
| 74 | 74 | * @return array first element is the namespace number (default namespace for TitleParser), |
| 75 | 75 | * second element is a string to prepend to the title before giving it to the TitleParser |
| 76 | 76 | */ |
| 77 | - private function getCommonsNamespace( string $namespace ): array { |
|
| 78 | - switch ( $namespace ) { |
|
| 77 | + private function getCommonsNamespace(string $namespace): array { |
|
| 78 | + switch ($namespace) { |
|
| 79 | 79 | case '': |
| 80 | - return [ NS_MAIN, '' ]; |
|
| 80 | + return [NS_MAIN, '']; |
|
| 81 | 81 | // extra namespaces, see operations/mediawiki-config.git, |
| 82 | 82 | // wmf-config/InitialiseSettings.php, 'wgExtraNamespaces' key, 'commonswiki' subkey |
| 83 | 83 | case 'Creator': |
| 84 | - return [ 100, '' ]; |
|
| 84 | + return [100, '']; |
|
| 85 | 85 | case 'TimedText': |
| 86 | - return [ 102, '' ]; |
|
| 86 | + return [102, '']; |
|
| 87 | 87 | case 'Sequence': |
| 88 | - return [ 104, '' ]; |
|
| 88 | + return [104, '']; |
|
| 89 | 89 | case 'Institution': |
| 90 | - return [ 106, '' ]; |
|
| 90 | + return [106, '']; |
|
| 91 | 91 | // extension namespace, see mediawiki/extensions/JsonConfig.git, |
| 92 | 92 | // extension.json, 'namespaces' key, third element |
| 93 | 93 | case 'Data': |
| 94 | - return [ 486, '' ]; |
|
| 94 | + return [486, '']; |
|
| 95 | 95 | default: |
| 96 | - return [ NS_MAIN, $namespace . ':' ]; |
|
| 96 | + return [NS_MAIN, $namespace.':']; |
|
| 97 | 97 | } |
| 98 | 98 | } |
| 99 | 99 | |
@@ -102,7 +102,7 @@ discard block |
||
| 102 | 102 | * |
| 103 | 103 | * @throws ConstraintParameterException |
| 104 | 104 | */ |
| 105 | - public function checkConstraint( Context $context, Constraint $constraint ): CheckResult { |
|
| 105 | + public function checkConstraint(Context $context, Constraint $constraint): CheckResult { |
|
| 106 | 106 | $constraintParameters = $constraint->getConstraintParameters(); |
| 107 | 107 | $constraintTypeItemId = $constraint->getConstraintTypeItemId(); |
| 108 | 108 | |
@@ -113,9 +113,9 @@ discard block |
||
| 113 | 113 | |
| 114 | 114 | $snak = $context->getSnak(); |
| 115 | 115 | |
| 116 | - if ( !$snak instanceof PropertyValueSnak ) { |
|
| 116 | + if (!$snak instanceof PropertyValueSnak) { |
|
| 117 | 117 | // nothing to check |
| 118 | - return new CheckResult( $context, $constraint, CheckResult::STATUS_COMPLIANCE ); |
|
| 118 | + return new CheckResult($context, $constraint, CheckResult::STATUS_COMPLIANCE); |
|
| 119 | 119 | } |
| 120 | 120 | |
| 121 | 121 | $dataValue = $snak->getDataValue(); |
@@ -125,52 +125,52 @@ discard block |
||
| 125 | 125 | * type of $dataValue for properties with 'Commons link' constraint has to be 'string' |
| 126 | 126 | * parameter $namespace can be null, works for commons galleries |
| 127 | 127 | */ |
| 128 | - if ( $dataValue->getType() !== 'string' ) { |
|
| 129 | - $message = ( new ViolationMessage( 'wbqc-violation-message-value-needed-of-type' ) ) |
|
| 130 | - ->withEntityId( new ItemId( $constraintTypeItemId ), Role::CONSTRAINT_TYPE_ITEM ) |
|
| 131 | - ->withDataValueType( 'string' ); |
|
| 132 | - return new CheckResult( $context, $constraint, CheckResult::STATUS_VIOLATION, $message ); |
|
| 128 | + if ($dataValue->getType() !== 'string') { |
|
| 129 | + $message = (new ViolationMessage('wbqc-violation-message-value-needed-of-type')) |
|
| 130 | + ->withEntityId(new ItemId($constraintTypeItemId), Role::CONSTRAINT_TYPE_ITEM) |
|
| 131 | + ->withDataValueType('string'); |
|
| 132 | + return new CheckResult($context, $constraint, CheckResult::STATUS_VIOLATION, $message); |
|
| 133 | 133 | } |
| 134 | 134 | |
| 135 | 135 | $commonsLink = $dataValue->getValue(); |
| 136 | - if ( !$this->commonsLinkIsWellFormed( $commonsLink ) ) { |
|
| 137 | - return new CheckResult( $context, $constraint, CheckResult::STATUS_VIOLATION, |
|
| 138 | - new ViolationMessage( 'wbqc-violation-message-commons-link-not-well-formed' ) ); |
|
| 136 | + if (!$this->commonsLinkIsWellFormed($commonsLink)) { |
|
| 137 | + return new CheckResult($context, $constraint, CheckResult::STATUS_VIOLATION, |
|
| 138 | + new ViolationMessage('wbqc-violation-message-commons-link-not-well-formed')); |
|
| 139 | 139 | } |
| 140 | 140 | |
| 141 | - $dataType = $this->propertyDatatypeLookup->getDataTypeIdForProperty( $snak->getPropertyId() ); |
|
| 142 | - switch ( $dataType ) { |
|
| 141 | + $dataType = $this->propertyDatatypeLookup->getDataTypeIdForProperty($snak->getPropertyId()); |
|
| 142 | + switch ($dataType) { |
|
| 143 | 143 | case 'geo-shape': |
| 144 | 144 | case 'tabular-data': |
| 145 | - if ( strpos( $commonsLink, $namespace . ':' ) !== 0 ) { |
|
| 146 | - return new CheckResult( $context, $constraint, CheckResult::STATUS_VIOLATION, |
|
| 147 | - new ViolationMessage( 'wbqc-violation-message-commons-link-not-well-formed' ) ); |
|
| 145 | + if (strpos($commonsLink, $namespace.':') !== 0) { |
|
| 146 | + return new CheckResult($context, $constraint, CheckResult::STATUS_VIOLATION, |
|
| 147 | + new ViolationMessage('wbqc-violation-message-commons-link-not-well-formed')); |
|
| 148 | 148 | } |
| 149 | 149 | $pageName = $commonsLink; |
| 150 | 150 | break; |
| 151 | 151 | default: |
| 152 | - $pageName = $namespace ? $namespace . ':' . $commonsLink : $commonsLink; |
|
| 152 | + $pageName = $namespace ? $namespace.':'.$commonsLink : $commonsLink; |
|
| 153 | 153 | break; |
| 154 | 154 | } |
| 155 | 155 | |
| 156 | - $prefix = $this->getCommonsNamespace( $namespace )[1]; |
|
| 156 | + $prefix = $this->getCommonsNamespace($namespace)[1]; |
|
| 157 | 157 | $normalizedTitle = $this->pageNameNormalizer->normalizePageName( |
| 158 | 158 | $pageName, |
| 159 | 159 | 'https://commons.wikimedia.org/w/api.php' |
| 160 | 160 | ); |
| 161 | - if ( $normalizedTitle === false ) { |
|
| 162 | - if ( $this->valueIncludesNamespace( $commonsLink, $namespace ) ) { |
|
| 163 | - return new CheckResult( $context, $constraint, CheckResult::STATUS_VIOLATION, |
|
| 164 | - new ViolationMessage( 'wbqc-violation-message-commons-link-not-well-formed' ) ); |
|
| 161 | + if ($normalizedTitle === false) { |
|
| 162 | + if ($this->valueIncludesNamespace($commonsLink, $namespace)) { |
|
| 163 | + return new CheckResult($context, $constraint, CheckResult::STATUS_VIOLATION, |
|
| 164 | + new ViolationMessage('wbqc-violation-message-commons-link-not-well-formed')); |
|
| 165 | 165 | } |
| 166 | - return new CheckResult( $context, $constraint, CheckResult::STATUS_VIOLATION, |
|
| 167 | - new ViolationMessage( 'wbqc-violation-message-commons-link-no-existent' ) ); |
|
| 166 | + return new CheckResult($context, $constraint, CheckResult::STATUS_VIOLATION, |
|
| 167 | + new ViolationMessage('wbqc-violation-message-commons-link-no-existent')); |
|
| 168 | 168 | } |
| 169 | 169 | |
| 170 | - return new CheckResult( $context, $constraint, CheckResult::STATUS_COMPLIANCE, null ); |
|
| 170 | + return new CheckResult($context, $constraint, CheckResult::STATUS_COMPLIANCE, null); |
|
| 171 | 171 | } |
| 172 | 172 | |
| 173 | - public function checkConstraintParameters( Constraint $constraint ): array { |
|
| 173 | + public function checkConstraintParameters(Constraint $constraint): array { |
|
| 174 | 174 | $constraintParameters = $constraint->getConstraintParameters(); |
| 175 | 175 | $constraintTypeItemId = $constraint->getConstraintTypeItemId(); |
| 176 | 176 | $exceptions = []; |
@@ -179,15 +179,15 @@ discard block |
||
| 179 | 179 | $constraintParameters, |
| 180 | 180 | $constraintTypeItemId |
| 181 | 181 | ); |
| 182 | - } catch ( ConstraintParameterException $e ) { |
|
| 182 | + } catch (ConstraintParameterException $e) { |
|
| 183 | 183 | $exceptions[] = $e; |
| 184 | 184 | } |
| 185 | 185 | return $exceptions; |
| 186 | 186 | } |
| 187 | 187 | |
| 188 | - private function commonsLinkIsWellFormed( string $commonsLink ): bool { |
|
| 189 | - $toReplace = [ "_", "%20" ]; |
|
| 190 | - $compareString = trim( str_replace( $toReplace, '', $commonsLink ) ); |
|
| 188 | + private function commonsLinkIsWellFormed(string $commonsLink): bool { |
|
| 189 | + $toReplace = ["_", "%20"]; |
|
| 190 | + $compareString = trim(str_replace($toReplace, '', $commonsLink)); |
|
| 191 | 191 | |
| 192 | 192 | return $commonsLink === $compareString; |
| 193 | 193 | } |
@@ -196,9 +196,9 @@ discard block |
||
| 196 | 196 | * Checks whether the value of the statement already includes the namespace. |
| 197 | 197 | * This special case should be reported as “malformed title” instead of “title does not exist”. |
| 198 | 198 | */ |
| 199 | - private function valueIncludesNamespace( string $value, string $namespace ): bool { |
|
| 199 | + private function valueIncludesNamespace(string $value, string $namespace): bool { |
|
| 200 | 200 | return $namespace !== '' && |
| 201 | - strncasecmp( $value, $namespace . ':', strlen( $namespace ) + 1 ) === 0; |
|
| 201 | + strncasecmp($value, $namespace.':', strlen($namespace) + 1) === 0; |
|
| 202 | 202 | } |
| 203 | 203 | |
| 204 | 204 | } |
@@ -31,8 +31,8 @@ discard block |
||
| 31 | 31 | * |
| 32 | 32 | * @throws InvalidArgumentException |
| 33 | 33 | */ |
| 34 | - public function __construct( $content, array $attributes = [] ) { |
|
| 35 | - Assert::parameterType( [ 'string', HtmlArmor::class ], $content, '$content' ); |
|
| 34 | + public function __construct($content, array $attributes = []) { |
|
| 35 | + Assert::parameterType(['string', HtmlArmor::class], $content, '$content'); |
|
| 36 | 36 | |
| 37 | 37 | $this->content = $content; |
| 38 | 38 | $this->attributes = $attributes; |
@@ -42,7 +42,7 @@ discard block |
||
| 42 | 42 | * @return string HTML |
| 43 | 43 | */ |
| 44 | 44 | public function getContent() { |
| 45 | - return HtmlArmor::getHtml( $this->content ); |
|
| 45 | + return HtmlArmor::getHtml($this->content); |
|
| 46 | 46 | } |
| 47 | 47 | |
| 48 | 48 | /** |
@@ -56,7 +56,7 @@ discard block |
||
| 56 | 56 | * @return string HTML |
| 57 | 57 | */ |
| 58 | 58 | public function toHtml() { |
| 59 | - return Html::rawElement( 'td', $this->getAttributes(), $this->getContent() ); |
|
| 59 | + return Html::rawElement('td', $this->getAttributes(), $this->getContent()); |
|
| 60 | 60 | } |
| 61 | 61 | |
| 62 | 62 | } |
@@ -15,7 +15,7 @@ discard block |
||
| 15 | 15 | * |
| 16 | 16 | * @throws DBUnexpectedError |
| 17 | 17 | */ |
| 18 | - public function insertBatch( array $constraints ); |
|
| 18 | + public function insertBatch(array $constraints); |
|
| 19 | 19 | |
| 20 | 20 | /** |
| 21 | 21 | * Delete all constraints for the property ID. |
@@ -24,6 +24,6 @@ discard block |
||
| 24 | 24 | * |
| 25 | 25 | * @throws DBUnexpectedError |
| 26 | 26 | */ |
| 27 | - public function deleteForProperty( NumericPropertyId $propertyId ); |
|
| 27 | + public function deleteForProperty(NumericPropertyId $propertyId); |
|
| 28 | 28 | |
| 29 | 29 | } |
@@ -1,6 +1,6 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -declare( strict_types = 1 ); |
|
| 3 | +declare(strict_types=1); |
|
| 4 | 4 | |
| 5 | 5 | namespace WikibaseQuality\ConstraintReport\ConstraintCheck\Checker; |
| 6 | 6 | |
@@ -64,18 +64,18 @@ discard block |
||
| 64 | 64 | * |
| 65 | 65 | * @throws SparqlHelperException if the checker uses SPARQL and the query times out or some other error occurs |
| 66 | 66 | */ |
| 67 | - public function checkConstraint( Context $context, Constraint $constraint ): CheckResult { |
|
| 68 | - if ( $context->getSnakRank() === Statement::RANK_DEPRECATED ) { |
|
| 69 | - return new CheckResult( $context, $constraint, CheckResult::STATUS_DEPRECATED ); |
|
| 67 | + public function checkConstraint(Context $context, Constraint $constraint): CheckResult { |
|
| 68 | + if ($context->getSnakRank() === Statement::RANK_DEPRECATED) { |
|
| 69 | + return new CheckResult($context, $constraint, CheckResult::STATUS_DEPRECATED); |
|
| 70 | 70 | } |
| 71 | 71 | |
| 72 | - if ( !( $this->sparqlHelper instanceof DummySparqlHelper ) ) { |
|
| 72 | + if (!($this->sparqlHelper instanceof DummySparqlHelper)) { |
|
| 73 | 73 | |
| 74 | 74 | $separators = $this->constraintParameterParser->parseSeparatorsParameter( |
| 75 | 75 | $constraint->getConstraintParameters() |
| 76 | 76 | ); |
| 77 | 77 | |
| 78 | - if ( $context->getType() === 'statement' ) { |
|
| 78 | + if ($context->getType() === 'statement') { |
|
| 79 | 79 | $statement = $context->getSnakStatement(); |
| 80 | 80 | '@phan-var Statement $statement'; |
| 81 | 81 | $result = $this->sparqlHelper->findEntitiesWithSameStatement( |
@@ -84,9 +84,9 @@ discard block |
||
| 84 | 84 | ); |
| 85 | 85 | } else { |
| 86 | 86 | $snak = $context->getSnak(); |
| 87 | - if ( !$snak instanceof PropertyValueSnak ) { |
|
| 87 | + if (!$snak instanceof PropertyValueSnak) { |
|
| 88 | 88 | // nothing to check |
| 89 | - return new CheckResult( $context, $constraint, CheckResult::STATUS_COMPLIANCE ); |
|
| 89 | + return new CheckResult($context, $constraint, CheckResult::STATUS_COMPLIANCE); |
|
| 90 | 90 | } |
| 91 | 91 | $result = $this->sparqlHelper->findEntitiesWithSameQualifierOrReference( |
| 92 | 92 | $context->getEntity()->getId(), |
@@ -99,31 +99,31 @@ discard block |
||
| 99 | 99 | $otherEntities = $result->getArray(); |
| 100 | 100 | $metadata = $result->getMetadata(); |
| 101 | 101 | |
| 102 | - if ( $otherEntities === [] ) { |
|
| 102 | + if ($otherEntities === []) { |
|
| 103 | 103 | $status = CheckResult::STATUS_COMPLIANCE; |
| 104 | 104 | $message = null; |
| 105 | 105 | } else { |
| 106 | 106 | $status = CheckResult::STATUS_VIOLATION; |
| 107 | - $message = ( new ViolationMessage( 'wbqc-violation-message-unique-value' ) ) |
|
| 108 | - ->withEntityIdList( $otherEntities, Role::SUBJECT ); |
|
| 107 | + $message = (new ViolationMessage('wbqc-violation-message-unique-value')) |
|
| 108 | + ->withEntityIdList($otherEntities, Role::SUBJECT); |
|
| 109 | 109 | } |
| 110 | 110 | } else { |
| 111 | 111 | $status = CheckResult::STATUS_TODO; |
| 112 | - $message = ( new ViolationMessage( 'wbqc-violation-message-not-yet-implemented' ) ) |
|
| 113 | - ->withEntityId( new ItemId( $constraint->getConstraintTypeItemId() ), Role::CONSTRAINT_TYPE_ITEM ); |
|
| 112 | + $message = (new ViolationMessage('wbqc-violation-message-not-yet-implemented')) |
|
| 113 | + ->withEntityId(new ItemId($constraint->getConstraintTypeItemId()), Role::CONSTRAINT_TYPE_ITEM); |
|
| 114 | 114 | $metadata = Metadata::blank(); |
| 115 | 115 | } |
| 116 | 116 | |
| 117 | - return ( new CheckResult( $context, $constraint, $status, $message ) ) |
|
| 118 | - ->withMetadata( $metadata ); |
|
| 117 | + return (new CheckResult($context, $constraint, $status, $message)) |
|
| 118 | + ->withMetadata($metadata); |
|
| 119 | 119 | } |
| 120 | 120 | |
| 121 | - public function checkConstraintParameters( Constraint $constraint ): array { |
|
| 121 | + public function checkConstraintParameters(Constraint $constraint): array { |
|
| 122 | 122 | $constraintParameters = $constraint->getConstraintParameters(); |
| 123 | 123 | $exceptions = []; |
| 124 | 124 | try { |
| 125 | - $this->constraintParameterParser->parseSeparatorsParameter( $constraintParameters ); |
|
| 126 | - } catch ( ConstraintParameterException $e ) { |
|
| 125 | + $this->constraintParameterParser->parseSeparatorsParameter($constraintParameters); |
|
| 126 | + } catch (ConstraintParameterException $e) { |
|
| 127 | 127 | $exceptions[] = $e; |
| 128 | 128 | } |
| 129 | 129 | return $exceptions; |
@@ -1,6 +1,6 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -declare( strict_types = 1 ); |
|
| 3 | +declare(strict_types=1); |
|
| 4 | 4 | |
| 5 | 5 | namespace WikibaseQuality\ConstraintReport\ConstraintCheck\Cache; |
| 6 | 6 | |
@@ -15,12 +15,12 @@ |
||
| 15 | 15 | /** |
| 16 | 16 | * @param DatabaseUpdater $updater |
| 17 | 17 | */ |
| 18 | - public function onLoadExtensionSchemaUpdates( $updater ) { |
|
| 19 | - $dir = dirname( __DIR__ ) . '/sql/'; |
|
| 18 | + public function onLoadExtensionSchemaUpdates($updater) { |
|
| 19 | + $dir = dirname(__DIR__).'/sql/'; |
|
| 20 | 20 | |
| 21 | 21 | $updater->addExtensionTable( |
| 22 | 22 | 'wbqc_constraints', |
| 23 | - $dir . "/{$updater->getDB()->getType()}/tables-generated.sql" |
|
| 23 | + $dir."/{$updater->getDB()->getType()}/tables-generated.sql" |
|
| 24 | 24 | ); |
| 25 | 25 | } |
| 26 | 26 | |