diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2020-04-24 16:31:38 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-24 16:31:38 +0200 |
commit | 768b0120008b1b0de78918079888c920c446de59 (patch) | |
tree | 2248020234ce7cb3318214803ce5f8f9db4f8308 /apps/dav/lib | |
parent | ceafce1fff307337a6b226fe611857587e38fa4b (diff) | |
parent | 0e925285b7d261983e79be51c7019dbb501252f5 (diff) | |
download | nextcloud-server-768b0120008b1b0de78918079888c920c446de59.tar.gz nextcloud-server-768b0120008b1b0de78918079888c920c446de59.zip |
Merge pull request #20570 from nextcloud/fix/20235/use_uploadfile
Use a proper upload file so propfinds return 404
Diffstat (limited to 'apps/dav/lib')
-rw-r--r-- | apps/dav/lib/Upload/UploadFile.php | 75 | ||||
-rw-r--r-- | apps/dav/lib/Upload/UploadFolder.php | 11 |
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; } |