mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-27 03:54:24 +01:00
102 lines
2.9 KiB
TypeScript
102 lines
2.9 KiB
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
import { localize } from 'vs/nls';
|
|
import { Disposable } from 'vs/base/common/lifecycle';
|
|
import { Event } from 'vs/base/common/event';
|
|
import { URI } from 'vs/base/common/uri';
|
|
import { BrowserWindow, BrowserWindowConstructorOptions, app, AuthInfo, WebContents, Event as ElectronEvent } from 'electron';
|
|
|
|
type LoginEvent = {
|
|
event: ElectronEvent;
|
|
webContents: WebContents;
|
|
req: Request;
|
|
authInfo: AuthInfo;
|
|
cb: (username: string, password: string) => void;
|
|
};
|
|
|
|
type Credentials = {
|
|
username: string;
|
|
password: string;
|
|
};
|
|
|
|
export class ProxyAuthHandler extends Disposable {
|
|
|
|
declare readonly _serviceBrand: undefined;
|
|
|
|
private retryCount = 0;
|
|
|
|
constructor() {
|
|
super();
|
|
|
|
this.registerListeners();
|
|
}
|
|
|
|
private registerListeners(): void {
|
|
const onLogin = Event.fromNodeEventEmitter<LoginEvent>(app, 'login', (event, webContents, req, authInfo, cb) => ({ event, webContents, req, authInfo, cb }));
|
|
this._register(onLogin(this.onLogin, this));
|
|
}
|
|
|
|
private onLogin({ event, authInfo, cb }: LoginEvent): void {
|
|
if (!authInfo.isProxy) {
|
|
return;
|
|
}
|
|
|
|
if (this.retryCount++ > 1) {
|
|
return;
|
|
}
|
|
|
|
event.preventDefault();
|
|
|
|
const opts: BrowserWindowConstructorOptions = {
|
|
alwaysOnTop: true,
|
|
skipTaskbar: true,
|
|
resizable: false,
|
|
width: 450,
|
|
height: 225,
|
|
show: true,
|
|
title: 'VS Code',
|
|
webPreferences: {
|
|
preload: URI.parse(require.toUrl('vs/base/parts/sandbox/electron-browser/preload.js')).fsPath,
|
|
sandbox: true,
|
|
contextIsolation: true,
|
|
enableWebSQL: false,
|
|
enableRemoteModule: false,
|
|
devTools: false
|
|
}
|
|
};
|
|
|
|
const focusedWindow = BrowserWindow.getFocusedWindow();
|
|
if (focusedWindow) {
|
|
opts.parent = focusedWindow;
|
|
opts.modal = true;
|
|
}
|
|
|
|
const win = new BrowserWindow(opts);
|
|
const url = require.toUrl('vs/code/electron-sandbox/proxy/auth.html');
|
|
const proxyUrl = `${authInfo.host}:${authInfo.port}`;
|
|
const title = localize('authRequire', "Proxy Authentication Required");
|
|
const message = localize('proxyauth', "The proxy {0} requires authentication.", proxyUrl);
|
|
|
|
const onWindowClose = () => cb('', '');
|
|
win.on('close', onWindowClose);
|
|
|
|
win.setMenu(null);
|
|
win.webContents.on('did-finish-load', () => {
|
|
const data = { title, message };
|
|
win.webContents.send('vscode:openProxyAuthDialog', data);
|
|
});
|
|
win.webContents.on('ipc-message', (event, channel, credentials: Credentials) => {
|
|
if (channel === 'vscode:proxyAuthResponse') {
|
|
const { username, password } = credentials;
|
|
cb(username, password);
|
|
}
|
|
win.removeListener('close', onWindowClose);
|
|
win.close();
|
|
});
|
|
win.loadURL(url);
|
|
}
|
|
}
|