2015-10-28 16:52:45 +03:00
|
|
|
<?php
|
2016-05-26 20:56:05 +03:00
|
|
|
/**
|
2016-07-21 17:49:16 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2020-04-29 12:57:22 +03:00
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
2016-07-21 17:49:16 +03:00
|
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
2019-12-03 21:57:53 +03:00
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
|
|
|
*
|
|
|
|
* @license AGPL-3.0
|
|
|
|
*
|
|
|
|
* This code is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License, version 3,
|
|
|
|
* as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* 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, version 3,
|
2019-12-03 21:57:53 +03:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2016-05-26 20:56:05 +03:00
|
|
|
*
|
|
|
|
*/
|
2019-11-22 22:52:10 +03:00
|
|
|
|
2015-10-28 16:52:45 +03:00
|
|
|
namespace OCA\DAV\Upload;
|
|
|
|
|
|
|
|
use OCA\DAV\Connector\Sabre\Directory;
|
|
|
|
use Sabre\DAV\Exception\Forbidden;
|
|
|
|
use Sabre\DAV\ICollection;
|
|
|
|
|
|
|
|
class UploadFolder implements ICollection {
|
|
|
|
|
2018-11-02 23:19:27 +03:00
|
|
|
/** @var Directory */
|
2015-10-28 16:52:45 +03:00
|
|
|
private $node;
|
2018-11-02 23:19:27 +03:00
|
|
|
/** @var CleanupService */
|
|
|
|
private $cleanupService;
|
2015-10-28 16:52:45 +03:00
|
|
|
|
2020-04-10 17:51:06 +03:00
|
|
|
public function __construct(Directory $node, CleanupService $cleanupService) {
|
2015-10-28 16:52:45 +03:00
|
|
|
$this->node = $node;
|
2018-11-02 23:19:27 +03:00
|
|
|
$this->cleanupService = $cleanupService;
|
2015-10-28 16:52:45 +03:00
|
|
|
}
|
|
|
|
|
2020-04-10 17:51:06 +03:00
|
|
|
public function createFile($name, $data = null) {
|
2015-10-28 16:52:45 +03:00
|
|
|
// TODO: verify name - should be a simple number
|
|
|
|
$this->node->createFile($name, $data);
|
|
|
|
}
|
|
|
|
|
2020-04-10 17:51:06 +03:00
|
|
|
public function createDirectory($name) {
|
2015-10-28 16:52:45 +03:00
|
|
|
throw new Forbidden('Permission denied to create file (filename ' . $name . ')');
|
|
|
|
}
|
|
|
|
|
2020-04-10 17:51:06 +03:00
|
|
|
public function getChild($name) {
|
2015-10-28 16:52:45 +03:00
|
|
|
if ($name === '.file') {
|
|
|
|
return new FutureFile($this->node, '.file');
|
|
|
|
}
|
2020-04-20 23:50:52 +03:00
|
|
|
return new UploadFile($this->node->getChild($name));
|
2015-10-28 16:52:45 +03:00
|
|
|
}
|
|
|
|
|
2020-04-10 17:51:06 +03:00
|
|
|
public function getChildren() {
|
2020-04-20 23:50:52 +03:00
|
|
|
$tmpChildren = $this->node->getChildren();
|
|
|
|
|
|
|
|
$children = [];
|
2015-10-28 16:52:45 +03:00
|
|
|
$children[] = new FutureFile($this->node, '.file');
|
2020-04-20 23:50:52 +03:00
|
|
|
|
|
|
|
foreach ($tmpChildren as $child) {
|
|
|
|
$children[] = new UploadFile($child);
|
|
|
|
}
|
|
|
|
|
2015-10-28 16:52:45 +03:00
|
|
|
return $children;
|
|
|
|
}
|
|
|
|
|
2020-04-10 17:51:06 +03:00
|
|
|
public function childExists($name) {
|
2015-10-28 16:52:45 +03:00
|
|
|
if ($name === '.file') {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return $this->node->childExists($name);
|
|
|
|
}
|
|
|
|
|
2020-04-10 17:51:06 +03:00
|
|
|
public function delete() {
|
2015-10-28 16:52:45 +03:00
|
|
|
$this->node->delete();
|
2018-11-02 23:19:27 +03:00
|
|
|
|
|
|
|
// Background cleanup job is not needed anymore
|
|
|
|
$this->cleanupService->removeJob($this->getName());
|
2015-10-28 16:52:45 +03:00
|
|
|
}
|
|
|
|
|
2020-04-10 17:51:06 +03:00
|
|
|
public function getName() {
|
2015-10-28 16:52:45 +03:00
|
|
|
return $this->node->getName();
|
|
|
|
}
|
|
|
|
|
2020-04-10 17:51:06 +03:00
|
|
|
public function setName($name) {
|
2015-10-28 16:52:45 +03:00
|
|
|
throw new Forbidden('Permission denied to rename this folder');
|
|
|
|
}
|
|
|
|
|
2020-04-10 17:51:06 +03:00
|
|
|
public function getLastModified() {
|
2015-10-28 16:52:45 +03:00
|
|
|
return $this->node->getLastModified();
|
|
|
|
}
|
|
|
|
}
|