Merge pull request #24591 from nextcloud/backport/24358/stable19
[stable19] use storage copy implementation when doing dav copy
This commit is contained in:
commit
ac8a64a59c
|
@ -50,7 +50,7 @@ use Sabre\DAV\Exception\ServiceUnavailable;
|
||||||
use Sabre\DAV\IFile;
|
use Sabre\DAV\IFile;
|
||||||
use Sabre\DAV\INode;
|
use Sabre\DAV\INode;
|
||||||
|
|
||||||
class Directory extends \OCA\DAV\Connector\Sabre\Node implements \Sabre\DAV\ICollection, \Sabre\DAV\IQuota, \Sabre\DAV\IMoveTarget {
|
class Directory extends \OCA\DAV\Connector\Sabre\Node implements \Sabre\DAV\ICollection, \Sabre\DAV\IQuota, \Sabre\DAV\IMoveTarget, \Sabre\DAV\ICopyTarget {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Cached directory content
|
* Cached directory content
|
||||||
|
@ -393,7 +393,7 @@ class Directory extends \OCA\DAV\Connector\Sabre\Node implements \Sabre\DAV\ICol
|
||||||
throw new \Sabre\DAV\Exception\Forbidden('Could not copy directory ' . $sourceNode->getName() . ', target exists');
|
throw new \Sabre\DAV\Exception\Forbidden('Could not copy directory ' . $sourceNode->getName() . ', target exists');
|
||||||
}
|
}
|
||||||
|
|
||||||
list($sourceDir,) = \Sabre\Uri\split($sourceNode->getPath());
|
[$sourceDir,] = \Sabre\Uri\split($sourceNode->getPath());
|
||||||
$destinationDir = $this->getPath();
|
$destinationDir = $this->getPath();
|
||||||
|
|
||||||
$sourcePath = $sourceNode->getPath();
|
$sourcePath = $sourceNode->getPath();
|
||||||
|
@ -448,4 +448,26 @@ class Directory extends \OCA\DAV\Connector\Sabre\Node implements \Sabre\DAV\ICol
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
public function copyInto($targetName, $sourcePath, INode $sourceNode) {
|
||||||
|
if ($sourceNode instanceof File) {
|
||||||
|
$destinationPath = $this->getPath() . '/' . $targetName;
|
||||||
|
$sourcePath = $sourceNode->getPath();
|
||||||
|
|
||||||
|
if (!$this->fileView->isCreatable($this->getPath())) {
|
||||||
|
throw new \Sabre\DAV\Exception\Forbidden();
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
$this->fileView->verifyPath($this->getPath(), $targetName);
|
||||||
|
} catch (InvalidPathException $ex) {
|
||||||
|
throw new InvalidPath($ex->getMessage());
|
||||||
|
}
|
||||||
|
|
||||||
|
return $this->fileView->copy($sourcePath, $destinationPath);
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue