RemoveCertificate.php 1.8 KB

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