1
0

RemoveCertificate.php 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <?php
  2. /**
  3. * @copyright Copyright (c) 2016, ownCloud, Inc.
  4. *
  5. * @author Carla Schroder <carla@owncloud.com>
  6. * @author Joas Schilling <coding@schilljs.com>
  7. * @author Robin Appelman <robin@icewind.nl>
  8. *
  9. * @license AGPL-3.0
  10. *
  11. * This code is free software: you can redistribute it and/or modify
  12. * it under the terms of the GNU Affero General Public License, version 3,
  13. * as published by the Free Software Foundation.
  14. *
  15. * This program is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. * GNU Affero General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU Affero General Public License, version 3,
  21. * along with this program. If not, see <http://www.gnu.org/licenses/>
  22. *
  23. */
  24. namespace OC\Core\Command\Security;
  25. use OC\Core\Command\Base;
  26. use OCP\ICertificateManager;
  27. use Symfony\Component\Console\Input\InputArgument;
  28. use Symfony\Component\Console\Input\InputInterface;
  29. use Symfony\Component\Console\Output\OutputInterface;
  30. class RemoveCertificate extends Base {
  31. /** @var ICertificateManager */
  32. protected $certificateManager;
  33. public function __construct(ICertificateManager $certificateManager) {
  34. $this->certificateManager = $certificateManager;
  35. parent::__construct();
  36. }
  37. protected function configure() {
  38. $this
  39. ->setName('security:certificates:remove')
  40. ->setDescription('remove trusted certificate')
  41. ->addArgument(
  42. 'name',
  43. InputArgument::REQUIRED,
  44. 'the file name of the certificate to remove'
  45. );
  46. }
  47. protected function execute(InputInterface $input, OutputInterface $output): int {
  48. $name = $input->getArgument('name');
  49. $this->certificateManager->removeCertificate($name);
  50. return 0;
  51. }
  52. }