Merge pull request #9473 from nextcloud/dav-upload-no-partfile-lock
properly lock the target file on dav upload when not using part files
This commit is contained in:
commit
61fa284d07
|
@ -150,12 +150,21 @@ class File extends Node implements IFile {
|
||||||
$this->emitPreHooks($exists);
|
$this->emitPreHooks($exists);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$view = \OC\Files\Filesystem::getView();
|
||||||
|
|
||||||
// the part file and target file might be on a different storage in case of a single file storage (e.g. single file share)
|
// the part file and target file might be on a different storage in case of a single file storage (e.g. single file share)
|
||||||
/** @var \OC\Files\Storage\Storage $partStorage */
|
/** @var \OC\Files\Storage\Storage $partStorage */
|
||||||
list($partStorage, $internalPartPath) = $this->fileView->resolvePath($partFilePath);
|
list($partStorage, $internalPartPath) = $this->fileView->resolvePath($partFilePath);
|
||||||
/** @var \OC\Files\Storage\Storage $storage */
|
/** @var \OC\Files\Storage\Storage $storage */
|
||||||
list($storage, $internalPath) = $this->fileView->resolvePath($this->path);
|
list($storage, $internalPath) = $this->fileView->resolvePath($this->path);
|
||||||
try {
|
try {
|
||||||
|
if (!$needsPartFile) {
|
||||||
|
if ($view && !$this->emitPreHooks($exists)) {
|
||||||
|
throw new Exception('Could not write to final file, canceled by hook');
|
||||||
|
}
|
||||||
|
$this->changeLock(ILockingProvider::LOCK_EXCLUSIVE);
|
||||||
|
}
|
||||||
|
|
||||||
$target = $partStorage->fopen($internalPartPath, 'wb');
|
$target = $partStorage->fopen($internalPartPath, 'wb');
|
||||||
if ($target === false) {
|
if ($target === false) {
|
||||||
\OC::$server->getLogger()->error('\OC\Files\Filesystem::fopen() failed', ['app' => 'webdav']);
|
\OC::$server->getLogger()->error('\OC\Files\Filesystem::fopen() failed', ['app' => 'webdav']);
|
||||||
|
@ -191,26 +200,25 @@ class File extends Node implements IFile {
|
||||||
}
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
$view = \OC\Files\Filesystem::getView();
|
|
||||||
$run = ($view && $needsPartFile) ? $this->emitPreHooks($exists) : true;
|
|
||||||
|
|
||||||
try {
|
|
||||||
$this->changeLock(ILockingProvider::LOCK_EXCLUSIVE);
|
|
||||||
} catch (LockedException $e) {
|
|
||||||
if ($needsPartFile) {
|
|
||||||
$partStorage->unlink($internalPartPath);
|
|
||||||
}
|
|
||||||
throw new FileLocked($e->getMessage(), $e->getCode(), $e);
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($needsPartFile) {
|
if ($needsPartFile) {
|
||||||
|
if ($view && !$this->emitPreHooks($exists)) {
|
||||||
|
$partStorage->unlink($internalPartPath);
|
||||||
|
throw new Exception('Could not rename part file to final file, canceled by hook');
|
||||||
|
}
|
||||||
|
try {
|
||||||
|
$this->changeLock(ILockingProvider::LOCK_EXCLUSIVE);
|
||||||
|
} catch (LockedException $e) {
|
||||||
|
if ($needsPartFile) {
|
||||||
|
$partStorage->unlink($internalPartPath);
|
||||||
|
}
|
||||||
|
throw new FileLocked($e->getMessage(), $e->getCode(), $e);
|
||||||
|
}
|
||||||
|
|
||||||
// rename to correct path
|
// rename to correct path
|
||||||
try {
|
try {
|
||||||
if ($run) {
|
$renameOkay = $storage->moveFromStorage($partStorage, $internalPartPath, $internalPath);
|
||||||
$renameOkay = $storage->moveFromStorage($partStorage, $internalPartPath, $internalPath);
|
$fileExists = $storage->file_exists($internalPath);
|
||||||
$fileExists = $storage->file_exists($internalPath);
|
if ($renameOkay === false || $fileExists === false) {
|
||||||
}
|
|
||||||
if (!$run || $renameOkay === false || $fileExists === false) {
|
|
||||||
\OC::$server->getLogger()->error('renaming part file to final file failed ($run: ' . ( $run ? 'true' : 'false' ) . ', $renameOkay: ' . ( $renameOkay ? 'true' : 'false' ) . ', $fileExists: ' . ( $fileExists ? 'true' : 'false' ) . ')', ['app' => 'webdav']);
|
\OC::$server->getLogger()->error('renaming part file to final file failed ($run: ' . ( $run ? 'true' : 'false' ) . ', $renameOkay: ' . ( $renameOkay ? 'true' : 'false' ) . ', $fileExists: ' . ( $fileExists ? 'true' : 'false' ) . ')', ['app' => 'webdav']);
|
||||||
throw new Exception('Could not rename part file to final file');
|
throw new Exception('Could not rename part file to final file');
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue