Bones/node_modules/popsicle-proxy-agent/dist/index.js
SOUTHERNCO\x2mjbyrn 7efe7605b8 Template Upload
2017-05-17 13:45:25 -04:00

59 lines
2.3 KiB
JavaScript

var url_1 = require('url');
var HttpProxyAgent = require('http-proxy-agent');
var HttpsProxyAgent = require('https-proxy-agent');
function proxy(options) {
if (options === void 0) { options = {}; }
var getProxyAgent = createGetProxyAgent(options);
return function (request) {
request.options.agent = getProxyAgent(request.Url);
};
}
function createGetProxyAgent(options) {
var noProxy = options.noProxy || process.env.NO_PROXY || process.env.no_proxy;
if (noProxy === '*') {
return function (url) { return undefined; };
}
var noProxyList = parseNoProxy(noProxy);
var httpProxy = options.httpProxy || options.proxy || process.env.HTTP_PROXY || process.env.http_proxy;
var httpsProxy = options.httpsProxy || options.proxy || process.env.HTTPS_PROXY || process.env.https_proxy;
var httpProxyUrl = httpProxy ? url_1.parse(httpProxy) : undefined;
var httpsProxyUrl = httpsProxy ? url_1.parse(httpsProxy) : undefined;
return function (url) {
if (noProxy && urlInNoProxy(url, noProxyList)) {
return;
}
if (url.protocol === 'https:' && httpsProxy != null) {
return new HttpsProxyAgent(httpsProxyUrl);
}
return httpProxy ? new HttpProxyAgent(httpProxyUrl) : undefined;
};
}
function formatHostname(hostname) {
return hostname.replace(/^\.*/, '.').toLowerCase();
}
function parseNoProxy(noProxy) {
if (!noProxy) {
return [];
}
return noProxy.split(',').map(function (zone) {
var location = zone.trim().toLowerCase();
var parts = location.split(':', 2);
var hostname = formatHostname(parts[0]);
var port = parts[1];
return { hostname: hostname, port: port };
});
}
function urlInNoProxy(url, noProxyList) {
var hostname = formatHostname(url.hostname);
var port = url.port || (url.protocol === 'https:' ? '443' : '80');
return noProxyList.some(function (noProxy) {
var isMatchedAt = hostname.indexOf(noProxy.hostname);
var hostnameMatched = isMatchedAt > -1 && isMatchedAt === hostname.length - noProxy.hostname.length;
if (noProxy.port != null) {
return hostnameMatched && port === noProxy.port;
}
return hostnameMatched;
});
}
module.exports = proxy;
//# sourceMappingURL=index.js.map