aboutsummaryrefslogtreecommitdiffstats
path: root/apps/dav/lib/Connector/Sabre
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2017-07-31 22:46:19 +0200
committerDaniel Calviño Sánchez <danxuliu@gmail.com>2017-12-15 14:46:36 +0100
commit8c5d656f3b605a8cedbf412b7498b936e12866e6 (patch)
treef6d87ef4c5d7240ec03107856428e5c452be1a82 /apps/dav/lib/Connector/Sabre
parentb19b1379699cf7790a13575f27a05b2f6db14f6a (diff)
downloadnextcloud-server-8c5d656f3b605a8cedbf412b7498b936e12866e6.tar.gz
nextcloud-server-8c5d656f3b605a8cedbf412b7498b936e12866e6.zip
Handle OC-Total-Length in new chunking
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
Diffstat (limited to 'apps/dav/lib/Connector/Sabre')
-rw-r--r--apps/dav/lib/Connector/Sabre/File.php12
-rw-r--r--apps/dav/lib/Connector/Sabre/FilesPlugin.php54
-rw-r--r--apps/dav/lib/Connector/Sabre/Node.php14
3 files changed, 18 insertions, 62 deletions
diff --git a/apps/dav/lib/Connector/Sabre/File.php b/apps/dav/lib/Connector/Sabre/File.php
index 32cc8b7adeb..597e6ebef90 100644
--- a/apps/dav/lib/Connector/Sabre/File.php
+++ b/apps/dav/lib/Connector/Sabre/File.php
@@ -589,18 +589,6 @@ class File extends Node implements IFile {
throw new \Sabre\DAV\Exception($e->getMessage(), 0, $e);
}
- private function sanitizeMtime($mtimeFromRequest) {
- // In PHP 5.X "is_numeric" returns true for strings in hexadecimal
- // notation. This is no longer the case in PHP 7.X, so this check
- // ensures that strings with hexadecimal notations fail too in PHP 5.X.
- $isHexadecimal = is_string($mtimeFromRequest) && preg_match('/^\s*0[xX]/', $mtimeFromRequest);
- if ($isHexadecimal || !is_numeric($mtimeFromRequest)) {
- throw new \InvalidArgumentException('X-OC-MTime header must be an integer (unix timestamp).');
- }
-
- return intval($mtimeFromRequest);
- }
-
/**
* Get the checksum for this file
*
diff --git a/apps/dav/lib/Connector/Sabre/FilesPlugin.php b/apps/dav/lib/Connector/Sabre/FilesPlugin.php
index daf9d2d2112..a3a0893259b 100644
--- a/apps/dav/lib/Connector/Sabre/FilesPlugin.php
+++ b/apps/dav/lib/Connector/Sabre/FilesPlugin.php
@@ -32,7 +32,7 @@
namespace OCA\DAV\Connector\Sabre;
-use OC\Files\View;
+use OC\AppFramework\Http\Request;
use OCP\Files\ForbiddenException;
use OCP\IPreview;
use Sabre\DAV\Exception\Forbidden;
@@ -47,7 +47,6 @@ use \Sabre\HTTP\ResponseInterface;
use OCP\Files\StorageNotAvailableException;
use OCP\IConfig;
use OCP\IRequest;
-use OCA\DAV\Upload\FutureFile;
class FilesPlugin extends ServerPlugin {
@@ -91,11 +90,6 @@ class FilesPlugin extends ServerPlugin {
private $isPublic;
/**
- * @var View
- */
- private $fileView;
-
- /**
* @var bool
*/
private $downloadAttachment;
@@ -183,7 +177,6 @@ class FilesPlugin extends ServerPlugin {
}
});
$this->server->on('beforeMove', [$this, 'checkMove']);
- $this->server->on('beforeMove', [$this, 'beforeMoveFutureFile']);
}
/**
@@ -258,9 +251,9 @@ class FilesPlugin extends ServerPlugin {
$filename = $node->getName();
if ($this->request->isUserAgent(
[
- \OC\AppFramework\Http\Request::USER_AGENT_IE,
- \OC\AppFramework\Http\Request::USER_AGENT_ANDROID_MOBILE_CHROME,
- \OC\AppFramework\Http\Request::USER_AGENT_FREEBOX,
+ Request::USER_AGENT_IE,
+ Request::USER_AGENT_ANDROID_MOBILE_CHROME,
+ Request::USER_AGENT_FREEBOX,
])) {
$response->addHeader('Content-Disposition', 'attachment; filename="' . rawurlencode($filename) . '"');
} else {
@@ -461,43 +454,4 @@ class FilesPlugin extends ServerPlugin {
}
}
}
-
- /**
- * Move handler for future file.
- *
- * This overrides the default move behavior to prevent Sabre
- * to delete the target file before moving. Because deleting would
- * lose the file id and metadata.
- *
- * @param string $path source path
- * @param string $destination destination path
- * @return bool|void false to stop handling, void to skip this handler
- */
- public function beforeMoveFutureFile($path, $destination) {
- $sourceNode = $this->tree->getNodeForPath($path);
- if (!$sourceNode instanceof FutureFile) {
- // skip handling as the source is not a chunked FutureFile
- return;
- }
-
- if (!$this->tree->nodeExists($destination)) {
- // skip and let the default handler do its work
- return;
- }
-
- // do a move manually, skipping Sabre's default "delete" for existing nodes
- $this->tree->move($path, $destination);
-
- // trigger all default events (copied from CorePlugin::move)
- $this->server->emit('afterMove', [$path, $destination]);
- $this->server->emit('afterUnbind', [$path]);
- $this->server->emit('afterBind', [$destination]);
-
- $response = $this->server->httpResponse;
- $response->setHeader('Content-Length', '0');
- $response->setStatus(204);
-
- return false;
- }
-
}
diff --git a/apps/dav/lib/Connector/Sabre/Node.php b/apps/dav/lib/Connector/Sabre/Node.php
index 979336d86fe..b8a8209129c 100644
--- a/apps/dav/lib/Connector/Sabre/Node.php
+++ b/apps/dav/lib/Connector/Sabre/Node.php
@@ -165,6 +165,7 @@ abstract class Node implements \Sabre\DAV\INode {
* Even if the modification time is set to a custom value the access time is set to now.
*/
public function touch($mtime) {
+ $mtime = $this->sanitizeMtime($mtime);
$this->fileView->touch($this->path, $mtime);
$this->refreshInfo();
}
@@ -358,4 +359,17 @@ abstract class Node implements \Sabre\DAV\INode {
public function getFileInfo() {
return $this->info;
}
+
+ protected function sanitizeMtime($mtimeFromRequest) {
+ // In PHP 5.X "is_numeric" returns true for strings in hexadecimal
+ // notation. This is no longer the case in PHP 7.X, so this check
+ // ensures that strings with hexadecimal notations fail too in PHP 5.X.
+ $isHexadecimal = is_string($mtimeFromRequest) && preg_match('/^\s*0[xX]/', $mtimeFromRequest);
+ if ($isHexadecimal || !is_numeric($mtimeFromRequest)) {
+ throw new \InvalidArgumentException('X-OC-MTime header must be an integer (unix timestamp).');
+ }
+
+ return intval($mtimeFromRequest);
+ }
+
}