2018-05-15 17:30:56 +02:00
|
|
|
import * as program from "commander";
|
|
|
|
|
2021-06-07 19:25:55 +02: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-06-07 19:25:55 +02: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-06-07 19:25:55 +02: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-06-07 19:25:55 +02:00
|
|
|
import { Response } from "jslib-node/cli/models/response";
|
2019-03-16 03:34:59 +01:00
|
|
|
|
2018-05-19 20:53:28 +02:00
|
|
|
import { CipherResponse } from "../models/response/cipherResponse";
|
|
|
|
import { FolderResponse } from "../models/response/folderResponse";
|
2019-10-01 17:16:24 +02:00
|
|
|
import { OrganizationCollectionResponse } from "../models/response/organizationCollectionResponse";
|
|
|
|
|
|
|
|
import { OrganizationCollectionRequest } from "../models/request/organizationCollectionRequest";
|
2018-05-15 17:30:56 +02:00
|
|
|
|
2018-05-17 05:23:12 +02:00
|
|
|
import { CliUtils } from "../utils";
|
2018-05-17 04:40:48 +02:00
|
|
|
|
2021-06-07 19:25:55 +02: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 {
|
2019-10-01 17:16:24 +02:00
|
|
|
constructor(
|
2018-05-17 04:40:48 +02:00
|
|
|
private cipherService: CipherService,
|
2018-05-15 17:30:56 +02:00
|
|
|
private folderService: FolderService,
|
2018-05-15 18:18:47 +02:00
|
|
|
private cryptoService: CryptoService,
|
2018-05-15 17:30:56 +02:00
|
|
|
private apiService: ApiService
|
2018-10-23 23:31:59 +02:00
|
|
|
) {}
|
2021-12-20 18:04:00 +01:00
|
|
|
|
2018-10-23 23:31:59 +02:00
|
|
|
async run(
|
2018-10-24 04:56:15 +02:00
|
|
|
object: string,
|
2018-05-15 18:18:47 +02:00
|
|
|
id: string,
|
2021-02-03 18:44:33 +01:00
|
|
|
requestJson: string,
|
|
|
|
cmd: program.Command
|
2019-10-01 17:16:24 +02:00
|
|
|
): Promise<Response> {
|
|
|
|
if (requestJson == null || requestJson === "") {
|
2020-10-20 15:38:11 +02:00
|
|
|
requestJson = await CliUtils.readStdin();
|
2019-10-01 17:16:24 +02:00
|
|
|
}
|
2021-12-20 18:04:00 +01:00
|
|
|
|
2018-05-17 04:40:48 +02:00
|
|
|
if (requestJson == null || requestJson === "") {
|
|
|
|
return Response.badRequest("`requestJson` was not provided.");
|
2021-12-20 18:04:00 +01:00
|
|
|
}
|
|
|
|
|
2018-05-15 17:30:56 +02:00
|
|
|
let req: any = null;
|
2021-12-20 18:04:00 +01:00
|
|
|
try {
|
2018-08-06 15:38:17 +02:00
|
|
|
const reqJson = Buffer.from(requestJson, "base64").toString();
|
2018-05-15 17:30:56 +02:00
|
|
|
req = JSON.parse(reqJson);
|
|
|
|
} catch (e) {
|
|
|
|
return Response.badRequest("Error parsing the encoded request data.");
|
2021-12-20 18:04:00 +01:00
|
|
|
}
|
|
|
|
|
2018-05-16 17:54:59 +02:00
|
|
|
if (id != null) {
|
|
|
|
id = id.toLowerCase();
|
2021-12-20 18:04:00 +01:00
|
|
|
}
|
|
|
|
|
2018-05-15 17:30:56 +02:00
|
|
|
switch (object.toLowerCase()) {
|
2021-12-20 18:04:00 +01:00
|
|
|
case "item":
|
2018-05-15 17:30:56 +02:00
|
|
|
return await this.editCipher(id, req);
|
2018-10-23 23:31:59 +02:00
|
|
|
case "item-collections":
|
|
|
|
return await this.editCipherCollections(id, req);
|
2021-12-20 18:04:00 +01:00
|
|
|
case "folder":
|
2018-05-15 17:30:56 +02:00
|
|
|
return await this.editFolder(id, req);
|
2019-10-01 17:16:24 +02:00
|
|
|
case "org-collection":
|
|
|
|
return await this.editOrganizationCollection(id, req, cmd);
|
2021-12-20 18:04:00 +01:00
|
|
|
default:
|
2018-05-15 17:30:56 +02:00
|
|
|
return Response.badRequest("Unknown object.");
|
2021-12-20 18:04:00 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-15 18:18:47 +02:00
|
|
|
private async editCipher(id: string, req: Cipher) {
|
2018-05-15 17:30:56 +02:00
|
|
|
const cipher = await this.cipherService.get(id);
|
|
|
|
if (cipher == null) {
|
|
|
|
return Response.notFound();
|
2021-12-20 18:04:00 +01:00
|
|
|
}
|
|
|
|
|
2018-05-15 17:30:56 +02:00
|
|
|
let cipherView = await cipher.decrypt();
|
2020-04-14 19:04:19 +02:00
|
|
|
if (cipherView.isDeleted) {
|
|
|
|
return Response.badRequest(
|
|
|
|
"You may not edit a deleted cipher. Use restore item <id> command first."
|
2021-12-20 18:04:00 +01:00
|
|
|
);
|
|
|
|
}
|
2018-05-15 18:18:47 +02:00
|
|
|
cipherView = Cipher.toView(req, cipherView);
|
2018-05-15 17:30:56 +02:00
|
|
|
const encCipher = await this.cipherService.encrypt(cipherView);
|
2021-12-20 18:04:00 +01:00
|
|
|
try {
|
2018-05-15 17:30:56 +02:00
|
|
|
await this.cipherService.saveWithServer(encCipher);
|
2018-10-23 23:31:59 +02:00
|
|
|
const updatedCipher = await this.cipherService.get(cipher.id);
|
2018-05-19 20:53:28 +02:00
|
|
|
const decCipher = await updatedCipher.decrypt();
|
|
|
|
const res = new CipherResponse(decCipher);
|
|
|
|
return Response.success(res);
|
2018-05-15 17:30:56 +02:00
|
|
|
} catch (e) {
|
|
|
|
return Response.error(e);
|
2021-12-20 18:04:00 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-23 23:31:59 +02:00
|
|
|
private async editCipherCollections(id: string, req: string[]) {
|
|
|
|
const cipher = await this.cipherService.get(id);
|
|
|
|
if (cipher == null) {
|
2018-05-15 17:30:56 +02:00
|
|
|
return Response.notFound();
|
2021-12-20 18:04:00 +01:00
|
|
|
}
|
2018-10-24 01:04:32 +02:00
|
|
|
if (cipher.organizationId == null) {
|
2018-10-24 04:56:15 +02:00
|
|
|
return Response.badRequest(
|
|
|
|
"Item does not belong to an organization. Consider sharing it first."
|
2021-12-20 18:04:00 +01:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2018-10-23 23:31:59 +02:00
|
|
|
cipher.collectionIds = req;
|
2021-12-20 18:04:00 +01:00
|
|
|
try {
|
2018-10-23 23:31:59 +02:00
|
|
|
await this.cipherService.saveCollectionsWithServer(cipher);
|
|
|
|
const updatedCipher = await this.cipherService.get(cipher.id);
|
2018-05-19 20:53:28 +02:00
|
|
|
const decCipher = await updatedCipher.decrypt();
|
|
|
|
const res = new CipherResponse(decCipher);
|
|
|
|
return Response.success(res);
|
2018-05-15 17:30:56 +02:00
|
|
|
} catch (e) {
|
|
|
|
return Response.error(e);
|
2021-12-20 18:04:00 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-15 18:18:47 +02:00
|
|
|
private async editFolder(id: string, req: Folder) {
|
2018-05-15 17:30:56 +02:00
|
|
|
const folder = await this.folderService.get(id);
|
|
|
|
if (folder == null) {
|
|
|
|
return Response.notFound();
|
2021-12-20 18:04:00 +01:00
|
|
|
}
|
|
|
|
|
2018-05-15 17:30:56 +02:00
|
|
|
let folderView = await folder.decrypt();
|
2018-05-15 18:18:47 +02:00
|
|
|
folderView = Folder.toView(req, folderView);
|
2018-05-15 17:30:56 +02:00
|
|
|
const encFolder = await this.folderService.encrypt(folderView);
|
2021-12-20 18:04:00 +01:00
|
|
|
try {
|
2018-05-15 17:30:56 +02:00
|
|
|
await this.folderService.saveWithServer(encFolder);
|
2018-05-19 20:53:28 +02:00
|
|
|
const updatedFolder = await this.folderService.get(folder.id);
|
|
|
|
const decFolder = await updatedFolder.decrypt();
|
|
|
|
const res = new FolderResponse(decFolder);
|
|
|
|
return Response.success(res);
|
2018-05-15 17:30:56 +02:00
|
|
|
} catch (e) {
|
|
|
|
return Response.error(e);
|
2021-12-20 18:04:00 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-03 18:44:33 +01:00
|
|
|
private async editOrganizationCollection(
|
2018-05-17 04:40:48 +02:00
|
|
|
id: string,
|
2021-02-03 18:44:33 +01:00
|
|
|
req: OrganizationCollectionRequest,
|
|
|
|
options: program.OptionValues
|
2021-12-20 18:04:00 +01:00
|
|
|
) {
|
2021-02-03 18:44:33 +01:00
|
|
|
if (options.organizationid == null || options.organizationid === "") {
|
2019-10-01 17:16:24 +02:00
|
|
|
return Response.badRequest("--organizationid <organizationid> required.");
|
2021-12-20 18:04:00 +01:00
|
|
|
}
|
2019-10-01 17:16:24 +02:00
|
|
|
if (!Utils.isGuid(id)) {
|
|
|
|
return Response.error("`" + id + "` is not a GUID.");
|
2021-12-20 18:04:00 +01:00
|
|
|
}
|
2021-02-03 18:44:33 +01:00
|
|
|
if (!Utils.isGuid(options.organizationid)) {
|
|
|
|
return Response.error("`" + options.organizationid + "` is not a GUID.");
|
2021-12-20 18:04:00 +01:00
|
|
|
}
|
2021-02-03 18:44:33 +01:00
|
|
|
if (options.organizationid !== req.organizationId) {
|
2019-10-01 17:16:24 +02:00
|
|
|
return Response.error("--organizationid <organizationid> does not match request object.");
|
2021-12-20 18:04:00 +01:00
|
|
|
}
|
|
|
|
try {
|
2019-10-01 17:16:24 +02:00
|
|
|
const orgKey = await this.cryptoService.getOrgKey(req.organizationId);
|
|
|
|
if (orgKey == null) {
|
|
|
|
throw new Error("No encryption key for this organization.");
|
2021-12-20 18:04:00 +01:00
|
|
|
}
|
|
|
|
|
2020-10-20 15:38:11 +02:00
|
|
|
const groups =
|
2019-10-01 17:16:24 +02:00
|
|
|
req.groups == null
|
2021-12-20 18:04:00 +01:00
|
|
|
? null
|
2021-02-04 05:51:59 +01:00
|
|
|
: req.groups.map((g) => new SelectionReadOnlyRequest(g.id, g.readOnly, g.hidePasswords));
|
2020-10-20 15:38:11 +02:00
|
|
|
const request = new CollectionRequest();
|
2019-10-01 17:16:24 +02:00
|
|
|
request.name = (await this.cryptoService.encrypt(req.name, orgKey)).encryptedString;
|
|
|
|
request.externalId = req.externalId;
|
|
|
|
request.groups = groups;
|
2020-10-20 15:38:11 +02:00
|
|
|
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);
|
2019-10-01 17:16:24 +02:00
|
|
|
return Response.success(res);
|
|
|
|
} catch (e) {
|
|
|
|
return Response.error(e);
|
2021-12-20 18:04:00 +01:00
|
|
|
}
|
|
|
|
}
|
2018-05-15 17:30:56 +02:00
|
|
|
}
|