bitwarden-estensione-browser/src/commands/delete.command.ts

88 lines
2.8 KiB
TypeScript
Raw Normal View History

2018-05-14 21:08:48 +02:00
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> {
2018-05-16 17:54:59 +02:00
if (id != null) {
id = id.toLowerCase();
}
2018-05-14 22:25:14 +02:00
switch (object.toLowerCase()) {
2018-05-14 21:08:48 +02:00
case 'item':
2018-05-17 19:43:53 +02:00
if (cmd.attachmentid == null || cmd.attachmentid === '') {
return await this.deleteCipher(id);
} else {
return await this.deleteAttachment(id, cmd.attachmentid);
}
2018-05-14 21:08:48 +02:00
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) {
2018-05-15 17:08:55 +02:00
return Response.error(e);
2018-05-14 21:08:48 +02:00
}
}
2018-05-17 19:43:53 +02:00
private async deleteAttachment(id: string, attachmentId: string) {
attachmentId = attachmentId.toLowerCase();
const encCipher = await this.cipherService.get(id);
if (encCipher == null) {
return Response.notFound();
}
const cipher = await encCipher.decrypt();
if (cipher.attachments == null || cipher.attachments.length === 0) {
return Response.error('No attachments available for this item.');
}
const attachments = cipher.attachments.filter((a) =>
a.id.toLowerCase() === attachmentId || a.fileName.toLowerCase() === attachmentId);
if (attachments.length === 0) {
return Response.error('Attachment `' + attachmentId + '` was not found.');
}
if (attachments.length > 1) {
return Response.multipleResults(attachments.map((a) => a.id));
}
try {
await this.cipherService.deleteAttachmentWithServer(id, attachments[0].id);
return Response.success();
} catch (e) {
return Response.error(e);
}
}
2018-05-14 21:08:48 +02:00
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) {
2018-05-15 17:08:55 +02:00
return Response.error(e);
2018-05-14 21:08:48 +02:00
}
}
}