summaryrefslogtreecommitdiff
path: root/node_modules/global-agent/dist/classes
diff options
context:
space:
mode:
authorLinuxWizard42 <computerwizard@linuxmail.org>2022-10-12 23:08:57 +0300
committerLinuxWizard42 <computerwizard@linuxmail.org>2022-10-12 23:08:57 +0300
commit726b81b19251674e149ccfbb1abacbd837fc6db0 (patch)
treefbdbb227dc01357eb76e8222d76185bc124c5ca6 /node_modules/global-agent/dist/classes
parent34f0890e175698940d49238097579f44e4d78c89 (diff)
downloadFlashRunner-726b81b19251674e149ccfbb1abacbd837fc6db0.tar.gz
FlashRunner-726b81b19251674e149ccfbb1abacbd837fc6db0.tar.zst
Removed files that should not have been included in git
Diffstat (limited to 'node_modules/global-agent/dist/classes')
-rw-r--r--node_modules/global-agent/dist/classes/Agent.js174
-rw-r--r--node_modules/global-agent/dist/classes/Agent.js.flow212
-rw-r--r--node_modules/global-agent/dist/classes/Agent.js.map1
-rw-r--r--node_modules/global-agent/dist/classes/HttpProxyAgent.js33
-rw-r--r--node_modules/global-agent/dist/classes/HttpProxyAgent.js.flow30
-rw-r--r--node_modules/global-agent/dist/classes/HttpProxyAgent.js.map1
-rw-r--r--node_modules/global-agent/dist/classes/HttpsProxyAgent.js53
-rw-r--r--node_modules/global-agent/dist/classes/HttpsProxyAgent.js.flow54
-rw-r--r--node_modules/global-agent/dist/classes/HttpsProxyAgent.js.map1
-rw-r--r--node_modules/global-agent/dist/classes/index.js32
-rw-r--r--node_modules/global-agent/dist/classes/index.js.flow5
-rw-r--r--node_modules/global-agent/dist/classes/index.js.map1
12 files changed, 0 insertions, 597 deletions
diff --git a/node_modules/global-agent/dist/classes/Agent.js b/node_modules/global-agent/dist/classes/Agent.js
deleted file mode 100644
index ba8cc1a..0000000
--- a/node_modules/global-agent/dist/classes/Agent.js
+++ /dev/null
@@ -1,174 +0,0 @@
-"use strict";
-
-Object.defineProperty(exports, "__esModule", {
- value: true
-});
-exports.default = void 0;
-
-var _serializeError = require("serialize-error");
-
-var _boolean = require("boolean");
-
-var _Logger = _interopRequireDefault(require("../Logger"));
-
-function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
-
-const log = _Logger.default.child({
- namespace: 'Agent'
-});
-
-let requestId = 0;
-
-class Agent {
- constructor(isProxyConfigured, mustUrlUseProxy, getUrlProxy, fallbackAgent, socketConnectionTimeout) {
- this.fallbackAgent = fallbackAgent;
- this.isProxyConfigured = isProxyConfigured;
- this.mustUrlUseProxy = mustUrlUseProxy;
- this.getUrlProxy = getUrlProxy;
- this.socketConnectionTimeout = socketConnectionTimeout;
- }
-
- addRequest(request, configuration) {
- let requestUrl; // It is possible that addRequest was constructed for a proxied request already, e.g.
- // "request" package does this when it detects that a proxy should be used
- // https://github.com/request/request/blob/212570b6971a732b8dd9f3c73354bcdda158a737/request.js#L402
- // https://gist.github.com/gajus/e2074cd3b747864ffeaabbd530d30218
-
- if (request.path.startsWith('http://') || request.path.startsWith('https://')) {
- requestUrl = request.path;
- } else {
- requestUrl = this.protocol + '//' + (configuration.hostname || configuration.host) + (configuration.port === 80 || configuration.port === 443 ? '' : ':' + configuration.port) + request.path;
- }
-
- if (!this.isProxyConfigured()) {
- log.trace({
- destination: requestUrl
- }, 'not proxying request; GLOBAL_AGENT.HTTP_PROXY is not configured'); // $FlowFixMe It appears that Flow is missing the method description.
-
- this.fallbackAgent.addRequest(request, configuration);
- return;
- }
-
- if (!this.mustUrlUseProxy(requestUrl)) {
- log.trace({
- destination: requestUrl
- }, 'not proxying request; url matches GLOBAL_AGENT.NO_PROXY'); // $FlowFixMe It appears that Flow is missing the method description.
-
- this.fallbackAgent.addRequest(request, configuration);
- return;
- }
-
- const currentRequestId = requestId++;
- const proxy = this.getUrlProxy(requestUrl);
-
- if (this.protocol === 'http:') {
- request.path = requestUrl;
-
- if (proxy.authorization) {
- request.setHeader('proxy-authorization', 'Basic ' + Buffer.from(proxy.authorization).toString('base64'));
- }
- }
-
- log.trace({
- destination: requestUrl,
- proxy: 'http://' + proxy.hostname + ':' + proxy.port,
- requestId: currentRequestId
- }, 'proxying request');
- request.on('error', error => {
- log.error({
- error: (0, _serializeError.serializeError)(error)
- }, 'request error');
- });
- request.once('response', response => {
- log.trace({
- headers: response.headers,
- requestId: currentRequestId,
- statusCode: response.statusCode
- }, 'proxying response');
- });
- request.shouldKeepAlive = false;
- const connectionConfiguration = {
- host: configuration.hostname || configuration.host,
- port: configuration.port || 80,
- proxy,
- tls: {}
- }; // add optional tls options for https requests.
- // @see https://nodejs.org/docs/latest-v12.x/api/https.html#https_https_request_url_options_callback :
- // > The following additional options from tls.connect()
- // > - https://nodejs.org/docs/latest-v12.x/api/tls.html#tls_tls_connect_options_callback -
- // > are also accepted:
- // > ca, cert, ciphers, clientCertEngine, crl, dhparam, ecdhCurve, honorCipherOrder,
- // > key, passphrase, pfx, rejectUnauthorized, secureOptions, secureProtocol, servername, sessionIdContext.
-
- if (this.protocol === 'https:') {
- connectionConfiguration.tls = {
- ca: configuration.ca,
- cert: configuration.cert,
- ciphers: configuration.ciphers,
- clientCertEngine: configuration.clientCertEngine,
- crl: configuration.crl,
- dhparam: configuration.dhparam,
- ecdhCurve: configuration.ecdhCurve,
- honorCipherOrder: configuration.honorCipherOrder,
- key: configuration.key,
- passphrase: configuration.passphrase,
- pfx: configuration.pfx,
- rejectUnauthorized: configuration.rejectUnauthorized,
- secureOptions: configuration.secureOptions,
- secureProtocol: configuration.secureProtocol,
- servername: configuration.servername || connectionConfiguration.host,
- sessionIdContext: configuration.sessionIdContext
- }; // This is not ideal because there is no way to override this setting using `tls` configuration if `NODE_TLS_REJECT_UNAUTHORIZED=0`.
- // However, popular HTTP clients (such as https://github.com/sindresorhus/got) come with pre-configured value for `rejectUnauthorized`,
- // which makes it impossible to override that value globally and respect `rejectUnauthorized` for specific requests only.
- //
- // eslint-disable-next-line no-process-env
-
- if (typeof process.env.NODE_TLS_REJECT_UNAUTHORIZED === 'string' && (0, _boolean.boolean)(process.env.NODE_TLS_REJECT_UNAUTHORIZED) === false) {
- connectionConfiguration.tls.rejectUnauthorized = false;
- }
- } // $FlowFixMe It appears that Flow is missing the method description.
-
-
- this.createConnection(connectionConfiguration, (error, socket) => {
- log.trace({
- target: connectionConfiguration
- }, 'connecting'); // @see https://github.com/nodejs/node/issues/5757#issuecomment-305969057
-
- if (socket) {
- socket.setTimeout(this.socketConnectionTimeout, () => {
- socket.destroy();
- });
- socket.once('connect', () => {
- log.trace({
- target: connectionConfiguration
- }, 'connected');
- socket.setTimeout(0);
- });
- socket.once('secureConnect', () => {
- log.trace({
- target: connectionConfiguration
- }, 'connected (secure)');
- socket.setTimeout(0);
- });
- }
-
- if (error) {
- request.emit('error', error);
- } else {
- log.debug('created socket');
- socket.on('error', socketError => {
- log.error({
- error: (0, _serializeError.serializeError)(socketError)
- }, 'socket error');
- });
- request.onSocket(socket);
- }
- });
- }
-
-}
-
-var _default = Agent;
-exports.default = _default;
-//# sourceMappingURL=Agent.js.map \ No newline at end of file
diff --git a/node_modules/global-agent/dist/classes/Agent.js.flow b/node_modules/global-agent/dist/classes/Agent.js.flow
deleted file mode 100644
index 801dd1f..0000000
--- a/node_modules/global-agent/dist/classes/Agent.js.flow
+++ /dev/null
@@ -1,212 +0,0 @@
-// @flow
-
-import {
- serializeError,
-} from 'serialize-error';
-import {
- boolean,
-} from 'boolean';
-import Logger from '../Logger';
-import type {
- AgentType,
- GetUrlProxyMethodType,
- IsProxyConfiguredMethodType,
- MustUrlUseProxyMethodType,
- ProtocolType,
-} from '../types';
-
-const log = Logger.child({
- namespace: 'Agent',
-});
-
-let requestId = 0;
-
-class Agent {
- defaultPort: number;
-
- protocol: ProtocolType;
-
- fallbackAgent: AgentType;
-
- isProxyConfigured: IsProxyConfiguredMethodType;
-
- mustUrlUseProxy: MustUrlUseProxyMethodType;
-
- getUrlProxy: GetUrlProxyMethodType;
-
- socketConnectionTimeout: number;
-
- constructor (
- isProxyConfigured: IsProxyConfiguredMethodType,
- mustUrlUseProxy: MustUrlUseProxyMethodType,
- getUrlProxy: GetUrlProxyMethodType,
- fallbackAgent: AgentType,
- socketConnectionTimeout: number,
- ) {
- this.fallbackAgent = fallbackAgent;
- this.isProxyConfigured = isProxyConfigured;
- this.mustUrlUseProxy = mustUrlUseProxy;
- this.getUrlProxy = getUrlProxy;
- this.socketConnectionTimeout = socketConnectionTimeout;
- }
-
- addRequest (request: *, configuration: *) {
- let requestUrl;
-
- // It is possible that addRequest was constructed for a proxied request already, e.g.
- // "request" package does this when it detects that a proxy should be used
- // https://github.com/request/request/blob/212570b6971a732b8dd9f3c73354bcdda158a737/request.js#L402
- // https://gist.github.com/gajus/e2074cd3b747864ffeaabbd530d30218
- if (request.path.startsWith('http://') || request.path.startsWith('https://')) {
- requestUrl = request.path;
- } else {
- requestUrl = this.protocol + '//' + (configuration.hostname || configuration.host) + (configuration.port === 80 || configuration.port === 443 ? '' : ':' + configuration.port) + request.path;
- }
-
- if (!this.isProxyConfigured()) {
- log.trace({
- destination: requestUrl,
- }, 'not proxying request; GLOBAL_AGENT.HTTP_PROXY is not configured');
-
- // $FlowFixMe It appears that Flow is missing the method description.
- this.fallbackAgent.addRequest(request, configuration);
-
- return;
- }
-
- if (!this.mustUrlUseProxy(requestUrl)) {
- log.trace({
- destination: requestUrl,
- }, 'not proxying request; url matches GLOBAL_AGENT.NO_PROXY');
-
- // $FlowFixMe It appears that Flow is missing the method description.
- this.fallbackAgent.addRequest(request, configuration);
-
- return;
- }
-
- const currentRequestId = requestId++;
-
- const proxy = this.getUrlProxy(requestUrl);
-
- if (this.protocol === 'http:') {
- request.path = requestUrl;
-
- if (proxy.authorization) {
- request.setHeader('proxy-authorization', 'Basic ' + Buffer.from(proxy.authorization).toString('base64'));
- }
- }
-
- log.trace({
- destination: requestUrl,
- proxy: 'http://' + proxy.hostname + ':' + proxy.port,
- requestId: currentRequestId,
- }, 'proxying request');
-
- request.on('error', (error) => {
- log.error({
- error: serializeError(error),
- }, 'request error');
- });
-
- request.once('response', (response) => {
- log.trace({
- headers: response.headers,
- requestId: currentRequestId,
- statusCode: response.statusCode,
- }, 'proxying response');
- });
-
- request.shouldKeepAlive = false;
-
- const connectionConfiguration = {
- host: configuration.hostname || configuration.host,
- port: configuration.port || 80,
- proxy,
- tls: {},
- };
-
- // add optional tls options for https requests.
- // @see https://nodejs.org/docs/latest-v12.x/api/https.html#https_https_request_url_options_callback :
- // > The following additional options from tls.connect()
- // > - https://nodejs.org/docs/latest-v12.x/api/tls.html#tls_tls_connect_options_callback -
- // > are also accepted:
- // > ca, cert, ciphers, clientCertEngine, crl, dhparam, ecdhCurve, honorCipherOrder,
- // > key, passphrase, pfx, rejectUnauthorized, secureOptions, secureProtocol, servername, sessionIdContext.
- if (this.protocol === 'https:') {
- connectionConfiguration.tls = {
- ca: configuration.ca,
- cert: configuration.cert,
- ciphers: configuration.ciphers,
- clientCertEngine: configuration.clientCertEngine,
- crl: configuration.crl,
- dhparam: configuration.dhparam,
- ecdhCurve: configuration.ecdhCurve,
- honorCipherOrder: configuration.honorCipherOrder,
- key: configuration.key,
- passphrase: configuration.passphrase,
- pfx: configuration.pfx,
- rejectUnauthorized: configuration.rejectUnauthorized,
- secureOptions: configuration.secureOptions,
- secureProtocol: configuration.secureProtocol,
- servername: configuration.servername || connectionConfiguration.host,
- sessionIdContext: configuration.sessionIdContext,
- };
-
- // This is not ideal because there is no way to override this setting using `tls` configuration if `NODE_TLS_REJECT_UNAUTHORIZED=0`.
- // However, popular HTTP clients (such as https://github.com/sindresorhus/got) come with pre-configured value for `rejectUnauthorized`,
- // which makes it impossible to override that value globally and respect `rejectUnauthorized` for specific requests only.
- //
- // eslint-disable-next-line no-process-env
- if (typeof process.env.NODE_TLS_REJECT_UNAUTHORIZED === 'string' && boolean(process.env.NODE_TLS_REJECT_UNAUTHORIZED) === false) {
- connectionConfiguration.tls.rejectUnauthorized = false;
- }
- }
-
- // $FlowFixMe It appears that Flow is missing the method description.
- this.createConnection(connectionConfiguration, (error, socket) => {
- log.trace({
- target: connectionConfiguration,
- }, 'connecting');
-
- // @see https://github.com/nodejs/node/issues/5757#issuecomment-305969057
- if (socket) {
- socket.setTimeout(this.socketConnectionTimeout, () => {
- socket.destroy();
- });
-
- socket.once('connect', () => {
- log.trace({
- target: connectionConfiguration,
- }, 'connected');
-
- socket.setTimeout(0);
- });
-
- socket.once('secureConnect', () => {
- log.trace({
- target: connectionConfiguration,
- }, 'connected (secure)');
-
- socket.setTimeout(0);
- });
- }
-
- if (error) {
- request.emit('error', error);
- } else {
- log.debug('created socket');
-
- socket.on('error', (socketError) => {
- log.error({
- error: serializeError(socketError),
- }, 'socket error');
- });
-
- request.onSocket(socket);
- }
- });
- }
-}
-
-export default Agent;
diff --git a/node_modules/global-agent/dist/classes/Agent.js.map b/node_modules/global-agent/dist/classes/Agent.js.map
deleted file mode 100644
index af6283e..0000000
--- a/node_modules/global-agent/dist/classes/Agent.js.map
+++ /dev/null
@@ -1 +0,0 @@
-{"version":3,"sources":["../../src/classes/Agent.js"],"names":["log","Logger","child","namespace","requestId","Agent","constructor","isProxyConfigured","mustUrlUseProxy","getUrlProxy","fallbackAgent","socketConnectionTimeout","addRequest","request","configuration","requestUrl","path","startsWith","protocol","hostname","host","port","trace","destination","currentRequestId","proxy","authorization","setHeader","Buffer","from","toString","on","error","once","response","headers","statusCode","shouldKeepAlive","connectionConfiguration","tls","ca","cert","ciphers","clientCertEngine","crl","dhparam","ecdhCurve","honorCipherOrder","key","passphrase","pfx","rejectUnauthorized","secureOptions","secureProtocol","servername","sessionIdContext","process","env","NODE_TLS_REJECT_UNAUTHORIZED","createConnection","socket","target","setTimeout","destroy","emit","debug","socketError","onSocket"],"mappings":"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","sourcesContent":["// @flow\n\nimport {\n serializeError,\n} from 'serialize-error';\nimport {\n boolean,\n} from 'boolean';\nimport Logger from '../Logger';\nimport type {\n AgentType,\n GetUrlProxyMethodType,\n IsProxyConfiguredMethodType,\n MustUrlUseProxyMethodType,\n ProtocolType,\n} from '../types';\n\nconst log = Logger.child({\n namespace: 'Agent',\n});\n\nlet requestId = 0;\n\nclass Agent {\n defaultPort: number;\n\n protocol: ProtocolType;\n\n fallbackAgent: AgentType;\n\n isProxyConfigured: IsProxyConfiguredMethodType;\n\n mustUrlUseProxy: MustUrlUseProxyMethodType;\n\n getUrlProxy: GetUrlProxyMethodType;\n\n socketConnectionTimeout: number;\n\n constructor (\n isProxyConfigured: IsProxyConfiguredMethodType,\n mustUrlUseProxy: MustUrlUseProxyMethodType,\n getUrlProxy: GetUrlProxyMethodType,\n fallbackAgent: AgentType,\n socketConnectionTimeout: number,\n ) {\n this.fallbackAgent = fallbackAgent;\n this.isProxyConfigured = isProxyConfigured;\n this.mustUrlUseProxy = mustUrlUseProxy;\n this.getUrlProxy = getUrlProxy;\n this.socketConnectionTimeout = socketConnectionTimeout;\n }\n\n addRequest (request: *, configuration: *) {\n let requestUrl;\n\n // It is possible that addRequest was constructed for a proxied request already, e.g.\n // \"request\" package does this when it detects that a proxy should be used\n // https://github.com/request/request/blob/212570b6971a732b8dd9f3c73354bcdda158a737/request.js#L402\n // https://gist.github.com/gajus/e2074cd3b747864ffeaabbd530d30218\n if (request.path.startsWith('http://') || request.path.startsWith('https://')) {\n requestUrl = request.path;\n } else {\n requestUrl = this.protocol + '//' + (configuration.hostname || configuration.host) + (configuration.port === 80 || configuration.port === 443 ? '' : ':' + configuration.port) + request.path;\n }\n\n if (!this.isProxyConfigured()) {\n log.trace({\n destination: requestUrl,\n }, 'not proxying request; GLOBAL_AGENT.HTTP_PROXY is not configured');\n\n // $FlowFixMe It appears that Flow is missing the method description.\n this.fallbackAgent.addRequest(request, configuration);\n\n return;\n }\n\n if (!this.mustUrlUseProxy(requestUrl)) {\n log.trace({\n destination: requestUrl,\n }, 'not proxying request; url matches GLOBAL_AGENT.NO_PROXY');\n\n // $FlowFixMe It appears that Flow is missing the method description.\n this.fallbackAgent.addRequest(request, configuration);\n\n return;\n }\n\n const currentRequestId = requestId++;\n\n const proxy = this.getUrlProxy(requestUrl);\n\n if (this.protocol === 'http:') {\n request.path = requestUrl;\n\n if (proxy.authorization) {\n request.setHeader('proxy-authorization', 'Basic ' + Buffer.from(proxy.authorization).toString('base64'));\n }\n }\n\n log.trace({\n destination: requestUrl,\n proxy: 'http://' + proxy.hostname + ':' + proxy.port,\n requestId: currentRequestId,\n }, 'proxying request');\n\n request.on('error', (error) => {\n log.error({\n error: serializeError(error),\n }, 'request error');\n });\n\n request.once('response', (response) => {\n log.trace({\n headers: response.headers,\n requestId: currentRequestId,\n statusCode: response.statusCode,\n }, 'proxying response');\n });\n\n request.shouldKeepAlive = false;\n\n const connectionConfiguration = {\n host: configuration.hostname || configuration.host,\n port: configuration.port || 80,\n proxy,\n tls: {},\n };\n\n // add optional tls options for https requests.\n // @see https://nodejs.org/docs/latest-v12.x/api/https.html#https_https_request_url_options_callback :\n // > The following additional options from tls.connect()\n // > - https://nodejs.org/docs/latest-v12.x/api/tls.html#tls_tls_connect_options_callback -\n // > are also accepted:\n // > ca, cert, ciphers, clientCertEngine, crl, dhparam, ecdhCurve, honorCipherOrder,\n // > key, passphrase, pfx, rejectUnauthorized, secureOptions, secureProtocol, servername, sessionIdContext.\n if (this.protocol === 'https:') {\n connectionConfiguration.tls = {\n ca: configuration.ca,\n cert: configuration.cert,\n ciphers: configuration.ciphers,\n clientCertEngine: configuration.clientCertEngine,\n crl: configuration.crl,\n dhparam: configuration.dhparam,\n ecdhCurve: configuration.ecdhCurve,\n honorCipherOrder: configuration.honorCipherOrder,\n key: configuration.key,\n passphrase: configuration.passphrase,\n pfx: configuration.pfx,\n rejectUnauthorized: configuration.rejectUnauthorized,\n secureOptions: configuration.secureOptions,\n secureProtocol: configuration.secureProtocol,\n servername: configuration.servername || connectionConfiguration.host,\n sessionIdContext: configuration.sessionIdContext,\n };\n\n // This is not ideal because there is no way to override this setting using `tls` configuration if `NODE_TLS_REJECT_UNAUTHORIZED=0`.\n // However, popular HTTP clients (such as https://github.com/sindresorhus/got) come with pre-configured value for `rejectUnauthorized`,\n // which makes it impossible to override that value globally and respect `rejectUnauthorized` for specific requests only.\n //\n // eslint-disable-next-line no-process-env\n if (typeof process.env.NODE_TLS_REJECT_UNAUTHORIZED === 'string' && boolean(process.env.NODE_TLS_REJECT_UNAUTHORIZED) === false) {\n connectionConfiguration.tls.rejectUnauthorized = false;\n }\n }\n\n // $FlowFixMe It appears that Flow is missing the method description.\n this.createConnection(connectionConfiguration, (error, socket) => {\n log.trace({\n target: connectionConfiguration,\n }, 'connecting');\n\n // @see https://github.com/nodejs/node/issues/5757#issuecomment-305969057\n if (socket) {\n socket.setTimeout(this.socketConnectionTimeout, () => {\n socket.destroy();\n });\n\n socket.once('connect', () => {\n log.trace({\n target: connectionConfiguration,\n }, 'connected');\n\n socket.setTimeout(0);\n });\n\n socket.once('secureConnect', () => {\n log.trace({\n target: connectionConfiguration,\n }, 'connected (secure)');\n\n socket.setTimeout(0);\n });\n }\n\n if (error) {\n request.emit('error', error);\n } else {\n log.debug('created socket');\n\n socket.on('error', (socketError) => {\n log.error({\n error: serializeError(socketError),\n }, 'socket error');\n });\n\n request.onSocket(socket);\n }\n });\n }\n}\n\nexport default Agent;\n"],"file":"Agent.js"} \ No newline at end of file
diff --git a/node_modules/global-agent/dist/classes/HttpProxyAgent.js b/node_modules/global-agent/dist/classes/HttpProxyAgent.js
deleted file mode 100644
index 6d1c831..0000000
--- a/node_modules/global-agent/dist/classes/HttpProxyAgent.js
+++ /dev/null
@@ -1,33 +0,0 @@
-"use strict";
-
-Object.defineProperty(exports, "__esModule", {
- value: true
-});
-exports.default = void 0;
-
-var _net = _interopRequireDefault(require("net"));
-
-var _Agent = _interopRequireDefault(require("./Agent"));
-
-function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
-
-class HttpProxyAgent extends _Agent.default {
- // @see https://github.com/sindresorhus/eslint-plugin-unicorn/issues/169#issuecomment-486980290
- // eslint-disable-next-line unicorn/prevent-abbreviations
- constructor(...args) {
- super(...args);
- this.protocol = 'http:';
- this.defaultPort = 80;
- }
-
- createConnection(configuration, callback) {
- const socket = _net.default.connect(configuration.proxy.port, configuration.proxy.hostname);
-
- callback(null, socket);
- }
-
-}
-
-var _default = HttpProxyAgent;
-exports.default = _default;
-//# sourceMappingURL=HttpProxyAgent.js.map \ No newline at end of file
diff --git a/node_modules/global-agent/dist/classes/HttpProxyAgent.js.flow b/node_modules/global-agent/dist/classes/HttpProxyAgent.js.flow
deleted file mode 100644
index 8b9b471..0000000
--- a/node_modules/global-agent/dist/classes/HttpProxyAgent.js.flow
+++ /dev/null
@@ -1,30 +0,0 @@
-// @flow
-
-import net from 'net';
-import type {
- ConnectionCallbackType,
- ConnectionConfigurationType,
-} from '../types';
-import Agent from './Agent';
-
-class HttpProxyAgent extends Agent {
- // @see https://github.com/sindresorhus/eslint-plugin-unicorn/issues/169#issuecomment-486980290
- // eslint-disable-next-line unicorn/prevent-abbreviations
- constructor (...args: *) {
- super(...args);
-
- this.protocol = 'http:';
- this.defaultPort = 80;
- }
-
- createConnection (configuration: ConnectionConfigurationType, callback: ConnectionCallbackType) {
- const socket = net.connect(
- configuration.proxy.port,
- configuration.proxy.hostname,
- );
-
- callback(null, socket);
- }
-}
-
-export default HttpProxyAgent;
diff --git a/node_modules/global-agent/dist/classes/HttpProxyAgent.js.map b/node_modules/global-agent/dist/classes/HttpProxyAgent.js.map
deleted file mode 100644
index f2586b9..0000000
--- a/node_modules/global-agent/dist/classes/HttpProxyAgent.js.map
+++ /dev/null
@@ -1 +0,0 @@
-{"version":3,"sources":["../../src/classes/HttpProxyAgent.js"],"names":["HttpProxyAgent","Agent","constructor","args","protocol","defaultPort","createConnection","configuration","callback","socket","net","connect","proxy","port","hostname"],"mappings":";;;;;;;AAEA;;AAKA;;;;AAEA,MAAMA,cAAN,SAA6BC,cAA7B,CAAmC;AACjC;AACA;AACAC,EAAAA,WAAW,CAAE,GAAGC,IAAL,EAAc;AACvB,UAAM,GAAGA,IAAT;AAEA,SAAKC,QAAL,GAAgB,OAAhB;AACA,SAAKC,WAAL,GAAmB,EAAnB;AACD;;AAEDC,EAAAA,gBAAgB,CAAEC,aAAF,EAA8CC,QAA9C,EAAgF;AAC9F,UAAMC,MAAM,GAAGC,aAAIC,OAAJ,CACbJ,aAAa,CAACK,KAAd,CAAoBC,IADP,EAEbN,aAAa,CAACK,KAAd,CAAoBE,QAFP,CAAf;;AAKAN,IAAAA,QAAQ,CAAC,IAAD,EAAOC,MAAP,CAAR;AACD;;AAjBgC;;eAoBpBT,c","sourcesContent":["// @flow\n\nimport net from 'net';\nimport type {\n ConnectionCallbackType,\n ConnectionConfigurationType,\n} from '../types';\nimport Agent from './Agent';\n\nclass HttpProxyAgent extends Agent {\n // @see https://github.com/sindresorhus/eslint-plugin-unicorn/issues/169#issuecomment-486980290\n // eslint-disable-next-line unicorn/prevent-abbreviations\n constructor (...args: *) {\n super(...args);\n\n this.protocol = 'http:';\n this.defaultPort = 80;\n }\n\n createConnection (configuration: ConnectionConfigurationType, callback: ConnectionCallbackType) {\n const socket = net.connect(\n configuration.proxy.port,\n configuration.proxy.hostname,\n );\n\n callback(null, socket);\n }\n}\n\nexport default HttpProxyAgent;\n"],"file":"HttpProxyAgent.js"} \ No newline at end of file
diff --git a/node_modules/global-agent/dist/classes/HttpsProxyAgent.js b/node_modules/global-agent/dist/classes/HttpsProxyAgent.js
deleted file mode 100644
index 1206ffa..0000000
--- a/node_modules/global-agent/dist/classes/HttpsProxyAgent.js
+++ /dev/null
@@ -1,53 +0,0 @@
-"use strict";
-
-Object.defineProperty(exports, "__esModule", {
- value: true
-});
-exports.default = void 0;
-
-var _net = _interopRequireDefault(require("net"));
-
-var _tls = _interopRequireDefault(require("tls"));
-
-var _Agent = _interopRequireDefault(require("./Agent"));
-
-function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
-
-class HttpsProxyAgent extends _Agent.default {
- // eslint-disable-next-line unicorn/prevent-abbreviations
- constructor(...args) {
- super(...args);
- this.protocol = 'https:';
- this.defaultPort = 443;
- }
-
- createConnection(configuration, callback) {
- const socket = _net.default.connect(configuration.proxy.port, configuration.proxy.hostname);
-
- socket.on('error', error => {
- callback(error);
- });
- socket.once('data', () => {
- const secureSocket = _tls.default.connect({ ...configuration.tls,
- socket
- });
-
- callback(null, secureSocket);
- });
- let connectMessage = '';
- connectMessage += 'CONNECT ' + configuration.host + ':' + configuration.port + ' HTTP/1.1\r\n';
- connectMessage += 'Host: ' + configuration.host + ':' + configuration.port + '\r\n';
-
- if (configuration.proxy.authorization) {
- connectMessage += 'Proxy-Authorization: Basic ' + Buffer.from(configuration.proxy.authorization).toString('base64') + '\r\n';
- }
-
- connectMessage += '\r\n';
- socket.write(connectMessage);
- }
-
-}
-
-var _default = HttpsProxyAgent;
-exports.default = _default;
-//# sourceMappingURL=HttpsProxyAgent.js.map \ No newline at end of file
diff --git a/node_modules/global-agent/dist/classes/HttpsProxyAgent.js.flow b/node_modules/global-agent/dist/classes/HttpsProxyAgent.js.flow
deleted file mode 100644
index 24d724f..0000000
--- a/node_modules/global-agent/dist/classes/HttpsProxyAgent.js.flow
+++ /dev/null
@@ -1,54 +0,0 @@
-// @flow
-
-import net from 'net';
-import tls from 'tls';
-import type {
- ConnectionCallbackType,
- ConnectionConfigurationType,
-} from '../types';
-import Agent from './Agent';
-
-class HttpsProxyAgent extends Agent {
- // eslint-disable-next-line unicorn/prevent-abbreviations
- constructor (...args: *) {
- super(...args);
-
- this.protocol = 'https:';
- this.defaultPort = 443;
- }
-
- createConnection (configuration: ConnectionConfigurationType, callback: ConnectionCallbackType) {
- const socket = net.connect(
- configuration.proxy.port,
- configuration.proxy.hostname,
- );
-
- socket.on('error', (error) => {
- callback(error);
- });
-
- socket.once('data', () => {
- const secureSocket = tls.connect({
- ...configuration.tls,
- socket,
- });
-
- callback(null, secureSocket);
- });
-
- let connectMessage = '';
-
- connectMessage += 'CONNECT ' + configuration.host + ':' + configuration.port + ' HTTP/1.1\r\n';
- connectMessage += 'Host: ' + configuration.host + ':' + configuration.port + '\r\n';
-
- if (configuration.proxy.authorization) {
- connectMessage += 'Proxy-Authorization: Basic ' + Buffer.from(configuration.proxy.authorization).toString('base64') + '\r\n';
- }
-
- connectMessage += '\r\n';
-
- socket.write(connectMessage);
- }
-}
-
-export default HttpsProxyAgent;
diff --git a/node_modules/global-agent/dist/classes/HttpsProxyAgent.js.map b/node_modules/global-agent/dist/classes/HttpsProxyAgent.js.map
deleted file mode 100644
index 0bad4a9..0000000
--- a/node_modules/global-agent/dist/classes/HttpsProxyAgent.js.map
+++ /dev/null
@@ -1 +0,0 @@
-{"version":3,"sources":["../../src/classes/HttpsProxyAgent.js"],"names":["HttpsProxyAgent","Agent","constructor","args","protocol","defaultPort","createConnection","configuration","callback","socket","net","connect","proxy","port","hostname","on","error","once","secureSocket","tls","connectMessage","host","authorization","Buffer","from","toString","write"],"mappings":";;;;;;;AAEA;;AACA;;AAKA;;;;AAEA,MAAMA,eAAN,SAA8BC,cAA9B,CAAoC;AAClC;AACAC,EAAAA,WAAW,CAAE,GAAGC,IAAL,EAAc;AACvB,UAAM,GAAGA,IAAT;AAEA,SAAKC,QAAL,GAAgB,QAAhB;AACA,SAAKC,WAAL,GAAmB,GAAnB;AACD;;AAEDC,EAAAA,gBAAgB,CAAEC,aAAF,EAA8CC,QAA9C,EAAgF;AAC9F,UAAMC,MAAM,GAAGC,aAAIC,OAAJ,CACbJ,aAAa,CAACK,KAAd,CAAoBC,IADP,EAEbN,aAAa,CAACK,KAAd,CAAoBE,QAFP,CAAf;;AAKAL,IAAAA,MAAM,CAACM,EAAP,CAAU,OAAV,EAAoBC,KAAD,IAAW;AAC5BR,MAAAA,QAAQ,CAACQ,KAAD,CAAR;AACD,KAFD;AAIAP,IAAAA,MAAM,CAACQ,IAAP,CAAY,MAAZ,EAAoB,MAAM;AACxB,YAAMC,YAAY,GAAGC,aAAIR,OAAJ,CAAY,EAC/B,GAAGJ,aAAa,CAACY,GADc;AAE/BV,QAAAA;AAF+B,OAAZ,CAArB;;AAKAD,MAAAA,QAAQ,CAAC,IAAD,EAAOU,YAAP,CAAR;AACD,KAPD;AASA,QAAIE,cAAc,GAAG,EAArB;AAEAA,IAAAA,cAAc,IAAI,aAAab,aAAa,CAACc,IAA3B,GAAkC,GAAlC,GAAwCd,aAAa,CAACM,IAAtD,GAA6D,eAA/E;AACAO,IAAAA,cAAc,IAAI,WAAWb,aAAa,CAACc,IAAzB,GAAgC,GAAhC,GAAsCd,aAAa,CAACM,IAApD,GAA2D,MAA7E;;AAEA,QAAIN,aAAa,CAACK,KAAd,CAAoBU,aAAxB,EAAuC;AACrCF,MAAAA,cAAc,IAAI,gCAAgCG,MAAM,CAACC,IAAP,CAAYjB,aAAa,CAACK,KAAd,CAAoBU,aAAhC,EAA+CG,QAA/C,CAAwD,QAAxD,CAAhC,GAAoG,MAAtH;AACD;;AAEDL,IAAAA,cAAc,IAAI,MAAlB;AAEAX,IAAAA,MAAM,CAACiB,KAAP,CAAaN,cAAb;AACD;;AAxCiC;;eA2CrBpB,e","sourcesContent":["// @flow\n\nimport net from 'net';\nimport tls from 'tls';\nimport type {\n ConnectionCallbackType,\n ConnectionConfigurationType,\n} from '../types';\nimport Agent from './Agent';\n\nclass HttpsProxyAgent extends Agent {\n // eslint-disable-next-line unicorn/prevent-abbreviations\n constructor (...args: *) {\n super(...args);\n\n this.protocol = 'https:';\n this.defaultPort = 443;\n }\n\n createConnection (configuration: ConnectionConfigurationType, callback: ConnectionCallbackType) {\n const socket = net.connect(\n configuration.proxy.port,\n configuration.proxy.hostname,\n );\n\n socket.on('error', (error) => {\n callback(error);\n });\n\n socket.once('data', () => {\n const secureSocket = tls.connect({\n ...configuration.tls,\n socket,\n });\n\n callback(null, secureSocket);\n });\n\n let connectMessage = '';\n\n connectMessage += 'CONNECT ' + configuration.host + ':' + configuration.port + ' HTTP/1.1\\r\\n';\n connectMessage += 'Host: ' + configuration.host + ':' + configuration.port + '\\r\\n';\n\n if (configuration.proxy.authorization) {\n connectMessage += 'Proxy-Authorization: Basic ' + Buffer.from(configuration.proxy.authorization).toString('base64') + '\\r\\n';\n }\n\n connectMessage += '\\r\\n';\n\n socket.write(connectMessage);\n }\n}\n\nexport default HttpsProxyAgent;\n"],"file":"HttpsProxyAgent.js"} \ No newline at end of file
diff --git a/node_modules/global-agent/dist/classes/index.js b/node_modules/global-agent/dist/classes/index.js
deleted file mode 100644
index b3889d2..0000000
--- a/node_modules/global-agent/dist/classes/index.js
+++ /dev/null
@@ -1,32 +0,0 @@
-"use strict";
-
-Object.defineProperty(exports, "__esModule", {
- value: true
-});
-Object.defineProperty(exports, "Agent", {
- enumerable: true,
- get: function () {
- return _Agent.default;
- }
-});
-Object.defineProperty(exports, "HttpProxyAgent", {
- enumerable: true,
- get: function () {
- return _HttpProxyAgent.default;
- }
-});
-Object.defineProperty(exports, "HttpsProxyAgent", {
- enumerable: true,
- get: function () {
- return _HttpsProxyAgent.default;
- }
-});
-
-var _Agent = _interopRequireDefault(require("./Agent"));
-
-var _HttpProxyAgent = _interopRequireDefault(require("./HttpProxyAgent"));
-
-var _HttpsProxyAgent = _interopRequireDefault(require("./HttpsProxyAgent"));
-
-function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
-//# sourceMappingURL=index.js.map \ No newline at end of file
diff --git a/node_modules/global-agent/dist/classes/index.js.flow b/node_modules/global-agent/dist/classes/index.js.flow
deleted file mode 100644
index 9e8418a..0000000
--- a/node_modules/global-agent/dist/classes/index.js.flow
+++ /dev/null
@@ -1,5 +0,0 @@
-// @flow
-
-export {default as Agent} from './Agent';
-export {default as HttpProxyAgent} from './HttpProxyAgent';
-export {default as HttpsProxyAgent} from './HttpsProxyAgent';
diff --git a/node_modules/global-agent/dist/classes/index.js.map b/node_modules/global-agent/dist/classes/index.js.map
deleted file mode 100644
index 59a05bb..0000000
--- a/node_modules/global-agent/dist/classes/index.js.map
+++ /dev/null
@@ -1 +0,0 @@
-{"version":3,"sources":["../../src/classes/index.js"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;AAEA;;AACA;;AACA","sourcesContent":["// @flow\n\nexport {default as Agent} from './Agent';\nexport {default as HttpProxyAgent} from './HttpProxyAgent';\nexport {default as HttpsProxyAgent} from './HttpsProxyAgent';\n"],"file":"index.js"} \ No newline at end of file