Skip to content

Commit

Permalink
Fix occ integrity:check-app and Admin panel "rescan" deliver incons…
Browse files Browse the repository at this point in the history
…istent results


Signed-off-by: Seungmin Kim <8457324+ehfd@users.noreply.github.com>
  • Loading branch information
ehfd authored Dec 1, 2024
1 parent e17f011 commit 944e25e
Showing 1 changed file with 16 additions and 7 deletions.
23 changes: 16 additions & 7 deletions core/Command/Integrity/CheckApp.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@

use OC\Core\Command\Base;
use OC\IntegrityCheck\Checker;
use OC\IntegrityCheck\Helpers\AppLocator;
use OC\IntegrityCheck\Helpers\FileAccessHelper;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Input\InputOption;
Expand All @@ -22,6 +24,8 @@
class CheckApp extends Base {
public function __construct(
private Checker $checker,
private AppLocator $appLocator,
private FileAccessHelper $fileAccessHelper,
) {
parent::__construct();
}
Expand All @@ -43,14 +47,19 @@ protected function configure() {
*/
protected function execute(InputInterface $input, OutputInterface $output): int {
$appid = $input->getArgument('appid');
$path = (string)$input->getOption('path');
$result = $this->checker->verifyAppSignature($appid, $path, true);
$this->writeArrayInOutputFormat($input, $output, $result);
if (count($result) > 0) {
$output->writeln('<error>' . count($result) . ' errors found</error>', OutputInterface::VERBOSITY_VERBOSE);
return 1;
$path = (string)$input->getOption('path') ?? $this->appLocator->getAppPath($appid);

Check failure on line 50 in core/Command/Integrity/CheckApp.php

View workflow job for this annotation

GitHub Actions / static-code-analysis

RedundantCondition

core/Command/Integrity/CheckApp.php:50:11: RedundantCondition: Type string for $<tmp coalesce var>1404 is never null (see https://psalm.dev/122)

Check failure on line 50 in core/Command/Integrity/CheckApp.php

View workflow job for this annotation

GitHub Actions / static-code-analysis

TypeDoesNotContainNull

core/Command/Integrity/CheckApp.php:50:48: TypeDoesNotContainNull: Cannot resolve types for $<tmp coalesce var>1404 - string does not contain null (see https://psalm.dev/090)
if ($this->fileAccessHelper->file_exists($path . '/appinfo/signature.json')) {
// Only verify if the application explicitly ships a signature.json file
$result = $this->checker->verifyAppSignature($appid, $path, true);
$this->writeArrayInOutputFormat($input, $output, $result);
if (count($result) > 0) {
$output->writeln('<error>' . count($result) . ' errors found</error>', OutputInterface::VERBOSITY_VERBOSE);
return 1;
}
$output->writeln('<info>No errors found</info>', OutputInterface::VERBOSITY_VERBOSE);
} else {
$output->writeln('<info>App signature not found, skipping app integrity check</info>', OutputInterface::VERBOSITY_VERBOSE);
}
$output->writeln('<info>No errors found</info>', OutputInterface::VERBOSITY_VERBOSE);
return 0;
}
}

0 comments on commit 944e25e

Please sign in to comment.