configManager = $configManager; parent::__construct(); } /** * {@inheritdoc} */ protected function configure() { $this ->setName('config:export') ->setDescription($this->trans('commands.config.export.description')) ->addOption( 'directory', null, InputOption::VALUE_OPTIONAL, $this->trans('commands.config.export.arguments.directory') ) ->addOption( 'tar', false, InputOption::VALUE_NONE, $this->trans('commands.config.export.arguments.tar') )->addOption( 'remove-uuid', '', InputOption::VALUE_NONE, $this->trans('commands.config.export.single.options.remove-uuid') )->addOption( 'remove-config-hash', '', InputOption::VALUE_NONE, $this->trans('commands.config.export.single.options.remove-config-hash') ); } /** * {@inheritdoc} */ protected function execute(InputInterface $input, OutputInterface $output) { $io = new DrupalStyle($input, $output); $directory = $input->getOption('directory'); $tar = $input->getOption('tar'); $removeUuid = $input->getOption('remove-uuid'); $removeHash = $input->getOption('remove-config-hash'); if (!$directory) { $directory = config_get_config_directory(CONFIG_SYNC_DIRECTORY); } $fileSystem = new Filesystem(); try { $fileSystem->mkdir($directory); } catch (IOExceptionInterface $e) { $io->error( sprintf( $this->trans('commands.config.export.messages.error'), $e->getPath() ) ); } if ($tar) { $dateTime = new \DateTime(); $archiveFile = sprintf( '%s/config-%s.tar.gz', $directory, $dateTime->format('Y-m-d-H-i-s') ); $archiveTar = new ArchiveTar($archiveFile, 'gz'); } try { // Get raw configuration data without overrides. foreach ($this->configManager->getConfigFactory()->listAll() as $name) { $configData = $this->configManager->getConfigFactory()->get($name)->getRawData(); $configName = sprintf('%s.yml', $name); if ($removeUuid) { unset($configData['uuid']); } if ($removeHash) { unset($configData['_core']['default_config_hash']); } $ymlData = Yaml::encode($configData); if ($tar) { $archiveTar->addString( $configName, $ymlData ); continue; } $configFileName = sprintf('%s/%s', $directory, $configName); file_put_contents($configFileName, $ymlData); } } catch (\Exception $e) { $io->error($e->getMessage()); } $io->info( sprintf( $this->trans('commands.config.export.messages.directory'), $directory ) ); } }