123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125 |
- <?php
- /*
- * This file is part of the Symfony package.
- *
- * (c) Fabien Potencier <fabien@symfony.com>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
- namespace Symfony\Bundle\FrameworkBundle\Command;
- use Symfony\Bundle\FrameworkBundle\Secrets\AbstractVault;
- use Symfony\Component\Console\Command\Command;
- use Symfony\Component\Console\Input\InputInterface;
- use Symfony\Component\Console\Input\InputOption;
- use Symfony\Component\Console\Output\ConsoleOutputInterface;
- use Symfony\Component\Console\Output\OutputInterface;
- use Symfony\Component\Console\Style\SymfonyStyle;
- /**
- * @author Tobias Schultze <http://tobion.de>
- * @author Jérémy Derussé <jeremy@derusse.com>
- * @author Nicolas Grekas <p@tchwork.com>
- *
- * @internal
- */
- final class SecretsGenerateKeysCommand extends Command
- {
- protected static $defaultName = 'secrets:generate-keys';
- private $vault;
- private $localVault;
- public function __construct(AbstractVault $vault, AbstractVault $localVault = null)
- {
- $this->vault = $vault;
- $this->localVault = $localVault;
- parent::__construct();
- }
- protected function configure()
- {
- $this
- ->setDescription('Generate new encryption keys')
- ->addOption('local', 'l', InputOption::VALUE_NONE, 'Update the local vault.')
- ->addOption('rotate', 'r', InputOption::VALUE_NONE, 'Re-encrypt existing secrets with the newly generated keys.')
- ->setHelp(<<<'EOF'
- The <info>%command.name%</info> command generates a new encryption key.
- <info>%command.full_name%</info>
- If encryption keys already exist, the command must be called with
- the <info>--rotate</info> option in order to override those keys and re-encrypt
- existing secrets.
- <info>%command.full_name% --rotate</info>
- EOF
- )
- ;
- }
- protected function execute(InputInterface $input, OutputInterface $output): int
- {
- $io = new SymfonyStyle($input, $output instanceof ConsoleOutputInterface ? $output->getErrorOutput() : $output);
- $vault = $input->getOption('local') ? $this->localVault : $this->vault;
- if (null === $vault) {
- $io->success('The local vault is disabled.');
- return 1;
- }
- if (!$input->getOption('rotate')) {
- if ($vault->generateKeys()) {
- $io->success($vault->getLastMessage());
- if ($this->vault === $vault) {
- $io->caution('DO NOT COMMIT THE DECRYPTION KEY FOR THE PROD ENVIRONMENT⚠️');
- }
- return 0;
- }
- $io->warning($vault->getLastMessage());
- return 1;
- }
- $secrets = [];
- foreach ($vault->list(true) as $name => $value) {
- if (null === $value) {
- $io->error($vault->getLastMessage());
- return 1;
- }
- $secrets[$name] = $value;
- }
- if (!$vault->generateKeys(true)) {
- $io->warning($vault->getLastMessage());
- return 1;
- }
- $io->success($vault->getLastMessage());
- if ($secrets) {
- foreach ($secrets as $name => $value) {
- $vault->seal($name, $value);
- }
- $io->comment('Existing secrets have been rotated to the new keys.');
- }
- if ($this->vault === $vault) {
- $io->caution('DO NOT COMMIT THE DECRYPTION KEY FOR THE PROD ENVIRONMENT⚠️');
- }
- return 0;
- }
- }
|