mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-14 10:26:19 +01:00
78248db590
* Rename service-factory folder
* Move cryptographic service factories
* Move crypto models
* Move crypto services
* Move domain base class
* Platform code owners
* Move desktop log services
* Move log files
* Establish component library ownership
* Move background listeners
* Move background background
* Move localization to Platform
* Move browser alarms to Platform
* Move browser state to Platform
* Move CLI state to Platform
* Move Desktop native concerns to Platform
* Move flag and misc to Platform
* Lint fixes
* Move electron state to platform
* Move web state to Platform
* Move lib state to Platform
* Fix broken tests
* Rename interface to idiomatic TS
* `npm run prettier` 🤖
* Resolve review feedback
* Set platform as owners of web core and shared
* Expand moved services
* Fix test types
---------
Co-authored-by: Hinton <hinton@users.noreply.github.com>
101 lines
2.9 KiB
TypeScript
101 lines
2.9 KiB
TypeScript
import { AuthService } from "@bitwarden/common/auth/abstractions/auth.service";
|
|
import { AuthenticationStatus } from "@bitwarden/common/auth/enums/authentication-status";
|
|
import { UriMatchType } from "@bitwarden/common/enums";
|
|
import { PlatformUtilsService } from "@bitwarden/common/platform/abstractions/platform-utils.service";
|
|
import { CipherService } from "@bitwarden/common/vault/abstractions/cipher.service";
|
|
|
|
import { BrowserApi } from "../platform/browser/browser-api";
|
|
|
|
export default class WebRequestBackground {
|
|
private pendingAuthRequests: any[] = [];
|
|
private webRequest: any;
|
|
private isFirefox: boolean;
|
|
|
|
constructor(
|
|
platformUtilsService: PlatformUtilsService,
|
|
private cipherService: CipherService,
|
|
private authService: AuthService
|
|
) {
|
|
if (BrowserApi.manifestVersion === 2) {
|
|
this.webRequest = (window as any).chrome.webRequest;
|
|
}
|
|
this.isFirefox = platformUtilsService.isFirefox();
|
|
}
|
|
|
|
async init() {
|
|
if (!this.webRequest || !this.webRequest.onAuthRequired) {
|
|
return;
|
|
}
|
|
|
|
this.webRequest.onAuthRequired.addListener(
|
|
async (details: any, callback: any) => {
|
|
if (!details.url || this.pendingAuthRequests.indexOf(details.requestId) !== -1) {
|
|
if (callback) {
|
|
callback();
|
|
}
|
|
return;
|
|
}
|
|
|
|
this.pendingAuthRequests.push(details.requestId);
|
|
|
|
if (this.isFirefox) {
|
|
// eslint-disable-next-line
|
|
return new Promise(async (resolve, reject) => {
|
|
await this.resolveAuthCredentials(details.url, resolve, reject);
|
|
});
|
|
} else {
|
|
await this.resolveAuthCredentials(details.url, callback, callback);
|
|
}
|
|
},
|
|
{ urls: ["http://*/*", "https://*/*"] },
|
|
[this.isFirefox ? "blocking" : "asyncBlocking"]
|
|
);
|
|
|
|
this.webRequest.onCompleted.addListener((details: any) => this.completeAuthRequest(details), {
|
|
urls: ["http://*/*"],
|
|
});
|
|
this.webRequest.onErrorOccurred.addListener(
|
|
(details: any) => this.completeAuthRequest(details),
|
|
{
|
|
urls: ["http://*/*"],
|
|
}
|
|
);
|
|
}
|
|
|
|
// eslint-disable-next-line
|
|
private async resolveAuthCredentials(domain: string, success: Function, error: Function) {
|
|
if ((await this.authService.getAuthStatus()) < AuthenticationStatus.Unlocked) {
|
|
error();
|
|
return;
|
|
}
|
|
|
|
try {
|
|
const ciphers = await this.cipherService.getAllDecryptedForUrl(
|
|
domain,
|
|
null,
|
|
UriMatchType.Host
|
|
);
|
|
if (ciphers == null || ciphers.length !== 1) {
|
|
error();
|
|
return;
|
|
}
|
|
|
|
success({
|
|
authCredentials: {
|
|
username: ciphers[0].login.username,
|
|
password: ciphers[0].login.password,
|
|
},
|
|
});
|
|
} catch {
|
|
error();
|
|
}
|
|
}
|
|
|
|
private completeAuthRequest(details: any) {
|
|
const i = this.pendingAuthRequests.indexOf(details.requestId);
|
|
if (i > -1) {
|
|
this.pendingAuthRequests.splice(i, 1);
|
|
}
|
|
}
|
|
}
|