summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorblizzz <blizzz@arthur-schiwon.de>2021-06-02 21:03:29 +0200
committerGitHub <noreply@github.com>2021-06-02 21:03:29 +0200
commitaa40bdea0f22bffc384f25005878f1efd10dbd37 (patch)
tree3a63d5fa5a6ea81f60fba1af96b19ab3a2c03c30 /lib
parent2637f92d96d13037aed82cec53765d3206af8a4e (diff)
parent4b1576e97807a2125ff0adde93a9be81127c9011 (diff)
downloadnextcloud-server-aa40bdea0f22bffc384f25005878f1efd10dbd37.tar.gz
nextcloud-server-aa40bdea0f22bffc384f25005878f1efd10dbd37.zip
Merge pull request #24295 from nextcloud/perf/noid/router
First attempt to check against core routes before loading all app routes
Diffstat (limited to 'lib')
-rw-r--r--lib/private/Route/Router.php26
1 files changed, 14 insertions, 12 deletions
diff --git a/lib/private/Route/Router.php b/lib/private/Route/Router.php
index 2ed8a1991e7..ac9508b3069 100644
--- a/lib/private/Route/Router.php
+++ b/lib/private/Route/Router.php
@@ -234,32 +234,29 @@ class Router implements IRouter {
* @throws \Exception
* @return array
*/
- public function findMatchingRoute(string $url): array {
- if (substr($url, 0, 6) === '/apps/') {
+ public function findMatchingRoute(string $url, bool $loadAll = false): array {
+ if (strpos($url, '/apps/') === 0) {
// empty string / 'apps' / $app / rest of the route
[, , $app,] = explode('/', $url, 4);
$app = \OC_App::cleanAppId($app);
\OC::$REQUESTEDAPP = $app;
$this->loadRoutes($app);
- } elseif (substr($url, 0, 13) === '/ocsapp/apps/') {
+ } elseif (strpos($url, '/ocsapp/apps/') === 0) {
// empty string / 'ocsapp' / 'apps' / $app / rest of the route
[, , , $app,] = explode('/', $url, 5);
$app = \OC_App::cleanAppId($app);
\OC::$REQUESTEDAPP = $app;
$this->loadRoutes($app);
- } elseif (substr($url, 0, 10) === '/settings/') {
+ } elseif (strpos($url, '/settings/') === 0) {
$this->loadRoutes('settings');
- } elseif (substr($url, 0, 6) === '/core/') {
- \OC::$REQUESTEDAPP = $url;
- if (!\OC::$server->getConfig()->getSystemValueBool('maintenance') && !Util::needUpgrade()) {
- \OC_App::loadApps();
- }
- $this->loadRoutes('core');
- } else {
- $this->loadRoutes();
}
+ \OC::$REQUESTEDAPP = $url;
+ if (!\OC::$server->getConfig()->getSystemValueBool('maintenance') && !Util::needUpgrade()) {
+ \OC_App::loadApps();
+ }
+ $this->loadRoutes('core');
$matcher = new UrlMatcher($this->root, $this->context);
try {
@@ -272,6 +269,11 @@ class Router implements IRouter {
try {
$parameters = $matcher->match($url . '/');
} catch (ResourceNotFoundException $newException) {
+ // Attempt to fallback to load all routes if none of the above route patterns matches and the route is not in core
+ if (!$loadAll) {
+ $this->loadRoutes();
+ return $this->findMatchingRoute($url, true);
+ }
// If we still didn't match a route, we throw the original exception
throw $e;
}