MediaWiki REL1_30
VersionChecker.php
Go to the documentation of this file.
1<?php
2
23use Composer\Semver\VersionParser;
24use Composer\Semver\Constraint\Constraint;
25
36 private $coreVersion = false;
37
41 private $loaded = [];
42
47
51 public function __construct( $coreVersion ) {
52 $this->versionParser = new VersionParser();
54 }
55
62 public function setLoadedExtensionsAndSkins( array $credits ) {
63 $this->loaded = $credits;
64
65 return $this;
66 }
67
73 private function setCoreVersion( $coreVersion ) {
74 try {
75 $this->coreVersion = new Constraint(
76 '==',
77 $this->versionParser->normalize( $coreVersion )
78 );
79 $this->coreVersion->setPrettyString( $coreVersion );
80 } catch ( UnexpectedValueException $e ) {
81 // Non-parsable version, don't fatal.
82 }
83 }
84
105 public function checkArray( array $extDependencies ) {
106 $errors = [];
107 foreach ( $extDependencies as $extension => $dependencies ) {
108 foreach ( $dependencies as $dependencyType => $values ) {
109 switch ( $dependencyType ) {
111 $mwError = $this->handleMediaWikiDependency( $values, $extension );
112 if ( $mwError !== false ) {
113 $errors[] = $mwError;
114 }
115 break;
116 case 'extensions':
117 case 'skin':
118 foreach ( $values as $dependency => $constraint ) {
119 $extError = $this->handleExtensionDependency( $dependency, $constraint, $extension );
120 if ( $extError !== false ) {
121 $errors[] = $extError;
122 }
123 }
124 break;
125 default:
126 throw new UnexpectedValueException( 'Dependency type ' . $dependencyType .
127 ' unknown in ' . $extension );
128 }
129 }
130 }
131
132 return $errors;
133 }
134
144 private function handleMediaWikiDependency( $constraint, $checkedExt ) {
145 if ( $this->coreVersion === false ) {
146 // Couldn't parse the core version, so we can't check anything
147 return false;
148 }
149
150 // if the installed and required version are compatible, return an empty array
151 if ( $this->versionParser->parseConstraints( $constraint )
152 ->matches( $this->coreVersion ) ) {
153 return false;
154 }
155 // otherwise mark this as incompatible.
156 return "{$checkedExt} is not compatible with the current "
157 . "MediaWiki core (version {$this->coreVersion->getPrettyString()}), it requires: "
158 . "$constraint.";
159 }
160
169 private function handleExtensionDependency( $dependencyName, $constraint, $checkedExt ) {
170 // Check if the dependency is even installed
171 if ( !isset( $this->loaded[$dependencyName] ) ) {
172 return "{$checkedExt} requires {$dependencyName} to be installed.";
173 }
174 // Check if the dependency has specified a version
175 if ( !isset( $this->loaded[$dependencyName]['version'] ) ) {
176 // If we depend upon any version, and none is set, that's fine.
177 if ( $constraint === '*' ) {
178 wfDebug( "{$dependencyName} does not expose it's version, but {$checkedExt}
179 mentions it with constraint '*'. Assume it's ok so." );
180 return false;
181 } else {
182 // Otherwise, mark it as incompatible.
183 return "{$dependencyName} does not expose it's version, but {$checkedExt}
184 requires: {$constraint}.";
185 }
186 } else {
187 // Try to get a constraint for the dependency version
188 try {
189 $installedVersion = new Constraint(
190 '==',
191 $this->versionParser->normalize( $this->loaded[$dependencyName]['version'] )
192 );
193 } catch ( UnexpectedValueException $e ) {
194 // Non-parsable version, output an error message that the version
195 // string is invalid
196 return "$dependencyName does not have a valid version string.";
197 }
198 // Check if the constraint actually matches...
199 if (
200 !$this->versionParser->parseConstraints( $constraint )->matches( $installedVersion )
201 ) {
202 return "{$checkedExt} is not compatible with the current "
203 . "installed version of {$dependencyName} "
204 . "({$this->loaded[$dependencyName]['version']}), "
205 . "it requires: " . $constraint . '.';
206 }
207 }
208
209 return false;
210 }
211}
wfDebug( $text, $dest='all', array $context=[])
Sends a line to the debug log if enabled or, optionally, to a comment in output.
const MEDIAWIKI_CORE
"requires" key that applies to MediaWiki core/$wgVersion
Provides functions to check a set of extensions with dependencies against a set of loaded extensions ...
handleExtensionDependency( $dependencyName, $constraint, $checkedExt)
Handle a dependency to another extension.
Constraint bool $coreVersion
representing $wgVersion
setLoadedExtensionsAndSkins(array $credits)
Set an array with credits of all loaded extensions and skins.
checkArray(array $extDependencies)
Check all given dependencies if they are compatible with the named installed extensions in the $credi...
array $loaded
Loaded extensions.
VersionParser $versionParser
handleMediaWikiDependency( $constraint, $checkedExt)
Handle a dependency to MediaWiki core.
__construct( $coreVersion)
setCoreVersion( $coreVersion)
Set MediaWiki core version.
returning false will NOT prevent logging $e
Definition hooks.txt:2146