mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-24 17:23:05 -05:00
94 lines
2.6 KiB
TypeScript
94 lines
2.6 KiB
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. 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 { BrowserWindow, 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 {
|
|
|
|
_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: any = {
|
|
alwaysOnTop: true,
|
|
skipTaskbar: true,
|
|
resizable: false,
|
|
width: 450,
|
|
height: 220,
|
|
show: true,
|
|
title: 'VS Code',
|
|
webPreferences: {
|
|
nodeIntegration: true,
|
|
webviewTag: true
|
|
}
|
|
};
|
|
|
|
const focusedWindow = BrowserWindow.getFocusedWindow();
|
|
if (focusedWindow) {
|
|
opts.parent = focusedWindow;
|
|
opts.modal = true;
|
|
}
|
|
|
|
const win = new BrowserWindow(opts);
|
|
const config = {};
|
|
const baseUrl = require.toUrl('vs/code/electron-browser/proxy/auth.html');
|
|
const url = `${baseUrl}?config=${encodeURIComponent(JSON.stringify(config))}`;
|
|
const proxyUrl = `${authInfo.host}:${authInfo.port}`;
|
|
const title = localize('authRequire', "Proxy Authentication Required");
|
|
const message = localize('proxyauth', "The proxy {0} requires authentication.", proxyUrl);
|
|
const data = { title, message };
|
|
const javascript = 'promptForCredentials(' + JSON.stringify(data) + ')';
|
|
|
|
const onWindowClose = () => cb('', '');
|
|
win.on('close', onWindowClose);
|
|
|
|
win.setMenu(null);
|
|
win.loadURL(url);
|
|
win.webContents.executeJavaScript(javascript, true).then(({ username, password }: Credentials) => {
|
|
cb(username, password);
|
|
win.removeListener('close', onWindowClose);
|
|
win.close();
|
|
});
|
|
}
|
|
}
|