2011-09-28 15:52:26 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 18:07:57 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Andreas Fischer <bantu@owncloud.com>
|
|
|
|
* @author Christopher Schäpers <kondou@ts.unde.re>
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Frank Karlitschek <frank@karlitschek.de>
|
2016-07-21 18:07:57 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Jörn Friedrich Dreyer <jfd@butonic.de>
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Kristof Provost <github@sigsegv.be>
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author martin.mattel@diemattels.at <martin.mattel@diemattels.at>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Masaki Kawabata Neto <masaki.kawabata@gmail.com>
|
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
|
|
|
*
|
|
|
|
* @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-02-26 13:37:37 +03:00
|
|
|
|
2017-10-13 22:30:29 +03:00
|
|
|
require_once __DIR__ . '/lib/versioncheck.php';
|
|
|
|
|
2013-06-10 15:45:19 +04:00
|
|
|
try {
|
2011-09-28 15:52:26 +04:00
|
|
|
|
2016-10-06 13:13:02 +03:00
|
|
|
require_once __DIR__ . '/lib/base.php';
|
2011-09-28 15:52:26 +04:00
|
|
|
|
2014-12-04 18:48:07 +03:00
|
|
|
$systemConfig = \OC::$server->getSystemConfig();
|
|
|
|
|
2016-05-23 11:09:36 +03:00
|
|
|
$installed = (bool) $systemConfig->getValue('installed', false);
|
|
|
|
$maintenance = (bool) $systemConfig->getValue('maintenance', false);
|
2016-08-17 09:41:49 +03:00
|
|
|
# see core/lib/private/legacy/defaults.php and core/themes/example/defaults.php
|
|
|
|
# for description and defaults
|
2016-08-17 12:59:53 +03:00
|
|
|
$defaults = new \OCP\Defaults();
|
2019-06-11 17:08:26 +03:00
|
|
|
$values = [
|
2013-06-10 15:45:19 +04:00
|
|
|
'installed'=>$installed,
|
2013-07-04 16:28:12 +04:00
|
|
|
'maintenance' => $maintenance,
|
2016-09-29 18:14:00 +03:00
|
|
|
'needsDbUpgrade' => \OCP\Util::needUpgrade(),
|
2015-12-18 17:26:54 +03:00
|
|
|
'version'=>implode('.', \OCP\Util::getVersion()),
|
2013-06-10 15:45:19 +04:00
|
|
|
'versionstring'=>OC_Util::getVersionString(),
|
2016-09-06 15:11:30 +03:00
|
|
|
'edition'=> '',
|
2019-06-11 17:08:26 +03:00
|
|
|
'productname'=>$defaults->getName(),
|
|
|
|
'extendedSupport' => \OCP\Util::hasExtendedSupport()
|
|
|
|
];
|
2013-08-29 17:03:58 +04:00
|
|
|
if (OC::$CLI) {
|
2013-08-29 22:03:16 +04:00
|
|
|
print_r($values);
|
2013-08-29 17:03:58 +04:00
|
|
|
} else {
|
2015-08-22 15:44:02 +03:00
|
|
|
header('Access-Control-Allow-Origin: *');
|
2015-04-08 19:02:00 +03:00
|
|
|
header('Content-Type: application/json');
|
2014-04-26 16:50:34 +04:00
|
|
|
echo json_encode($values);
|
2013-08-29 17:03:58 +04:00
|
|
|
}
|
2013-06-10 15:45:19 +04:00
|
|
|
|
|
|
|
} catch (Exception $ex) {
|
2018-06-26 11:32:50 +03:00
|
|
|
http_response_code(500);
|
2017-07-19 16:37:03 +03:00
|
|
|
\OC::$server->getLogger()->logException($ex, ['app' => 'remote']);
|
2013-08-18 13:02:08 +04:00
|
|
|
}
|