summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorArthur Schiwon <blizzz@arthur-schiwon.de>2023-12-04 21:13:14 +0100
committerGitHub <noreply@github.com>2023-12-04 21:13:14 +0100
commit870f2274285f81f9549f82bae2b9f9fc1f79cd40 (patch)
tree69314f1ef8a9e0d5f47265eb574d4882c6343aa9 /lib
parentc4ede819f78c7a86060e503776bf12f39d4e0fd0 (diff)
parent5d12f1231975ab7249ad554f0d0a3c8d2eb67b13 (diff)
downloadnextcloud-server-870f2274285f81f9549f82bae2b9f9fc1f79cd40.tar.gz
nextcloud-server-870f2274285f81f9549f82bae2b9f9fc1f79cd40.zip
Merge pull request #41626 from nextcloud/backport/41616/stable27
[stable27] fix: Fix linkToOCSRouteAbsolute() without index.php and with subfolder
Diffstat (limited to 'lib')
-rw-r--r--lib/private/URLGenerator.php15
1 files changed, 12 insertions, 3 deletions
diff --git a/lib/private/URLGenerator.php b/lib/private/URLGenerator.php
index 2410b8a9147..5745cde274e 100644
--- a/lib/private/URLGenerator.php
+++ b/lib/private/URLGenerator.php
@@ -116,16 +116,25 @@ class URLGenerator implements IURLGenerator {
}
public function linkToOCSRouteAbsolute(string $routeName, array $arguments = []): string {
+ // Returns `/subfolder/index.php/ocsapp/…` with `'htaccess.IgnoreFrontController' => false` in config.php
+ // And `/subfolder/ocsapp/…` with `'htaccess.IgnoreFrontController' => true` in config.php
$route = $this->router->generate('ocs.'.$routeName, $arguments, false);
- $indexPhpPos = strpos($route, '/index.php/');
- if ($indexPhpPos !== false) {
- $route = substr($route, $indexPhpPos + 10);
+ // Cut off `/subfolder`
+ if (\OC::$WEBROOT !== '' && str_starts_with($route, \OC::$WEBROOT)) {
+ $route = substr($route, \strlen(\OC::$WEBROOT));
}
+ if (str_starts_with($route, '/index.php/')) {
+ $route = substr($route, 10);
+ }
+
+ // Remove `ocsapp/` bit
$route = substr($route, 7);
+ // Prefix with ocs/v2.php endpoint
$route = '/ocs/v2.php' . $route;
+ // Turn into an absolute URL
return $this->getAbsoluteURL($route);
}