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

174 lines
7.3 KiB
TypeScript
Raw Normal View History

2018-04-04 09:47:43 -04:00
import { Router } from '@angular/router';
2018-07-03 12:06:01 -04:00
import { KeysRequest } from '../../models/request/keysRequest';
2020-07-20 15:38:56 -04:00
import { ReferenceEventRequest } from '../../models/request/referenceEventRequest';
2018-07-03 12:06:01 -04:00
import { RegisterRequest } from '../../models/request/registerRequest';
2018-04-04 09:47:43 -04:00
import { ApiService } from '../../abstractions/api.service';
import { AuthService } from '../../abstractions/auth.service';
import { CryptoService } from '../../abstractions/crypto.service';
import { I18nService } from '../../abstractions/i18n.service';
2018-11-12 22:54:18 -05:00
import { PasswordGenerationService } from '../../abstractions/passwordGeneration.service';
import { PlatformUtilsService } from '../../abstractions/platformUtils.service';
import { StateService } from '../../abstractions/state.service';
2018-04-04 09:47:43 -04:00
2018-08-14 15:12:10 -04:00
import { KdfType } from '../../enums/kdfType';
2018-04-04 09:47:43 -04:00
export class RegisterComponent {
2018-07-03 11:41:55 -04:00
name: string = '';
2018-04-04 09:47:43 -04:00
email: string = '';
masterPassword: string = '';
confirmMasterPassword: string = '';
hint: string = '';
showPassword: boolean = false;
formPromise: Promise<any>;
2018-11-12 22:54:18 -05:00
masterPasswordScore: number;
2020-07-20 15:21:01 -04:00
referenceData: ReferenceEventRequest;
showTerms = true;
acceptPolicies: boolean = false;
2018-04-04 09:47:43 -04:00
protected successRoute = 'login';
2018-11-12 22:54:18 -05:00
private masterPasswordStrengthTimeout: any;
2018-04-04 09:47:43 -04:00
constructor(protected authService: AuthService, protected router: Router,
protected i18nService: I18nService, protected cryptoService: CryptoService,
protected apiService: ApiService, protected stateService: StateService,
2018-11-12 22:54:18 -05:00
protected platformUtilsService: PlatformUtilsService,
protected passwordGenerationService: PasswordGenerationService) {
this.showTerms = !platformUtilsService.isSelfHost();
}
2018-04-04 09:47:43 -04:00
2018-11-15 15:27:04 -05:00
get masterPasswordScoreWidth() {
return this.masterPasswordScore == null ? 0 : (this.masterPasswordScore + 1) * 20;
}
get masterPasswordScoreColor() {
switch (this.masterPasswordScore) {
case 4:
return 'success';
case 3:
return 'primary';
case 2:
return 'warning';
default:
return 'danger';
}
}
get masterPasswordScoreText() {
switch (this.masterPasswordScore) {
case 4:
return this.i18nService.t('strong');
case 3:
return this.i18nService.t('good');
case 2:
return this.i18nService.t('weak');
default:
return this.masterPasswordScore != null ? this.i18nService.t('weak') : null;
}
}
2018-04-04 09:47:43 -04:00
async submit() {
if (!this.acceptPolicies && this.showTerms) {
this.platformUtilsService.showToast('error', this.i18nService.t('errorOccurred'),
this.i18nService.t('acceptPoliciesError'));
return;
}
2018-04-04 09:47:43 -04:00
if (this.email == null || this.email === '') {
2018-10-02 23:09:19 -04:00
this.platformUtilsService.showToast('error', this.i18nService.t('errorOccurred'),
2018-04-04 09:47:43 -04:00
this.i18nService.t('emailRequired'));
return;
}
if (this.email.indexOf('@') === -1) {
2018-10-02 23:09:19 -04:00
this.platformUtilsService.showToast('error', this.i18nService.t('errorOccurred'),
2018-04-04 09:47:43 -04:00
this.i18nService.t('invalidEmail'));
return;
}
if (this.masterPassword == null || this.masterPassword === '') {
2018-10-02 23:09:19 -04:00
this.platformUtilsService.showToast('error', this.i18nService.t('errorOccurred'),
2018-04-04 09:47:43 -04:00
this.i18nService.t('masterPassRequired'));
return;
}
if (this.masterPassword.length < 8) {
2018-10-02 23:09:19 -04:00
this.platformUtilsService.showToast('error', this.i18nService.t('errorOccurred'),
2018-04-04 09:47:43 -04:00
this.i18nService.t('masterPassLength'));
return;
}
if (this.masterPassword !== this.confirmMasterPassword) {
2018-10-02 23:09:19 -04:00
this.platformUtilsService.showToast('error', this.i18nService.t('errorOccurred'),
2018-04-04 09:47:43 -04:00
this.i18nService.t('masterPassDoesntMatch'));
return;
}
2018-11-12 23:22:37 -05:00
const strengthResult = this.passwordGenerationService.passwordStrength(this.masterPassword,
this.getPasswordStrengthUserInput());
2018-11-12 22:54:18 -05:00
if (strengthResult != null && strengthResult.score < 3) {
const result = await this.platformUtilsService.showDialog(this.i18nService.t('weakMasterPasswordDesc'),
this.i18nService.t('weakMasterPassword'), this.i18nService.t('yes'), this.i18nService.t('no'),
'warning');
if (!result) {
return;
}
}
if (this.hint === this.masterPassword) {
this.platformUtilsService.showToast('error', this.i18nService.t('errorOccurred'), this.i18nService.t('hintEqualsPassword'));
return;
}
this.name = this.name === '' ? null : this.name;
this.email = this.email.trim().toLowerCase();
2018-08-27 19:58:49 -04:00
const kdf = KdfType.PBKDF2_SHA256;
const useLowerKdf = this.platformUtilsService.isIE();
const kdfIterations = useLowerKdf ? 10000 : 100000;
2018-08-14 15:12:10 -04:00
const key = await this.cryptoService.makeKey(this.masterPassword, this.email, kdf, kdfIterations);
2018-07-03 11:41:55 -04:00
const encKey = await this.cryptoService.makeEncKey(key);
const hashedPassword = await this.cryptoService.hashPassword(this.masterPassword, key);
const keys = await this.cryptoService.makeKeyPair(encKey[0]);
const request = new RegisterRequest(this.email, this.name, hashedPassword,
2020-07-17 16:05:58 -04:00
this.hint, encKey[1].encryptedString, kdf, kdfIterations, this.referenceData);
2018-07-03 12:06:01 -04:00
request.keys = new KeysRequest(keys[0], keys[1].encryptedString);
const orgInvite = await this.stateService.get<any>('orgInvitation');
if (orgInvite != null && orgInvite.token != null && orgInvite.organizationUserId != null) {
request.token = orgInvite.token;
request.organizationUserId = orgInvite.organizationUserId;
}
2018-07-03 11:41:55 -04:00
2018-04-04 09:47:43 -04:00
try {
2018-07-03 11:41:55 -04:00
this.formPromise = this.apiService.postRegister(request);
2018-04-04 09:47:43 -04:00
await this.formPromise;
2018-10-02 23:09:19 -04:00
this.platformUtilsService.showToast('success', null, this.i18nService.t('newAccountCreated'));
2018-07-13 10:44:47 -04:00
this.router.navigate([this.successRoute], { queryParams: { email: this.email } });
2018-04-04 09:47:43 -04:00
} catch { }
}
togglePassword(confirmField: boolean) {
this.showPassword = !this.showPassword;
document.getElementById(confirmField ? 'masterPasswordRetype' : 'masterPassword').focus();
}
2018-11-12 22:54:18 -05:00
updatePasswordStrength() {
if (this.masterPasswordStrengthTimeout != null) {
clearTimeout(this.masterPasswordStrengthTimeout);
}
this.masterPasswordStrengthTimeout = setTimeout(() => {
2018-11-12 23:22:37 -05:00
const strengthResult = this.passwordGenerationService.passwordStrength(this.masterPassword,
this.getPasswordStrengthUserInput());
2018-11-12 22:54:18 -05:00
this.masterPasswordScore = strengthResult == null ? null : strengthResult.score;
}, 300);
}
2018-11-12 23:22:37 -05:00
private getPasswordStrengthUserInput() {
let userInput: string[] = [];
const atPosition = this.email.indexOf('@');
if (atPosition > -1) {
userInput = userInput.concat(this.email.substr(0, atPosition).trim().toLowerCase().split(/[^A-Za-z0-9]/));
}
if (this.name != null && this.name !== '') {
userInput = userInput.concat(this.name.trim().toLowerCase().split(' '));
}
return userInput;
}
2018-04-04 09:47:43 -04:00
}