CHeck if file already exists during file creation
Signed-off-by: Julius Härtl <jus@bitgrid.net> Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
This commit is contained in:
parent
edd957140a
commit
ab4b9a6df5
|
@ -123,6 +123,10 @@ class Manager implements IManager {
|
||||||
|
|
||||||
public function create(string $path, string $editorId, string $creatorId, $templateId = null): string {
|
public function create(string $path, string $editorId, string $creatorId, $templateId = null): string {
|
||||||
$userFolder = $this->rootFolder->getUserFolder($this->userId);
|
$userFolder = $this->rootFolder->getUserFolder($this->userId);
|
||||||
|
try {
|
||||||
|
$file = $userFolder->get($path);
|
||||||
|
throw new \RuntimeException('File already exists');
|
||||||
|
} catch (\OCP\Files\NotFoundException $e) {
|
||||||
$file = $userFolder->newFile($path);
|
$file = $userFolder->newFile($path);
|
||||||
$editor = $this->getEditor($editorId);
|
$editor = $this->getEditor($editorId);
|
||||||
$creators = $editor->getCreators();
|
$creators = $editor->getCreators();
|
||||||
|
@ -132,6 +136,8 @@ class Manager implements IManager {
|
||||||
return $this->createToken($editorId, $file, $path);
|
return $this->createToken($editorId, $file, $path);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
throw new \RuntimeException('No creator found');
|
throw new \RuntimeException('No creator found');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -12,6 +12,7 @@ use OCP\DirectEditing\IEditor;
|
||||||
use OCP\DirectEditing\IToken;
|
use OCP\DirectEditing\IToken;
|
||||||
use OCP\Files\Folder;
|
use OCP\Files\Folder;
|
||||||
use OCP\Files\IRootFolder;
|
use OCP\Files\IRootFolder;
|
||||||
|
use OCP\Files\NotFoundException;
|
||||||
use OCP\IDBConnection;
|
use OCP\IDBConnection;
|
||||||
use OCP\IL10N;
|
use OCP\IL10N;
|
||||||
use OCP\IUserSession;
|
use OCP\IUserSession;
|
||||||
|
@ -151,6 +152,10 @@ class ManagerTest extends TestCase {
|
||||||
$this->random->expects($this->once())
|
$this->random->expects($this->once())
|
||||||
->method('generate')
|
->method('generate')
|
||||||
->willReturn($expectedToken);
|
->willReturn($expectedToken);
|
||||||
|
$this->userFolder
|
||||||
|
->method('get')
|
||||||
|
->with('/File.txt')
|
||||||
|
->willThrowException(new NotFoundException());
|
||||||
$this->userFolder->expects($this->once())
|
$this->userFolder->expects($this->once())
|
||||||
->method('newFile')
|
->method('newFile')
|
||||||
->willReturn($file);
|
->willReturn($file);
|
||||||
|
@ -167,6 +172,10 @@ class ManagerTest extends TestCase {
|
||||||
$this->random->expects($this->once())
|
$this->random->expects($this->once())
|
||||||
->method('generate')
|
->method('generate')
|
||||||
->willReturn($expectedToken);
|
->willReturn($expectedToken);
|
||||||
|
$this->userFolder
|
||||||
|
->method('get')
|
||||||
|
->with('/File.txt')
|
||||||
|
->willThrowException(new NotFoundException());
|
||||||
$this->userFolder->expects($this->once())
|
$this->userFolder->expects($this->once())
|
||||||
->method('newFile')
|
->method('newFile')
|
||||||
->willReturn($file);
|
->willReturn($file);
|
||||||
|
@ -177,4 +186,10 @@ class ManagerTest extends TestCase {
|
||||||
$this->assertInstanceOf(NotFoundResponse::class, $secondResult);
|
$this->assertInstanceOf(NotFoundResponse::class, $secondResult);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function testCreateFileAlreadyExists() {
|
||||||
|
$this->expectException(\RuntimeException::class);
|
||||||
|
|
||||||
|
$this->manager->create('/File.txt', 'testeditor', 'createEmpty');
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue