queue = $queue ? $queue : new Queue(); $this->backup = $backup ? $backup : new Backup(); $this->rollback = $rollback ? $rollback : new Rollback(); $this->composerApp = $composerApp; } /** * {@inheritdoc} */ public function execute() { try { $this->composerApp = $this->composerApp ? : $this->getComposerApp(); $this->status->add('Starting composer update...', \Psr\Log\LogLevel::INFO); if (isset($this->params['components'])) { $packages = []; foreach ($this->params['components'] as $compObj) { $packages[] = implode(' ', $compObj); } foreach ($packages as $package) { if (strpos($package, 'magento/product-enterprise-edition') !== false) { $this->composerApp->runComposerCommand( [ 'command' => 'remove', 'packages' => ['magento/product-community-edition'], '--no-update' => true ] ); } } $this->status->add( $this->composerApp->runComposerCommand( ['command' => 'require', 'packages' => $packages, '--no-update' => true] ), \Psr\Log\LogLevel::INFO ); } else { throw new \RuntimeException('Cannot find component to update'); } $this->status->add( $this->composerApp->runComposerCommand(['command' => 'update']), \Psr\Log\LogLevel::INFO ); $this->status->add('Composer update completed successfully', \Psr\Log\LogLevel::INFO); $this->createSetupUpgradeTasks(); } catch (\Exception $e) { $this->status->setUpdateError(true); throw new \RuntimeException(sprintf('Could not complete %s successfully: %s', $this, $e->getMessage())); } return $this; } /** * Create setup:upgrade task for setup application cron * * @return void */ private function createSetupUpgradeTasks() { $jobs = [['name' => 'setup:upgrade', 'params' => []]]; $this->queue->addJobs($jobs); } /** * Get composer application * * @return MagentoComposerApplication */ private function getComposerApp() { $vendorPath = MAGENTO_BP . '/' . (include (MAGENTO_BP . '/app/etc/vendor_path.php')); $composerPath = $vendorPath . '/../composer.json'; $composerPath = realpath($composerPath); return new MagentoComposerApplication(MAGENTO_BP . '/var/composer_home', $composerPath); } }