Skip to content
Snippets Groups Projects
Commit 35ab7f0e authored by Tim Dettrick's avatar Tim Dettrick Committed by Morris Jobke
Browse files

Improving fopen behaviour for Swift backend

parent 88494627
No related branches found
No related tags found
No related merge requests found
...@@ -354,9 +354,18 @@ class Swift extends \OC\Files\Storage\Common { ...@@ -354,9 +354,18 @@ class Swift extends \OC\Files\Storage\Common {
} }
$tmpFile = \OCP\Files::tmpFile($ext); $tmpFile = \OCP\Files::tmpFile($ext);
\OC\Files\Stream\Close::registerCallback($tmpFile, array($this, 'writeBack')); \OC\Files\Stream\Close::registerCallback($tmpFile, array($this, 'writeBack'));
if ($this->file_exists($path)) { // Fetch existing file if required
if ($mode[0] !== 'w' && $this->file_exists($path)) {
if ($mode[0] === 'x') {
// File cannot already exist
return false;
}
$source = $this->fopen($path, 'r'); $source = $this->fopen($path, 'r');
file_put_contents($tmpFile, $source); file_put_contents($tmpFile, $source);
// Seek to end if required
if ($mode[0] === 'a') {
fseek($tmpFile, 0, SEEK_END);
}
} }
self::$tmpFiles[$tmpFile] = $path; self::$tmpFiles[$tmpFile] = $path;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment