2015-04-08 01:19:23 +03:00
|
|
|
<?php
|
2015-06-25 12:43:55 +03:00
|
|
|
/**
|
2016-07-21 18:07:57 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2015-06-25 12:43:55 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
|
|
|
*
|
|
|
|
* @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 <http://www.gnu.org/licenses/>
|
|
|
|
*
|
|
|
|
*/
|
2015-04-08 01:19:23 +03:00
|
|
|
namespace OC\Core\Command;
|
|
|
|
|
2017-03-18 01:37:48 +03:00
|
|
|
use OC\SystemConfig;
|
2015-04-08 01:19:23 +03:00
|
|
|
use Symfony\Component\Console\Input\InputInterface;
|
|
|
|
use Symfony\Component\Console\Output\OutputInterface;
|
|
|
|
|
2015-04-09 12:45:07 +03:00
|
|
|
class Check extends Base {
|
2015-04-08 01:19:23 +03:00
|
|
|
/**
|
2017-03-18 01:37:48 +03:00
|
|
|
* @var SystemConfig
|
2015-04-08 01:19:23 +03:00
|
|
|
*/
|
|
|
|
private $config;
|
|
|
|
|
2017-03-18 01:37:48 +03:00
|
|
|
public function __construct(SystemConfig $config) {
|
2015-04-08 01:19:23 +03:00
|
|
|
parent::__construct();
|
|
|
|
$this->config = $config;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function configure() {
|
2015-04-09 12:45:07 +03:00
|
|
|
parent::configure();
|
|
|
|
|
2015-04-08 01:19:23 +03:00
|
|
|
$this
|
|
|
|
->setName('check')
|
|
|
|
->setDescription('check dependencies of the server environment')
|
|
|
|
;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function execute(InputInterface $input, OutputInterface $output) {
|
|
|
|
$errors = \OC_Util::checkServer($this->config);
|
|
|
|
if (!empty($errors)) {
|
2015-04-09 12:45:07 +03:00
|
|
|
$errors = array_map(function($item) {
|
|
|
|
return (string) $item['error'];
|
2015-04-08 01:19:23 +03:00
|
|
|
}, $errors);
|
2015-04-09 12:45:07 +03:00
|
|
|
|
|
|
|
$this->writeArrayInOutputFormat($input, $output, $errors);
|
2015-04-08 01:19:23 +03:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|