mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-26 17:23:15 -05:00
* Build breaks 1 * Build breaks * Build breaks * Build breaks * More build breaks * Build breaks (#2512) * Runtime breaks * Build breaks * Fix dialog location break * Update typescript * Fix ASAR break issue * Unit test breaks * Update distro * Fix breaks in ADO builds (#2513) * Bump to node 16 * Fix hygiene errors * Bump distro * Remove reference to node type * Delete vscode specific extension * Bump to node 16 in CI yaml * Skip integration tests in CI builds (while fixing) * yarn.lock update * Bump moment dependency in remote yarn * Fix drop-down chevron style * Bump to node 16 * Remove playwrite from ci.yaml * Skip building build scripts in hygine check
127 lines
4.7 KiB
TypeScript
127 lines
4.7 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 { streamToBuffer } from 'vs/base/common/buffer';
|
|
import { CancellationToken } from 'vs/base/common/cancellation';
|
|
import { IRequestContext, IRequestOptions } from 'vs/base/parts/request/common/request';
|
|
import { localize } from 'vs/nls';
|
|
import { ConfigurationScope, Extensions, IConfigurationNode, IConfigurationRegistry } from 'vs/platform/configuration/common/configurationRegistry';
|
|
import { createDecorator } from 'vs/platform/instantiation/common/instantiation';
|
|
import { Registry } from 'vs/platform/registry/common/platform';
|
|
|
|
export const IRequestService = createDecorator<IRequestService>('requestService');
|
|
|
|
export interface IRequestService {
|
|
readonly _serviceBrand: undefined;
|
|
|
|
request(options: IRequestOptions, token: CancellationToken): Promise<IRequestContext>;
|
|
|
|
resolveProxy(url: string): Promise<string | undefined>;
|
|
}
|
|
|
|
export function isSuccess(context: IRequestContext): boolean {
|
|
return (context.res.statusCode && context.res.statusCode >= 200 && context.res.statusCode < 300) || context.res.statusCode === 1223;
|
|
}
|
|
|
|
function hasNoContent(context: IRequestContext): boolean {
|
|
return context.res.statusCode === 204;
|
|
}
|
|
|
|
export async function asText(context: IRequestContext): Promise<string | null> {
|
|
if (!isSuccess(context)) {
|
|
throw new Error('Server returned ' + context.res.statusCode);
|
|
}
|
|
if (hasNoContent(context)) {
|
|
return null;
|
|
}
|
|
const buffer = await streamToBuffer(context.stream);
|
|
return buffer.toString();
|
|
}
|
|
|
|
export async function asJson<T = {}>(context: IRequestContext): Promise<T | null> {
|
|
if (!isSuccess(context)) {
|
|
throw new Error('Server returned ' + context.res.statusCode);
|
|
}
|
|
if (hasNoContent(context)) {
|
|
return null;
|
|
}
|
|
const buffer = await streamToBuffer(context.stream);
|
|
const str = buffer.toString();
|
|
try {
|
|
return JSON.parse(str);
|
|
} catch (err) {
|
|
err.message += ':\n' + str;
|
|
throw err;
|
|
}
|
|
}
|
|
|
|
|
|
export interface IHTTPConfiguration {
|
|
http?: {
|
|
proxy?: string;
|
|
proxyStrictSSL?: boolean;
|
|
proxyAuthorization?: string;
|
|
};
|
|
}
|
|
|
|
export function updateProxyConfigurationsScope(scope: ConfigurationScope): void {
|
|
registerProxyConfigurations(scope);
|
|
}
|
|
|
|
let proxyConfiguration: IConfigurationNode | undefined;
|
|
function registerProxyConfigurations(scope: ConfigurationScope): void {
|
|
const configurationRegistry = Registry.as<IConfigurationRegistry>(Extensions.Configuration);
|
|
const oldProxyConfiguration = proxyConfiguration;
|
|
proxyConfiguration = {
|
|
id: 'http',
|
|
order: 15,
|
|
title: localize('httpConfigurationTitle', "HTTP"),
|
|
type: 'object',
|
|
scope,
|
|
properties: {
|
|
'http.proxy': {
|
|
type: 'string',
|
|
pattern: '^https?://([^:]*(:[^@]*)?@)?([^:]+|\\[[:0-9a-fA-F]+\\])(:\\d+)?/?$|^$',
|
|
markdownDescription: localize('proxy', "The proxy setting to use. If not set, will be inherited from the `http_proxy` and `https_proxy` environment variables."),
|
|
restricted: true
|
|
},
|
|
'http.proxyStrictSSL': {
|
|
type: 'boolean',
|
|
default: true,
|
|
description: localize('strictSSL', "Controls whether the proxy server certificate should be verified against the list of supplied CAs."),
|
|
restricted: true
|
|
},
|
|
'http.proxyAuthorization': {
|
|
type: ['null', 'string'],
|
|
default: null,
|
|
markdownDescription: localize('proxyAuthorization', "The value to send as the `Proxy-Authorization` header for every network request."),
|
|
restricted: true
|
|
},
|
|
'http.proxySupport': {
|
|
type: 'string',
|
|
enum: ['off', 'on', 'fallback', 'override'],
|
|
enumDescriptions: [
|
|
localize('proxySupportOff', "Disable proxy support for extensions."),
|
|
localize('proxySupportOn', "Enable proxy support for extensions."),
|
|
localize('proxySupportFallback', "Enable proxy support for extensions, fall back to request options, when no proxy found."),
|
|
localize('proxySupportOverride', "Enable proxy support for extensions, override request options."),
|
|
],
|
|
default: 'override',
|
|
description: localize('proxySupport', "Use the proxy support for extensions."),
|
|
restricted: true
|
|
},
|
|
'http.systemCertificates': {
|
|
type: 'boolean',
|
|
default: true,
|
|
description: localize('systemCertificates', "Controls whether CA certificates should be loaded from the OS. (On Windows and macOS, a reload of the window is required after turning this off.)"),
|
|
restricted: true
|
|
}
|
|
}
|
|
};
|
|
configurationRegistry.updateConfigurations({ add: [proxyConfiguration], remove: oldProxyConfiguration ? [oldProxyConfiguration] : [] });
|
|
}
|
|
|
|
registerProxyConfigurations(ConfigurationScope.MACHINE);
|