filesystem = $filesystem;
$this->sampleDataDependency = $sampleDataDependency;
$this->arrayInputFactory = $arrayInputFactory;
$this->applicationFactory = $applicationFactory;
parent::__construct();
}
/**
* {@inheritdoc}
*/
protected function configure()
{
$this->setName('sampledata:deploy')
->setDescription('Deploy sample data modules for composer-based Magento installations');
$this->addOption(
self::OPTION_NO_UPDATE,
null,
InputOption::VALUE_NONE,
'Update composer.json without executing composer update'
);
parent::configure();
}
/**
* {@inheritdoc}
*/
protected function execute(InputInterface $input, OutputInterface $output)
{
$rootJson = json_decode($this->filesystem->getDirectoryRead(DirectoryList::ROOT)->readFile("composer.json"));
if (!isset($rootJson->version)) {
// @codingStandardsIgnoreLine
$output->writeln('' . 'Git installations must deploy sample data from GitHub; see https://devdocs.magento.com/guides/v2.3/install-gde/install/sample-data-after-clone.html for more information.' . '');
return;
}
$this->updateMemoryLimit();
$this->createAuthFile();
$sampleDataPackages = $this->sampleDataDependency->getSampleDataPackages();
if (!empty($sampleDataPackages)) {
$baseDir = $this->filesystem->getDirectoryRead(DirectoryList::ROOT)->getAbsolutePath();
$commonArgs = ['--working-dir' => $baseDir, '--no-progress' => 1];
if ($input->getOption(self::OPTION_NO_UPDATE)) {
$commonArgs['--no-update'] = 1;
}
$packages = [];
foreach ($sampleDataPackages as $name => $version) {
$packages[] = "$name:$version";
}
$commonArgs = array_merge(['packages' => $packages], $commonArgs);
$arguments = array_merge(['command' => 'require'], $commonArgs);
$commandInput = new ArrayInput($arguments);
/** @var Application $application */
$application = $this->applicationFactory->create();
$application->setAutoExit(false);
$result = $application->run($commandInput, $output);
if ($result !== 0) {
$output->writeln(
'' . 'There is an error during sample data deployment. Composer file will be reverted.'
. ''
);
$application->resetComposer();
}
} else {
$output->writeln('' . 'There is no sample data for current set of modules.' . '');
}
}
/**
* Create new auth.json file if it doesn't exist.
*
* We create auth.json with correct permissions instead of relying on Composer.
*
* @return void
* @throws \Exception
*/
private function createAuthFile()
{
$directory = $this->filesystem->getDirectoryWrite(DirectoryList::COMPOSER_HOME);
if (!$directory->isExist(PackagesAuth::PATH_TO_AUTH_FILE)) {
try {
$directory->writeFile(PackagesAuth::PATH_TO_AUTH_FILE, '{}');
} catch (\Exception $e) {
$message = 'Error in writing Auth file '
. $directory->getAbsolutePath(PackagesAuth::PATH_TO_AUTH_FILE)
. '. Please check permissions for writing.';
throw new \Exception($message);
}
}
}
/**
* @return void
*/
private function updateMemoryLimit()
{
if (function_exists('ini_set')) {
@ini_set('display_errors', 1);
$memoryLimit = trim(ini_get('memory_limit'));
if ($memoryLimit != -1 && $this->getMemoryInBytes($memoryLimit) < 756 * 1024 * 1024) {
@ini_set('memory_limit', '756M');
}
}
}
/**
* @param string $value
* @return int
*/
private function getMemoryInBytes($value)
{
$unit = strtolower(substr($value, -1, 1));
$value = (int) $value;
switch ($unit) {
case 'g':
$value *= 1024 * 1024 * 1024;
break;
case 'm':
$value *= 1024 * 1024;
break;
case 'k':
$value *= 1024;
}
return $value;
}
}