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.

135 lines
3.6 KiB
TypeScript
Raw Normal View History

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";
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;
}
2018-01-24 17:33:15 +01:00
}