delete partial file when file upload is aborted
This commit is contained in:
parent
15ab2fd52a
commit
2cb2991c04
|
@ -69,13 +69,14 @@ class OC_Connector_Sabre_Directory extends OC_Connector_Sabre_Node implements Sa
|
||||||
\OC\Files\Filesystem::file_put_contents($partpath, $data);
|
\OC\Files\Filesystem::file_put_contents($partpath, $data);
|
||||||
|
|
||||||
//detect aborted upload
|
//detect aborted upload
|
||||||
if (isset($_SERVER['CONTENT_LENGTH'])
|
if (isset($_SERVER['CONTENT_LENGTH'])) {
|
||||||
&& \OC\Files\Filesystem::filesize($partpath) != $_SERVER['CONTENT_LENGTH'])
|
$expected = $_SERVER['CONTENT_LENGTH'];
|
||||||
{
|
$actual = \OC\Files\Filesystem::filesize($partpath);
|
||||||
throw new Sabre_DAV_Exception_BadRequest(
|
if ($actual != $expected) {
|
||||||
'expected filesize ' . $_SERVER['CONTENT_LENGTH'].
|
\OC\Files\Filesystem::unlink($partpath);
|
||||||
' got ' . \OC\Files\Filesystem::filesize($partpath)
|
throw new Sabre_DAV_Exception_BadRequest(
|
||||||
);
|
'expected filesize ' . $expected . ' got ' . $actual);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// rename to correct path
|
// rename to correct path
|
||||||
|
|
|
@ -51,14 +51,16 @@ class OC_Connector_Sabre_File extends OC_Connector_Sabre_Node implements Sabre_D
|
||||||
\OC\Files\Filesystem::file_put_contents($partpath, $data);
|
\OC\Files\Filesystem::file_put_contents($partpath, $data);
|
||||||
|
|
||||||
//detect aborted upload
|
//detect aborted upload
|
||||||
if (isset($_SERVER['CONTENT_LENGTH'])
|
if (isset($_SERVER['CONTENT_LENGTH'])) {
|
||||||
&& \OC\Files\Filesystem::filesize($partpath) != $_SERVER['CONTENT_LENGTH'])
|
$expected = $_SERVER['CONTENT_LENGTH'];
|
||||||
{
|
$actual = \OC\Files\Filesystem::filesize($partpath);
|
||||||
throw new Sabre_DAV_Exception_BadRequest(
|
if ($actual != $expected) {
|
||||||
'expected filesize ' . $_SERVER['CONTENT_LENGTH'].
|
\OC\Files\Filesystem::unlink($partpath);
|
||||||
' got ' . \OC\Files\Filesystem::filesize($partpath)
|
throw new Sabre_DAV_Exception_BadRequest(
|
||||||
);
|
'expected filesize ' . $expected . ' got ' . $actual);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// rename to correct path
|
// rename to correct path
|
||||||
\OC\Files\Filesystem::rename($partpath, $this->path);
|
\OC\Files\Filesystem::rename($partpath, $this->path);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue