Return proper status when file didn't exist before

Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
Julius Härtl 2020-08-13 15:26:42 +02:00 committed by backportbot[bot]
parent b83c858e6d
commit 2b34f0e785
2 changed files with 3 additions and 2 deletions

View File

@ -88,6 +88,7 @@ class ChunkingPlugin extends ServerPlugin {
* @return bool|void false to stop handling, void to skip this handler
*/
public function performMove($path, $destination) {
$fileExists = $this->server->tree->nodeExists($destination);
// do a move manually, skipping Sabre's default "delete" for existing nodes
try {
$this->server->tree->move($path, $destination);
@ -106,7 +107,7 @@ class ChunkingPlugin extends ServerPlugin {
$response = $this->server->httpResponse;
$response->setHeader('Content-Length', '0');
$response->setStatus(204);
$response->setStatus($fileExists ? 204 : 201);
return false;
}

View File

@ -133,7 +133,7 @@ class ChunkingPluginTest extends TestCase {
->with('Content-Length', '0');
$this->response->expects($this->once())
->method('setStatus')
->with(204);
->with(201);
$this->request->expects($this->once())
->method('getHeader')
->with('OC-Total-Length')