2010-04-14 10:58:52 -04:00
|
|
|
<?php
|
2024-09-03 08:56:26 -04:00
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
2010-04-14 10:58:52 -04:00
|
|
|
/**
|
2024-05-10 09:09:14 -04:00
|
|
|
* SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
|
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
|
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
2015-03-26 06:44:34 -04:00
|
|
|
*/
|
2024-09-03 08:56:26 -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
|
|
|
|
2024-09-02 11:44:46 -04:00
|
|
|
use OC\OCS\ApiHelper;
|
2025-07-10 04:17:42 -04:00
|
|
|
use OC\Route\Router;
|
|
|
|
|
use OC\SystemConfig;
|
|
|
|
|
use OC\User\LoginException;
|
|
|
|
|
use OCP\App\IAppManager;
|
2024-09-03 08:56:26 -04:00
|
|
|
use OCP\AppFramework\Http;
|
|
|
|
|
use OCP\AppFramework\OCSController;
|
2025-07-10 04:17:42 -04:00
|
|
|
use OCP\IConfig;
|
|
|
|
|
use OCP\IRequest;
|
|
|
|
|
use OCP\IUserSession;
|
2024-09-03 08:56:26 -04:00
|
|
|
use OCP\Security\Bruteforce\MaxDelayReached;
|
2025-07-10 04:17:42 -04:00
|
|
|
use OCP\Server;
|
2024-09-03 08:56:26 -04:00
|
|
|
use OCP\Util;
|
|
|
|
|
use Psr\Log\LoggerInterface;
|
|
|
|
|
use Symfony\Component\Routing\Exception\MethodNotAllowedException;
|
|
|
|
|
use Symfony\Component\Routing\Exception\ResourceNotFoundException;
|
2024-09-02 11:06:20 -04:00
|
|
|
|
2024-09-03 08:56:26 -04:00
|
|
|
if (Util::needUpgrade()
|
2025-05-14 18:44:38 -04:00
|
|
|
|| Server::get(IConfig::class)->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
|
2024-09-05 10:10:05 -04:00
|
|
|
ApiHelper::respond(503, 'Service unavailable', ['X-Nextcloud-Maintenance-Mode' => '1'], 503);
|
2014-06-30 08:48:03 -04:00
|
|
|
exit;
|
|
|
|
|
}
|
|
|
|
|
|
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 {
|
2025-07-10 04:17:42 -04:00
|
|
|
$appManager = Server::get(IAppManager::class);
|
|
|
|
|
$appManager->loadApps(['session']);
|
|
|
|
|
$appManager->loadApps(['authentication']);
|
|
|
|
|
$appManager->loadApps(['extended_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
|
2025-07-10 04:17:42 -04:00
|
|
|
$appManager->loadApps();
|
2020-10-31 07:12:03 -04:00
|
|
|
|
2025-07-01 04:42:29 -04:00
|
|
|
$request = Server::get(IRequest::class);
|
|
|
|
|
$request->throwDecodingExceptionIfAny();
|
|
|
|
|
|
2025-05-14 18:44:38 -04:00
|
|
|
if (!Server::get(IUserSession::class)->isLoggedIn()) {
|
2025-07-01 04:42:29 -04:00
|
|
|
OC::handleLogin($request);
|
2020-12-10 02:20:20 -05:00
|
|
|
}
|
|
|
|
|
|
2025-07-01 04:42:29 -04:00
|
|
|
Server::get(Router::class)->match('/ocsapp' . $request->getRawPathInfo());
|
2023-11-30 06:52:35 -05:00
|
|
|
} catch (MaxDelayReached $ex) {
|
2024-09-03 08:56:26 -04:00
|
|
|
ApiHelper::respond(Http::STATUS_TOO_MANY_REQUESTS, $ex->getMessage());
|
2012-07-30 15:03:41 -04:00
|
|
|
} catch (ResourceNotFoundException $e) {
|
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";
|
2024-09-03 08:56:26 -04:00
|
|
|
ApiHelper::respond(OCSController::RESPOND_NOT_FOUND, $txt);
|
2012-07-31 16:33:53 -04:00
|
|
|
} catch (MethodNotAllowedException $e) {
|
2024-09-02 11:06:20 -04:00
|
|
|
ApiHelper::setContentType();
|
2018-06-26 04:32:50 -04:00
|
|
|
http_response_code(405);
|
2025-05-14 18:44:38 -04:00
|
|
|
} catch (LoginException $e) {
|
2024-09-03 08:56:26 -04:00
|
|
|
ApiHelper::respond(OCSController::RESPOND_UNAUTHORISED, 'Unauthorised');
|
2016-05-17 04:13:02 -04:00
|
|
|
} catch (\Exception $e) {
|
2025-05-14 18:44:38 -04:00
|
|
|
Server::get(LoggerInterface::class)->error($e->getMessage(), ['exception' => $e]);
|
2017-03-03 01:41:21 -05:00
|
|
|
|
2021-10-22 05:26:18 -04:00
|
|
|
$txt = 'Internal Server Error' . "\n";
|
|
|
|
|
try {
|
2025-05-14 18:44:38 -04:00
|
|
|
if (Server::get(SystemConfig::class)->getValue('debug', false)) {
|
2021-10-22 05:26:18 -04:00
|
|
|
$txt .= $e->getMessage();
|
|
|
|
|
}
|
|
|
|
|
} catch (\Throwable $e) {
|
|
|
|
|
// Just to be save
|
|
|
|
|
}
|
2024-09-03 08:56:26 -04:00
|
|
|
ApiHelper::respond(OCSController::RESPOND_SERVER_ERROR, $txt);
|
2012-07-30 15:03:41 -04:00
|
|
|
}
|