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
86
87
88
89
90
91
92
93
94
95
96
97
98
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Setup\Model;
use Magento\Composer\MagentoComposerApplication;
use Magento\Composer\RequireUpdateDryRunCommand;
use Magento\Framework\App\Filesystem\DirectoryList;
use Magento\Framework\Composer\ComposerJsonFinder;
use Magento\Framework\Composer\MagentoComposerApplicationFactory;
use Magento\Framework\Filesystem\Driver\File;
/**
* This class checks for dependencies between components after an upgrade. It is used in readiness check.
*/
class DependencyReadinessCheck
{
/**
* @var ComposerJsonFinder
*/
private $composerJsonFinder;
/**
* @var DirectoryList
*/
private $directoryList;
/**
* @var RequireUpdateDryRunCommand
*/
private $requireUpdateDryRunCommand;
/**
* @var File
*/
private $file;
/**
* @var MagentoComposerApplication
*/
private $magentoComposerApplication;
/**
* Constructor
*
* @param ComposerJsonFinder $composerJsonFinder
* @param DirectoryList $directoryList
* @param File $file
* @param MagentoComposerApplicationFactory $composerAppFactory
*/
public function __construct(
ComposerJsonFinder $composerJsonFinder,
DirectoryList $directoryList,
File $file,
MagentoComposerApplicationFactory $composerAppFactory
) {
$this->composerJsonFinder = $composerJsonFinder;
$this->directoryList = $directoryList;
$this->file = $file;
$this->requireUpdateDryRunCommand = $composerAppFactory->createRequireUpdateDryRunCommand();
$this->magentoComposerApplication = $composerAppFactory->create();
}
/**
* Run Composer dependency check
*
* @param array $packages
* @return array
* @throws \Exception
*/
public function runReadinessCheck(array $packages)
{
$composerJson = $this->composerJsonFinder->findComposerJson();
$this->file->copy($composerJson, $this->directoryList->getPath(DirectoryList::VAR_DIR) . '/composer.json');
$workingDir = $this->directoryList->getPath(DirectoryList::VAR_DIR);
try {
foreach ($packages as $package) {
if (strpos($package, 'magento/product-enterprise-edition') !== false) {
$this->magentoComposerApplication->runComposerCommand(
[
'command' => 'remove',
'packages' => ['magento/product-community-edition'],
'--no-update' => true
],
$workingDir
);
}
}
$this->requireUpdateDryRunCommand->run($packages, $workingDir);
return ['success' => true];
} catch (\RuntimeException $e) {
$message = str_replace(PHP_EOL, '<br/>', htmlspecialchars($e->getMessage()));
return ['success' => false, 'error' => $message];
}
}
}