You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CheckCore.php 2.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. <?php
  2. /**
  3. * @copyright Copyright (c) 2016, ownCloud, Inc.
  4. *
  5. * @author Carla Schroder <carla@owncloud.com>
  6. * @author Christoph Wurst <christoph@winzerhof-wurst.at>
  7. * @author Joas Schilling <coding@schilljs.com>
  8. * @author Roeland Jago Douma <roeland@famdouma.nl>
  9. * @author Victor Dubiniuk <dubiniuk@owncloud.com>
  10. *
  11. * @license AGPL-3.0
  12. *
  13. * This code is free software: you can redistribute it and/or modify
  14. * it under the terms of the GNU Affero General Public License, version 3,
  15. * as published by the Free Software Foundation.
  16. *
  17. * This program is distributed in the hope that it will be useful,
  18. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  19. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  20. * GNU Affero General Public License for more details.
  21. *
  22. * You should have received a copy of the GNU Affero General Public License, version 3,
  23. * along with this program. If not, see <http://www.gnu.org/licenses/>
  24. *
  25. */
  26. namespace OC\Core\Command\Integrity;
  27. use OC\Core\Command\Base;
  28. use OC\IntegrityCheck\Checker;
  29. use Symfony\Component\Console\Input\InputInterface;
  30. use Symfony\Component\Console\Output\OutputInterface;
  31. /**
  32. * Class CheckCore
  33. *
  34. * @package OC\Core\Command\Integrity
  35. */
  36. class CheckCore extends Base {
  37. /**
  38. * @var Checker
  39. */
  40. private $checker;
  41. public function __construct(Checker $checker) {
  42. parent::__construct();
  43. $this->checker = $checker;
  44. }
  45. /**
  46. * {@inheritdoc }
  47. */
  48. protected function configure() {
  49. parent::configure();
  50. $this
  51. ->setName('integrity:check-core')
  52. ->setDescription('Check integrity of core code using a signature.');
  53. }
  54. /**
  55. * {@inheritdoc }
  56. */
  57. protected function execute(InputInterface $input, OutputInterface $output): int {
  58. if (!$this->checker->isCodeCheckEnforced()) {
  59. $output->writeln('<comment>integrity:check-core can not be used on git checkouts</comment>');
  60. return 2;
  61. }
  62. $result = $this->checker->verifyCoreSignature();
  63. $this->writeArrayInOutputFormat($input, $output, $result);
  64. if (count($result) > 0) {
  65. return 1;
  66. }
  67. return 0;
  68. }
  69. }