File

src/app/models/multifactor.model.ts

Index

Properties
Methods
Accessors

Constructor

constructor(session?: Session)
Parameters :
Name Type Optional
session Session Yes

Properties

allowsEmailMfa
Type : boolean
emailAddress
Type : string
hasGoogleAuth
Type : boolean
phoneNumbers
Type : Phone[]

Methods

Private isEmailValid
isEmailValid()
Returns : boolean
Private isPhoneNumbersValid
isPhoneNumbersValid()
Returns : boolean

Accessors

isValid
getisValid()
import { Session } from '.';
import { Phone } from './phone.model';

export class MultiFactorModel {
  emailAddress: string;
  phoneNumbers: Phone[];
  hasGoogleAuth: boolean;
  allowsEmailMfa: boolean;

  constructor(session?: Session) {
    if (!session) {
      return;
    }

    this.emailAddress = session.email ? session.email : null;
    this.phoneNumbers = session.phones ? session.phones : null;
    this.hasGoogleAuth = session.hasGoogleAuth ? session.hasGoogleAuth : null;
    this.allowsEmailMfa = session.allowsEmailMfa != undefined ? session.allowsEmailMfa : true;
  }

  get isValid(): boolean {
    return this.isEmailValid() || this.isPhoneNumbersValid();
  }

  private isEmailValid(): boolean {
    return (
      this.emailAddress !== undefined &&
      this.emailAddress !== null &&
      this.emailAddress.length > 0
    );
  }

  private isPhoneNumbersValid(): boolean {
    return (
      this.phoneNumbers !== undefined &&
      this.phoneNumbers !== null &&
      this.phoneNumbers.length > 0 &&
      this.phoneNumbers[0].number !== undefined &&
      this.phoneNumbers[0].number !== null &&
      this.phoneNumbers[0].number.length > 0
    );
  }
}

results matching ""

    No results matching ""