mirror of
https://github.com/bitwarden/clients.git
synced 2026-07-10 21:03:56 +08:00
* Extract files only used in cli out of libs/node Move commands from libs/node to cli Move program from libs/node to cli Move services from libs/node to cli Move specs from libs/node to cli Naming changes based on ADR 12 Rename commands Rename models/request Rename models/response Remove entries from whitelist-capital-letters.txt * Merge lowDbStorageService into base class Move logic from extended lowdbStorage.service.ts into base-lowdb-storage.service.ts Delete lowdb-storage.service.ts Rename base-lowdb-storage.service.ts to lowdb-storage.service.ts * Merge login.command with base class program.ts - changed import temporarily to make it easier to review Remove passing in clientId, set "cli" when constructing ssoRedirectUri call Remove setting callbacks, use private methods instead Remove i18nService from constructor params Add syncService, keyConnectorService and logoutCallback to constructor Merge successCallback with handleSuccessResponse Remove validatedParams callback and added private method Move options(program.OptionValues) and set in run() Delete login.command.ts * Rename base-login.command.ts to login.command.ts * Merge base.program.ts with program.ts
189 lines
6.8 KiB
TypeScript
189 lines
6.8 KiB
TypeScript
import { ApiService } from "@bitwarden/common/abstractions/api.service";
|
|
import { CipherService } from "@bitwarden/common/abstractions/cipher.service";
|
|
import { CryptoService } from "@bitwarden/common/abstractions/crypto.service";
|
|
import { FolderApiServiceAbstraction } from "@bitwarden/common/abstractions/folder/folder-api.service.abstraction";
|
|
import { FolderService } from "@bitwarden/common/abstractions/folder/folder.service.abstraction";
|
|
import { Utils } from "@bitwarden/common/misc/utils";
|
|
import { CipherExport } from "@bitwarden/common/models/export/cipher.export";
|
|
import { CollectionExport } from "@bitwarden/common/models/export/collection.export";
|
|
import { FolderExport } from "@bitwarden/common/models/export/folder.export";
|
|
import { CollectionRequest } from "@bitwarden/common/models/request/collection.request";
|
|
import { SelectionReadOnlyRequest } from "@bitwarden/common/models/request/selection-read-only.request";
|
|
|
|
import { OrganizationCollectionRequest } from "../models/request/organization-collection.request";
|
|
import { Response } from "../models/response";
|
|
import { CipherResponse } from "../models/response/cipher.response";
|
|
import { FolderResponse } from "../models/response/folder.response";
|
|
import { OrganizationCollectionResponse } from "../models/response/organization-collection.response";
|
|
import { CliUtils } from "../utils";
|
|
|
|
export class EditCommand {
|
|
constructor(
|
|
private cipherService: CipherService,
|
|
private folderService: FolderService,
|
|
private cryptoService: CryptoService,
|
|
private apiService: ApiService,
|
|
private folderApiService: FolderApiServiceAbstraction
|
|
) {}
|
|
|
|
async run(
|
|
object: string,
|
|
id: string,
|
|
requestJson: any,
|
|
cmdOptions: Record<string, any>
|
|
): Promise<Response> {
|
|
if (process.env.BW_SERVE !== "true" && (requestJson == null || requestJson === "")) {
|
|
requestJson = await CliUtils.readStdin();
|
|
}
|
|
|
|
if (requestJson == null || requestJson === "") {
|
|
return Response.badRequest("`requestJson` was not provided.");
|
|
}
|
|
|
|
let req: any = null;
|
|
if (typeof requestJson !== "string") {
|
|
req = requestJson;
|
|
} else {
|
|
try {
|
|
const reqJson = Buffer.from(requestJson, "base64").toString();
|
|
req = JSON.parse(reqJson);
|
|
} catch (e) {
|
|
return Response.badRequest("Error parsing the encoded request data.");
|
|
}
|
|
}
|
|
|
|
if (id != null) {
|
|
id = id.toLowerCase();
|
|
}
|
|
|
|
const normalizedOptions = new Options(cmdOptions);
|
|
switch (object.toLowerCase()) {
|
|
case "item":
|
|
return await this.editCipher(id, req);
|
|
case "item-collections":
|
|
return await this.editCipherCollections(id, req);
|
|
case "folder":
|
|
return await this.editFolder(id, req);
|
|
case "org-collection":
|
|
return await this.editOrganizationCollection(id, req, normalizedOptions);
|
|
default:
|
|
return Response.badRequest("Unknown object.");
|
|
}
|
|
}
|
|
|
|
private async editCipher(id: string, req: CipherExport) {
|
|
const cipher = await this.cipherService.get(id);
|
|
if (cipher == null) {
|
|
return Response.notFound();
|
|
}
|
|
|
|
let cipherView = await cipher.decrypt();
|
|
if (cipherView.isDeleted) {
|
|
return Response.badRequest("You may not edit a deleted item. Use the restore command first.");
|
|
}
|
|
cipherView = CipherExport.toView(req, cipherView);
|
|
const encCipher = await this.cipherService.encrypt(cipherView);
|
|
try {
|
|
await this.cipherService.updateWithServer(encCipher);
|
|
const updatedCipher = await this.cipherService.get(cipher.id);
|
|
const decCipher = await updatedCipher.decrypt();
|
|
const res = new CipherResponse(decCipher);
|
|
return Response.success(res);
|
|
} catch (e) {
|
|
return Response.error(e);
|
|
}
|
|
}
|
|
|
|
private async editCipherCollections(id: string, req: string[]) {
|
|
const cipher = await this.cipherService.get(id);
|
|
if (cipher == null) {
|
|
return Response.notFound();
|
|
}
|
|
if (cipher.organizationId == null) {
|
|
return Response.badRequest(
|
|
"Item does not belong to an organization. Consider moving it first."
|
|
);
|
|
}
|
|
|
|
cipher.collectionIds = req;
|
|
try {
|
|
await this.cipherService.saveCollectionsWithServer(cipher);
|
|
const updatedCipher = await this.cipherService.get(cipher.id);
|
|
const decCipher = await updatedCipher.decrypt();
|
|
const res = new CipherResponse(decCipher);
|
|
return Response.success(res);
|
|
} catch (e) {
|
|
return Response.error(e);
|
|
}
|
|
}
|
|
|
|
private async editFolder(id: string, req: FolderExport) {
|
|
const folder = await this.folderService.getFromState(id);
|
|
if (folder == null) {
|
|
return Response.notFound();
|
|
}
|
|
|
|
let folderView = await folder.decrypt();
|
|
folderView = FolderExport.toView(req, folderView);
|
|
const encFolder = await this.folderService.encrypt(folderView);
|
|
try {
|
|
await this.folderApiService.save(encFolder);
|
|
const updatedFolder = await this.folderService.get(folder.id);
|
|
const decFolder = await updatedFolder.decrypt();
|
|
const res = new FolderResponse(decFolder);
|
|
return Response.success(res);
|
|
} catch (e) {
|
|
return Response.error(e);
|
|
}
|
|
}
|
|
|
|
private async editOrganizationCollection(
|
|
id: string,
|
|
req: OrganizationCollectionRequest,
|
|
options: Options
|
|
) {
|
|
if (options.organizationId == null || options.organizationId === "") {
|
|
return Response.badRequest("`organizationid` option is required.");
|
|
}
|
|
if (!Utils.isGuid(id)) {
|
|
return Response.badRequest("`" + id + "` is not a GUID.");
|
|
}
|
|
if (!Utils.isGuid(options.organizationId)) {
|
|
return Response.badRequest("`" + options.organizationId + "` is not a GUID.");
|
|
}
|
|
if (options.organizationId !== req.organizationId) {
|
|
return Response.badRequest("`organizationid` option does not match request object.");
|
|
}
|
|
try {
|
|
const orgKey = await this.cryptoService.getOrgKey(req.organizationId);
|
|
if (orgKey == null) {
|
|
throw new Error("No encryption key for this organization.");
|
|
}
|
|
|
|
const groups =
|
|
req.groups == null
|
|
? null
|
|
: req.groups.map((g) => new SelectionReadOnlyRequest(g.id, g.readOnly, g.hidePasswords));
|
|
const request = new CollectionRequest();
|
|
request.name = (await this.cryptoService.encrypt(req.name, orgKey)).encryptedString;
|
|
request.externalId = req.externalId;
|
|
request.groups = groups;
|
|
const response = await this.apiService.putCollection(req.organizationId, id, request);
|
|
const view = CollectionExport.toView(req);
|
|
view.id = response.id;
|
|
const res = new OrganizationCollectionResponse(view, groups);
|
|
return Response.success(res);
|
|
} catch (e) {
|
|
return Response.error(e);
|
|
}
|
|
}
|
|
}
|
|
|
|
class Options {
|
|
organizationId: string;
|
|
|
|
constructor(passedOptions: Record<string, any>) {
|
|
this.organizationId = passedOptions?.organizationid || passedOptions?.organizationId;
|
|
}
|
|
}
|