Skip to content

Commit

Permalink
Allowing empty secrets to be set
Browse files Browse the repository at this point in the history
  • Loading branch information
weaverryan committed Apr 9, 2020
1 parent 0506f8c commit c9bf0c8
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions src/Symfony/Bundle/FrameworkBundle/Command/SecretsSetCommand.php
Expand Up @@ -96,6 +96,11 @@ protected function execute(InputInterface $input, OutputInterface $output): int
$value = strtr(substr(base64_encode(random_bytes($random)), 0, $random), '+/', '-_');
} elseif (!$file = $input->getArgument('file')) {
$value = $io->askHidden('Please type the secret value');

if (null === $value) {
$io->warning('No value provided: using empty string');
$value = '';
}
} elseif ('-' === $file) {
$value = file_get_contents('php://stdin');
} elseif (is_file($file) && is_readable($file)) {
Expand All @@ -106,12 +111,6 @@ protected function execute(InputInterface $input, OutputInterface $output): int
throw new \InvalidArgumentException(sprintf('File is not readable: "%s".', $file));
}

if (null === $value) {
$io->warning('No value provided, aborting.');

return 1;
}

if ($vault->generateKeys()) {
$io->success($vault->getLastMessage());

Expand Down

0 comments on commit c9bf0c8

Please sign in to comment.