ImportCertificate.php 2.0 KB

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