aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorVincent Petry <pvince81@owncloud.com>2015-03-26 15:04:41 +0100
committerVincent Petry <pvince81@owncloud.com>2015-03-26 15:04:41 +0100
commita84ade5f325b190ce14f5817590f3180ecabc33e (patch)
tree180c19453b685c2c7e591c8e6b856b49f6e2eee2 /lib
parentdaceb1a9ac3005d0bf1f47ceaf823636b72d0dec (diff)
downloadnextcloud-server-a84ade5f325b190ce14f5817590f3180ecabc33e.tar.gz
nextcloud-server-a84ade5f325b190ce14f5817590f3180ecabc33e.zip
Revert "adding OC-ETag header"
This reverts commit 30ee8b6f998b4b2e27da92b3adcdbc4683d3bcde.
Diffstat (limited to 'lib')
-rw-r--r--lib/private/connector/sabre/file.php5
-rw-r--r--lib/private/connector/sabre/filesplugin.php17
2 files changed, 2 insertions, 20 deletions
diff --git a/lib/private/connector/sabre/file.php b/lib/private/connector/sabre/file.php
index bb68f446725..8f0642d794a 100644
--- a/lib/private/connector/sabre/file.php
+++ b/lib/private/connector/sabre/file.php
@@ -247,7 +247,8 @@ class File extends \OC\Connector\Sabre\Node implements \Sabre\DAV\IFile {
* @throws \Sabre\DAV\Exception\NotImplemented
* @throws \Sabre\DAV\Exception\ServiceUnavailable
*/
- private function createFileChunked($data) {
+ private function createFileChunked($data)
+ {
list($path, $name) = \Sabre\HTTP\URLUtil::splitPath($this->path);
$info = \OC_FileChunking::decodeName($name);
@@ -304,8 +305,6 @@ class File extends \OC\Connector\Sabre\Node implements \Sabre\DAV\IFile {
}
}
- // mark chunking complete
- $_SERVER['X-CHUNKING_COMPLETE'] = true;
$info = $this->fileView->getFileInfo($targetPath);
return $info->getEtag();
} catch (\OCP\Files\StorageNotAvailableException $e) {
diff --git a/lib/private/connector/sabre/filesplugin.php b/lib/private/connector/sabre/filesplugin.php
index e03cac9c537..9720519f4c7 100644
--- a/lib/private/connector/sabre/filesplugin.php
+++ b/lib/private/connector/sabre/filesplugin.php
@@ -174,24 +174,7 @@ class FilesPlugin extends \Sabre\DAV\ServerPlugin {
if (!is_null($fileId)) {
$this->server->httpResponse->setHeader('OC-FileId', $fileId);
}
- $eTag = $this->getETag($node);
- if (!is_null($eTag)) {
- $this->server->httpResponse->setHeader('OC-ETag', $eTag);
- }
- }
- }
-
- /**
- * @param \OC\Connector\Sabre\Node $node
- */
- private function getETag($node) {
- if (isset($_SERVER['HTTP_OC_CHUNKED'])) {
- if (isset($_SERVER['X-CHUNKING_COMPLETE'])) {
- return $node->getETag();
- }
- return null;
}
- return $node->getETag();
}
}