dont use part files for dav writes when the target folder doesn't have create permissions
Signed-off-by: Robin Appelman <robin@icewind.nl>
This commit is contained in:
parent
79d86aadc0
commit
135cfd2c55
|
@ -147,7 +147,12 @@ class File extends Node implements IFile {
|
|||
if ($needsPartFile) {
|
||||
// mark file as partial while uploading (ignored by the scanner)
|
||||
$partFilePath = $this->getPartFileBasePath($this->path) . '.ocTransferId' . rand() . '.part';
|
||||
} else {
|
||||
|
||||
if (!$view->isCreatable($partFilePath) && $view->isUpdatable($this->path)) {
|
||||
$needsPartFile = false;
|
||||
}
|
||||
}
|
||||
if (!$needsPartFile) {
|
||||
// upload file directly as the final path
|
||||
$partFilePath = $this->path;
|
||||
|
||||
|
@ -178,7 +183,7 @@ class File extends Node implements IFile {
|
|||
}
|
||||
|
||||
$isEOF = false;
|
||||
$wrappedData = CallbackWrapper::wrap($data, null, null, null, null, function($stream) use (&$isEOF) {
|
||||
$wrappedData = CallbackWrapper::wrap($data, null, null, null, null, function ($stream) use (&$isEOF) {
|
||||
$isEOF = feof($stream);
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in New Issue