File

src/services/form-validation-async-factory/form-validation-async-factory.ts

Index

Methods

Constructor

constructor(profileService: ProfileService, commonUtilService: CommonUtilService, popoverCtrl: PopoverController, telemetryGeneratorService: TelemetryGeneratorService)
Parameters :
Name Type Optional
profileService ProfileService No
commonUtilService CommonUtilService No
popoverCtrl PopoverController No
telemetryGeneratorService TelemetryGeneratorService No

Methods

Private Async checkOtpVerification
checkOtpVerification(profile, type: string, key: any)
Parameters :
Name Type Optional
profile No
type string No
key any No
Returns : Promise<boolean>
emailVerificationAsyncFactory
emailVerificationAsyncFactory(formElement: FieldConfig<any>, profile: ServerProfile, initialEmailVal, telemetryData?)
Parameters :
Name Type Optional
formElement FieldConfig<any> No
profile ServerProfile No
initialEmailVal No
telemetryData Yes
Returns : any
Private Async generateAndVerifyOTP
generateAndVerifyOTP(profile, control, type)
Parameters :
Name Optional
profile No
control No
type No
Returns : Promise<boolean>
Private generateTelemetryInteract
generateTelemetryInteract(telemetryData)
Parameters :
Name Optional
telemetryData No
Returns : void
mobileVerificationAsyncFactory
mobileVerificationAsyncFactory(formElement: FieldConfig<any>, profile: ServerProfile, initialMobileVal, telemetryData?)
Parameters :
Name Type Optional
formElement FieldConfig<any> No
profile ServerProfile No
initialMobileVal No
telemetryData Yes
Returns : any
Private Async openContactVerifyPopup
openContactVerifyPopup(component, componentProps, cssClass)
Parameters :
Name Optional
component No
componentProps No
cssClass No
Returns : unknown
import { Inject, Injectable } from '@angular/core';
import { FormControl, ValidationErrors } from '@angular/forms';
import { ProfileConstants } from '@app/app/app.constant';
import { EditContactVerifyPopupComponent } from '@app/app/components/popups/edit-contact-verify-popup/edit-contact-verify-popup.component';
import { PopoverController } from '@ionic/angular';
import { GenerateOtpRequest, ProfileService, ServerProfile } from '@project-sunbird/sunbird-sdk';
import { FieldConfig } from 'common-form-elements';
import { CommonUtilService } from '../common-util.service';
import { TelemetryGeneratorService } from '../telemetry-generator.service';

@Injectable({ providedIn: 'root' })
export class FormValidationAsyncFactory {

  constructor(
    @Inject('PROFILE_SERVICE') private profileService: ProfileService,
    private commonUtilService: CommonUtilService,
    private popoverCtrl: PopoverController,
    private telemetryGeneratorService: TelemetryGeneratorService,
  ) { }

  mobileVerificationAsyncFactory(formElement: FieldConfig<any>, profile: ServerProfile, initialMobileVal, telemetryData?): any {
    return (marker: string, trigger: HTMLElement) => {
      if (marker === 'MOBILE_OTP_VALIDATION') {
        return async (control: FormControl) => {
          if ((control && !control.value) || (initialMobileVal && initialMobileVal === control.value)) {
            return null;
          }
          return new Promise<ValidationErrors | null>(resolve => {
            if (trigger) {
              const that = this;
              trigger.onclick = (async () => {
                if (telemetryData) {
                  this.generateTelemetryInteract(telemetryData);
                }
                try {
                  const isOtpVerified: boolean = await that.generateAndVerifyOTP(profile, control, ProfileConstants.CONTACT_TYPE_PHONE);
                  if (isOtpVerified) {
                    resolve(null);
                  } else {
                    resolve({ asyncValidation: 'error' });
                  }
                } catch (e) {
                  console.log(e);
                }
              }).bind(this);
              return;
            }
            resolve(null);
          });
        };
      }
      return async () => null;
    };
  }

