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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

132 lines
4.1 KiB
TypeScript
Raw Normal View History

2022-06-14 17:10:53 +02:00
import { ApiService } from "@bitwarden/common/abstractions/api.service";
import { CipherService } from "@bitwarden/common/abstractions/cipher.service";
import { FolderService } from "@bitwarden/common/abstractions/folder.service";
import { StateService } from "@bitwarden/common/abstractions/state.service";
import { Utils } from "@bitwarden/common/misc/utils";
import { Response } from "@bitwarden/node/cli/models/response";
2018-05-14 21:08:48 +02:00
2022-01-19 16:45:14 +01:00
import { CliUtils } from "src/utils";
2019-10-01 17:04:15 +02:00
2018-05-14 21:08:48 +02:00
export class DeleteCommand {
2018-05-18 16:55:50 +02:00
constructor(
2018-05-14 21:08:48 +02:00
private cipherService: CipherService,
private folderService: FolderService,
private stateService: StateService,
2018-05-17 21:55:44 +02:00
private apiService: ApiService
2018-05-17 19:43:53 +02:00
) {}
2021-12-20 18:04:00 +01:00
2022-01-19 16:45:14 +01:00
async run(object: string, id: string, cmdOptions: Record<string, any>): Promise<Response> {
Add send to cli (#222) * Add list all sends and filter by search term * Add get send templates * Add AccessUrl to send responses * Add Send to Get command * Add missing command options to login These options are already coded to work in the command, but commander did not know about the options. * Upgrade Commander to 7.0.0 This is needed to enable the subcommand chaining required by Send. This commit also adds get send and send receive functionality. get send will be moved to send get along with send list and any other send commands. * Use api url for send access url * Move send commands to send subcommands * Use webvault access url everywhere Production instances all have api url located at `baseUrl/api`. Receive command will parse the webvault url and alter it to an api url. * Move create and receive commands to send directory * Separate program concerns program holds authentication/general program concerns vault.program holds commands related to the vault send.program holds commands related to Bitwarden Send * Fix up imports and lint items * Add edit command * Use browser-hrtime * Add send examples to help text * Clean up receive help text * correct help text * Add delete command * Code review Cleanup * Scheme on send receive help text * PR review items Move buffer to array buffer to jslib delete with server some formatting fixes * Add remove password command This is the simplest way to enable removing passwords without resorting to weird type parsing of piped in Send JSONs in edit * Default hidden to false like web * Do not allow password updates that aren't strings or are empty * Delete appveyor.yml.flagged-for-delete * Correctly order imports and include tslint rule * fix npm globbing problem https://stackoverflow.com/a/34594501 globs work differently in package.json. Encasing the globs in single quotes expands them in shell rather than in npm * Remove double slash in path * Trigger github rebuild
2021-02-03 18:44:33 +01:00
if (id != null) {
2019-10-01 17:04:15 +02:00
id = id.toLowerCase();
}
2021-12-20 18:04:00 +01:00
2022-01-19 16:45:14 +01:00
const normalizedOptions = new Options(cmdOptions);
2018-05-14 22:25:14 +02:00
switch (object.toLowerCase()) {
2021-12-20 18:04:00 +01:00
case "item":
2022-01-19 16:45:14 +01:00
return await this.deleteCipher(id, normalizedOptions);
2018-05-17 21:55:44 +02:00
case "attachment":
2022-01-19 16:45:14 +01:00
return await this.deleteAttachment(id, normalizedOptions);
2018-05-14 21:08:48 +02:00
case "folder":
return await this.deleteFolder(id);
2019-10-01 17:04:15 +02:00
case "org-collection":
2022-01-19 16:45:14 +01:00
return await this.deleteOrganizationCollection(id, normalizedOptions);
2021-12-20 18:04:00 +01:00
default:
2018-05-14 21:08:48 +02:00
return Response.badRequest("Unknown object.");
2021-12-20 18:04:00 +01:00
}
}
2022-01-19 16:45:14 +01:00
private async deleteCipher(id: string, options: Options) {
2018-05-17 21:55:44 +02:00
const cipher = await this.cipherService.get(id);
2018-05-14 21:08:48 +02:00
if (cipher == null) {
return Response.notFound();
2021-12-20 18:04:00 +01:00
}
try {
Add send to cli (#222) * Add list all sends and filter by search term * Add get send templates * Add AccessUrl to send responses * Add Send to Get command * Add missing command options to login These options are already coded to work in the command, but commander did not know about the options. * Upgrade Commander to 7.0.0 This is needed to enable the subcommand chaining required by Send. This commit also adds get send and send receive functionality. get send will be moved to send get along with send list and any other send commands. * Use api url for send access url * Move send commands to send subcommands * Use webvault access url everywhere Production instances all have api url located at `baseUrl/api`. Receive command will parse the webvault url and alter it to an api url. * Move create and receive commands to send directory * Separate program concerns program holds authentication/general program concerns vault.program holds commands related to the vault send.program holds commands related to Bitwarden Send * Fix up imports and lint items * Add edit command * Use browser-hrtime * Add send examples to help text * Clean up receive help text * correct help text * Add delete command * Code review Cleanup * Scheme on send receive help text * PR review items Move buffer to array buffer to jslib delete with server some formatting fixes * Add remove password command This is the simplest way to enable removing passwords without resorting to weird type parsing of piped in Send JSONs in edit * Default hidden to false like web * Do not allow password updates that aren't strings or are empty * Delete appveyor.yml.flagged-for-delete * Correctly order imports and include tslint rule * fix npm globbing problem https://stackoverflow.com/a/34594501 globs work differently in package.json. Encasing the globs in single quotes expands them in shell rather than in npm * Remove double slash in path * Trigger github rebuild
2021-02-03 18:44:33 +01:00
if (options.permanent) {
2018-05-17 21:55:44 +02:00
await this.cipherService.deleteWithServer(id);
2021-12-20 18:04:00 +01:00
} else {
2018-05-17 21:55:44 +02:00
await this.cipherService.softDeleteWithServer(id);
2021-12-20 18:04:00 +01:00
}
2018-05-14 21:08:48 +02:00
return Response.success();
} catch (e) {
2018-05-15 17:08:55 +02:00
return Response.error(e);
2021-12-20 18:04:00 +01:00
}
}
2022-01-19 16:45:14 +01:00
private async deleteAttachment(id: string, options: Options) {
if (options.itemId == null || options.itemId === "") {
return Response.badRequest("`itemid` option is required.");
2021-12-20 18:04:00 +01:00
}
2022-01-19 16:45:14 +01:00
const itemId = options.itemId.toLowerCase();
2018-05-17 21:55:44 +02:00
const cipher = await this.cipherService.get(itemId);
if (cipher == null) {
2018-05-17 19:43:53 +02:00
return Response.notFound();
2021-12-20 18:04:00 +01:00
}
2018-05-17 19:43:53 +02:00
if (cipher.attachments == null || cipher.attachments.length === 0) {
return Response.error("No attachments available for this item.");
2021-12-20 18:04:00 +01:00
}
const attachments = cipher.attachments.filter((a) => a.id.toLowerCase() === id);
2018-05-17 19:43:53 +02:00
if (attachments.length === 0) {
2018-05-17 21:55:44 +02:00
return Response.error("Attachment `" + id + "` was not found.");
2021-12-20 18:04:00 +01:00
}
if (cipher.organizationId == null && !(await this.stateService.getCanAccessPremium())) {
return Response.error("Premium status is required to use this feature.");
2021-12-20 18:04:00 +01:00
}
try {
2018-05-17 21:55:44 +02:00
await this.cipherService.deleteAttachmentWithServer(cipher.id, attachments[0].id);
2018-05-17 19:43:53 +02:00
return Response.success();
} catch (e) {
return Response.error(e);
2021-12-20 18:04:00 +01:00
}
}
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();
2021-12-20 18:04:00 +01:00
}
try {
2018-05-14 21:08:48 +02:00
await this.folderService.deleteWithServer(id);
return Response.success();
} catch (e) {
2018-05-15 17:08:55 +02:00
return Response.error(e);
2021-12-20 18:04:00 +01:00
}
}
2022-01-19 16:45:14 +01:00
private async deleteOrganizationCollection(id: string, options: Options) {
if (options.organizationId == null || options.organizationId === "") {
return Response.badRequest("`organizationid` options is required.");
2021-12-20 18:04:00 +01:00
}
2019-10-01 17:04:15 +02:00
if (!Utils.isGuid(id)) {
2022-01-19 16:45:14 +01:00
return Response.badRequest("`" + id + "` is not a GUID.");
2021-12-20 18:04:00 +01:00
}
2022-01-19 16:45:14 +01:00
if (!Utils.isGuid(options.organizationId)) {
return Response.badRequest("`" + options.organizationId + "` is not a GUID.");
2021-12-20 18:04:00 +01:00
}
try {
2022-01-19 16:45:14 +01:00
await this.apiService.deleteCollection(options.organizationId, id);
2019-10-01 17:04:15 +02:00
return Response.success();
} catch (e) {
return Response.error(e);
2021-12-20 18:04:00 +01:00
}
}
2018-05-14 21:08:48 +02:00
}
2022-01-19 16:45:14 +01:00
class Options {
itemId: string;
organizationId: string;
permanent: boolean;
constructor(passedOptions: Record<string, any>) {
this.organizationId = passedOptions?.organizationid || passedOptions?.organizationId;
this.itemId = passedOptions?.itemid || passedOptions?.itemId;
this.permanent = CliUtils.convertBooleanOption(passedOptions?.permanent);
2022-01-19 16:45:14 +01:00
}
}