Merge "Rewrite pref cleanup script"
[lhc/web/wiklou.git] / maintenance / checkComposerLockUpToDate.php
1 <?php
2
3 require_once __DIR__ . '/Maintenance.php';
4
5 /**
6 * Checks whether your composer-installed dependencies are up to date
7 *
8 * Composer creates a "composer.lock" file which specifies which versions are installed
9 * (via `composer install`). It has a hash, which can be compared to the value of
10 * the composer.json file to see if dependencies are up to date.
11 */
12 class CheckComposerLockUpToDate extends Maintenance {
13 public function __construct() {
14 parent::__construct();
15 $this->addDescription(
16 'Checks whether your composer.lock file is up to date with the current composer.json' );
17 }
18
19 public function execute() {
20 global $IP;
21 $lockLocation = "$IP/composer.lock";
22 $jsonLocation = "$IP/composer.json";
23 if ( !file_exists( $lockLocation ) ) {
24 // Maybe they're using mediawiki/vendor?
25 $lockLocation = "$IP/vendor/composer.lock";
26 if ( !file_exists( $lockLocation ) ) {
27 $this->fatalError(
28 'Could not find composer.lock file. Have you run "composer install --no-dev"?'
29 );
30 }
31 }
32
33 $lock = new ComposerLock( $lockLocation );
34 $json = new ComposerJson( $jsonLocation );
35
36 // Check all the dependencies to see if any are old
37 $found = false;
38 $installed = $lock->getInstalledDependencies();
39 foreach ( $json->getRequiredDependencies() as $name => $version ) {
40 if ( isset( $installed[$name] ) ) {
41 if ( $installed[$name]['version'] !== $version ) {
42 $this->output(
43 "$name: {$installed[$name]['version']} installed, $version required.\n"
44 );
45 $found = true;
46 }
47 } else {
48 $this->output( "$name: not installed, $version required.\n" );
49 $found = true;
50 }
51 }
52 if ( $found ) {
53 $this->fatalError(
54 'Error: your composer.lock file is not up to date. ' .
55 'Run "composer update --no-dev" to install newer dependencies'
56 );
57 } else {
58 // We couldn't find any out-of-date dependencies, so assume everything is ok!
59 $this->output( "Your composer.lock file is up to date with current dependencies!\n" );
60 }
61 }
62 }
63
64 $maintClass = CheckComposerLockUpToDate::class;
65 require_once RUN_MAINTENANCE_IF_MAIN;