관리-도구
편집 파일: KeyFileLoaderCommand.php
<?php declare(strict_types=1); /* * The MIT License (MIT) * * Copyright (c) 2014-2020 Spomky-Labs * * This software may be modified and distributed under the terms * of the MIT license. See the LICENSE file for details. */ namespace Jose\Component\Console; use InvalidArgumentException; use function is_string; use Jose\Component\KeyManagement\JWKFactory; use Symfony\Component\Console\Input\InputArgument; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Input\InputOption; use Symfony\Component\Console\Output\OutputInterface; final class KeyFileLoaderCommand extends GeneratorCommand { protected function configure(): void { parent::configure(); $this ->setName('key:load:key') ->setDescription('Loads a key from a key file (JWK format)') ->addArgument('file', InputArgument::REQUIRED, 'Filename of the key.') ->addOption('secret', 's', InputOption::VALUE_OPTIONAL, 'Secret if the key is encrypted.', null) ; } /** * @throws InvalidArgumentException if the file is invalid * @throws InvalidArgumentException if the secret is invalid */ protected function execute(InputInterface $input, OutputInterface $output): int { $file = $input->getArgument('file'); $password = $input->getOption('secret'); if (!is_string($file)) { throw new InvalidArgumentException('Invalid file'); } if (null !== $password && !is_string($password)) { throw new InvalidArgumentException('Invalid secret'); } $args = $this->getOptions($input); $jwk = JWKFactory::createFromKeyFile($file, $password, $args); $this->prepareJsonOutput($input, $output, $jwk); return 0; } }