2021-12-16 13:36:21 +01:00
|
|
|
import { Directive, EventEmitter, Input, OnInit, Output } from "@angular/core";
|
2018-04-06 04:21:18 +02:00
|
|
|
|
2021-12-16 13:36:21 +01:00
|
|
|
import { I18nService } from "jslib-common/abstractions/i18n.service";
|
|
|
|
import { PasswordGenerationService } from "jslib-common/abstractions/passwordGeneration.service";
|
|
|
|
import { PlatformUtilsService } from "jslib-common/abstractions/platformUtils.service";
|
2018-04-06 04:21:18 +02:00
|
|
|
|
2021-12-16 13:36:21 +01:00
|
|
|
import { PasswordGeneratorPolicyOptions } from "jslib-common/models/domain/passwordGeneratorPolicyOptions";
|
2020-02-26 23:38:11 +01:00
|
|
|
|
2020-08-17 18:14:40 +02:00
|
|
|
@Directive()
|
2018-04-06 04:21:18 +02:00
|
|
|
export class PasswordGeneratorComponent implements OnInit {
|
2021-12-16 13:36:21 +01:00
|
|
|
@Input() showSelect: boolean = false;
|
|
|
|
@Output() onSelected = new EventEmitter<string>();
|
|
|
|
|
|
|
|
passTypeOptions: any[];
|
|
|
|
options: any = {};
|
|
|
|
password: string = "-";
|
|
|
|
showOptions = false;
|
|
|
|
avoidAmbiguous = false;
|
|
|
|
enforcedPolicyOptions: PasswordGeneratorPolicyOptions;
|
|
|
|
|
|
|
|
constructor(
|
|
|
|
protected passwordGenerationService: PasswordGenerationService,
|
|
|
|
protected platformUtilsService: PlatformUtilsService,
|
|
|
|
protected i18nService: I18nService,
|
|
|
|
private win: Window
|
|
|
|
) {
|
|
|
|
this.passTypeOptions = [
|
|
|
|
{ name: i18nService.t("password"), value: "password" },
|
|
|
|
{ name: i18nService.t("passphrase"), value: "passphrase" },
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
async ngOnInit() {
|
|
|
|
const optionsResponse = await this.passwordGenerationService.getOptions();
|
|
|
|
this.options = optionsResponse[0];
|
|
|
|
this.enforcedPolicyOptions = optionsResponse[1];
|
|
|
|
this.avoidAmbiguous = !this.options.ambiguous;
|
|
|
|
this.options.type = this.options.type === "passphrase" ? "passphrase" : "password";
|
|
|
|
this.password = await this.passwordGenerationService.generatePassword(this.options);
|
|
|
|
await this.passwordGenerationService.addHistory(this.password);
|
|
|
|
}
|
|
|
|
|
|
|
|
async sliderChanged() {
|
|
|
|
this.saveOptions(false);
|
|
|
|
await this.passwordGenerationService.addHistory(this.password);
|
|
|
|
}
|
|
|
|
|
|
|
|
async sliderInput() {
|
|
|
|
this.normalizeOptions();
|
|
|
|
this.password = await this.passwordGenerationService.generatePassword(this.options);
|
|
|
|
}
|
|
|
|
|
|
|
|
async saveOptions(regenerate: boolean = true) {
|
|
|
|
this.normalizeOptions();
|
|
|
|
await this.passwordGenerationService.saveOptions(this.options);
|
|
|
|
|
|
|
|
if (regenerate) {
|
|
|
|
await this.regenerate();
|
2018-04-06 04:21:18 +02:00
|
|
|
}
|
2021-12-16 13:36:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
async regenerate() {
|
|
|
|
this.password = await this.passwordGenerationService.generatePassword(this.options);
|
|
|
|
await this.passwordGenerationService.addHistory(this.password);
|
|
|
|
}
|
|
|
|
|
|
|
|
copy() {
|
|
|
|
const copyOptions = this.win != null ? { window: this.win } : null;
|
|
|
|
this.platformUtilsService.copyToClipboard(this.password, copyOptions);
|
|
|
|
this.platformUtilsService.showToast(
|
|
|
|
"info",
|
|
|
|
null,
|
|
|
|
this.i18nService.t("valueCopied", this.i18nService.t("password"))
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
select() {
|
|
|
|
this.onSelected.emit(this.password);
|
|
|
|
}
|
|
|
|
|
|
|
|
toggleOptions() {
|
|
|
|
this.showOptions = !this.showOptions;
|
|
|
|
}
|
|
|
|
|
|
|
|
private normalizeOptions() {
|
|
|
|
// Application level normalize options depedent on class variables
|
|
|
|
this.options.ambiguous = !this.avoidAmbiguous;
|
|
|
|
|
|
|
|
if (
|
|
|
|
!this.options.uppercase &&
|
|
|
|
!this.options.lowercase &&
|
|
|
|
!this.options.number &&
|
|
|
|
!this.options.special
|
|
|
|
) {
|
|
|
|
this.options.lowercase = true;
|
|
|
|
if (this.win != null) {
|
|
|
|
const lowercase = this.win.document.querySelector("#lowercase") as HTMLInputElement;
|
|
|
|
if (lowercase) {
|
|
|
|
lowercase.checked = true;
|
2018-04-06 04:21:18 +02:00
|
|
|
}
|
2021-12-16 13:36:21 +01:00
|
|
|
}
|
2018-04-06 04:21:18 +02:00
|
|
|
}
|
|
|
|
|
2021-12-16 13:36:21 +01:00
|
|
|
this.passwordGenerationService.normalizeOptions(this.options, this.enforcedPolicyOptions);
|
|
|
|
}
|
2018-04-06 04:21:18 +02:00
|
|
|
}
|