bitwarden-browser/libs/angular/src/components/register.component.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

249 lines
7.8 KiB
TypeScript
Raw Normal View History

import { Directive, OnInit } from "@angular/core";
2018-04-04 15:47:43 +02:00
import { Router } from "@angular/router";
2022-06-14 17:10:53 +02:00
import { ApiService } from "@bitwarden/common/abstractions/api.service";
import { AuthService } from "@bitwarden/common/abstractions/auth.service";
import { CryptoService } from "@bitwarden/common/abstractions/crypto.service";
import { EnvironmentService } from "@bitwarden/common/abstractions/environment.service";
import { I18nService } from "@bitwarden/common/abstractions/i18n.service";
import { LogService } from "@bitwarden/common/abstractions/log.service";
import { PasswordGenerationService } from "@bitwarden/common/abstractions/passwordGeneration.service";
import { PlatformUtilsService } from "@bitwarden/common/abstractions/platformUtils.service";
import { StateService } from "@bitwarden/common/abstractions/state.service";
import { DEFAULT_KDF_ITERATIONS, DEFAULT_KDF_TYPE } from "@bitwarden/common/enums/kdfType";
import { KeysRequest } from "@bitwarden/common/models/request/keysRequest";
import { ReferenceEventRequest } from "@bitwarden/common/models/request/referenceEventRequest";
import { RegisterRequest } from "@bitwarden/common/models/request/registerRequest";
2018-08-14 21:12:10 +02:00
import { CaptchaProtectedComponent } from "./captchaProtected.component";
@Directive()
export class RegisterComponent extends CaptchaProtectedComponent implements OnInit {
2022-02-22 15:39:11 +01:00
name = "";
email = "";
masterPassword = "";
confirmMasterPassword = "";
hint = "";
showPassword = false;
2018-04-04 15:47:43 +02:00
formPromise: Promise<any>;
2018-11-13 04:54:18 +01:00
masterPasswordScore: number;
2020-07-20 21:21:01 +02:00
referenceData: ReferenceEventRequest;
showTerms = true;
2022-02-22 15:39:11 +01:00
acceptPolicies = false;
2021-12-16 13:36:21 +01:00
2018-04-04 15:47:43 +02:00
protected successRoute = "login";
2018-11-13 04:54:18 +01:00
private masterPasswordStrengthTimeout: any;
2021-12-16 13:36:21 +01:00
2018-04-04 15:47:43 +02:00
constructor(
protected authService: AuthService,
protected router: Router,
i18nService: I18nService,
protected cryptoService: CryptoService,
protected apiService: ApiService,
protected stateService: StateService,
platformUtilsService: PlatformUtilsService,
protected passwordGenerationService: PasswordGenerationService,
environmentService: EnvironmentService,
protected logService: LogService
) {
super(environmentService, i18nService, platformUtilsService);
this.showTerms = !platformUtilsService.isSelfHost();
2021-12-16 13:36:21 +01:00
}
async ngOnInit() {
this.setupCaptcha();
2021-12-16 13:36:21 +01:00
}
2018-11-15 21:27:04 +01:00
get masterPasswordScoreWidth() {
return this.masterPasswordScore == null ? 0 : (this.masterPasswordScore + 1) * 20;
2021-12-16 13:36:21 +01:00
}
2018-11-15 21:27:04 +01:00
get masterPasswordScoreColor() {
switch (this.masterPasswordScore) {
2021-12-16 13:36:21 +01:00
case 4:
2018-11-15 21:27:04 +01:00
return "success";
2021-12-16 13:36:21 +01:00
case 3:
2018-11-15 21:27:04 +01:00
return "primary";
2021-12-16 13:36:21 +01:00
case 2:
2018-11-15 21:27:04 +01:00
return "warning";
2021-12-16 13:36:21 +01:00
default:
2018-11-15 21:27:04 +01:00
return "danger";
}
2021-12-16 13:36:21 +01:00
}
get masterPasswordScoreText() {
switch (this.masterPasswordScore) {
2021-12-16 13:36:21 +01:00
case 4:
return this.i18nService.t("strong");
2021-12-16 13:36:21 +01:00
case 3:
return this.i18nService.t("good");
case 2:
return this.i18nService.t("weak");
2021-12-16 13:36:21 +01:00
default:
2018-11-15 21:27:04 +01:00
return this.masterPasswordScore != null ? this.i18nService.t("weak") : null;
}
2021-12-16 13:36:21 +01:00
}
2018-11-15 21:27:04 +01:00
async submit() {
if (!this.acceptPolicies && this.showTerms) {
this.platformUtilsService.showToast(
"error",
this.i18nService.t("errorOccurred"),
this.i18nService.t("acceptPoliciesError")
2021-12-16 13:36:21 +01:00
);
2018-11-15 21:27:04 +01:00
return;
}
if (this.email == null || this.email === "") {
this.platformUtilsService.showToast(
"error",
this.i18nService.t("errorOccurred"),
this.i18nService.t("emailRequired")
);
return;
}
if (this.email.indexOf("@") === -1) {
this.platformUtilsService.showToast(
2021-12-16 13:36:21 +01:00
"error",
2018-11-15 21:27:04 +01:00
this.i18nService.t("errorOccurred"),
2018-04-04 15:47:43 +02:00
this.i18nService.t("invalidEmail")
2021-12-16 13:36:21 +01:00
);
2018-11-15 21:27:04 +01:00
return;
2021-12-16 13:36:21 +01:00
}
2018-11-15 21:27:04 +01:00
if (this.masterPassword == null || this.masterPassword === "") {
this.platformUtilsService.showToast(
2021-12-16 13:36:21 +01:00
"error",
2018-11-15 21:27:04 +01:00
this.i18nService.t("errorOccurred"),
this.i18nService.t("masterPassRequired")
2021-12-16 13:36:21 +01:00
);
return;
}
2018-04-04 15:47:43 +02:00
if (this.masterPassword.length < 8) {
this.platformUtilsService.showToast(
2021-12-16 13:36:21 +01:00
"error",
this.i18nService.t("errorOccurred"),
2018-04-04 15:47:43 +02:00
this.i18nService.t("masterPassLength")
2021-12-16 13:36:21 +01:00
);
2018-11-15 21:27:04 +01:00
return;
2021-12-16 13:36:21 +01:00
}
2018-11-15 21:27:04 +01:00
if (this.masterPassword !== this.confirmMasterPassword) {
this.platformUtilsService.showToast(
2021-12-16 13:36:21 +01:00
"error",
this.i18nService.t("errorOccurred"),
2018-04-04 15:47:43 +02:00
this.i18nService.t("masterPassDoesntMatch")
2021-12-16 13:36:21 +01:00
);
return;
2018-11-15 21:27:04 +01:00
}
const strengthResult = this.passwordGenerationService.passwordStrength(
2018-10-03 05:09:19 +02:00
this.masterPassword,
this.getPasswordStrengthUserInput()
2018-04-04 15:47:43 +02:00
);
if (strengthResult != null && strengthResult.score < 3) {
2018-10-03 05:09:19 +02:00
const result = await this.platformUtilsService.showDialog(
2018-11-13 04:54:18 +01:00
this.i18nService.t("weakMasterPasswordDesc"),
this.i18nService.t("weakMasterPassword"),
this.i18nService.t("yes"),
this.i18nService.t("no"),
"warning"
);
if (!result) {
return;
2021-12-16 13:36:21 +01:00
}
}
2018-07-03 17:41:55 +02:00
if (this.hint === this.masterPassword) {
2018-10-03 05:09:19 +02:00
this.platformUtilsService.showToast(
"error",
this.i18nService.t("errorOccurred"),
this.i18nService.t("hintEqualsPassword")
2018-07-13 16:44:47 +02:00
);
return;
2018-04-04 15:47:43 +02:00
}
this.name = this.name === "" ? null : this.name;
this.email = this.email.trim().toLowerCase();
2022-03-24 10:42:11 +01:00
const kdf = DEFAULT_KDF_TYPE;
const kdfIterations = DEFAULT_KDF_ITERATIONS;
2018-08-14 21:12:10 +02:00
const key = await this.cryptoService.makeKey(
2018-04-04 15:47:43 +02:00
this.masterPassword,
this.email,
2021-12-16 13:36:21 +01:00
kdf,
2018-04-04 15:47:43 +02:00
kdfIterations
2021-12-16 13:36:21 +01:00
);
2018-04-04 15:47:43 +02: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]);
2018-07-03 17:41:55 +02:00
const request = new RegisterRequest(
this.email,
2018-04-04 15:47:43 +02:00
this.name,
2018-07-03 17:41:55 +02:00
hashedPassword,
2018-04-04 15:47:43 +02:00
this.hint,
encKey[1].encryptedString,
2021-12-16 13:36:21 +01:00
kdf,
kdfIterations,
this.referenceData,
this.captchaToken
2021-12-16 13:36:21 +01:00
);
2018-04-04 15:47:43 +02:00
request.keys = new KeysRequest(keys[0], keys[1].encryptedString);
const orgInvite = await this.stateService.getOrganizationInvitation();
if (orgInvite != null && orgInvite.token != null && orgInvite.organizationUserId != null) {
request.token = orgInvite.token;
request.organizationUserId = orgInvite.organizationUserId;
2018-04-04 15:47:43 +02:00
}
2018-11-13 04:54:18 +01:00
try {
this.formPromise = this.apiService.postRegister(request);
2021-12-16 13:36:21 +01:00
try {
2018-11-13 04:54:18 +01:00
await this.formPromise;
} catch (e) {
2018-11-13 04:54:18 +01:00
if (this.handleCaptchaRequired(e)) {
return;
2021-12-16 13:36:21 +01:00
} else {
2018-11-13 04:54:18 +01:00
throw e;
}
2021-12-16 13:36:21 +01:00
}
2018-11-13 05:22:37 +01:00
this.platformUtilsService.showToast("success", null, this.i18nService.t("newAccountCreated"));
2018-11-13 04:54:18 +01:00
this.router.navigate([this.successRoute], { queryParams: { email: this.email } });
} catch (e) {
this.logService.error(e);
}
2021-12-16 13:36:21 +01:00
}
2018-11-13 05:22:37 +01:00
2018-04-04 15:47:43 +02:00
togglePassword(confirmField: boolean) {
2018-07-03 17:41:55 +02:00
this.showPassword = !this.showPassword;
2018-04-04 15:47:43 +02:00
document.getElementById(confirmField ? "masterPasswordRetype" : "masterPassword").focus();
2021-12-16 13:36:21 +01:00
}
2018-11-13 04:54:18 +01:00
updatePasswordStrength() {
if (this.masterPasswordStrengthTimeout != null) {
clearTimeout(this.masterPasswordStrengthTimeout);
2021-12-16 13:36:21 +01:00
}
2018-11-13 04:54:18 +01:00
this.masterPasswordStrengthTimeout = setTimeout(() => {
2018-11-13 05:22:37 +01:00
const strengthResult = this.passwordGenerationService.passwordStrength(
2018-07-03 17:41:55 +02:00
this.masterPassword,
2018-11-13 05:22:37 +01:00
this.getPasswordStrengthUserInput()
2021-12-16 13:36:21 +01:00
);
2018-11-13 04:54:18 +01:00
this.masterPasswordScore = strengthResult == null ? null : strengthResult.score;
2021-12-16 13:36:21 +01:00
}, 300);
}
2018-11-13 05:22:37 +01: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;
2021-12-16 13:36:21 +01:00
}
2018-04-04 15:47:43 +02:00
}