2021-12-20 18:04:00 +01:00
|
|
|
import * as program from "commander";
|
2018-05-15 17:30:56 +02:00
|
|
|
|
2021-12-20 18:04:00 +01:00
|
|
|
import { ApiService } from "jslib-common/abstractions/api.service";
|
|
|
|
import { CipherService } from "jslib-common/abstractions/cipher.service";
|
|
|
|
import { CryptoService } from "jslib-common/abstractions/crypto.service";
|
|
|
|
import { FolderService } from "jslib-common/abstractions/folder.service";
|
2018-05-15 17:30:56 +02:00
|
|
|
|
2021-12-20 18:04:00 +01:00
|
|
|
import { Cipher } from "jslib-common/models/export/cipher";
|
|
|
|
import { Collection } from "jslib-common/models/export/collection";
|
|
|
|
import { Folder } from "jslib-common/models/export/folder";
|
2018-12-17 16:30:06 +01:00
|
|
|
|
2021-12-20 18:04:00 +01:00
|
|
|
import { CollectionRequest } from "jslib-common/models/request/collectionRequest";
|
|
|
|
import { SelectionReadOnlyRequest } from "jslib-common/models/request/selectionReadOnlyRequest";
|
2019-10-01 17:16:24 +02:00
|
|
|
|
2021-12-20 18:04:00 +01:00
|
|
|
import { Response } from "jslib-node/cli/models/response";
|
2019-03-16 03:34:59 +01:00
|
|
|
|
2021-12-20 18:04:00 +01:00
|
|
|
import { CipherResponse } from "../models/response/cipherResponse";
|
|
|
|
import { FolderResponse } from "../models/response/folderResponse";
|
|
|
|
import { OrganizationCollectionResponse } from "../models/response/organizationCollectionResponse";
|
2019-10-01 17:16:24 +02:00
|
|
|
|
2021-12-20 18:04:00 +01:00
|
|
|
import { OrganizationCollectionRequest } from "../models/request/organizationCollectionRequest";
|
2018-05-15 17:30:56 +02:00
|
|
|
|
2021-12-20 18:04:00 +01:00
|
|
|
import { CliUtils } from "../utils";
|
2018-05-17 04:40:48 +02:00
|
|
|
|
2021-12-20 18:04:00 +01:00
|
|
|
import { Utils } from "jslib-common/misc/utils";
|
2019-10-01 17:16:24 +02:00
|
|
|
|
2018-05-15 17:30:56 +02:00
|
|
|
export class EditCommand {
|
2021-12-20 18:04:00 +01:00
|
|
|
constructor(
|
|
|
|
private cipherService: CipherService,
|
|
|
|
private folderService: FolderService,
|
|
|
|
private cryptoService: CryptoService,
|
|
|
|
private apiService: ApiService
|
|
|
|
) {}
|
|
|
|
|
|
|
|
async run(
|
|
|
|
object: string,
|
|
|
|
id: string,
|
2022-01-19 16:45:14 +01:00
|
|
|
requestJson: any,
|
|
|
|
cmdOptions: Record<string, any>
|
2021-12-20 18:04:00 +01:00
|
|
|
): Promise<Response> {
|
2022-01-19 16:45:14 +01:00
|
|
|
if (process.env.BW_SERVE !== "true" && (requestJson == null || requestJson === "")) {
|
2021-12-20 18:04:00 +01:00
|
|
|
requestJson = await CliUtils.readStdin();
|
2019-10-01 17:16:24 +02:00
|
|
|
}
|
2021-12-20 18:04:00 +01:00
|
|
|
|
|
|
|
if (requestJson == null || requestJson === "") {
|
|
|
|
return Response.badRequest("`requestJson` was not provided.");
|
|
|
|
}
|
|
|
|
|
|
|
|
let req: any = null;
|
2022-01-19 16:45:14 +01:00
|
|
|
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.");
|
|
|
|
}
|
2021-12-20 18:04:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (id != null) {
|
|
|
|
id = id.toLowerCase();
|
|
|
|
}
|
|
|
|
|
2022-01-19 16:45:14 +01:00
|
|
|
const normalizedOptions = new Options(cmdOptions);
|
2021-12-20 18:04:00 +01:00
|
|
|
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":
|
2022-01-19 16:45:14 +01:00
|
|
|
return await this.editOrganizationCollection(id, req, normalizedOptions);
|
2021-12-20 18:04:00 +01:00
|
|
|
default:
|
|
|
|
return Response.badRequest("Unknown object.");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private async editCipher(id: string, req: Cipher) {
|
|
|
|
const cipher = await this.cipherService.get(id);
|
|
|
|
if (cipher == null) {
|
|
|
|
return Response.notFound();
|
|
|
|
}
|
|
|
|
|
|
|
|
let cipherView = await cipher.decrypt();
|
|
|
|
if (cipherView.isDeleted) {
|
2022-01-19 16:45:14 +01:00
|
|
|
return Response.badRequest("You may not edit a deleted item. Use the restore command first.");
|
2021-12-20 18:04:00 +01:00
|
|
|
}
|
|
|
|
cipherView = Cipher.toView(req, cipherView);
|
|
|
|
const encCipher = await this.cipherService.encrypt(cipherView);
|
|
|
|
try {
|
|
|
|
await this.cipherService.saveWithServer(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(
|
2022-01-19 16:45:14 +01:00
|
|
|
"Item does not belong to an organization. Consider moving it first."
|
2021-12-20 18:04:00 +01:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
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: Folder) {
|
|
|
|
const folder = await this.folderService.get(id);
|
|
|
|
if (folder == null) {
|
|
|
|
return Response.notFound();
|
|
|
|
}
|
|
|
|
|
|
|
|
let folderView = await folder.decrypt();
|
|
|
|
folderView = Folder.toView(req, folderView);
|
|
|
|
const encFolder = await this.folderService.encrypt(folderView);
|
|
|
|
try {
|
|
|
|
await this.folderService.saveWithServer(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,
|
2022-01-19 16:45:14 +01:00
|
|
|
options: Options
|
2021-12-20 18:04:00 +01:00
|
|
|
) {
|
2022-01-19 16:45:14 +01:00
|
|
|
if (options.organizationId == null || options.organizationId === "") {
|
|
|
|
return Response.badRequest("`organizationid` option is required.");
|
2021-12-20 18:04:00 +01: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
|
|
|
}
|
2022-01-19 16:45:14 +01:00
|
|
|
if (options.organizationId !== req.organizationId) {
|
|
|
|
return Response.badRequest("`organizationid` option does not match request object.");
|
2021-12-20 18:04:00 +01:00
|
|
|
}
|
|
|
|
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 = Collection.toView(req);
|
|
|
|
view.id = response.id;
|
|
|
|
const res = new OrganizationCollectionResponse(view, groups);
|
|
|
|
return Response.success(res);
|
|
|
|
} catch (e) {
|
|
|
|
return Response.error(e);
|
|
|
|
}
|
|
|
|
}
|
2018-05-15 17:30:56 +02:00
|
|
|
}
|
2022-01-19 16:45:14 +01:00
|
|
|
|
|
|
|
class Options {
|
|
|
|
organizationId: string;
|
|
|
|
|
|
|
|
constructor(passedOptions: Record<string, any>) {
|
|
|
|
this.organizationId = passedOptions.organizationid || passedOptions.organizationId;
|
|
|
|
}
|
|
|
|
}
|