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
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2013-08-08 02:42:28 +0400
committerThomas Müller <thomas.mueller@tmit.eu>2013-08-27 23:31:59 +0400
commit7d6069f972356238593cc3c95773621edd54556d (patch)
treec69b6540dd2fe4bfb9b05e44b0486a9977ba6594 /lib/connector
parentb2d676dda54ab58ac59a794d8b832df50f0b0d43 (diff)
fixes #4343
Diffstat (limited to 'lib/connector')
-rw-r--r--lib/connector/sabre/quotaplugin.php18
1 files changed, 16 insertions, 2 deletions
diff --git a/lib/connector/sabre/quotaplugin.php b/lib/connector/sabre/quotaplugin.php
index c80a33d04b1..0f428b75b19 100644
--- a/lib/connector/sabre/quotaplugin.php
+++ b/lib/connector/sabre/quotaplugin.php
@@ -43,8 +43,7 @@ class OC_Connector_Sabre_QuotaPlugin extends Sabre_DAV_ServerPlugin {
* @return bool
*/
public function checkQuota($uri, $data = null) {
- $expected = $this->server->httpRequest->getHeader('X-Expected-Entity-Length');
- $length = $expected ? $expected : $this->server->httpRequest->getHeader('Content-Length');
+ $length = $this->getLength();
if ($length) {
if (substr($uri, 0, 1)!=='/') {
$uri='/'.$uri;
@@ -57,4 +56,19 @@ class OC_Connector_Sabre_QuotaPlugin extends Sabre_DAV_ServerPlugin {
}
return true;
}
+
+ private function getLength()
+ {
+ $expected = $this->server->httpRequest->getHeader('X-Expected-Entity-Length');
+ if ($expected)
+ return $expected;
+
+ $length = $this->server->httpRequest->getHeader('Content-Length');
+ $ocLength = $this->server->httpRequest->getHeader('OC-Total-Length');
+
+ if ($length && $ocLength)
+ return max($length, $ocLength);
+
+ return $length;
+ }
}