bitwarden-estensione-browser/libs/common/src/models/view/cipherView.ts

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

216 lines
5.6 KiB
TypeScript
Raw Normal View History

2022-06-24 02:38:55 +02:00
import { Utils } from "@bitwarden/common/misc/utils";
2021-04-29 13:31:21 +02:00
import { CipherRepromptType } from "../../enums/cipherRepromptType";
import { CipherType } from "../../enums/cipherType";
import { LinkedIdType } from "../../enums/linkedIdType";
import { Cipher } from "../domain/cipher";
2021-12-16 13:36:21 +01:00
2018-01-24 17:33:15 +01:00
import { AttachmentView } from "./attachmentView";
import { CardView } from "./cardView";
import { FieldView } from "./fieldView";
import { IdentityView } from "./identityView";
import { LoginView } from "./loginView";
2018-07-27 22:44:20 +02:00
import { PasswordHistoryView } from "./passwordHistoryView";
2018-01-24 17:33:15 +01:00
import { SecureNoteView } from "./secureNoteView";
import { View } from "./view";
const serializedProperties: any = {
id: null,
organizationId: null,
folderId: null,
name: null,
notes: null,
type: null,
favorite: null,
organizationUseTotp: null,
edit: null,
viewPassword: null,
localData: null,
collectionIds: null,
reprompt: null,
2022-06-27 23:50:26 +02:00
revisionDate: null,
deletedDate: null,
};
2018-01-24 17:33:15 +01:00
export class CipherView implements View {
2019-01-25 15:30:21 +01:00
id: string = null;
organizationId: string = null;
folderId: string = null;
name: string = null;
notes: string = null;
type: CipherType = null;
2018-06-25 20:15:34 +02:00
favorite = false;
organizationUseTotp = false;
2019-01-25 15:30:21 +01:00
edit = false;
viewPassword = true;
localData: any;
login = new LoginView();
2018-01-24 17:33:15 +01:00
identity = new IdentityView();
card = new CardView();
2018-06-20 05:40:10 +02:00
secureNote = new SecureNoteView();
attachments: AttachmentView[] = null;
2019-01-25 15:30:21 +01:00
fields: FieldView[] = null;
passwordHistory: PasswordHistoryView[] = null;
2018-01-24 17:33:15 +01:00
collectionIds: string[] = null;
2018-07-28 05:37:36 +02:00
revisionDate: Date = null;
deletedDate: Date = null;
2021-07-02 20:53:14 +02:00
reprompt: CipherRepromptType = CipherRepromptType.None;
2021-12-16 13:36:21 +01:00
2018-01-24 22:58:34 +01:00
constructor(c?: Cipher) {
2018-01-24 19:27:32 +01:00
if (!c) {
return;
2018-01-24 17:33:15 +01:00
}
2018-01-25 05:27:04 +01:00
2018-01-24 17:33:15 +01:00
this.id = c.id;
this.organizationId = c.organizationId;
this.folderId = c.folderId;
this.favorite = c.favorite;
2018-06-20 05:40:10 +02:00
this.organizationUseTotp = c.organizationUseTotp;
this.edit = c.edit;
2018-07-28 05:37:36 +02:00
this.viewPassword = c.viewPassword;
2018-01-24 17:33:15 +01:00
this.type = c.type;
this.localData = c.localData;
this.collectionIds = c.collectionIds;
2018-07-31 04:01:21 +02:00
this.revisionDate = c.revisionDate;
this.deletedDate = c.deletedDate;
// Old locally stored ciphers might have reprompt == null. If so set it to None.
this.reprompt = c.reprompt ?? CipherRepromptType.None;
2021-12-16 13:36:21 +01:00
}
private get item() {
2018-01-24 22:58:34 +01:00
switch (this.type) {
case CipherType.Login:
2018-07-31 04:01:21 +02:00
return this.login;
2018-01-24 22:58:34 +01:00
case CipherType.SecureNote:
return this.secureNote;
2018-01-24 22:58:34 +01:00
case CipherType.Card:
return this.card;
case CipherType.Identity:
return this.identity;
2021-12-16 13:36:21 +01:00
default:
break;
}
2018-07-27 22:44:20 +02:00
return null;
}
2018-01-25 05:27:04 +01:00
get subTitle(): string {
return this.item.subTitle;
}
get hasPasswordHistory(): boolean {
return this.passwordHistory && this.passwordHistory.length > 0;
}
2018-01-25 05:27:04 +01:00
get hasAttachments(): boolean {
return this.attachments && this.attachments.length > 0;
}
2018-07-28 05:37:36 +02:00
get hasOldAttachments(): boolean {
if (this.hasAttachments) {
2019-01-25 15:30:21 +01:00
for (let i = 0; i < this.attachments.length; i++) {
if (this.attachments[i].key == null) {
2018-07-28 05:37:36 +02:00
return true;
}
2021-12-16 13:36:21 +01:00
}
2018-07-28 05:37:36 +02:00
}
return false;
2021-12-16 13:36:21 +01:00
}
get hasFields(): boolean {
return this.fields && this.fields.length > 0;
2021-12-16 13:36:21 +01:00
}
get passwordRevisionDisplayDate(): Date {
if (this.type !== CipherType.Login || this.login == null) {
return null;
2018-07-28 05:37:36 +02:00
} else if (this.login.password == null || this.login.password === "") {
return null;
}
2018-07-31 04:01:21 +02:00
return this.login.passwordRevisionDate;
2021-12-16 13:36:21 +01:00
}
get isDeleted(): boolean {
return this.deletedDate != null;
}
get linkedFieldOptions() {
return this.item.linkedFieldOptions;
}
linkedFieldValue(id: LinkedIdType) {
const linkedFieldOption = this.linkedFieldOptions?.get(id);
if (linkedFieldOption == null) {
return null;
}
const item = this.item;
return this.item[linkedFieldOption.propertyKey as keyof typeof item];
2021-12-16 13:36:21 +01:00
}
linkedFieldI18nKey(id: LinkedIdType): string {
return this.linkedFieldOptions.get(id)?.i18nKey;
}
2022-06-24 02:38:55 +02:00
2022-06-27 23:50:26 +02:00
toJSON() {
const obj = Utils.copyToNewObject(this, {
attachments: null,
fields: null,
passwordHistory: null,
...serializedProperties,
});
2022-06-24 02:38:55 +02:00
switch (this.type) {
case CipherType.Card:
obj.card = JSON.stringify(this.card);
break;
case CipherType.Identity:
obj.identity = JSON.stringify(this.identity);
2022-06-24 02:38:55 +02:00
break;
case CipherType.Login:
obj.login = JSON.stringify(this.login);
2022-06-24 02:38:55 +02:00
break;
case CipherType.SecureNote:
obj.secureNote = JSON.stringify(this.secureNote);
break;
default:
break;
}
2022-06-27 23:50:26 +02:00
return obj;
2022-06-24 02:38:55 +02:00
}
static fromJSON(obj: any): CipherView {
const view = Utils.copyToNewObject(obj, serializedProperties, CipherView);
2022-06-24 02:38:55 +02:00
// Dates
view.revisionDate = obj.revisionDate == null ? null : new Date(obj.revisionDate);
view.deletedDate = obj.deletedDate == null ? null : new Date(obj.deletedDate);
2022-06-24 02:38:55 +02:00
// Nested objects
view.attachments = obj.attachments?.map((a: any) => AttachmentView.fromJSON(a));
view.fields = obj.fields?.map((f: any) => FieldView.fromJSON(f));
view.passwordHistory = obj.passwordHistory?.map((ph: any) => PasswordHistoryView.fromJSON(ph));
switch (view.type) {
case CipherType.Card:
view.card = CardView.fromJSON(obj.card);
break;
case CipherType.Identity:
view.identity = IdentityView.fromJSON(obj.identity);
2022-06-24 02:38:55 +02:00
break;
case CipherType.Login:
view.login = LoginView.fromJSON(obj.login);
2022-06-24 02:38:55 +02:00
break;
case CipherType.SecureNote:
view.secureNote = SecureNoteView.fromJSON(obj.secureNote);
break;
default:
break;
}
return view;
}
2018-01-24 17:33:15 +01:00
}