Files
clients/src/angular/components/login.component.ts

100 lines
3.6 KiB
TypeScript
Raw Normal View History

2018-07-13 09:13:10 -04:00
import {
Input,
OnInit,
} from '@angular/core';
2018-04-04 09:19:21 -04:00
import { Router } from '@angular/router';
import { ToasterService } from 'angular2-toaster';
import { Angulartics2 } from 'angulartics2';
import { AuthResult } from '../../models/domain/authResult';
import { AuthService } from '../../abstractions/auth.service';
import { I18nService } from '../../abstractions/i18n.service';
2018-07-13 09:13:10 -04:00
import { StorageService } from '../../abstractions/storage.service';
2018-04-04 09:19:21 -04:00
2018-07-13 09:31:14 -04:00
import { Utils } from '../../misc/utils';
2018-07-13 09:13:10 -04:00
const Keys = {
rememberedEmail: 'rememberedEmail',
rememberEmail: 'rememberEmail',
};
export class LoginComponent implements OnInit {
2018-04-04 09:19:21 -04:00
@Input() email: string = '';
2018-07-13 09:13:10 -04:00
@Input() rememberEmail = true;
2018-04-04 09:19:21 -04:00
masterPassword: string = '';
showPassword: boolean = false;
formPromise: Promise<AuthResult>;
2018-04-25 12:08:18 -04:00
onSuccessfullLogin: () => Promise<any>;
2018-04-04 09:19:21 -04:00
protected twoFactorRoute = '2fa';
protected successRoute = 'vault';
constructor(protected authService: AuthService, protected router: Router,
protected analytics: Angulartics2, protected toasterService: ToasterService,
2018-07-13 09:13:10 -04:00
protected i18nService: I18nService, private storageService: StorageService) { }
async ngOnInit() {
if (this.email == null || this.email === '') {
this.email = await this.storageService.get<string>(Keys.rememberedEmail);
if (this.email == null) {
this.email = '';
}
}
this.rememberEmail = await this.storageService.get<boolean>(Keys.rememberEmail);
if (this.rememberEmail == null) {
this.rememberEmail = true;
}
if (Utils.isBrowser) {
document.getElementById(this.email == null || this.email === '' ? 'email' : 'masterPassword').focus();
}
2018-07-13 09:13:10 -04:00
}
2018-04-04 09:19:21 -04:00
async submit() {
if (this.email == null || this.email === '') {
this.toasterService.popAsync('error', this.i18nService.t('errorOccurred'),
this.i18nService.t('emailRequired'));
return;
}
if (this.email.indexOf('@') === -1) {
this.toasterService.popAsync('error', this.i18nService.t('errorOccurred'),
this.i18nService.t('invalidEmail'));
return;
}
if (this.masterPassword == null || this.masterPassword === '') {
this.toasterService.popAsync('error', this.i18nService.t('errorOccurred'),
this.i18nService.t('masterPassRequired'));
return;
}
try {
this.formPromise = this.authService.logIn(this.email, this.masterPassword);
const response = await this.formPromise;
2018-07-13 09:13:10 -04:00
await this.storageService.save(Keys.rememberEmail, this.rememberEmail);
if (this.rememberEmail) {
await this.storageService.save(Keys.rememberedEmail, this.email);
} else {
await this.storageService.remove(Keys.rememberedEmail);
}
2018-04-04 09:19:21 -04:00
if (response.twoFactor) {
this.analytics.eventTrack.next({ action: 'Logged In To Two-step' });
this.router.navigate([this.twoFactorRoute]);
} else {
2018-04-25 12:08:18 -04:00
if (this.onSuccessfullLogin != null) {
this.onSuccessfullLogin();
}
2018-04-04 09:19:21 -04:00
this.analytics.eventTrack.next({ action: 'Logged In' });
this.router.navigate([this.successRoute]);
}
} catch { }
}
togglePassword() {
this.analytics.eventTrack.next({ action: 'Toggled Master Password on Login' });
this.showPassword = !this.showPassword;
document.getElementById('masterPassword').focus();
}
}