@@ -28,46 +28,46 @@ discard block |
||
28 | 28 | use WikibaseQuality\ConstraintReport\ConstraintCheck\Result\CheckResultSerializer; |
29 | 29 | |
30 | 30 | return [ |
31 | - ConstraintsServices::EXPIRY_LOCK => function ( MediaWikiServices $services ) { |
|
32 | - return new ExpiryLock( ObjectCache::getInstance( CACHE_ANYTHING ) ); |
|
31 | + ConstraintsServices::EXPIRY_LOCK => function(MediaWikiServices $services) { |
|
32 | + return new ExpiryLock(ObjectCache::getInstance(CACHE_ANYTHING)); |
|
33 | 33 | }, |
34 | 34 | |
35 | - ConstraintsServices::LOGGING_HELPER => function ( MediaWikiServices $services ) { |
|
35 | + ConstraintsServices::LOGGING_HELPER => function(MediaWikiServices $services) { |
|
36 | 36 | return new LoggingHelper( |
37 | 37 | $services->getStatsdDataFactory(), |
38 | - LoggerFactory::getInstance( 'WikibaseQualityConstraints' ), |
|
38 | + LoggerFactory::getInstance('WikibaseQualityConstraints'), |
|
39 | 39 | $services->getMainConfig() |
40 | 40 | ); |
41 | 41 | }, |
42 | 42 | |
43 | - ConstraintsServices::CONSTRAINT_STORE => function ( MediaWikiServices $services ) { |
|
44 | - $sourceDefinitions = WikibaseRepo::getEntitySourceDefinitions( $services ); |
|
45 | - $propertySource = $sourceDefinitions->getSourceForEntityType( Property::ENTITY_TYPE ); |
|
43 | + ConstraintsServices::CONSTRAINT_STORE => function(MediaWikiServices $services) { |
|
44 | + $sourceDefinitions = WikibaseRepo::getEntitySourceDefinitions($services); |
|
45 | + $propertySource = $sourceDefinitions->getSourceForEntityType(Property::ENTITY_TYPE); |
|
46 | 46 | $dbName = $propertySource->getDatabaseName(); |
47 | - $localEntitySourceName = WikibaseRepo::getLocalEntitySource( $services )->getSourceName(); |
|
47 | + $localEntitySourceName = WikibaseRepo::getLocalEntitySource($services)->getSourceName(); |
|
48 | 48 | |
49 | - if ( $propertySource->getSourceName() !== $localEntitySourceName ) { |
|
50 | - throw new \RuntimeException( 'Can\'t get a ConstraintStore for a non local entity source.' ); |
|
49 | + if ($propertySource->getSourceName() !== $localEntitySourceName) { |
|
50 | + throw new \RuntimeException('Can\'t get a ConstraintStore for a non local entity source.'); |
|
51 | 51 | } |
52 | 52 | |
53 | 53 | return new ConstraintRepositoryStore( |
54 | - $services->getDBLoadBalancerFactory()->getMainLB( $dbName ), |
|
54 | + $services->getDBLoadBalancerFactory()->getMainLB($dbName), |
|
55 | 55 | $dbName |
56 | 56 | ); |
57 | 57 | }, |
58 | 58 | |
59 | - ConstraintsServices::CONSTRAINT_LOOKUP => function ( MediaWikiServices $services ) { |
|
60 | - $sourceDefinitions = WikibaseRepo::getEntitySourceDefinitions( $services ); |
|
61 | - $propertySource = $sourceDefinitions->getSourceForEntityType( Property::ENTITY_TYPE ); |
|
59 | + ConstraintsServices::CONSTRAINT_LOOKUP => function(MediaWikiServices $services) { |
|
60 | + $sourceDefinitions = WikibaseRepo::getEntitySourceDefinitions($services); |
|
61 | + $propertySource = $sourceDefinitions->getSourceForEntityType(Property::ENTITY_TYPE); |
|
62 | 62 | $dbName = $propertySource->getDatabaseName(); |
63 | 63 | $rawLookup = new ConstraintRepositoryLookup( |
64 | - $services->getDBLoadBalancerFactory()->getMainLB( $dbName ), |
|
64 | + $services->getDBLoadBalancerFactory()->getMainLB($dbName), |
|
65 | 65 | $dbName |
66 | 66 | ); |
67 | - return new CachingConstraintLookup( $rawLookup ); |
|
67 | + return new CachingConstraintLookup($rawLookup); |
|
68 | 68 | }, |
69 | 69 | |
70 | - ConstraintsServices::CHECK_RESULT_SERIALIZER => function ( MediaWikiServices $services ) { |
|
70 | + ConstraintsServices::CHECK_RESULT_SERIALIZER => function(MediaWikiServices $services) { |
|
71 | 71 | return new CheckResultSerializer( |
72 | 72 | new ConstraintSerializer( |
73 | 73 | false // constraint parameters are not exposed |
@@ -78,9 +78,9 @@ discard block |
||
78 | 78 | ); |
79 | 79 | }, |
80 | 80 | |
81 | - ConstraintsServices::CHECK_RESULT_DESERIALIZER => function ( MediaWikiServices $services ) { |
|
82 | - $entityIdParser = WikibaseRepo::getEntityIdParser( $services ); |
|
83 | - $dataValueFactory = WikibaseRepo::getDataValueFactory( $services ); |
|
81 | + ConstraintsServices::CHECK_RESULT_DESERIALIZER => function(MediaWikiServices $services) { |
|
82 | + $entityIdParser = WikibaseRepo::getEntityIdParser($services); |
|
83 | + $dataValueFactory = WikibaseRepo::getDataValueFactory($services); |
|
84 | 84 | |
85 | 85 | return new CheckResultDeserializer( |
86 | 86 | new ConstraintDeserializer(), |
@@ -93,13 +93,13 @@ discard block |
||
93 | 93 | ); |
94 | 94 | }, |
95 | 95 | |
96 | - ConstraintsServices::VIOLATION_MESSAGE_SERIALIZER => function ( MediaWikiServices $services ) { |
|
96 | + ConstraintsServices::VIOLATION_MESSAGE_SERIALIZER => function(MediaWikiServices $services) { |
|
97 | 97 | return new ViolationMessageSerializer(); |
98 | 98 | }, |
99 | 99 | |
100 | - ConstraintsServices::VIOLATION_MESSAGE_DESERIALIZER => function ( MediaWikiServices $services ) { |
|
101 | - $entityIdParser = WikibaseRepo::getEntityIdParser( $services ); |
|
102 | - $dataValueFactory = WikibaseRepo::getDataValueFactory( $services ); |
|
100 | + ConstraintsServices::VIOLATION_MESSAGE_DESERIALIZER => function(MediaWikiServices $services) { |
|
101 | + $entityIdParser = WikibaseRepo::getEntityIdParser($services); |
|
102 | + $dataValueFactory = WikibaseRepo::getDataValueFactory($services); |
|
103 | 103 | |
104 | 104 | return new ViolationMessageDeserializer( |
105 | 105 | $entityIdParser, |
@@ -107,37 +107,37 @@ discard block |
||
107 | 107 | ); |
108 | 108 | }, |
109 | 109 | |
110 | - ConstraintsServices::CONSTRAINT_PARAMETER_PARSER => function ( MediaWikiServices $services ) { |
|
111 | - $deserializerFactory = WikibaseRepo::getBaseDataModelDeserializerFactory( $services ); |
|
112 | - $entitySourceDefinitions = WikibaseRepo::getEntitySourceDefinitions( $services ); |
|
110 | + ConstraintsServices::CONSTRAINT_PARAMETER_PARSER => function(MediaWikiServices $services) { |
|
111 | + $deserializerFactory = WikibaseRepo::getBaseDataModelDeserializerFactory($services); |
|
112 | + $entitySourceDefinitions = WikibaseRepo::getEntitySourceDefinitions($services); |
|
113 | 113 | |
114 | 114 | return new ConstraintParameterParser( |
115 | 115 | $services->getMainConfig(), |
116 | 116 | $deserializerFactory, |
117 | - $entitySourceDefinitions->getSourceForEntityType( 'item' )->getConceptBaseUri() |
|
117 | + $entitySourceDefinitions->getSourceForEntityType('item')->getConceptBaseUri() |
|
118 | 118 | ); |
119 | 119 | }, |
120 | 120 | |
121 | - ConstraintsServices::CONNECTION_CHECKER_HELPER => function ( MediaWikiServices $services ) { |
|
121 | + ConstraintsServices::CONNECTION_CHECKER_HELPER => function(MediaWikiServices $services) { |
|
122 | 122 | return new ConnectionCheckerHelper(); |
123 | 123 | }, |
124 | 124 | |
125 | - ConstraintsServices::RANGE_CHECKER_HELPER => function ( MediaWikiServices $services ) { |
|
125 | + ConstraintsServices::RANGE_CHECKER_HELPER => function(MediaWikiServices $services) { |
|
126 | 126 | return new RangeCheckerHelper( |
127 | 127 | $services->getMainConfig(), |
128 | - WikibaseRepo::getUnitConverter( $services ) |
|
128 | + WikibaseRepo::getUnitConverter($services) |
|
129 | 129 | ); |
130 | 130 | }, |
131 | 131 | |
132 | - ConstraintsServices::SPARQL_HELPER => function ( MediaWikiServices $services ) { |
|
133 | - $endpoint = $services->getMainConfig()->get( 'WBQualityConstraintsSparqlEndpoint' ); |
|
134 | - if ( $endpoint === '' ) { |
|
132 | + ConstraintsServices::SPARQL_HELPER => function(MediaWikiServices $services) { |
|
133 | + $endpoint = $services->getMainConfig()->get('WBQualityConstraintsSparqlEndpoint'); |
|
134 | + if ($endpoint === '') { |
|
135 | 135 | return new DummySparqlHelper(); |
136 | 136 | } |
137 | 137 | |
138 | - $rdfVocabulary = WikibaseRepo::getRdfVocabulary( $services ); |
|
139 | - $entityIdParser = WikibaseRepo::getEntityIdParser( $services ); |
|
140 | - $propertyDataTypeLookup = WikibaseRepo::getPropertyDataTypeLookup( $services ); |
|
138 | + $rdfVocabulary = WikibaseRepo::getRdfVocabulary($services); |
|
139 | + $entityIdParser = WikibaseRepo::getEntityIdParser($services); |
|
140 | + $propertyDataTypeLookup = WikibaseRepo::getPropertyDataTypeLookup($services); |
|
141 | 141 | |
142 | 142 | return new SparqlHelper( |
143 | 143 | $services->getMainConfig(), |
@@ -145,122 +145,122 @@ discard block |
||
145 | 145 | $entityIdParser, |
146 | 146 | $propertyDataTypeLookup, |
147 | 147 | $services->getMainWANObjectCache(), |
148 | - ConstraintsServices::getViolationMessageSerializer( $services ), |
|
149 | - ConstraintsServices::getViolationMessageDeserializer( $services ), |
|
148 | + ConstraintsServices::getViolationMessageSerializer($services), |
|
149 | + ConstraintsServices::getViolationMessageDeserializer($services), |
|
150 | 150 | $services->getStatsdDataFactory(), |
151 | - ConstraintsServices::getExpiryLock( $services ), |
|
152 | - ConstraintsServices::getLoggingHelper( $services ), |
|
153 | - wfWikiID() . ' WikibaseQualityConstraints ' . Http::userAgent(), |
|
151 | + ConstraintsServices::getExpiryLock($services), |
|
152 | + ConstraintsServices::getLoggingHelper($services), |
|
153 | + wfWikiID().' WikibaseQualityConstraints '.Http::userAgent(), |
|
154 | 154 | $services->getHttpRequestFactory() |
155 | 155 | ); |
156 | 156 | }, |
157 | 157 | |
158 | - ConstraintsServices::TYPE_CHECKER_HELPER => function ( MediaWikiServices $services ) { |
|
158 | + ConstraintsServices::TYPE_CHECKER_HELPER => function(MediaWikiServices $services) { |
|
159 | 159 | return new TypeCheckerHelper( |
160 | - WikibaseServices::getEntityLookup( $services ), |
|
160 | + WikibaseServices::getEntityLookup($services), |
|
161 | 161 | $services->getMainConfig(), |
162 | - ConstraintsServices::getSparqlHelper( $services ), |
|
162 | + ConstraintsServices::getSparqlHelper($services), |
|
163 | 163 | $services->getStatsdDataFactory() |
164 | 164 | ); |
165 | 165 | }, |
166 | 166 | |
167 | - ConstraintsServices::DELEGATING_CONSTRAINT_CHECKER => function ( MediaWikiServices $services ) { |
|
168 | - $statementGuidParser = WikibaseRepo::getStatementGuidParser( $services ); |
|
167 | + ConstraintsServices::DELEGATING_CONSTRAINT_CHECKER => function(MediaWikiServices $services) { |
|
168 | + $statementGuidParser = WikibaseRepo::getStatementGuidParser($services); |
|
169 | 169 | |
170 | 170 | $config = $services->getMainConfig(); |
171 | 171 | $checkerMap = [ |
172 | - $config->get( 'WBQualityConstraintsConflictsWithConstraintId' ) |
|
173 | - => ConstraintCheckerServices::getConflictsWithChecker( $services ), |
|
174 | - $config->get( 'WBQualityConstraintsItemRequiresClaimConstraintId' ) |
|
175 | - => ConstraintCheckerServices::getItemChecker( $services ), |
|
176 | - $config->get( 'WBQualityConstraintsValueRequiresClaimConstraintId' ) |
|
177 | - => ConstraintCheckerServices::getTargetRequiredClaimChecker( $services ), |
|
178 | - $config->get( 'WBQualityConstraintsSymmetricConstraintId' ) |
|
179 | - => ConstraintCheckerServices::getSymmetricChecker( $services ), |
|
180 | - $config->get( 'WBQualityConstraintsInverseConstraintId' ) |
|
181 | - => ConstraintCheckerServices::getInverseChecker( $services ), |
|
182 | - $config->get( 'WBQualityConstraintsUsedAsQualifierConstraintId' ) |
|
183 | - => ConstraintCheckerServices::getQualifierChecker( $services ), |
|
184 | - $config->get( 'WBQualityConstraintsAllowedQualifiersConstraintId' ) |
|
185 | - => ConstraintCheckerServices::getQualifiersChecker( $services ), |
|
186 | - $config->get( 'WBQualityConstraintsMandatoryQualifierConstraintId' ) |
|
187 | - => ConstraintCheckerServices::getMandatoryQualifiersChecker( $services ), |
|
188 | - $config->get( 'WBQualityConstraintsRangeConstraintId' ) |
|
189 | - => ConstraintCheckerServices::getRangeChecker( $services ), |
|
190 | - $config->get( 'WBQualityConstraintsDifferenceWithinRangeConstraintId' ) |
|
191 | - => ConstraintCheckerServices::getDiffWithinRangeChecker( $services ), |
|
192 | - $config->get( 'WBQualityConstraintsTypeConstraintId' ) |
|
193 | - => ConstraintCheckerServices::getTypeChecker( $services ), |
|
194 | - $config->get( 'WBQualityConstraintsValueTypeConstraintId' ) |
|
195 | - => ConstraintCheckerServices::getValueTypeChecker( $services ), |
|
196 | - $config->get( 'WBQualityConstraintsSingleValueConstraintId' ) |
|
197 | - => ConstraintCheckerServices::getSingleValueChecker( $services ), |
|
198 | - $config->get( 'WBQualityConstraintsMultiValueConstraintId' ) |
|
199 | - => ConstraintCheckerServices::getMultiValueChecker( $services ), |
|
200 | - $config->get( 'WBQualityConstraintsDistinctValuesConstraintId' ) |
|
201 | - => ConstraintCheckerServices::getUniqueValueChecker( $services ), |
|
202 | - $config->get( 'WBQualityConstraintsFormatConstraintId' ) |
|
203 | - => ConstraintCheckerServices::getFormatChecker( $services ), |
|
204 | - $config->get( 'WBQualityConstraintsCommonsLinkConstraintId' ) |
|
205 | - => ConstraintCheckerServices::getCommonsLinkChecker( $services ), |
|
206 | - $config->get( 'WBQualityConstraintsOneOfConstraintId' ) |
|
207 | - => ConstraintCheckerServices::getOneOfChecker( $services ), |
|
208 | - $config->get( 'WBQualityConstraintsUsedForValuesOnlyConstraintId' ) |
|
209 | - => ConstraintCheckerServices::getValueOnlyChecker( $services ), |
|
210 | - $config->get( 'WBQualityConstraintsUsedAsReferenceConstraintId' ) |
|
211 | - => ConstraintCheckerServices::getReferenceChecker( $services ), |
|
212 | - $config->get( 'WBQualityConstraintsNoBoundsConstraintId' ) |
|
213 | - => ConstraintCheckerServices::getNoBoundsChecker( $services ), |
|
214 | - $config->get( 'WBQualityConstraintsAllowedUnitsConstraintId' ) |
|
215 | - => ConstraintCheckerServices::getAllowedUnitsChecker( $services ), |
|
216 | - $config->get( 'WBQualityConstraintsSingleBestValueConstraintId' ) |
|
217 | - => ConstraintCheckerServices::getSingleBestValueChecker( $services ), |
|
218 | - $config->get( 'WBQualityConstraintsAllowedEntityTypesConstraintId' ) |
|
219 | - => ConstraintCheckerServices::getEntityTypeChecker( $services ), |
|
220 | - $config->get( 'WBQualityConstraintsNoneOfConstraintId' ) |
|
221 | - => ConstraintCheckerServices::getNoneOfChecker( $services ), |
|
222 | - $config->get( 'WBQualityConstraintsIntegerConstraintId' ) |
|
223 | - => ConstraintCheckerServices::getIntegerChecker( $services ), |
|
224 | - $config->get( 'WBQualityConstraintsCitationNeededConstraintId' ) |
|
225 | - => ConstraintCheckerServices::getCitationNeededChecker( $services ), |
|
226 | - $config->get( 'WBQualityConstraintsPropertyScopeConstraintId' ) |
|
227 | - => ConstraintCheckerServices::getPropertyScopeChecker( $services ), |
|
228 | - $config->get( 'WBQualityConstraintsContemporaryConstraintId' ) |
|
229 | - => ConstraintCheckerServices::getContemporaryChecker( $services ), |
|
172 | + $config->get('WBQualityConstraintsConflictsWithConstraintId') |
|
173 | + => ConstraintCheckerServices::getConflictsWithChecker($services), |
|
174 | + $config->get('WBQualityConstraintsItemRequiresClaimConstraintId') |
|
175 | + => ConstraintCheckerServices::getItemChecker($services), |
|
176 | + $config->get('WBQualityConstraintsValueRequiresClaimConstraintId') |
|
177 | + => ConstraintCheckerServices::getTargetRequiredClaimChecker($services), |
|
178 | + $config->get('WBQualityConstraintsSymmetricConstraintId') |
|
179 | + => ConstraintCheckerServices::getSymmetricChecker($services), |
|
180 | + $config->get('WBQualityConstraintsInverseConstraintId') |
|
181 | + => ConstraintCheckerServices::getInverseChecker($services), |
|
182 | + $config->get('WBQualityConstraintsUsedAsQualifierConstraintId') |
|
183 | + => ConstraintCheckerServices::getQualifierChecker($services), |
|
184 | + $config->get('WBQualityConstraintsAllowedQualifiersConstraintId') |
|
185 | + => ConstraintCheckerServices::getQualifiersChecker($services), |
|
186 | + $config->get('WBQualityConstraintsMandatoryQualifierConstraintId') |
|
187 | + => ConstraintCheckerServices::getMandatoryQualifiersChecker($services), |
|
188 | + $config->get('WBQualityConstraintsRangeConstraintId') |
|
189 | + => ConstraintCheckerServices::getRangeChecker($services), |
|
190 | + $config->get('WBQualityConstraintsDifferenceWithinRangeConstraintId') |
|
191 | + => ConstraintCheckerServices::getDiffWithinRangeChecker($services), |
|
192 | + $config->get('WBQualityConstraintsTypeConstraintId') |
|
193 | + => ConstraintCheckerServices::getTypeChecker($services), |
|
194 | + $config->get('WBQualityConstraintsValueTypeConstraintId') |
|
195 | + => ConstraintCheckerServices::getValueTypeChecker($services), |
|
196 | + $config->get('WBQualityConstraintsSingleValueConstraintId') |
|
197 | + => ConstraintCheckerServices::getSingleValueChecker($services), |
|
198 | + $config->get('WBQualityConstraintsMultiValueConstraintId') |
|
199 | + => ConstraintCheckerServices::getMultiValueChecker($services), |
|
200 | + $config->get('WBQualityConstraintsDistinctValuesConstraintId') |
|
201 | + => ConstraintCheckerServices::getUniqueValueChecker($services), |
|
202 | + $config->get('WBQualityConstraintsFormatConstraintId') |
|
203 | + => ConstraintCheckerServices::getFormatChecker($services), |
|
204 | + $config->get('WBQualityConstraintsCommonsLinkConstraintId') |
|
205 | + => ConstraintCheckerServices::getCommonsLinkChecker($services), |
|
206 | + $config->get('WBQualityConstraintsOneOfConstraintId') |
|
207 | + => ConstraintCheckerServices::getOneOfChecker($services), |
|
208 | + $config->get('WBQualityConstraintsUsedForValuesOnlyConstraintId') |
|
209 | + => ConstraintCheckerServices::getValueOnlyChecker($services), |
|
210 | + $config->get('WBQualityConstraintsUsedAsReferenceConstraintId') |
|
211 | + => ConstraintCheckerServices::getReferenceChecker($services), |
|
212 | + $config->get('WBQualityConstraintsNoBoundsConstraintId') |
|
213 | + => ConstraintCheckerServices::getNoBoundsChecker($services), |
|
214 | + $config->get('WBQualityConstraintsAllowedUnitsConstraintId') |
|
215 | + => ConstraintCheckerServices::getAllowedUnitsChecker($services), |
|
216 | + $config->get('WBQualityConstraintsSingleBestValueConstraintId') |
|
217 | + => ConstraintCheckerServices::getSingleBestValueChecker($services), |
|
218 | + $config->get('WBQualityConstraintsAllowedEntityTypesConstraintId') |
|
219 | + => ConstraintCheckerServices::getEntityTypeChecker($services), |
|
220 | + $config->get('WBQualityConstraintsNoneOfConstraintId') |
|
221 | + => ConstraintCheckerServices::getNoneOfChecker($services), |
|
222 | + $config->get('WBQualityConstraintsIntegerConstraintId') |
|
223 | + => ConstraintCheckerServices::getIntegerChecker($services), |
|
224 | + $config->get('WBQualityConstraintsCitationNeededConstraintId') |
|
225 | + => ConstraintCheckerServices::getCitationNeededChecker($services), |
|
226 | + $config->get('WBQualityConstraintsPropertyScopeConstraintId') |
|
227 | + => ConstraintCheckerServices::getPropertyScopeChecker($services), |
|
228 | + $config->get('WBQualityConstraintsContemporaryConstraintId') |
|
229 | + => ConstraintCheckerServices::getContemporaryChecker($services), |
|
230 | 230 | ]; |
231 | 231 | |
232 | 232 | return new DelegatingConstraintChecker( |
233 | - WikibaseServices::getEntityLookup( $services ), |
|
233 | + WikibaseServices::getEntityLookup($services), |
|
234 | 234 | $checkerMap, |
235 | - ConstraintsServices::getConstraintLookup( $services ), |
|
236 | - ConstraintsServices::getConstraintParameterParser( $services ), |
|
235 | + ConstraintsServices::getConstraintLookup($services), |
|
236 | + ConstraintsServices::getConstraintParameterParser($services), |
|
237 | 237 | $statementGuidParser, |
238 | - ConstraintsServices::getLoggingHelper( $services ), |
|
239 | - $config->get( 'WBQualityConstraintsCheckQualifiers' ), |
|
240 | - $config->get( 'WBQualityConstraintsCheckReferences' ), |
|
241 | - $config->get( 'WBQualityConstraintsPropertiesWithViolatingQualifiers' ) |
|
238 | + ConstraintsServices::getLoggingHelper($services), |
|
239 | + $config->get('WBQualityConstraintsCheckQualifiers'), |
|
240 | + $config->get('WBQualityConstraintsCheckReferences'), |
|
241 | + $config->get('WBQualityConstraintsPropertiesWithViolatingQualifiers') |
|
242 | 242 | ); |
243 | 243 | }, |
244 | 244 | |
245 | - ConstraintsServices::RESULTS_SOURCE => function ( MediaWikiServices $services ) { |
|
245 | + ConstraintsServices::RESULTS_SOURCE => function(MediaWikiServices $services) { |
|
246 | 246 | $config = $services->getMainConfig(); |
247 | 247 | $resultsSource = new CheckingResultsSource( |
248 | - ConstraintsServices::getDelegatingConstraintChecker( $services ) |
|
248 | + ConstraintsServices::getDelegatingConstraintChecker($services) |
|
249 | 249 | ); |
250 | 250 | |
251 | 251 | $cacheCheckConstraintsResults = false; |
252 | 252 | |
253 | - if ( $config->get( 'WBQualityConstraintsCacheCheckConstraintsResults' ) ) { |
|
253 | + if ($config->get('WBQualityConstraintsCacheCheckConstraintsResults')) { |
|
254 | 254 | $cacheCheckConstraintsResults = true; |
255 | 255 | // check that we can use getLocalRepoWikiPageMetaDataAccessor() |
256 | 256 | // TODO we should always be able to cache constraint check results (T244726) |
257 | - $entitySources = WikibaseRepo::getEntitySourceDefinitions( $services )->getSources(); |
|
258 | - $localEntitySourceName = WikibaseRepo::getLocalEntitySource( $services )->getSourceName(); |
|
257 | + $entitySources = WikibaseRepo::getEntitySourceDefinitions($services)->getSources(); |
|
258 | + $localEntitySourceName = WikibaseRepo::getLocalEntitySource($services)->getSourceName(); |
|
259 | 259 | |
260 | - foreach ( $entitySources as $entitySource ) { |
|
261 | - if ( $entitySource->getSourceName() !== $localEntitySourceName ) { |
|
262 | - LoggerFactory::getInstance( 'WikibaseQualityConstraints' )->warning( |
|
263 | - 'Cannot cache constraint check results for non-local source: ' . |
|
260 | + foreach ($entitySources as $entitySource) { |
|
261 | + if ($entitySource->getSourceName() !== $localEntitySourceName) { |
|
262 | + LoggerFactory::getInstance('WikibaseQualityConstraints')->warning( |
|
263 | + 'Cannot cache constraint check results for non-local source: '. |
|
264 | 264 | $entitySource->getSourceName() |
265 | 265 | ); |
266 | 266 | $cacheCheckConstraintsResults = false; |
@@ -269,28 +269,28 @@ discard block |
||
269 | 269 | } |
270 | 270 | } |
271 | 271 | |
272 | - if ( $cacheCheckConstraintsResults ) { |
|
272 | + if ($cacheCheckConstraintsResults) { |
|
273 | 273 | $possiblyStaleConstraintTypes = [ |
274 | - $config->get( 'WBQualityConstraintsCommonsLinkConstraintId' ), |
|
275 | - $config->get( 'WBQualityConstraintsTypeConstraintId' ), |
|
276 | - $config->get( 'WBQualityConstraintsValueTypeConstraintId' ), |
|
277 | - $config->get( 'WBQualityConstraintsDistinctValuesConstraintId' ), |
|
274 | + $config->get('WBQualityConstraintsCommonsLinkConstraintId'), |
|
275 | + $config->get('WBQualityConstraintsTypeConstraintId'), |
|
276 | + $config->get('WBQualityConstraintsValueTypeConstraintId'), |
|
277 | + $config->get('WBQualityConstraintsDistinctValuesConstraintId'), |
|
278 | 278 | ]; |
279 | - $entityIdParser = WikibaseRepo::getEntityIdParser( $services ); |
|
279 | + $entityIdParser = WikibaseRepo::getEntityIdParser($services); |
|
280 | 280 | $wikiPageEntityMetaDataAccessor = WikibaseRepo::getLocalRepoWikiPageMetaDataAccessor( |
281 | 281 | $services ); |
282 | 282 | |
283 | 283 | $resultsSource = new CachingResultsSource( |
284 | 284 | $resultsSource, |
285 | 285 | ResultsCache::getDefaultInstance(), |
286 | - ConstraintsServices::getCheckResultSerializer( $services ), |
|
287 | - ConstraintsServices::getCheckResultDeserializer( $services ), |
|
286 | + ConstraintsServices::getCheckResultSerializer($services), |
|
287 | + ConstraintsServices::getCheckResultDeserializer($services), |
|
288 | 288 | $wikiPageEntityMetaDataAccessor, |
289 | 289 | $entityIdParser, |
290 | - $config->get( 'WBQualityConstraintsCacheCheckConstraintsTTLSeconds' ), |
|
290 | + $config->get('WBQualityConstraintsCacheCheckConstraintsTTLSeconds'), |
|
291 | 291 | $possiblyStaleConstraintTypes, |
292 | - $config->get( 'WBQualityConstraintsCacheCheckConstraintsMaximumRevisionIds' ), |
|
293 | - ConstraintsServices::getLoggingHelper( $services ) |
|
292 | + $config->get('WBQualityConstraintsCacheCheckConstraintsMaximumRevisionIds'), |
|
293 | + ConstraintsServices::getLoggingHelper($services) |
|
294 | 294 | ); |
295 | 295 | } |
296 | 296 |
@@ -8,20 +8,20 @@ |
||
8 | 8 | use Wikibase\Repo\WikibaseRepo; |
9 | 9 | |
10 | 10 | return [ |
11 | - WikibaseServices::ENTITY_LOOKUP => function ( MediaWikiServices $services ) { |
|
11 | + WikibaseServices::ENTITY_LOOKUP => function(MediaWikiServices $services) { |
|
12 | 12 | return new ExceptionIgnoringEntityLookup( |
13 | - WikibaseRepo::getEntityLookup( $services ) |
|
13 | + WikibaseRepo::getEntityLookup($services) |
|
14 | 14 | ); |
15 | 15 | }, |
16 | 16 | |
17 | - WikibaseServices::ENTITY_LOOKUP_WITHOUT_CACHE => function ( MediaWikiServices $services ) { |
|
17 | + WikibaseServices::ENTITY_LOOKUP_WITHOUT_CACHE => function(MediaWikiServices $services) { |
|
18 | 18 | return new ExceptionIgnoringEntityLookup( |
19 | - WikibaseRepo::getStore( $services ) |
|
20 | - ->getEntityLookup( Store::LOOKUP_CACHING_RETRIEVE_ONLY ) |
|
19 | + WikibaseRepo::getStore($services) |
|
20 | + ->getEntityLookup(Store::LOOKUP_CACHING_RETRIEVE_ONLY) |
|
21 | 21 | ); |
22 | 22 | }, |
23 | 23 | |
24 | - WikibaseServices::PROPERTY_DATA_TYPE_LOOKUP => function ( MediaWikiServices $services ) { |
|
25 | - return WikibaseRepo::getPropertyDataTypeLookup( $services ); |
|
24 | + WikibaseServices::PROPERTY_DATA_TYPE_LOOKUP => function(MediaWikiServices $services) { |
|
25 | + return WikibaseRepo::getPropertyDataTypeLookup($services); |
|
26 | 26 | }, |
27 | 27 | ]; |
@@ -86,12 +86,12 @@ discard block |
||
86 | 86 | ): self { |
87 | 87 | $language = WikibaseRepo::getUserLanguage(); |
88 | 88 | $formatterOptions = new FormatterOptions(); |
89 | - $formatterOptions->setOption( SnakFormatter::OPT_LANG, $language->getCode() ); |
|
90 | - $valueFormatter = $valueFormatterFactory->getValueFormatter( SnakFormatter::FORMAT_HTML, $formatterOptions ); |
|
89 | + $formatterOptions->setOption(SnakFormatter::OPT_LANG, $language->getCode()); |
|
90 | + $valueFormatter = $valueFormatterFactory->getValueFormatter(SnakFormatter::FORMAT_HTML, $formatterOptions); |
|
91 | 91 | |
92 | - $entityIdHtmlLinkFormatter = $entityIdFormatterFactory->getEntityIdFormatter( $language ); |
|
92 | + $entityIdHtmlLinkFormatter = $entityIdFormatterFactory->getEntityIdFormatter($language); |
|
93 | 93 | $entityIdLabelFormatterFactory = new EntityIdLabelFormatterFactory(); |
94 | - $entityIdLabelFormatter = $entityIdLabelFormatterFactory->getEntityIdFormatter( $language ); |
|
94 | + $entityIdLabelFormatter = $entityIdLabelFormatterFactory->getEntityIdFormatter($language); |
|
95 | 95 | |
96 | 96 | $checkResultsRenderer = new CheckResultsRenderer( |
97 | 97 | $entityTitleLookup, |
@@ -136,11 +136,11 @@ discard block |
||
136 | 136 | CheckResultsRenderer $checkResultsRenderer, |
137 | 137 | IBufferingStatsdDataFactory $dataFactory |
138 | 138 | ) { |
139 | - parent::__construct( $main, $name ); |
|
139 | + parent::__construct($main, $name); |
|
140 | 140 | $this->entityIdParser = $entityIdParser; |
141 | 141 | $this->statementGuidValidator = $statementGuidValidator; |
142 | - $this->resultBuilder = $apiHelperFactory->getResultBuilder( $this ); |
|
143 | - $this->errorReporter = $apiHelperFactory->getErrorReporter( $this ); |
|
142 | + $this->resultBuilder = $apiHelperFactory->getResultBuilder($this); |
|
143 | + $this->errorReporter = $apiHelperFactory->getErrorReporter($this); |
|
144 | 144 | $this->resultsSource = $resultsSource; |
145 | 145 | $this->checkResultsRenderer = $checkResultsRenderer; |
146 | 146 | $this->dataFactory = $dataFactory; |
@@ -156,9 +156,9 @@ discard block |
||
156 | 156 | |
157 | 157 | $params = $this->extractRequestParams(); |
158 | 158 | |
159 | - $this->validateParameters( $params ); |
|
160 | - $entityIds = $this->parseEntityIds( $params ); |
|
161 | - $claimIds = $this->parseClaimIds( $params ); |
|
159 | + $this->validateParameters($params); |
|
160 | + $entityIds = $this->parseEntityIds($params); |
|
161 | + $claimIds = $this->parseClaimIds($params); |
|
162 | 162 | $constraintIDs = $params[self::PARAM_CONSTRAINT_ID]; |
163 | 163 | $statuses = $params[self::PARAM_STATUS]; |
164 | 164 | |
@@ -174,7 +174,7 @@ discard block |
||
174 | 174 | ) |
175 | 175 | )->getArray() |
176 | 176 | ); |
177 | - $this->resultBuilder->markSuccess( 1 ); |
|
177 | + $this->resultBuilder->markSuccess(1); |
|
178 | 178 | } |
179 | 179 | |
180 | 180 | /** |
@@ -182,24 +182,24 @@ discard block |
||
182 | 182 | * |
183 | 183 | * @return EntityId[] |
184 | 184 | */ |
185 | - private function parseEntityIds( array $params ) { |
|
185 | + private function parseEntityIds(array $params) { |
|
186 | 186 | $ids = $params[self::PARAM_ID]; |
187 | 187 | |
188 | - if ( $ids === null ) { |
|
188 | + if ($ids === null) { |
|
189 | 189 | return []; |
190 | - } elseif ( $ids === [] ) { |
|
190 | + } elseif ($ids === []) { |
|
191 | 191 | $this->errorReporter->dieError( |
192 | - 'If ' . self::PARAM_ID . ' is specified, it must be nonempty.', 'no-data' ); |
|
192 | + 'If '.self::PARAM_ID.' is specified, it must be nonempty.', 'no-data' ); |
|
193 | 193 | } |
194 | 194 | |
195 | - return array_map( function ( $id ) { |
|
195 | + return array_map(function($id) { |
|
196 | 196 | try { |
197 | - return $this->entityIdParser->parse( $id ); |
|
198 | - } catch ( EntityIdParsingException $e ) { |
|
197 | + return $this->entityIdParser->parse($id); |
|
198 | + } catch (EntityIdParsingException $e) { |
|
199 | 199 | $this->errorReporter->dieError( |
200 | - "Invalid id: $id", 'invalid-entity-id', 0, [ self::PARAM_ID => $id ] ); |
|
200 | + "Invalid id: $id", 'invalid-entity-id', 0, [self::PARAM_ID => $id] ); |
|
201 | 201 | } |
202 | - }, $ids ); |
|
202 | + }, $ids); |
|
203 | 203 | } |
204 | 204 | |
205 | 205 | /** |
@@ -207,35 +207,35 @@ discard block |
||
207 | 207 | * |
208 | 208 | * @return string[] |
209 | 209 | */ |
210 | - private function parseClaimIds( array $params ) { |
|
210 | + private function parseClaimIds(array $params) { |
|
211 | 211 | $ids = $params[self::PARAM_CLAIM_ID]; |
212 | 212 | |
213 | - if ( $ids === null ) { |
|
213 | + if ($ids === null) { |
|
214 | 214 | return []; |
215 | - } elseif ( $ids === [] ) { |
|
215 | + } elseif ($ids === []) { |
|
216 | 216 | $this->errorReporter->dieError( |
217 | - 'If ' . self::PARAM_CLAIM_ID . ' is specified, it must be nonempty.', 'no-data' ); |
|
217 | + 'If '.self::PARAM_CLAIM_ID.' is specified, it must be nonempty.', 'no-data' ); |
|
218 | 218 | } |
219 | 219 | |
220 | - foreach ( $ids as $id ) { |
|
221 | - if ( !$this->statementGuidValidator->validate( $id ) ) { |
|
220 | + foreach ($ids as $id) { |
|
221 | + if (!$this->statementGuidValidator->validate($id)) { |
|
222 | 222 | $this->errorReporter->dieError( |
223 | - "Invalid claim id: $id", 'invalid-guid', 0, [ self::PARAM_CLAIM_ID => $id ] ); |
|
223 | + "Invalid claim id: $id", 'invalid-guid', 0, [self::PARAM_CLAIM_ID => $id] ); |
|
224 | 224 | } |
225 | 225 | } |
226 | 226 | |
227 | 227 | return $ids; |
228 | 228 | } |
229 | 229 | |
230 | - private function validateParameters( array $params ) { |
|
231 | - if ( $params[self::PARAM_CONSTRAINT_ID] !== null |
|
232 | - && empty( $params[self::PARAM_CONSTRAINT_ID] ) |
|
230 | + private function validateParameters(array $params) { |
|
231 | + if ($params[self::PARAM_CONSTRAINT_ID] !== null |
|
232 | + && empty($params[self::PARAM_CONSTRAINT_ID]) |
|
233 | 233 | ) { |
234 | 234 | $paramConstraintId = self::PARAM_CONSTRAINT_ID; |
235 | 235 | $this->errorReporter->dieError( |
236 | 236 | "If $paramConstraintId is specified, it must be nonempty.", 'no-data' ); |
237 | 237 | } |
238 | - if ( $params[self::PARAM_ID] === null && $params[self::PARAM_CLAIM_ID] === null ) { |
|
238 | + if ($params[self::PARAM_ID] === null && $params[self::PARAM_CLAIM_ID] === null) { |
|
239 | 239 | $paramId = self::PARAM_ID; |
240 | 240 | $paramClaimId = self::PARAM_CLAIM_ID; |
241 | 241 | $this->errorReporter->dieError( |
@@ -276,7 +276,7 @@ discard block |
||
276 | 276 | ], |
277 | 277 | ApiBase::PARAM_ISMULTI => true, |
278 | 278 | ApiBase::PARAM_ALL => true, |
279 | - ApiBase::PARAM_DFLT => implode( '|', CachingResultsSource::CACHED_STATUSES ), |
|
279 | + ApiBase::PARAM_DFLT => implode('|', CachingResultsSource::CACHED_STATUSES), |
|
280 | 280 | ApiBase::PARAM_HELP_MSG_PER_VALUE => [], |
281 | 281 | ], |
282 | 282 | ]; |
@@ -82,11 +82,11 @@ discard block |
||
82 | 82 | $language = WikibaseRepo::getUserLanguage(); |
83 | 83 | |
84 | 84 | $entityIdHtmlLinkFormatter = $entityIdFormatterFactory |
85 | - ->getEntityIdFormatter( $language ); |
|
85 | + ->getEntityIdFormatter($language); |
|
86 | 86 | $formatterOptions = new FormatterOptions(); |
87 | - $formatterOptions->setOption( SnakFormatter::OPT_LANG, $language->getCode() ); |
|
87 | + $formatterOptions->setOption(SnakFormatter::OPT_LANG, $language->getCode()); |
|
88 | 88 | $dataValueFormatter = $valueFormatterFactory |
89 | - ->getValueFormatter( SnakFormatter::FORMAT_HTML, $formatterOptions ); |
|
89 | + ->getValueFormatter(SnakFormatter::FORMAT_HTML, $formatterOptions); |
|
90 | 90 | $violationMessageRenderer = new MultilingualTextViolationMessageRenderer( |
91 | 91 | $entityIdHtmlLinkFormatter, |
92 | 92 | $dataValueFormatter, |
@@ -122,9 +122,9 @@ discard block |
||
122 | 122 | StatementGuidParser $statementGuidParser, |
123 | 123 | IBufferingStatsdDataFactory $dataFactory |
124 | 124 | ) { |
125 | - parent::__construct( $main, $name ); |
|
125 | + parent::__construct($main, $name); |
|
126 | 126 | |
127 | - $this->apiErrorReporter = $apiHelperFactory->getErrorReporter( $this ); |
|
127 | + $this->apiErrorReporter = $apiHelperFactory->getErrorReporter($this); |
|
128 | 128 | $this->delegatingConstraintChecker = $delegatingConstraintChecker; |
129 | 129 | $this->violationMessageRenderer = $violationMessageRenderer; |
130 | 130 | $this->statementGuidParser = $statementGuidParser; |
@@ -139,39 +139,39 @@ discard block |
||
139 | 139 | $params = $this->extractRequestParams(); |
140 | 140 | $result = $this->getResult(); |
141 | 141 | |
142 | - $propertyIds = $this->parsePropertyIds( $params[self::PARAM_PROPERTY_ID] ); |
|
143 | - $constraintIds = $this->parseConstraintIds( $params[self::PARAM_CONSTRAINT_ID] ); |
|
142 | + $propertyIds = $this->parsePropertyIds($params[self::PARAM_PROPERTY_ID]); |
|
143 | + $constraintIds = $this->parseConstraintIds($params[self::PARAM_CONSTRAINT_ID]); |
|
144 | 144 | |
145 | - $this->checkPropertyIds( $propertyIds, $result ); |
|
146 | - $this->checkConstraintIds( $constraintIds, $result ); |
|
145 | + $this->checkPropertyIds($propertyIds, $result); |
|
146 | + $this->checkConstraintIds($constraintIds, $result); |
|
147 | 147 | |
148 | - $result->addValue( null, 'success', 1 ); |
|
148 | + $result->addValue(null, 'success', 1); |
|
149 | 149 | } |
150 | 150 | |
151 | 151 | /** |
152 | 152 | * @param array|null $propertyIdSerializations |
153 | 153 | * @return PropertyId[] |
154 | 154 | */ |
155 | - private function parsePropertyIds( $propertyIdSerializations ) { |
|
156 | - if ( $propertyIdSerializations === null ) { |
|
155 | + private function parsePropertyIds($propertyIdSerializations) { |
|
156 | + if ($propertyIdSerializations === null) { |
|
157 | 157 | return []; |
158 | - } elseif ( empty( $propertyIdSerializations ) ) { |
|
158 | + } elseif (empty($propertyIdSerializations)) { |
|
159 | 159 | $this->apiErrorReporter->dieError( |
160 | - 'If ' . self::PARAM_PROPERTY_ID . ' is specified, it must be nonempty.', |
|
160 | + 'If '.self::PARAM_PROPERTY_ID.' is specified, it must be nonempty.', |
|
161 | 161 | 'no-data' |
162 | 162 | ); |
163 | 163 | } |
164 | 164 | |
165 | 165 | return array_map( |
166 | - function ( $propertyIdSerialization ) { |
|
166 | + function($propertyIdSerialization) { |
|
167 | 167 | try { |
168 | - return new PropertyId( $propertyIdSerialization ); |
|
169 | - } catch ( InvalidArgumentException $e ) { |
|
168 | + return new PropertyId($propertyIdSerialization); |
|
169 | + } catch (InvalidArgumentException $e) { |
|
170 | 170 | $this->apiErrorReporter->dieError( |
171 | 171 | "Invalid id: $propertyIdSerialization", |
172 | 172 | 'invalid-property-id', |
173 | 173 | 0, // default argument |
174 | - [ self::PARAM_PROPERTY_ID => $propertyIdSerialization ] |
|
174 | + [self::PARAM_PROPERTY_ID => $propertyIdSerialization] |
|
175 | 175 | ); |
176 | 176 | } |
177 | 177 | }, |
@@ -183,35 +183,35 @@ discard block |
||
183 | 183 | * @param array|null $constraintIds |
184 | 184 | * @return string[] |
185 | 185 | */ |
186 | - private function parseConstraintIds( $constraintIds ) { |
|
187 | - if ( $constraintIds === null ) { |
|
186 | + private function parseConstraintIds($constraintIds) { |
|
187 | + if ($constraintIds === null) { |
|
188 | 188 | return []; |
189 | - } elseif ( empty( $constraintIds ) ) { |
|
189 | + } elseif (empty($constraintIds)) { |
|
190 | 190 | $this->apiErrorReporter->dieError( |
191 | - 'If ' . self::PARAM_CONSTRAINT_ID . ' is specified, it must be nonempty.', |
|
191 | + 'If '.self::PARAM_CONSTRAINT_ID.' is specified, it must be nonempty.', |
|
192 | 192 | 'no-data' |
193 | 193 | ); |
194 | 194 | } |
195 | 195 | |
196 | 196 | return array_map( |
197 | - function ( $constraintId ) { |
|
197 | + function($constraintId) { |
|
198 | 198 | try { |
199 | - $propertyId = $this->statementGuidParser->parse( $constraintId )->getEntityId(); |
|
200 | - if ( !$propertyId instanceof PropertyId ) { |
|
199 | + $propertyId = $this->statementGuidParser->parse($constraintId)->getEntityId(); |
|
200 | + if (!$propertyId instanceof PropertyId) { |
|
201 | 201 | $this->apiErrorReporter->dieError( |
202 | 202 | "Invalid property ID: {$propertyId->getSerialization()}", |
203 | 203 | 'invalid-property-id', |
204 | 204 | 0, // default argument |
205 | - [ self::PARAM_CONSTRAINT_ID => $constraintId ] |
|
205 | + [self::PARAM_CONSTRAINT_ID => $constraintId] |
|
206 | 206 | ); |
207 | 207 | } |
208 | 208 | return $constraintId; |
209 | - } catch ( StatementGuidParsingException $e ) { |
|
209 | + } catch (StatementGuidParsingException $e) { |
|
210 | 210 | $this->apiErrorReporter->dieError( |
211 | 211 | "Invalid statement GUID: $constraintId", |
212 | 212 | 'invalid-guid', |
213 | 213 | 0, // default argument |
214 | - [ self::PARAM_CONSTRAINT_ID => $constraintId ] |
|
214 | + [self::PARAM_CONSTRAINT_ID => $constraintId] |
|
215 | 215 | ); |
216 | 216 | } |
217 | 217 | }, |
@@ -223,12 +223,12 @@ discard block |
||
223 | 223 | * @param PropertyId[] $propertyIds |
224 | 224 | * @param ApiResult $result |
225 | 225 | */ |
226 | - private function checkPropertyIds( array $propertyIds, ApiResult $result ) { |
|
227 | - foreach ( $propertyIds as $propertyId ) { |
|
228 | - $result->addArrayType( $this->getResultPathForPropertyId( $propertyId ), 'assoc' ); |
|
226 | + private function checkPropertyIds(array $propertyIds, ApiResult $result) { |
|
227 | + foreach ($propertyIds as $propertyId) { |
|
228 | + $result->addArrayType($this->getResultPathForPropertyId($propertyId), 'assoc'); |
|
229 | 229 | $allConstraintExceptions = $this->delegatingConstraintChecker |
230 | - ->checkConstraintParametersOnPropertyId( $propertyId ); |
|
231 | - foreach ( $allConstraintExceptions as $constraintId => $constraintParameterExceptions ) { |
|
230 | + ->checkConstraintParametersOnPropertyId($propertyId); |
|
231 | + foreach ($allConstraintExceptions as $constraintId => $constraintParameterExceptions) { |
|
232 | 232 | $this->addConstraintParameterExceptionsToResult( |
233 | 233 | $constraintId, |
234 | 234 | $constraintParameterExceptions, |
@@ -242,15 +242,15 @@ discard block |
||
242 | 242 | * @param string[] $constraintIds |
243 | 243 | * @param ApiResult $result |
244 | 244 | */ |
245 | - private function checkConstraintIds( array $constraintIds, ApiResult $result ) { |
|
246 | - foreach ( $constraintIds as $constraintId ) { |
|
247 | - if ( $result->getResultData( $this->getResultPathForConstraintId( $constraintId ) ) ) { |
|
245 | + private function checkConstraintIds(array $constraintIds, ApiResult $result) { |
|
246 | + foreach ($constraintIds as $constraintId) { |
|
247 | + if ($result->getResultData($this->getResultPathForConstraintId($constraintId))) { |
|
248 | 248 | // already checked as part of checkPropertyIds() |
249 | 249 | continue; |
250 | 250 | } |
251 | 251 | $constraintParameterExceptions = $this->delegatingConstraintChecker |
252 | - ->checkConstraintParametersOnConstraintId( $constraintId ); |
|
253 | - $this->addConstraintParameterExceptionsToResult( $constraintId, $constraintParameterExceptions, $result ); |
|
252 | + ->checkConstraintParametersOnConstraintId($constraintId); |
|
253 | + $this->addConstraintParameterExceptionsToResult($constraintId, $constraintParameterExceptions, $result); |
|
254 | 254 | } |
255 | 255 | } |
256 | 256 | |
@@ -258,18 +258,18 @@ discard block |
||
258 | 258 | * @param PropertyId $propertyId |
259 | 259 | * @return string[] |
260 | 260 | */ |
261 | - private function getResultPathForPropertyId( PropertyId $propertyId ) { |
|
262 | - return [ $this->getModuleName(), $propertyId->getSerialization() ]; |
|
261 | + private function getResultPathForPropertyId(PropertyId $propertyId) { |
|
262 | + return [$this->getModuleName(), $propertyId->getSerialization()]; |
|
263 | 263 | } |
264 | 264 | |
265 | 265 | /** |
266 | 266 | * @param string $constraintId |
267 | 267 | * @return string[] |
268 | 268 | */ |
269 | - private function getResultPathForConstraintId( $constraintId ) { |
|
270 | - $propertyId = $this->statementGuidParser->parse( $constraintId )->getEntityId(); |
|
269 | + private function getResultPathForConstraintId($constraintId) { |
|
270 | + $propertyId = $this->statementGuidParser->parse($constraintId)->getEntityId(); |
|
271 | 271 | '@phan-var PropertyId $propertyId'; |
272 | - return array_merge( $this->getResultPathForPropertyId( $propertyId ), [ $constraintId ] ); |
|
272 | + return array_merge($this->getResultPathForPropertyId($propertyId), [$constraintId]); |
|
273 | 273 | } |
274 | 274 | |
275 | 275 | /** |
@@ -284,8 +284,8 @@ discard block |
||
284 | 284 | $constraintParameterExceptions, |
285 | 285 | ApiResult $result |
286 | 286 | ) { |
287 | - $path = $this->getResultPathForConstraintId( $constraintId ); |
|
288 | - if ( $constraintParameterExceptions === null ) { |
|
287 | + $path = $this->getResultPathForConstraintId($constraintId); |
|
288 | + if ($constraintParameterExceptions === null) { |
|
289 | 289 | $result->addValue( |
290 | 290 | $path, |
291 | 291 | self::KEY_STATUS, |
@@ -295,12 +295,12 @@ discard block |
||
295 | 295 | $result->addValue( |
296 | 296 | $path, |
297 | 297 | self::KEY_STATUS, |
298 | - empty( $constraintParameterExceptions ) ? self::STATUS_OKAY : self::STATUS_NOT_OKAY |
|
298 | + empty($constraintParameterExceptions) ? self::STATUS_OKAY : self::STATUS_NOT_OKAY |
|
299 | 299 | ); |
300 | 300 | $result->addValue( |
301 | 301 | $path, |
302 | 302 | self::KEY_PROBLEMS, |
303 | - array_map( [ $this, 'formatConstraintParameterException' ], $constraintParameterExceptions ) |
|
303 | + array_map([$this, 'formatConstraintParameterException'], $constraintParameterExceptions) |
|
304 | 304 | ); |
305 | 305 | } |
306 | 306 | } |
@@ -311,7 +311,7 @@ discard block |
||
311 | 311 | * @param ConstraintParameterException $e |
312 | 312 | * @return string[] |
313 | 313 | */ |
314 | - private function formatConstraintParameterException( ConstraintParameterException $e ) { |
|
314 | + private function formatConstraintParameterException(ConstraintParameterException $e) { |
|
315 | 315 | return [ |
316 | 316 | self::KEY_MESSAGE_HTML => $this->violationMessageRenderer->render( |
317 | 317 | $e->getViolationMessage() |
@@ -344,8 +344,8 @@ discard block |
||
344 | 344 | return [ |
345 | 345 | 'action=wbcheckconstraintparameters&propertyid=P247' |
346 | 346 | => 'apihelp-wbcheckconstraintparameters-example-propertyid-1', |
347 | - 'action=wbcheckconstraintparameters&' . |
|
348 | - 'constraintid=P247$0fe1711e-4c0f-82ce-3af0-830b721d0fba|' . |
|
347 | + 'action=wbcheckconstraintparameters&'. |
|
348 | + 'constraintid=P247$0fe1711e-4c0f-82ce-3af0-830b721d0fba|'. |
|
349 | 349 | 'P225$cdc71e4a-47a0-12c5-dfb3-3f6fc0b6613f' |
350 | 350 | => 'apihelp-wbcheckconstraintparameters-example-constraintid-2', |
351 | 351 | ]; |
@@ -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,24 +157,24 @@ discard block |
||
157 | 157 | PropertyId $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 ) { |
|
164 | - $constraints[] = $this->extractConstraintFromStatement( $property->getId(), $constraintStatement ); |
|
165 | - if ( count( $constraints ) >= self::BATCH_SIZE ) { |
|
166 | - $constraintStore->insertBatch( $constraints ); |
|
163 | + foreach ($constraintsStatements->getIterator() as $constraintStatement) { |
|
164 | + $constraints[] = $this->extractConstraintFromStatement($property->getId(), $constraintStatement); |
|
165 | + if (count($constraints) >= self::BATCH_SIZE) { |
|
166 | + $constraintStore->insertBatch($constraints); |
|
167 | 167 | // interrupt transaction and wait for replication |
168 | - $connection = $this->lbFactory->getMainLB()->getConnection( DB_MASTER ); |
|
169 | - $connection->endAtomic( __CLASS__ ); |
|
170 | - if ( !$connection->explicitTrxActive() ) { |
|
168 | + $connection = $this->lbFactory->getMainLB()->getConnection(DB_MASTER); |
|
169 | + $connection->endAtomic(__CLASS__); |
|
170 | + if (!$connection->explicitTrxActive()) { |
|
171 | 171 | $this->lbFactory->waitForReplication(); |
172 | 172 | } |
173 | - $connection->startAtomic( __CLASS__ ); |
|
173 | + $connection->startAtomic(__CLASS__); |
|
174 | 174 | $constraints = []; |
175 | 175 | } |
176 | 176 | } |
177 | - $constraintStore->insertBatch( $constraints ); |
|
177 | + $constraintStore->insertBatch($constraints); |
|
178 | 178 | } |
179 | 179 | |
180 | 180 | /** |
@@ -185,24 +185,24 @@ discard block |
||
185 | 185 | public function run() { |
186 | 186 | // TODO in the future: only touch constraints affected by the edit (requires T163465) |
187 | 187 | |
188 | - $propertyId = new PropertyId( $this->propertyId ); |
|
188 | + $propertyId = new PropertyId($this->propertyId); |
|
189 | 189 | $propertyRevision = $this->entityRevisionLookup->getEntityRevision( |
190 | 190 | $propertyId, |
191 | 191 | 0, // latest |
192 | 192 | LookupConstants::LATEST_FROM_REPLICA |
193 | 193 | ); |
194 | 194 | |
195 | - if ( $this->revisionId !== null && $propertyRevision->getRevisionId() < $this->revisionId ) { |
|
196 | - JobQueueGroup::singleton()->push( $this ); |
|
195 | + if ($this->revisionId !== null && $propertyRevision->getRevisionId() < $this->revisionId) { |
|
196 | + JobQueueGroup::singleton()->push($this); |
|
197 | 197 | return true; |
198 | 198 | } |
199 | 199 | |
200 | - $connection = $this->lbFactory->getMainLB()->getConnection( DB_MASTER ); |
|
200 | + $connection = $this->lbFactory->getMainLB()->getConnection(DB_MASTER); |
|
201 | 201 | // start transaction (if not started yet) – using __CLASS__, not __METHOD__, |
202 | 202 | // because importConstraintsForProperty() can interrupt the transaction |
203 | - $connection->startAtomic( __CLASS__ ); |
|
203 | + $connection->startAtomic(__CLASS__); |
|
204 | 204 | |
205 | - $this->constraintStore->deleteForProperty( $propertyId ); |
|
205 | + $this->constraintStore->deleteForProperty($propertyId); |
|
206 | 206 | |
207 | 207 | /** @var Property $property */ |
208 | 208 | $property = $propertyRevision->getEntity(); |
@@ -210,10 +210,10 @@ discard block |
||
210 | 210 | $this->importConstraintsForProperty( |
211 | 211 | $property, |
212 | 212 | $this->constraintStore, |
213 | - new PropertyId( $this->config->get( 'WBQualityConstraintsPropertyConstraintId' ) ) |
|
213 | + new PropertyId($this->config->get('WBQualityConstraintsPropertyConstraintId')) |
|
214 | 214 | ); |
215 | 215 | |
216 | - $connection->endAtomic( __CLASS__ ); |
|
216 | + $connection->endAtomic(__CLASS__); |
|
217 | 217 | |
218 | 218 | return true; |
219 | 219 | } |