Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
const username = config.get('proxy.http.username', '')
const password = config.get('proxy.http.password', '')
const useAuth = requirePassword && username !== '' && password !== ''
const strAuth = `${username}:${password}@`
const uri = `http://${useAuth ? strAuth : ''}${host}:${port}`
if (!this.httpAgents[uri]) {
this.httpAgents[uri] = new HttpProxyAgent(uri)
}
options.agent = this.httpAgents[uri]
break
}
// PAC
case 'pac': {
const uri = config.get('proxy.pacAddr')
if (!this.pacAgents[uri]) {
this.pacAgents[uri] = new PacProxyAgent(uri)
}
options.agent = this.pacAgents[uri]
break
}
}
return options
}
plugins.map(e => {
if (proxy && e.proxy) {
if (proxy.endsWith('.pac')) {
Object.assign(
rpOptions,
{
agent: new PacProxyAgent(proxy)
}
);
} else {
Object.assign(
rpOptions,
{
proxy,
}
);
}
}
// If a request failed will keep waiting for other possible successes, if a request successed,
// treat it as a rejection so Promise.all immediate break.
return e.enginner(rp, ...args).then(
val => Promise.reject(val),
err => Promise.resolve(err)
exports.cache = new LRU(cacheSize);
/**
* Built-in proxy types.
*/
exports.proxies = Object.create(null);
exports.proxies.http = httpOrHttpsProxy;
exports.proxies.https = httpOrHttpsProxy;
exports.proxies.socks = SocksProxyAgent;
exports.proxies.socks4 = SocksProxyAgent;
exports.proxies.socks4a = SocksProxyAgent;
exports.proxies.socks5 = SocksProxyAgent;
exports.proxies.socks5h = SocksProxyAgent;
PacProxyAgent.protocols.forEach(function (protocol) {
exports.proxies['pac+' + protocol] = PacProxyAgent;
});
function httpOrHttps(opts, secureEndpoint) {
if (secureEndpoint) {
// HTTPS
return https.globalAgent;
} else {
// HTTP
return http.globalAgent;
}
}
function httpOrHttpsProxy(opts, secureEndpoint) {
if (secureEndpoint) {
// HTTPS
exports.cache = new LRU(cacheSize);
/**
* Built-in proxy types.
*/
exports.proxies = Object.create(null);
exports.proxies.http = httpOrHttpsProxy;
exports.proxies.https = httpOrHttpsProxy;
exports.proxies.socks = SocksProxyAgent;
exports.proxies.socks4 = SocksProxyAgent;
exports.proxies.socks4a = SocksProxyAgent;
exports.proxies.socks5 = SocksProxyAgent;
exports.proxies.socks5h = SocksProxyAgent;
PacProxyAgent.protocols.forEach(function (protocol) {
exports.proxies['pac+' + protocol] = PacProxyAgent;
});
function httpOrHttps(opts, secureEndpoint) {
if (secureEndpoint) {
// HTTPS
return https.globalAgent;
} else {
// HTTP
return http.globalAgent;
}
}
function httpOrHttpsProxy(opts, secureEndpoint) {
if (secureEndpoint) {
// HTTPS