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.

Check.php 1.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <?php
  2. /**
  3. * @copyright Copyright (c) 2016, ownCloud, Inc.
  4. *
  5. * @author Christoph Wurst <christoph@winzerhof-wurst.at>
  6. * @author Joas Schilling <coding@schilljs.com>
  7. * @author Morris Jobke <hey@morrisjobke.de>
  8. * @author Thomas Müller <thomas.mueller@tmit.eu>
  9. *
  10. * @license AGPL-3.0
  11. *
  12. * This code is free software: you can redistribute it and/or modify
  13. * it under the terms of the GNU Affero General Public License, version 3,
  14. * as published by the Free Software Foundation.
  15. *
  16. * This program is distributed in the hope that it will be useful,
  17. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  18. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  19. * GNU Affero General Public License for more details.
  20. *
  21. * You should have received a copy of the GNU Affero General Public License, version 3,
  22. * along with this program. If not, see <http://www.gnu.org/licenses/>
  23. *
  24. */
  25. namespace OC\Core\Command;
  26. use OC\SystemConfig;
  27. use Symfony\Component\Console\Input\InputInterface;
  28. use Symfony\Component\Console\Output\OutputInterface;
  29. class Check extends Base {
  30. /**
  31. * @var SystemConfig
  32. */
  33. private $config;
  34. public function __construct(SystemConfig $config) {
  35. parent::__construct();
  36. $this->config = $config;
  37. }
  38. protected function configure() {
  39. parent::configure();
  40. $this
  41. ->setName('check')
  42. ->setDescription('check dependencies of the server environment')
  43. ;
  44. }
  45. protected function execute(InputInterface $input, OutputInterface $output): int {
  46. $errors = \OC_Util::checkServer($this->config);
  47. if (!empty($errors)) {
  48. $errors = array_map(function ($item) {
  49. return (string) $item['error'];
  50. }, $errors);
  51. $this->writeArrayInOutputFormat($input, $output, $errors);
  52. return 1;
  53. }
  54. return 0;
  55. }
  56. }