2010-04-14 10:58:52 -04:00
|
|
|
<?php
|
|
|
|
|
/**
|
2016-07-21 11:07:57 -04:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
|
*
|
2015-03-26 06:44:34 -04:00
|
|
|
* @author Bart Visscher <bartv@thisnet.nl>
|
2019-12-03 13:57:53 -05:00
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
2016-07-21 11:07:57 -04:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2019-12-03 13:57:53 -05:00
|
|
|
* @author Julius Härtl <jus@bitgrid.net>
|
2015-03-26 06:44:34 -04:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2016-07-21 12:13:36 -04:00
|
|
|
* @author Robin Appelman <robin@icewind.nl>
|
2016-07-21 11:07:57 -04:00
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2015-03-26 06:44:34 -04:00
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
2020-12-16 08:54:15 -05:00
|
|
|
* @author Vincent Petry <vincent@nextcloud.com>
|
2015-03-26 06:44:34 -04:00
|
|
|
*
|
|
|
|
|
* @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,
|
2019-12-03 13:57:53 -05:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2015-03-26 06:44:34 -04:00
|
|
|
*
|
|
|
|
|
*/
|
2017-10-13 15:30:29 -04:00
|
|
|
require_once __DIR__ . '/../lib/versioncheck.php';
|
2016-10-06 06:13:02 -04:00
|
|
|
require_once __DIR__ . '/../lib/base.php';
|
2014-02-18 08:51:59 -05:00
|
|
|
|
2015-04-09 09:57:27 -04:00
|
|
|
if (\OCP\Util::needUpgrade()
|
2019-02-06 11:08:41 -05:00
|
|
|
|| \OC::$server->getConfig()->getSystemValueBool('maintenance')) {
|
2014-06-30 08:48:03 -04:00
|
|
|
// since the behavior of apps or remotes are unpredictable during
|
|
|
|
|
// an upgrade, return a 503 directly
|
2018-06-26 04:32:50 -04:00
|
|
|
http_response_code(503);
|
2018-07-26 16:56:17 -04:00
|
|
|
$response = new \OC\OCS\Result(null, 503, 'Service unavailable');
|
2014-06-30 09:37:38 -04:00
|
|
|
OC_API::respond($response, OC_API::requestedFormat());
|
2014-06-30 08:48:03 -04:00
|
|
|
exit;
|
|
|
|
|
}
|
|
|
|
|
|
2012-07-30 15:03:41 -04:00
|
|
|
use Symfony\Component\Routing\Exception\ResourceNotFoundException;
|
2012-07-31 16:33:53 -04:00
|
|
|
use Symfony\Component\Routing\Exception\MethodNotAllowedException;
|
2012-07-30 15:03:41 -04:00
|
|
|
|
2016-05-17 04:13:02 -04:00
|
|
|
/*
|
2020-10-31 07:12:03 -04:00
|
|
|
* Try the appframework routes
|
2016-05-17 04:13:02 -04:00
|
|
|
*/
|
2012-07-30 15:03:41 -04:00
|
|
|
try {
|
2016-06-16 05:32:28 -04:00
|
|
|
OC_App::loadApps(['session']);
|
|
|
|
|
OC_App::loadApps(['authentication']);
|
2020-10-31 07:12:03 -04:00
|
|
|
|
|
|
|
|
// load all apps to get all api routes properly setup
|
2020-12-10 02:20:20 -05:00
|
|
|
// FIXME: this should ideally appear after handleLogin but will cause
|
|
|
|
|
// side effects in existing apps
|
2020-10-31 07:12:03 -04:00
|
|
|
OC_App::loadApps();
|
|
|
|
|
|
2020-12-10 02:20:20 -05:00
|
|
|
if (!\OC::$server->getUserSession()->isLoggedIn()) {
|
|
|
|
|
OC::handleLogin(\OC::$server->getRequest());
|
|
|
|
|
}
|
|
|
|
|
|
2020-07-06 10:00:58 -04:00
|
|
|
OC::$server->get(\OC\Route\Router::class)->match('/ocsapp'.\OC::$server->getRequest()->getRawPathInfo());
|
2012-07-30 15:03:41 -04:00
|
|
|
} catch (ResourceNotFoundException $e) {
|
2014-03-11 19:35:19 -04:00
|
|
|
OC_API::setContentType();
|
2017-03-03 01:41:21 -05:00
|
|
|
|
|
|
|
|
$format = \OC::$server->getRequest()->getParam('format', 'xml');
|
2020-10-05 09:12:57 -04:00
|
|
|
$txt = 'Invalid query, please check the syntax. API specifications are here:'
|
2018-01-09 12:34:25 -05:00
|
|
|
.' http://www.freedesktop.org/wiki/Specifications/open-collaboration-services.'."\n";
|
2021-03-03 09:10:42 -05:00
|
|
|
OC_API::respond(new \OC\OCS\Result(null, \OCP\AppFramework\OCSController::RESPOND_NOT_FOUND, $txt), $format);
|
2012-07-31 16:33:53 -04:00
|
|
|
} catch (MethodNotAllowedException $e) {
|
2014-03-11 19:35:19 -04:00
|
|
|
OC_API::setContentType();
|
2018-06-26 04:32:50 -04:00
|
|
|
http_response_code(405);
|
2015-08-03 12:06:07 -04:00
|
|
|
} catch (\OC\OCS\Exception $ex) {
|
|
|
|
|
OC_API::respond($ex->getResult(), OC_API::requestedFormat());
|
2016-07-21 16:47:20 -04:00
|
|
|
} catch (\OC\User\LoginException $e) {
|
2021-03-03 09:10:42 -05:00
|
|
|
OC_API::respond(new \OC\OCS\Result(null, \OCP\AppFramework\OCSController::RESPOND_UNAUTHORISED, 'Unauthorised'));
|
2016-05-17 04:13:02 -04:00
|
|
|
} catch (\Exception $e) {
|
2017-02-06 08:46:52 -05:00
|
|
|
\OC::$server->getLogger()->logException($e);
|
2016-05-17 04:13:02 -04:00
|
|
|
OC_API::setContentType();
|
2017-03-03 01:41:21 -05:00
|
|
|
|
|
|
|
|
$format = \OC::$server->getRequest()->getParam('format', 'xml');
|
2021-10-22 05:26:18 -04:00
|
|
|
$txt = 'Internal Server Error'."\n";
|
|
|
|
|
try {
|
|
|
|
|
if (\OC::$server->getSystemConfig()->getValue('debug', false)) {
|
|
|
|
|
$txt .= $e->getMessage();
|
|
|
|
|
}
|
|
|
|
|
} catch (\Throwable $e) {
|
|
|
|
|
// Just to be save
|
|
|
|
|
}
|
|
|
|
|
OC_API::respond(new \OC\OCS\Result(null, \OCP\AppFramework\OCSController::RESPOND_SERVER_ERROR, $txt), $format);
|
2012-07-30 15:03:41 -04:00
|
|
|
}
|