summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorBart Visscher <bartv@thisnet.nl>2013-02-27 21:38:58 +0100
committerBart Visscher <bartv@thisnet.nl>2013-02-27 21:38:58 +0100
commit56f3917f362432e1674ba8b319fe8f4726f84dc2 (patch)
treeb7160f670eed6283a50da254b2d833ac7ace0d8d /lib
parent7eec31567fd699f3fac10c5d5bb5311874b235f1 (diff)
downloadnextcloud-server-56f3917f362432e1674ba8b319fe8f4726f84dc2.tar.gz
nextcloud-server-56f3917f362432e1674ba8b319fe8f4726f84dc2.zip
Use the plain urlencoded path info for the routing matching
Diffstat (limited to 'lib')
-rw-r--r--lib/base.php2
-rwxr-xr-xlib/request.php15
2 files changed, 15 insertions, 2 deletions
diff --git a/lib/base.php b/lib/base.php
index f9bb1bb11bf..6c012208c71 100644
--- a/lib/base.php
+++ b/lib/base.php
@@ -596,7 +596,7 @@ class OC {
if (!self::$CLI) {
try {
OC_App::loadApps();
- OC::getRouter()->match(OC_Request::getPathInfo());
+ OC::getRouter()->match(OC_Request::getRawPathInfo());
return;
} catch (Symfony\Component\Routing\Exception\ResourceNotFoundException $e) {
//header('HTTP/1.0 404 Not Found');
diff --git a/lib/request.php b/lib/request.php
index 30a25df23ab..9f74cf9beb5 100755
--- a/lib/request.php
+++ b/lib/request.php
@@ -107,7 +107,7 @@ class OC_Request {
if (array_key_exists('PATH_INFO', $_SERVER)) {
$path_info = $_SERVER['PATH_INFO'];
}else{
- $path_info = substr($_SERVER['REQUEST_URI'], strlen($_SERVER['SCRIPT_NAME']));
+ $path_info = self::getRawPathInfo();
// following is taken from Sabre_DAV_URLUtil::decodePathSegment
$path_info = rawurldecode($path_info);
$encoding = mb_detect_encoding($path_info, array('UTF-8', 'ISO-8859-1'));
@@ -124,6 +124,19 @@ class OC_Request {
}
/**
+ * @brief get Path info from request, not urldecoded
+ * @returns string Path info or false when not found
+ */
+ public static function getRawPathInfo() {
+ $path_info = substr($_SERVER['REQUEST_URI'], strlen($_SERVER['SCRIPT_NAME']));
+ // Remove the query string from REQUEST_URI
+ if ($pos = strpos($path_info, '?')) {
+ $path_info = substr($path_info, 0, $pos);
+ }
+ return $path_info;
+ }
+
+ /**
* @brief Check if this is a no-cache request
* @returns true for no-cache
*/