import { AccountImage } from "./AccountImage"; /** * User information * * @author Pierre HUBERT */ export enum UserPageStatus { PRIVATE, PUBLIC, OPEN } export interface UserInfo { id: number, firstName: string, lastName: string, timeCreate: number, virtualDirectory: string, pageStatus: UserPageStatus, accountImage: AccountImage, friendsListPublic: boolean, personnalWebsite ?: string, publicNote ?: string, blockComments : boolean, allowPostsFromFriends: boolean, } export interface SecuritySettings { id: number, security_question_1 ?: string, security_answer_1 ?: string, security_question_2 ?: string, security_answer_2 ?: string } export interface UserBuilder extends UserInfo, SecuritySettings { } export class User implements UserBuilder { id: number; firstName: string; lastName: string; timeCreate: number; virtualDirectory: string; pageStatus: UserPageStatus; accountImage: AccountImage; friendsListPublic: boolean; personnalWebsite?: string; publicNote?: string; blockComments: boolean; allowPostsFromFriends: boolean; security_question_1?: string; security_answer_1?: string; security_question_2?: string; security_answer_2?: string; public constructor(info : UserBuilder) { for (const key in info) { if (info.hasOwnProperty(key)) { this[key] = info[key]; } } } get hasWebsite() : boolean { return this.personnalWebsite && this.personnalWebsite != null && this.personnalWebsite.length > 0 && this.personnalWebsite != "null" } get hasPublicNote() : boolean { return this.publicNote && this.publicNote != null && this.publicNote.length > 0 && this.publicNote != "null" } get hasSecurityQuestion1() : boolean { return this.security_question_1 != null && this.security_question_1 && this.security_question_1.length > 0; } get hasSecurityAnswer1() : boolean { return this.security_answer_1 != null && this.security_answer_1 && this.security_answer_1.length > 0; } get hasSecurityQuestion2() : boolean { return this.security_question_2 != null && this.security_question_2 != null && this.security_question_2 && this.security_question_2.length > 0; } get hasSecurityAnswer2() : boolean { return this.security_answer_2 != null && this.security_answer_2 && this.security_answer_2.length > 0; } get hasSecurityQuestions() : boolean { return (this.hasSecurityQuestion1 && this.hasSecurityAnswer1 && this.hasSecurityQuestion2 && this.hasSecurityAnswer2) == true; } }