You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
RTL/src/app/shared/components/settings/auth-settings/auth-settings.component.ts

138 lines
4.8 KiB
TypeScript

import { Component, OnInit, OnDestroy, ViewChild } from '@angular/core';
import { Router } from '@angular/router';
import { Subject } from 'rxjs';
import { takeUntil, filter } from 'rxjs/operators';
import { Store } from '@ngrx/store';
import { Actions } from '@ngrx/effects';
import { faUserLock, faUserClock, faInfoCircle, faLock } from '@fortawesome/free-solid-svg-icons';
import * as sha256 from 'sha256';
import { TwoFactorAuthComponent } from '../../data-modal/two-factor-auth/two-factor-auth.component';
import { RTLConfiguration, ConfigSettingsNode } from '../../../models/RTLconfig';
import { LoggerService } from '../../../services/logger.service';
import * as fromRTLReducer from '../../../../store/rtl.reducers';
import * as RTLActions from '../../../../store/rtl.actions';
@Component({
selector: 'rtl-auth-settings',
templateUrl: './auth-settings.component.html',
styleUrls: ['./auth-settings.component.scss']
})
export class AuthSettingsComponent implements OnInit, OnDestroy {
@ViewChild('authForm', { static: true }) form: any;
public faInfoCircle = faInfoCircle;
public faUserLock = faUserLock;
public faUserClock = faUserClock;
public faLock = faLock;
public currPassword = '';
public newPassword = '';
public confirmPassword = '';
public errorMsg = '';
public errorConfirmMsg = '';
public initializeNodeData = false;
public appConfig: RTLConfiguration;
public selNode: ConfigSettingsNode;
unSubs: Array<Subject<void>> = [new Subject(), new Subject(), new Subject()];
constructor(private store: Store<fromRTLReducer.RTLState>, private logger: LoggerService, private actions$: Actions, private router: Router) {}
ngOnInit() {
this.initializeNodeData = !!history.state.initial;
this.store.select('root')
.pipe(takeUntil(this.unSubs[1]))
.subscribe((rtlStore) => {
this.appConfig = rtlStore.appConfig;
this.selNode = rtlStore.selNode;
this.logger.info(rtlStore);
});
this.actions$.pipe(takeUntil(this.unSubs[2]),
filter((action) => action.type === RTLActions.RESET_PASSWORD_RES))
.subscribe((action: (RTLActions.ResetPasswordRes)) => {
if (this.currPassword.toLowerCase() === 'password') {
switch (this.selNode.lnImplementation.toUpperCase()) {
case 'CLT':
this.router.navigate(['/cl/home']);
break;
case 'ECL':
this.router.navigate(['/ecl/home']);
break;
default:
this.router.navigate(['/lnd/home']);
break;
}
}
this.form.resetForm();
});
}
onChangePassword():boolean|void {
if(!this.currPassword || !this.newPassword || !this.confirmPassword || this.currPassword === this.newPassword || this.newPassword !== this.confirmPassword) { return true; }
this.store.dispatch(new RTLActions.ResetPassword({currPassword: sha256(this.currPassword), newPassword: sha256(this.newPassword)}));
}
matchOldAndNewPasswords(): boolean {
let invalid = false;
if(this.form.controls.newpassword) {
if (!this.newPassword) {
this.form.controls.newpassword.setErrors({invalid: true});
this.errorMsg = 'New password is required.';
invalid = true;
} else if (this.currPassword !== '' && this.newPassword !== '' && this.currPassword === this.newPassword) {
this.form.controls.newpassword.setErrors({invalid: true});
this.errorMsg = 'Old and New password cannot be same.';
invalid = true;
} else {
this.form.controls.newpassword.setErrors(null);
this.errorMsg = '';
invalid = false;
}
}
return invalid;
}
matchNewPasswords(): boolean {
let invalid = false;
if (this.form.controls.confirmpassword) {
if (!this.confirmPassword) {
this.form.controls.confirmpassword.setErrors({invalid: true});
this.errorConfirmMsg = 'Confirm password is required.';
invalid = true;
} else if (this.newPassword !== '' && this.confirmPassword !== '' && this.newPassword !== this.confirmPassword) {
this.form.controls.confirmpassword.setErrors({invalid: true});
this.errorConfirmMsg = 'New and confirm passwords do not match.';
invalid = true;
} else {
this.form.controls.confirmpassword.setErrors(null);
this.errorConfirmMsg = '';
invalid = false;
}
}
return invalid;
}
on2FAuth() {
this.store.dispatch(new RTLActions.OpenAlert({ data: {
appConfig: this.appConfig,
component: TwoFactorAuthComponent
}}));
}
onResetPassword() {
this.form.resetForm();
}
ngOnDestroy() {
if(this.initializeNodeData) {
this.store.dispatch(new RTLActions.SetSelelectedNode({lnNode: this.selNode, isInitialSetup: true}));
}
this.unSubs.forEach(unsub => {
unsub.next();
unsub.complete();
});
}
}