2018-05-15 17:30:56 +02:00
|
|
|
import * as program from 'commander';
|
|
|
|
|
2019-10-01 17:16:24 +02:00
|
|
|
import { ApiService } from 'jslib/abstractions/api.service';
|
2018-05-15 17:30:56 +02:00
|
|
|
import { CipherService } from 'jslib/abstractions/cipher.service';
|
2019-10-01 17:16:24 +02:00
|
|
|
import { CryptoService } from 'jslib/abstractions/crypto.service';
|
|
|
|
import { FolderService } from 'jslib/abstractions/folder.service';
|
2018-05-15 17:30:56 +02:00
|
|
|
|
2018-12-17 16:30:06 +01:00
|
|
|
import { Cipher } from 'jslib/models/export/cipher';
|
2019-10-01 17:16:24 +02:00
|
|
|
import { Collection } from 'jslib/models/export/collection';
|
2018-12-17 16:30:06 +01:00
|
|
|
import { Folder } from 'jslib/models/export/folder';
|
|
|
|
|
2019-10-01 17:16:24 +02:00
|
|
|
import { CollectionRequest } from 'jslib/models/request/collectionRequest';
|
|
|
|
import { SelectionReadOnlyRequest } from 'jslib/models/request/selectionReadOnlyRequest';
|
|
|
|
|
2019-03-16 03:34:59 +01:00
|
|
|
import { Response } from 'jslib/cli/models/response';
|
|
|
|
|
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
|
|
|
|
2019-10-01 17:16:24 +02:00
|
|
|
import { Utils } from 'jslib/misc/utils';
|
|
|
|
|
2018-05-15 17:30:56 +02:00
|
|
|
export class EditCommand {
|
2019-10-01 17:16:24 +02:00
|
|
|
constructor(private cipherService: CipherService, private folderService: FolderService,
|
|
|
|
private cryptoService: CryptoService, private apiService: ApiService) { }
|
2018-05-15 17:30:56 +02:00
|
|
|
|
2018-05-17 04:40:48 +02:00
|
|
|
async run(object: string, id: string, requestJson: string, cmd: program.Command): Promise<Response> {
|
|
|
|
if (requestJson == null || requestJson === '') {
|
|
|
|
requestJson = await CliUtils.readStdin();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (requestJson == null || requestJson === '') {
|
|
|
|
return Response.badRequest('`requestJson` was not provided.');
|
|
|
|
}
|
|
|
|
|
2018-05-15 17:30:56 +02:00
|
|
|
let req: any = null;
|
|
|
|
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.');
|
|
|
|
}
|
|
|
|
|
2018-05-16 17:54:59 +02:00
|
|
|
if (id != null) {
|
|
|
|
id = id.toLowerCase();
|
|
|
|
}
|
|
|
|
|
2018-05-15 17:30:56 +02:00
|
|
|
switch (object.toLowerCase()) {
|
|
|
|
case 'item':
|
|
|
|
return await this.editCipher(id, req);
|
2018-10-23 23:31:59 +02:00
|
|
|
case 'item-collections':
|
|
|
|
return await this.editCipherCollections(id, req);
|
2018-05-15 17:30:56 +02:00
|
|
|
case 'folder':
|
|
|
|
return await this.editFolder(id, req);
|
2019-10-01 17:16:24 +02:00
|
|
|
case 'org-collection':
|
|
|
|
return await this.editOrganizationCollection(id, req, cmd);
|
2018-05-15 17:30:56 +02:00
|
|
|
default:
|
|
|
|
return Response.badRequest('Unknown object.');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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();
|
|
|
|
}
|
|
|
|
|
|
|
|
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.');
|
|
|
|
}
|
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);
|
|
|
|
try {
|
|
|
|
await this.cipherService.saveWithServer(encCipher);
|
2018-05-19 20:53:28 +02:00
|
|
|
const updatedCipher = await this.cipherService.get(cipher.id);
|
2018-10-23 23:31:59 +02:00
|
|
|
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();
|
|
|
|
}
|
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.');
|
2018-10-24 01:04:32 +02:00
|
|
|
}
|
2018-10-23 23:31:59 +02:00
|
|
|
|
|
|
|
cipher.collectionIds = req;
|
|
|
|
try {
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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();
|
|
|
|
}
|
|
|
|
|
|
|
|
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);
|
|
|
|
try {
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|
2019-10-01 17:16:24 +02:00
|
|
|
|
|
|
|
private async editOrganizationCollection(id: string, req: OrganizationCollectionRequest, cmd: program.Command) {
|
|
|
|
if (cmd.organizationid == null || cmd.organizationid === '') {
|
|
|
|
return Response.badRequest('--organizationid <organizationid> required.');
|
|
|
|
}
|
|
|
|
if (!Utils.isGuid(id)) {
|
|
|
|
return Response.error('`' + id + '` is not a GUID.');
|
|
|
|
}
|
|
|
|
if (!Utils.isGuid(cmd.organizationid)) {
|
|
|
|
return Response.error('`' + cmd.organizationid + '` is not a GUID.');
|
|
|
|
}
|
|
|
|
if (cmd.organizationid !== req.organizationId) {
|
|
|
|
return Response.error('--organizationid <organizationid> 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 :
|
2020-06-17 17:01:34 +02:00
|
|
|
req.groups.map((g) => new SelectionReadOnlyRequest(g.id, g.readOnly, g.hidePasswords));
|
2019-10-01 17:16:24 +02:00
|
|
|
const request = new CollectionRequest();
|
|
|
|
request.name = (await this.cryptoService.encrypt(req.name, orgKey)).encryptedString;
|
|
|
|
request.externalId = req.externalId;
|
|
|
|
request.groups = groups;
|
|
|
|
await this.apiService.putCollection(req.organizationId, id, request);
|
|
|
|
const res = new OrganizationCollectionResponse(Collection.toView(req), groups);
|
|
|
|
return Response.success(res);
|
|
|
|
} catch (e) {
|
|
|
|
return Response.error(e);
|
|
|
|
}
|
|
|
|
}
|
2018-05-15 17:30:56 +02:00
|
|
|
}
|