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.

SetupCheckManager.php 1.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <?php
  2. declare(strict_types=1);
  3. /**
  4. * @copyright Copyright (c) 2022 Carl Schwan <carl@carlschwan.eu>
  5. *
  6. * @author Carl Schwan <carl@carlschwan.eu>
  7. * @author Côme Chilliet <come.chilliet@nextcloud.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\SetupCheck;
  25. use OC\AppFramework\Bootstrap\Coordinator;
  26. use OCP\Server;
  27. use OCP\SetupCheck\ISetupCheck;
  28. use OCP\SetupCheck\ISetupCheckManager;
  29. use Psr\Log\LoggerInterface;
  30. class SetupCheckManager implements ISetupCheckManager {
  31. public function __construct(
  32. private Coordinator $coordinator,
  33. private LoggerInterface $logger,
  34. ) {
  35. }
  36. public function runAll(): array {
  37. $results = [];
  38. $setupChecks = $this->coordinator->getRegistrationContext()->getSetupChecks();
  39. foreach ($setupChecks as $setupCheck) {
  40. /** @var ISetupCheck $setupCheckObject */
  41. $setupCheckObject = Server::get($setupCheck->getService());
  42. $this->logger->debug('Running check '.get_class($setupCheckObject));
  43. $setupResult = $setupCheckObject->run();
  44. $setupResult->setName($setupCheckObject->getName());
  45. $category = $setupCheckObject->getCategory();
  46. $results[$category] ??= [];
  47. $results[$category][$setupCheckObject::class] = $setupResult;
  48. }
  49. return $results;
  50. }
  51. }