CheckCore.php 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <?php
  2. /**
  3. * @copyright Copyright (c) 2016, ownCloud, Inc.
  4. *
  5. * @author Carla Schroder <carla@owncloud.com>
  6. * @author Roeland Jago Douma <roeland@famdouma.nl>
  7. * @author Victor Dubiniuk <dubiniuk@owncloud.com>
  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\Integrity;
  25. use OC\Core\Command\Base;
  26. use OC\IntegrityCheck\Checker;
  27. use Symfony\Component\Console\Input\InputInterface;
  28. use Symfony\Component\Console\Output\OutputInterface;
  29. /**
  30. * Class CheckCore
  31. *
  32. * @package OC\Core\Command\Integrity
  33. */
  34. class CheckCore extends Base {
  35. /**
  36. * @var Checker
  37. */
  38. private $checker;
  39. public function __construct(Checker $checker) {
  40. parent::__construct();
  41. $this->checker = $checker;
  42. }
  43. /**
  44. * {@inheritdoc }
  45. */
  46. protected function configure() {
  47. parent::configure();
  48. $this
  49. ->setName('integrity:check-core')
  50. ->setDescription('Check integrity of core code using a signature.');
  51. }
  52. /**
  53. * {@inheritdoc }
  54. */
  55. protected function execute(InputInterface $input, OutputInterface $output) {
  56. $result = $this->checker->verifyCoreSignature();
  57. $this->writeArrayInOutputFormat($input, $output, $result);
  58. if (count($result)>0){
  59. return 1;
  60. }
  61. }
  62. }