1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
|
<?php
// @codeCoverageIgnoreStart
require_once __DIR__ . '/Maintenance.php';
// @codeCoverageIgnoreEnd
use MediaWiki\Composer\LockFileChecker;
use MediaWiki\Maintenance\Maintenance;
use Wikimedia\Composer\ComposerJson;
use Wikimedia\Composer\ComposerLock;
/**
* Checks whether your composer-installed dependencies are up to date
*
* Composer creates a "composer.lock" file which specifies which versions are installed
* (via `composer install`). It has a hash, which can be compared to the value of
* the composer.json file to see if dependencies are up to date.
*/
class CheckComposerLockUpToDate extends Maintenance {
public function __construct() {
parent::__construct();
$this->addDescription(
'Checks whether your composer.lock file is up to date with the current composer.json' );
}
public function canExecuteWithoutLocalSettings(): bool {
return true;
}
/**
* @return string The value of the constant MW_INSTALL_PATH. This method mocked in phpunit tests.
*/
protected function getMwInstallPath(): string {
return MW_INSTALL_PATH;
}
public function execute() {
$installPath = $this->getMwInstallPath();
$lockLocation = "$installPath/composer.lock";
$jsonLocation = "$installPath/composer.json";
if ( !file_exists( $lockLocation ) ) {
// Maybe they're using mediawiki/vendor?
$lockLocation = "$installPath/vendor/composer.lock";
if ( !file_exists( $lockLocation ) ) {
$this->fatalError(
'Could not find composer.lock file. Have you run "composer install --no-dev"?'
);
}
}
$lock = new ComposerLock( $lockLocation );
$json = new ComposerJson( $jsonLocation );
// Check all the dependencies to see if any are old
$checker = new LockFileChecker( $json, $lock );
$errors = $checker->check();
// NOTE: This is used by TestSetup before MediaWikiServices is initialized and thus
// may not rely on global singletons.
// NOTE: This is used by maintenance/update.php and thus may not rely on
// database connections, including e.g. interface messages without useDatabase=false,
// which would call MessageCache.
if ( $errors ) {
foreach ( $errors as $error ) {
$this->error( $error . "\n" );
}
$suggestedCommand = 'composer update';
if ( !defined( 'MW_PHPUNIT_TEST' ) ) {
$suggestedCommand .= ' --no-dev';
}
$this->fatalError(
'Error: your composer.lock file is not up to date. ' .
'Run "' . $suggestedCommand . '" to install newer dependencies'
);
} else {
// We couldn't find any out-of-date dependencies, so assume everything is ok!
$this->output( "Your composer.lock file is up to date with current dependencies!\n" );
}
}
}
// @codeCoverageIgnoreStart
$maintClass = CheckComposerLockUpToDate::class;
require_once RUN_MAINTENANCE_IF_MAIN;
// @codeCoverageIgnoreEnd
|