wiki.techinc.nl/includes/composer/LockFileChecker.php
Reedy 72df6cb8da libs/composer: Namespace under Wikimedia\Composer
Change-Id: I5ffedacf31e60fb0f38e308f8dcf010e577f919e
2024-01-13 20:10:25 +00:00

104 lines
3 KiB
PHP

<?php
/**
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
* http://www.gnu.org/copyleft/gpl.html
*
* @file
*/
namespace MediaWiki\Composer;
use Composer\Semver\Semver;
use Status;
use Wikimedia\Composer\ComposerJson;
use Wikimedia\Composer\ComposerLock;
/**
* Used to check whether composer-installed dependencies (no-dev) are up-to-date
* @since 1.42
*/
class LockFileChecker {
/** @var ComposerJson */
private $composerJson;
/** @var ComposerJson */
private $composerLock;
/**
* @param ComposerJson $composerJson
* @param ComposerLock $composerLock
*/
public function __construct( ComposerJson $composerJson, ComposerLock $composerLock ) {
$this->composerJson = $composerJson;
$this->composerLock = $composerLock;
}
/**
* This method will return a {@link Status} instance,
* you can use {@link Status::isGood()} to simply determine that
* the composer-installed dependencies are up-to-date.
* @return Status
*/
public function check(): Status {
$status = Status::newGood();
$requiredButOld = [];
$requiredButMissing = [];
$installed = $this->composerLock->getInstalledDependencies();
foreach ( $this->composerJson->getRequiredDependencies() as $name => $version ) {
// Not installed at all.
if ( !isset( $installed[$name] ) ) {
$requiredButMissing[] = [
'name' => $name,
'wantedVersion' => $version
];
continue;
}
// Installed; need to check it's the right version
if ( !SemVer::satisfies( $installed[$name]['version'], $version ) ) {
$requiredButOld[] = [
'name' => $name,
'wantedVersion' => $version,
'suppliedVersion' => $installed[$name]['version']
];
}
// We're happy; loop to the next dependency.
}
if ( count( $requiredButOld ) === 0 && count( $requiredButMissing ) === 0 ) {
// We couldn't find any out-of-date or missing dependencies, so assume everything is ok!
return $status;
}
foreach ( $requiredButOld as [
"name" => $name,
"suppliedVersion" => $suppliedVersion,
"wantedVersion" => $wantedVersion
] ) {
$status->error( 'composer-deps-outdated', $name, $suppliedVersion, $wantedVersion );
}
foreach ( $requiredButMissing as [
"name" => $name,
"wantedVersion" => $wantedVersion
] ) {
$status->error( 'composer-deps-notinstalled', $name, $wantedVersion );
}
return $status;
}
}