  emailVerificationAsyncFactory(formElement: FieldConfig<any>, profile: ServerProfile, initialEmailVal, telemetryData?): any {
    return (marker: string, trigger: HTMLElement) => {
      if (marker === 'EMAIL_OTP_VALIDATION') {
        return async (control: FormControl) => {
          if ((control && !control.value) || (initialEmailVal && initialEmailVal === control.value)) {
            return null;
          }
          return new Promise<ValidationErrors | null>(resolve => {
            if (trigger) {
              const that = this;
              trigger.onclick = (async () => {
                if (telemetryData) {
                  this.generateTelemetryInteract(telemetryData);
                }
                try {
                  const isOtpVerified: boolean = await that.generateAndVerifyOTP(profile, control, ProfileConstants.CONTACT_TYPE_EMAIL);
                  if (isOtpVerified) {
                    resolve(null);
                  } else {
                    resolve({ asyncValidation: 'error' });
                  }
                } catch (e) {
                  console.error(e);
                }
              }).bind(this);
              return;
            }
            resolve(null);
          });
        };
      }
      return async () => null;
    };
  }

  private async generateAndVerifyOTP(profile, control, type): Promise<boolean> {
    const loader = await this.commonUtilService.getLoader();
    try {
      const req: GenerateOtpRequest = {
        key: control.value,
        type
      };

      await loader.present();
      await this.profileService.generateOTP(req).toPromise();

      await loader.dismiss();

      const isOtpVerified = await this.checkOtpVerification(profile, type, control.value);
      if (isOtpVerified) {
        return true;
      } else {
        return false;
      }
    } catch (e) {
      if (e && e.response && e.response.body && e.response.body.params && e.response.body.params.err &&
        e.response.body.params.err === 'UOS_OTPCRT0059') {
        this.commonUtilService.showToast('ERROR_OTP_LIMIT_EXCEEDED');
      } else if (e.message !== 'CANCEL') {
        this.commonUtilService.showToast('SOMETHING_WENT_WRONG');
      }
      throw e;
    } finally {
      if (loader) {
        await loader.dismiss();
      }
    }
  }

  private async checkOtpVerification(profile, type: string, key: any): Promise<boolean> {
    if (type === ProfileConstants.CONTACT_TYPE_PHONE) {
      const componentProps = {
        key,
        phone: profile.phone,
        title: this.commonUtilService.translateMessage('VERIFY_PHONE_OTP_TITLE'),
        description: this.commonUtilService.translateMessage('VERIFY_PHONE_OTP_DESCRIPTION'),
        type: ProfileConstants.CONTACT_TYPE_PHONE,
        userId: profile.userId
      };

      const data = await this.openContactVerifyPopup(EditContactVerifyPopupComponent, componentProps, 'popover-alert input-focus');
      if (data && data.OTPSuccess) {
        return true;
      } else if (!data || !data.OTPSuccess) {
        throw new Error('CANCEL');
      }
      return false;
    } else {
      const componentProps = {
        key,
        phone: profile.email,
        title: this.commonUtilService.translateMessage('VERIFY_EMAIL_OTP_TITLE'),
        description: this.commonUtilService.translateMessage('VERIFY_EMAIL_OTP_DESCRIPTION'),
        type: ProfileConstants.CONTACT_TYPE_EMAIL,
        userId: profile.userId
      };

      const data = await this.openContactVerifyPopup(EditContactVerifyPopupComponent, componentProps, 'popover-alert input-focus');
      if (data && data.OTPSuccess) {
        return true;
      } else if (!data || !data.OTPSuccess) {
        throw new Error('CANCEL');
      }
      return false;
    }
  }

  private async openContactVerifyPopup(component, componentProps, cssClass) {
    const popover = await this.popoverCtrl.create({ component, componentProps, cssClass });
    await popover.present();
    const { data } = await popover.onDidDismiss();

    return data;
  }

  private generateTelemetryInteract(telemetryData) {
    this.telemetryGeneratorService.generateInteractTelemetry(
      telemetryData.type,
      telemetryData.subType,
      telemetryData.env,
      telemetryData.pageId,
      undefined,
      undefined,
      undefined,
      undefined,
      telemetryData.id
    );
  }

}

results matching ""

    No results matching ""