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

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

127 lines
4.0 KiB
TypeScript
Raw Normal View History

2018-05-17 16:58:30 +02:00
import * as program from "commander";
2018-05-23 17:16:23 +02:00
import * as inquirer from "inquirer";
2018-05-17 16:58:30 +02:00
import { ExportService } from "jslib-common/abstractions/export.service";
import { KeyConnectorService } from "jslib-common/abstractions/keyConnector.service";
import { PolicyService } from "jslib-common/abstractions/policy.service";
import { UserVerificationService } from "jslib-common/abstractions/userVerification.service";
2018-05-17 16:58:30 +02:00
import { Response } from "jslib-node/cli/models/response";
2018-05-17 16:58:30 +02:00
import { PolicyType } from "jslib-common/enums/policyType";
import { VerificationType } from "jslib-common/enums/verificationType";
2018-05-17 16:58:30 +02:00
import { Utils } from "jslib-common/misc/utils";
2019-10-07 17:01:30 +02:00
import { CliUtils } from "../utils";
2018-05-17 16:58:30 +02:00
export class ExportCommand {
constructor(
private exportService: ExportService,
private policyService: PolicyService,
private keyConnectorService: KeyConnectorService,
private userVerificationService: UserVerificationService
) {}
2021-12-20 18:04:00 +01:00
async run(password: string, options: program.OptionValues): Promise<Response> {
if (
options.organizationid == null &&
(await this.policyService.policyAppliesToUser(PolicyType.DisablePersonalVaultExport))
2021-12-20 18:04:00 +01:00
) {
return Response.badRequest(
"One or more organization policies prevents you from exporting your personal vault."
);
2018-05-17 16:58:30 +02:00
}
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
const canInteract = process.env.BW_NOINTERACTION !== "true";
if (!canInteract) {
return Response.badRequest(
"User verification is required. Try running this command again in interactive mode."
2018-05-17 19:28:22 +02:00
);
2018-05-17 16:58:30 +02:00
}
try {
(await this.keyConnectorService.getUsesKeyConnector())
? await this.verifyOTP()
: await this.verifyMasterPassword(password);
} catch (e) {
return Response.badRequest(e.message);
}
let format = options.format;
if (format !== "encrypted_json" && format !== "json") {
format = "csv";
}
if (options.organizationid != null && !Utils.isGuid(options.organizationid)) {
return Response.error("`" + options.organizationid + "` is not a GUID.");
2021-12-20 18:04:00 +01:00
}
let exportContent: string = null;
2021-12-20 18:04:00 +01:00
try {
exportContent =
options.organizationid != null
? await this.exportService.getOrganizationExport(options.organizationid, format)
: await this.exportService.getExport(format);
} catch (e) {
return Response.error(e);
2021-12-20 18:04:00 +01:00
}
return await this.saveFile(exportContent, options, format);
2021-12-20 18:04:00 +01:00
}
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
async saveFile(
exportContent: string,
options: program.OptionValues,
format: string
): Promise<Response> {
2021-12-20 18:04:00 +01:00
try {
const fileName = this.getFileName(format, options.organizationid != null ? "org" : null);
return await CliUtils.saveResultToFile(exportContent, options.output, fileName);
} catch (e) {
return Response.error(e.toString());
}
2021-12-20 18:04:00 +01:00
}
private getFileName(format: string, prefix?: string) {
if (format === "encrypted_json") {
if (prefix == null) {
prefix = "encrypted";
2021-12-20 18:04:00 +01:00
} else {
prefix = "encrypted_" + prefix;
2021-12-20 18:04:00 +01:00
}
format = "json";
2021-12-20 18:04:00 +01:00
}
return this.exportService.getFileName(prefix, format);
2021-12-20 18:04:00 +01:00
}
private async verifyMasterPassword(password: string) {
if (password == null || password === "") {
const answer: inquirer.Answers = await inquirer.createPromptModule({
output: process.stderr,
2021-12-20 18:04:00 +01:00
})({
type: "password",
name: "password",
message: "Master password:",
2021-12-20 18:04:00 +01:00
});
password = answer.password;
2021-12-20 18:04:00 +01:00
}
await this.userVerificationService.verifyUser({
type: VerificationType.MasterPassword,
secret: password,
2021-12-20 18:04:00 +01:00
});
}
private async verifyOTP() {
await this.userVerificationService.requestOTP();
const answer: inquirer.Answers = await inquirer.createPromptModule({ output: process.stderr })({
type: "password",
2021-12-20 18:04:00 +01:00
name: "otp",
message: "A verification code has been emailed to you.\n Verification code:",
2021-12-20 18:04:00 +01:00
});
await this.userVerificationService.verifyUser({
type: VerificationType.OTP,
secret: answer.otp,
2021-12-20 18:04:00 +01:00
});
}
2018-05-17 16:58:30 +02:00
}