mirror of
https://github.com/nextcloud/server.git
synced 2026-06-08 16:26:59 -04:00
Merge pull request #15168 from nextcloud/fix/13554/always_tmpfile_for_swift
Always use a temp file for swift writes
This commit is contained in:
commit
402930521a
1 changed files with 3 additions and 8 deletions
|
|
@ -76,14 +76,9 @@ class Swift implements IObjectStore {
|
|||
* @throws \Exception from openstack lib when something goes wrong
|
||||
*/
|
||||
public function writeObject($urn, $stream) {
|
||||
$handle = $stream;
|
||||
|
||||
$meta = stream_get_meta_data($stream);
|
||||
if (!(isset($meta['seekable']) && $meta['seekable'] === true)) {
|
||||
$tmpFile = \OC::$server->getTempManager()->getTemporaryFile('swiftwrite');
|
||||
file_put_contents($tmpFile, $stream);
|
||||
$handle = fopen($tmpFile, 'rb');
|
||||
}
|
||||
$tmpFile = \OC::$server->getTempManager()->getTemporaryFile('swiftwrite');
|
||||
file_put_contents($tmpFile, $stream);
|
||||
$handle = fopen($tmpFile, 'rb');
|
||||
|
||||
$this->getContainer()->createObject([
|
||||
'name' => $urn,
|
||||
|
|
|
|||
Loading…
Reference in a new issue