mirror of
https://github.com/bitwarden/browser
synced 2025-12-12 06:13:38 +00:00
* credential generator browser ui * switch browser generate screen to extension refresh flag * consolidate generator components into module * add `@bitwarden/generator-components` readme * normalize generator component rx subscriptions
262 lines
9.0 KiB
TypeScript
262 lines
9.0 KiB
TypeScript
import { OnInit, Input, Output, EventEmitter, Component, OnDestroy } from "@angular/core";
|
|
import { FormBuilder } from "@angular/forms";
|
|
import { BehaviorSubject, takeUntil, Subject, map, filter, tap, debounceTime, skip } from "rxjs";
|
|
|
|
import { AccountService } from "@bitwarden/common/auth/abstractions/account.service";
|
|
import { UserId } from "@bitwarden/common/types/guid";
|
|
import {
|
|
Generators,
|
|
CredentialGeneratorService,
|
|
PasswordGenerationOptions,
|
|
} from "@bitwarden/generator-core";
|
|
|
|
import { completeOnAccountSwitch, toValidators } from "./util";
|
|
|
|
const Controls = Object.freeze({
|
|
length: "length",
|
|
uppercase: "uppercase",
|
|
lowercase: "lowercase",
|
|
number: "number",
|
|
special: "special",
|
|
minNumber: "minNumber",
|
|
minSpecial: "minSpecial",
|
|
avoidAmbiguous: "avoidAmbiguous",
|
|
});
|
|
|
|
/** Options group for passwords */
|
|
@Component({
|
|
selector: "tools-password-settings",
|
|
templateUrl: "password-settings.component.html",
|
|
})
|
|
export class PasswordSettingsComponent implements OnInit, OnDestroy {
|
|
/** Instantiates the component
|
|
* @param accountService queries user availability
|
|
* @param generatorService settings and policy logic
|
|
* @param formBuilder reactive form controls
|
|
*/
|
|
constructor(
|
|
private formBuilder: FormBuilder,
|
|
private generatorService: CredentialGeneratorService,
|
|
private accountService: AccountService,
|
|
) {}
|
|
|
|
/** Binds the password component to a specific user's settings.
|
|
* When this input is not provided, the form binds to the active
|
|
* user
|
|
*/
|
|
@Input()
|
|
userId: UserId | null;
|
|
|
|
/** When `true`, an options header is displayed by the component. Otherwise, the header is hidden. */
|
|
@Input()
|
|
showHeader: boolean = true;
|
|
|
|
/** Number of milliseconds to wait before accepting user input. */
|
|
@Input()
|
|
waitMs: number = 100;
|
|
|
|
/** Emits settings updates and completes if the settings become unavailable.
|
|
* @remarks this does not emit the initial settings. If you would like
|
|
* to receive live settings updates including the initial update,
|
|
* use `CredentialGeneratorService.settings$(...)` instead.
|
|
*/
|
|
@Output()
|
|
readonly onUpdated = new EventEmitter<PasswordGenerationOptions>();
|
|
|
|
protected settings = this.formBuilder.group({
|
|
[Controls.length]: [Generators.password.settings.initial.length],
|
|
[Controls.uppercase]: [Generators.password.settings.initial.uppercase],
|
|
[Controls.lowercase]: [Generators.password.settings.initial.lowercase],
|
|
[Controls.number]: [Generators.password.settings.initial.number],
|
|
[Controls.special]: [Generators.password.settings.initial.special],
|
|
[Controls.minNumber]: [Generators.password.settings.initial.minNumber],
|
|
[Controls.minSpecial]: [Generators.password.settings.initial.minSpecial],
|
|
[Controls.avoidAmbiguous]: [!Generators.password.settings.initial.ambiguous],
|
|
});
|
|
|
|
private get numbers() {
|
|
return this.settings.get(Controls.number);
|
|
}
|
|
|
|
private get special() {
|
|
return this.settings.get(Controls.special);
|
|
}
|
|
|
|
private get minNumber() {
|
|
return this.settings.get(Controls.minNumber);
|
|
}
|
|
|
|
private get minSpecial() {
|
|
return this.settings.get(Controls.minSpecial);
|
|
}
|
|
|
|
async ngOnInit() {
|
|
const singleUserId$ = this.singleUserId$();
|
|
const settings = await this.generatorService.settings(Generators.password, { singleUserId$ });
|
|
|
|
// bind settings to the UI
|
|
settings
|
|
.pipe(
|
|
map((settings) => {
|
|
// interface is "avoid" while storage is "include"
|
|
const s: any = { ...settings };
|
|
s.avoidAmbiguous = s.ambiguous;
|
|
delete s.ambiguous;
|
|
return s;
|
|
}),
|
|
takeUntil(this.destroyed$),
|
|
)
|
|
.subscribe((s) => {
|
|
// skips reactive event emissions to break a subscription cycle
|
|
this.settings.patchValue(s, { emitEvent: false });
|
|
});
|
|
|
|
// bind policy to the template
|
|
this.generatorService
|
|
.policy$(Generators.password, { userId$: singleUserId$ })
|
|
.pipe(takeUntil(this.destroyed$))
|
|
.subscribe(({ constraints }) => {
|
|
this.settings
|
|
.get(Controls.length)
|
|
.setValidators(toValidators(Controls.length, Generators.password, constraints));
|
|
|
|
this.minNumber.setValidators(
|
|
toValidators(Controls.minNumber, Generators.password, constraints),
|
|
);
|
|
|
|
this.minSpecial.setValidators(
|
|
toValidators(Controls.minSpecial, Generators.password, constraints),
|
|
);
|
|
|
|
// forward word boundaries to the template (can't do it through the rx form)
|
|
this.minLength = constraints.length.min;
|
|
this.maxLength = constraints.length.max;
|
|
this.minMinNumber = constraints.minNumber.min;
|
|
this.maxMinNumber = constraints.minNumber.max;
|
|
this.minMinSpecial = constraints.minSpecial.min;
|
|
this.maxMinSpecial = constraints.minSpecial.max;
|
|
|
|
this.policyInEffect = constraints.policyInEffect;
|
|
|
|
const toggles = [
|
|
[Controls.length, constraints.length.min < constraints.length.max],
|
|
[Controls.uppercase, !constraints.uppercase?.readonly],
|
|
[Controls.lowercase, !constraints.lowercase?.readonly],
|
|
[Controls.number, !constraints.number?.readonly],
|
|
[Controls.special, !constraints.special?.readonly],
|
|
[Controls.minNumber, constraints.minNumber.min < constraints.minNumber.max],
|
|
[Controls.minSpecial, constraints.minSpecial.min < constraints.minSpecial.max],
|
|
] as [keyof typeof Controls, boolean][];
|
|
|
|
for (const [control, enabled] of toggles) {
|
|
this.toggleEnabled(control, enabled);
|
|
}
|
|
});
|
|
|
|
// cascade selections between checkboxes and spinboxes
|
|
// before the group saves their values
|
|
let lastMinNumber = 1;
|
|
this.numbers.valueChanges
|
|
.pipe(
|
|
filter((checked) => !(checked && this.minNumber.value > 0)),
|
|
map((checked) => (checked ? lastMinNumber : 0)),
|
|
takeUntil(this.destroyed$),
|
|
)
|
|
.subscribe((value) => this.minNumber.setValue(value, { emitEvent: false }));
|
|
|
|
this.minNumber.valueChanges
|
|
.pipe(
|
|
map((value) => [value, value > 0] as const),
|
|
tap(([value]) => (lastMinNumber = this.numbers.value ? value : lastMinNumber)),
|
|
takeUntil(this.destroyed$),
|
|
)
|
|
.subscribe(([, checked]) => this.numbers.setValue(checked, { emitEvent: false }));
|
|
|
|
let lastMinSpecial = 1;
|
|
this.special.valueChanges
|
|
.pipe(
|
|
filter((checked) => !(checked && this.minSpecial.value > 0)),
|
|
map((checked) => (checked ? lastMinSpecial : 0)),
|
|
takeUntil(this.destroyed$),
|
|
)
|
|
.subscribe((value) => this.minSpecial.setValue(value, { emitEvent: false }));
|
|
|
|
this.minSpecial.valueChanges
|
|
.pipe(
|
|
map((value) => [value, value > 0] as const),
|
|
tap(([value]) => (lastMinSpecial = this.special.value ? value : lastMinSpecial)),
|
|
takeUntil(this.destroyed$),
|
|
)
|
|
.subscribe(([, checked]) => this.special.setValue(checked, { emitEvent: false }));
|
|
|
|
// `onUpdated` depends on `settings` because the UserStateSubject is asynchronous;
|
|
// subscribing directly to `this.settings.valueChanges` introduces a race condition.
|
|
// skip the first emission because it's the initial value, not an update.
|
|
settings.pipe(skip(1), takeUntil(this.destroyed$)).subscribe(this.onUpdated);
|
|
|
|
// now that outputs are set up, connect inputs
|
|
this.settings.valueChanges
|
|
.pipe(
|
|
// debounce ensures rapid edits to a field, such as partial edits to a
|
|
// spinbox or rapid button clicks don't emit spurious generator updates
|
|
debounceTime(this.waitMs),
|
|
map((settings) => {
|
|
// interface is "avoid" while storage is "include"
|
|
const s: any = { ...settings };
|
|
s.ambiguous = s.avoidAmbiguous;
|
|
delete s.avoidAmbiguous;
|
|
return s;
|
|
}),
|
|
takeUntil(this.destroyed$),
|
|
)
|
|
.subscribe(settings);
|
|
}
|
|
|
|
/** attribute binding for length[min] */
|
|
protected minLength: number;
|
|
|
|
/** attribute binding for length[max] */
|
|
protected maxLength: number;
|
|
|
|
/** attribute binding for minNumber[min] */
|
|
protected minMinNumber: number;
|
|
|
|
/** attribute binding for minNumber[max] */
|
|
protected maxMinNumber: number;
|
|
|
|
/** attribute binding for minSpecial[min] */
|
|
protected minMinSpecial: number;
|
|
|
|
/** attribute binding for minSpecial[max] */
|
|
protected maxMinSpecial: number;
|
|
|
|
/** display binding for enterprise policy notice */
|
|
protected policyInEffect: boolean;
|
|
|
|
private toggleEnabled(setting: keyof typeof Controls, enabled: boolean) {
|
|
if (enabled) {
|
|
this.settings.get(setting).enable({ emitEvent: false });
|
|
} else {
|
|
this.settings.get(setting).disable({ emitEvent: false });
|
|
}
|
|
}
|
|
|
|
private singleUserId$() {
|
|
// FIXME: this branch should probably scan for the user and make sure
|
|
// the account is unlocked
|
|
if (this.userId) {
|
|
return new BehaviorSubject(this.userId as UserId).asObservable();
|
|
}
|
|
|
|
return this.accountService.activeAccount$.pipe(
|
|
completeOnAccountSwitch(),
|
|
takeUntil(this.destroyed$),
|
|
);
|
|
}
|
|
|
|
private readonly destroyed$ = new Subject<void>();
|
|
ngOnDestroy(): void {
|
|
this.destroyed$.complete();
|
|
}
|
|
}
|