* @author Christoph Wurst * @author Joas Schilling * @author Roeland Jago Douma * @author Victor Dubiniuk * * @license AGPL-3.0 * * This code is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License, version 3, * as published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License, version 3, * along with this program. If not, see * */ namespace OC\Core\Command\Integrity; use OC\Core\Command\Base; use OC\IntegrityCheck\Checker; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; /** * Class CheckCore * * @package OC\Core\Command\Integrity */ class CheckCore extends Base { public function __construct( private Checker $checker, ) { parent::__construct(); } /** * {@inheritdoc } */ protected function configure() { parent::configure(); $this ->setName('integrity:check-core') ->setDescription('Check integrity of core code using a signature.'); } /** * {@inheritdoc } */ protected function execute(InputInterface $input, OutputInterface $output): int { if (!$this->checker->isCodeCheckEnforced()) { $output->writeln('integrity:check-core can not be used on git checkouts'); return 2; } $result = $this->checker->verifyCoreSignature(); $this->writeArrayInOutputFormat($input, $output, $result); if (count($result) > 0) { $output->writeln('' . count($result) . ' errors found', OutputInterface::VERBOSITY_VERBOSE); return 1; } $output->writeln('No errors found', OutputInterface::VERBOSITY_VERBOSE); return 0; } }