CheckCore.php 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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. $result = $this->checker->verifyCoreSignature();
  59. $this->writeArrayInOutputFormat($input, $output, $result);
  60. if (count($result) > 0) {
  61. return 1;
  62. }
  63. return 0;
  64. }
  65. }