aboutsummaryrefslogtreecommitdiffstats
path: root/apps/dav/lib/Upload
diff options
context:
space:
mode:
authorRoeland Jago Douma <roeland@famdouma.nl>2020-04-20 22:50:52 +0200
committerRoeland Jago Douma <roeland@famdouma.nl>2020-04-21 10:33:28 +0200
commit8730cc6764d6e6c030602088835e473268d3a384 (patch)
tree3442ef6a1e9adc334ab717db6123de64bb355ced /apps/dav/lib/Upload
parentb1a90da34730a6c119df4cb5b992177d8dbedeca (diff)
downloadnextcloud-server-8730cc6764d6e6c030602088835e473268d3a384.tar.gz
nextcloud-server-8730cc6764d6e6c030602088835e473268d3a384.zip
Use a proper upload file so propfinds return 404
Fixes #20235 By using an UploadFile we make sure that we don't need to have another check everywhere for the path. But we just have ot check (which we have to anyway) if it is a proper Connector/File (or directory). Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'apps/dav/lib/Upload')
-rw-r--r--apps/dav/lib/Upload/UploadFile.php75
-rw-r--r--apps/dav/lib/Upload/UploadFolder.php11
2 files changed, 84 insertions, 2 deletions
diff --git a/apps/dav/lib/Upload/UploadFile.php b/apps/dav/lib/Upload/UploadFile.php
new file mode 100644
index 00000000000..600cc24bdb7
--- /dev/null
+++ b/apps/dav/lib/Upload/UploadFile.php
@@ -0,0 +1,75 @@
+<?php
+
+declare(strict_types=1);
+/**
+ * @copyright Copyright (c) 2020, Roeland Jago Douma <roeland@famdouma.nl>
+ *
+ * @author Roeland Jago Douma <roeland@famdouma.nl>
+ *
+ * @license GNU AGPL version 3 or any later version
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ *
+ */
+
+namespace OCA\DAV\Upload;
+
+use OCA\DAV\Connector\Sabre\File;
+use Sabre\DAV\IFile;
+
+class UploadFile implements IFile {
+
+ /** @var File */
+ private $file;
+
+ public function __construct(File $file) {
+ $this->file = $file;
+ }
+
+ public function put($data) {
+ return $this->file->put($data);
+ }
+
+ public function get() {
+ return $this->file->get();
+ }
+
+ public function getContentType() {
+ return $this->file->getContentType();
+ }
+
+ public function getETag() {
+ return $this->file->getETag();
+ }
+
+ public function getSize() {
+ return $this->file->getSize();
+ }
+
+ public function delete() {
+ $this->file->delete();
+ }
+
+ public function getName() {
+ return $this->file->getName();
+ }
+
+ public function setName($name) {
+ $this->file->setName($name);
+ }
+
+ public function getLastModified() {
+ return $this->file->getLastModified();
+ }
+}
diff --git a/apps/dav/lib/Upload/UploadFolder.php b/apps/dav/lib/Upload/UploadFolder.php
index d74154c6ac9..b3df7383ac1 100644
--- a/apps/dav/lib/Upload/UploadFolder.php
+++ b/apps/dav/lib/Upload/UploadFolder.php
@@ -53,12 +53,19 @@ class UploadFolder implements ICollection {
if ($name === '.file') {
return new FutureFile($this->node, '.file');
}
- return $this->node->getChild($name);
+ return new UploadFile($this->node->getChild($name));
}
public function getChildren() {
- $children = $this->node->getChildren();
+ $tmpChildren = $this->node->getChildren();
+
+ $children = [];
$children[] = new FutureFile($this->node, '.file');
+
+ foreach ($tmpChildren as $child) {
+ $children[] = new UploadFile($child);
+ }
+
return $children;
}