mirror of
https://github.com/bitwarden/browser
synced 2026-02-21 03:43:58 +00:00
59 lines
1.5 KiB
TypeScript
59 lines
1.5 KiB
TypeScript
// FIXME: Update this file to be type safe and remove this and next line
|
|
// @ts-strict-ignore
|
|
import { DeviceRequest } from "./device.request";
|
|
import { TokenTwoFactorRequest } from "./token-two-factor.request";
|
|
|
|
export abstract class TokenRequest {
|
|
protected device?: DeviceRequest;
|
|
protected authRequest: string;
|
|
|
|
constructor(
|
|
protected twoFactor?: TokenTwoFactorRequest,
|
|
device?: DeviceRequest,
|
|
) {
|
|
this.device = device != null ? device : null;
|
|
}
|
|
|
|
alterIdentityTokenHeaders(headers: Headers) {
|
|
// Implemented in subclass if required
|
|
}
|
|
|
|
setTwoFactor(twoFactor: TokenTwoFactorRequest | undefined) {
|
|
this.twoFactor = twoFactor;
|
|
}
|
|
|
|
setAuthRequestAccessCode(accessCode: string) {
|
|
this.authRequest = accessCode;
|
|
}
|
|
|
|
protected toIdentityToken(clientId: string) {
|
|
const obj: any = {
|
|
scope: "api offline_access",
|
|
client_id: clientId,
|
|
};
|
|
|
|
if (this.device) {
|
|
obj.deviceType = this.device.type;
|
|
obj.deviceIdentifier = this.device.identifier;
|
|
obj.deviceName = this.device.name;
|
|
// no push tokens for browser apps yet
|
|
// obj.devicePushToken = this.device.pushToken;
|
|
}
|
|
|
|
//passswordless login
|
|
if (this.authRequest) {
|
|
obj.authRequest = this.authRequest;
|
|
}
|
|
|
|
if (this.twoFactor) {
|
|
if (this.twoFactor.token && this.twoFactor.provider != null) {
|
|
obj.twoFactorToken = this.twoFactor.token;
|
|
obj.twoFactorProvider = this.twoFactor.provider;
|
|
obj.twoFactorRemember = this.twoFactor.remember ? "1" : "0";
|
|
}
|
|
}
|
|
|
|
return obj;
|
|
}
|
|
}
|