1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-13 14:53:33 +00:00

delete command

This commit is contained in:
Kyle Spearrin
2018-05-14 15:08:48 -04:00
parent 4166efceca
commit a1238ff685
2 changed files with 54 additions and 4 deletions

View File

@@ -0,0 +1,49 @@
import * as program from 'commander';
import { CipherService } from 'jslib/abstractions/cipher.service';
import { FolderService } from 'jslib/abstractions/folder.service';
import { Response } from '../models/response';
export class DeleteCommand {
constructor(private cipherService: CipherService, private folderService: FolderService) { }
async run(object: string, id: string, cmd: program.Command): Promise<Response> {
switch (object) {
case 'item':
return await this.deleteCipher(id);
case 'folder':
return await this.deleteFolder(id);
default:
return Response.badRequest('Unknown object.');
}
}
private async deleteCipher(id: string) {
const cipher = await this.cipherService.get(id);
if (cipher == null) {
return Response.notFound();
}
try {
await this.cipherService.deleteWithServer(id);
return Response.success();
} catch (e) {
return Response.error(e.toString());
}
}
private async deleteFolder(id: string) {
const folder = await this.folderService.get(id);
if (folder == null) {
return Response.notFound();
}
try {
await this.folderService.deleteWithServer(id);
return Response.success();
} catch (e) {
return Response.error(e.toString());
}
}
}