2010-04-14 18:58:52 +04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ownCloud
|
|
|
|
*
|
2012-11-05 01:16:04 +04:00
|
|
|
* @author Frank Karlitschek
|
|
|
|
* @copyright 2012 Frank Karlitschek frank@owncloud.org
|
|
|
|
*
|
2010-04-14 18:58:52 +04:00
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
|
2012-11-05 01:16:04 +04:00
|
|
|
* License as published by the Free Software Foundation; either
|
2010-04-14 18:58:52 +04:00
|
|
|
* version 3 of the License, or any later version.
|
2012-11-05 01:16:04 +04:00
|
|
|
*
|
2010-04-14 18:58:52 +04:00
|
|
|
* This library 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.
|
2012-11-05 01:57:40 +04:00
|
|
|
*
|
2012-11-05 01:16:04 +04:00
|
|
|
* You should have received a copy of the GNU Affero General Public
|
2010-04-14 18:58:52 +04:00
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
2012-11-05 01:16:04 +04:00
|
|
|
*
|
2010-04-14 18:58:52 +04:00
|
|
|
*/
|
|
|
|
|
2014-02-18 17:51:59 +04:00
|
|
|
require_once '../lib/base.php';
|
|
|
|
|
2014-06-30 16:48:03 +04:00
|
|
|
if (\OCP\Util::needUpgrade()) {
|
|
|
|
// since the behavior of apps or remotes are unpredictable during
|
|
|
|
// an upgrade, return a 503 directly
|
|
|
|
OC_Response::setStatus(OC_Response::STATUS_SERVICE_UNAVAILABLE);
|
2014-06-30 17:37:38 +04:00
|
|
|
$response = new OC_OCS_Result(null, OC_Response::STATUS_SERVICE_UNAVAILABLE, 'Service unavailable');
|
|
|
|
OC_API::respond($response, OC_API::requestedFormat());
|
2014-06-30 16:48:03 +04:00
|
|
|
exit;
|
|
|
|
}
|
|
|
|
|
2012-07-30 23:03:41 +04:00
|
|
|
use Symfony\Component\Routing\Exception\ResourceNotFoundException;
|
2012-08-01 00:33:53 +04:00
|
|
|
use Symfony\Component\Routing\Exception\MethodNotAllowedException;
|
2012-07-30 23:03:41 +04:00
|
|
|
|
|
|
|
try {
|
2014-02-18 17:51:59 +04:00
|
|
|
// load all apps to get all api routes properly setup
|
|
|
|
OC_App::loadApps();
|
|
|
|
|
2014-04-15 17:32:08 +04:00
|
|
|
// api calls always will return English
|
|
|
|
\OC_L10N::forceLanguage('en');
|
|
|
|
|
2014-03-10 17:06:47 +04:00
|
|
|
OC::$server->getRouter()->match('/ocs'.OC_Request::getRawPathInfo());
|
2012-07-30 23:03:41 +04:00
|
|
|
} catch (ResourceNotFoundException $e) {
|
2014-03-12 03:35:19 +04:00
|
|
|
OC_API::setContentType();
|
2012-07-30 23:03:41 +04:00
|
|
|
OC_OCS::notFound();
|
2012-08-01 00:33:53 +04:00
|
|
|
} catch (MethodNotAllowedException $e) {
|
2014-03-12 03:35:19 +04:00
|
|
|
OC_API::setContentType();
|
2012-08-01 00:33:53 +04:00
|
|
|
OC_Response::setStatus(405);
|
2012-07-30 23:03:41 +04:00
|
|
|
}
|
2012-09-13 14:23:41 +04:00
|
|
|
|