mirror of
https://github.com/bitwarden/browser
synced 2025-12-12 22:33:35 +00:00
* Handle hcaptch required identity response * Refactor iframe component for captcha and webauthn * Send captcha token to server * Add captcha callback * Clear captcha state * Remove captcha storage * linter fixes * Rename iframe components to include IFrame * Remove callback in favor of extenting submit * Limit publickey credentials access * Use captcha bypass token to bypass captcha for twofactor auth flows * Linter fixes * Set iframe version in components
24 lines
961 B
TypeScript
24 lines
961 B
TypeScript
import { BaseResponse } from './baseResponse';
|
|
|
|
import { TwoFactorProviderType } from '../../enums/twoFactorProviderType';
|
|
|
|
export class IdentityTwoFactorResponse extends BaseResponse {
|
|
twoFactorProviders: TwoFactorProviderType[];
|
|
twoFactorProviders2 = new Map<TwoFactorProviderType, { [key: string]: string; }>();
|
|
captchaToken: string;
|
|
|
|
constructor(response: any) {
|
|
super(response);
|
|
this.captchaToken = this.getResponseProperty('HCaptcha_BypassKey');
|
|
this.twoFactorProviders = this.getResponseProperty('TwoFactorProviders');
|
|
const twoFactorProviders2 = this.getResponseProperty('TwoFactorProviders2');
|
|
if (twoFactorProviders2 != null) {
|
|
for (const prop in twoFactorProviders2) {
|
|
if (twoFactorProviders2.hasOwnProperty(prop)) {
|
|
this.twoFactorProviders2.set(parseInt(prop, null), twoFactorProviders2[prop]);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|