Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/ocs
diff options
context:
space:
mode:
authorRoeland Jago Douma <rullzer@owncloud.com>2016-05-17 11:13:02 +0300
committerRoeland Jago Douma <roeland@famdouma.nl>2016-07-18 12:09:45 +0300
commit1caceea6c0fbd1dd9ccb24812f76c79e008c1dc1 (patch)
tree8668bbca6d9bb3dac036d062e1b71e5524c015e5 /ocs
parent94cd83ca00c5dd77b168bb21c494ff4fd8434ebc (diff)
Make the OCS endpoint handle the new OCS AppFramework routes
Diffstat (limited to 'ocs')
-rw-r--r--ocs/v1.php23
1 files changed, 23 insertions, 0 deletions
diff --git a/ocs/v1.php b/ocs/v1.php
index bbc2adf39b6..fe7c9a2441d 100644
--- a/ocs/v1.php
+++ b/ocs/v1.php
@@ -42,6 +42,10 @@ if (\OCP\Util::needUpgrade()
use Symfony\Component\Routing\Exception\ResourceNotFoundException;
use Symfony\Component\Routing\Exception\MethodNotAllowedException;
+/*
+ * Try old routes first
+ * We first try the old routes since the appframework triggers more login stuff.
+ */
try {
OC_App::loadApps(['session']);
OC_App::loadApps(['authentication']);
@@ -52,6 +56,22 @@ try {
\OC::$server->getL10NFactory()->setLanguageFromRequest();
OC::$server->getRouter()->match('/ocs'.\OC::$server->getRequest()->getRawPathInfo());
+ return;
+} catch (ResourceNotFoundException $e) {
+ // Fall through the not found
+} catch (MethodNotAllowedException $e) {
+ OC_API::setContentType();
+ OC_Response::setStatus(405);
+} catch (\OC\OCS\Exception $ex) {
+ OC_API::respond($ex->getResult(), OC_API::requestedFormat());
+}
+
+/*
+ * Try the appframework routes
+ */
+try {
+ OC::handleLogin(\OC::$server->getRequest());
+ OC::$server->getRouter()->match('/ocsapp'.\OC::$server->getRequest()->getRawPathInfo());
} catch (ResourceNotFoundException $e) {
OC_API::setContentType();
OC_OCS::notFound();
@@ -60,5 +80,8 @@ try {
OC_Response::setStatus(405);
} catch (\OC\OCS\Exception $ex) {
OC_API::respond($ex->getResult(), OC_API::requestedFormat());
+} catch (\Exception $e) {
+ OC_API::setContentType();
+ OC_OCS::notFound();
}