Return proper status when file didn't exist before
Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
parent
b83c858e6d
commit
2b34f0e785
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -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')
|
||||
|
|
Loading…
Reference in New Issue