UNPKG

pac-proxy-agent

Version:

A PAC file proxy `http.Agent` implementation for HTTP

215 lines 8.52 kB
import * as net from 'net'; import * as tls from 'tls'; import * as crypto from 'crypto'; import { once } from 'events'; import createDebug from 'debug'; import { URL } from 'url'; import { Agent, toBuffer } from 'agent-base'; import { getUri, } from 'get-uri'; import { createPacResolver, } from 'pac-resolver'; import { QuickJS } from 'quickjs-wasi'; const debug = createDebug('pac-proxy-agent'); const setServernameFromNonIpHost = (options) => { if (options.servername === undefined && options.host && !net.isIP(options.host)) { return { ...options, servername: options.host, }; } return options; }; /** * The `PacProxyAgent` class. * * A few different "protocol" modes are supported (supported protocols are * backed by the `get-uri` module): * * - "pac+data", "data" - refers to an embedded "data:" URI * - "pac+file", "file" - refers to a local file * - "pac+ftp", "ftp" - refers to a file located on an FTP server * - "pac+http", "http" - refers to an HTTP endpoint * - "pac+https", "https" - refers to an HTTPS endpoint */ export class PacProxyAgent extends Agent { constructor(uri, opts) { super(opts); this.clearResolverPromise = () => { this.resolverPromise = undefined; }; // Strip the "pac+" prefix const uriStr = typeof uri === 'string' ? uri : uri.href; this.uri = new URL(uriStr.replace(/^pac\+/i, '')); debug('Creating PacProxyAgent with URI %o', this.uri.href); // @ts-expect-error Not sure why TS is complaining here… this.opts = { ...opts }; this.cache = undefined; this.resolver = undefined; this.resolverHash = ''; this.resolverPromise = undefined; // For `PacResolver` if (!this.opts.filename) { this.opts.filename = this.uri.href; } } /** * Loads the PAC proxy file from the source if necessary, and returns * a generated `FindProxyForURL()` resolver function to use. */ getResolver() { if (!this.resolverPromise) { this.resolverPromise = this.loadResolver(); this.resolverPromise.then(this.clearResolverPromise, this.clearResolverPromise); } return this.resolverPromise; } async loadResolver() { try { // (Re)load the contents of the PAC file URI const [qjs, code] = await Promise.all([ QuickJS.create(), this.loadPacFile(), ]); // Create a sha1 hash of the JS code const hash = crypto.createHash('sha1').update(code).digest('hex'); if (this.resolver && this.resolverHash === hash) { debug('Same sha1 hash for code - contents have not changed, reusing previous proxy resolver'); // Dispose the newly created VM since we're reusing the old resolver qjs.dispose(); return this.resolver; } // Dispose the previous VM before creating a new resolver if (this.qjs) { this.qjs.dispose(); } this.qjs = qjs; // Cache the resolver debug('Creating new proxy resolver instance'); this.resolver = createPacResolver(qjs, code, this.opts); // Store that sha1 hash for future comparison purposes this.resolverHash = hash; return this.resolver; } catch (err) { if (this.resolver && err.code === 'ENOTMODIFIED') { debug('Got ENOTMODIFIED response, reusing previous proxy resolver'); return this.resolver; } throw err; } } /** * Loads the contents of the PAC proxy file. * * @api private */ async loadPacFile() { debug('Loading PAC file: %o', this.uri); const rs = await getUri(this.uri, { ...this.opts, cache: this.cache }); debug('Got `Readable` instance for URI'); this.cache = rs; const buf = await toBuffer(rs); debug('Read %o byte PAC file from URI', buf.length); return buf.toString('utf8'); } /** * Called when the node-core HTTP client library is creating a new HTTP request. */ async connect(req, opts) { const { secureEndpoint } = opts; const isWebSocket = req.getHeader('upgrade') === 'websocket'; // First, get a generated `FindProxyForURL()` function, // either cached or retrieved from the source const resolver = await this.getResolver(); // Calculate the `url` parameter const protocol = secureEndpoint ? 'https:' : 'http:'; const host = opts.host && net.isIPv6(opts.host) ? `[${opts.host}]` : opts.host; const defaultPort = secureEndpoint ? 443 : 80; const url = Object.assign(new URL(req.path, `${protocol}//${host}`), defaultPort ? undefined : { port: opts.port }); debug('url: %s', url); let result = await resolver(url); // Default to "DIRECT" if a falsey value was returned (or nothing) if (!result) { result = 'DIRECT'; } const proxies = String(result) .trim() .split(/\s*;\s*/g) .filter(Boolean); if (this.opts.fallbackToDirect && !proxies.includes('DIRECT')) { proxies.push('DIRECT'); } for (const proxy of proxies) { let agent = null; let socket = null; const [type, target] = proxy.split(/\s+/); debug('Attempting to use proxy: %o', proxy); if (type === 'DIRECT') { // Direct connection to the destination endpoint if (secureEndpoint) { socket = tls.connect(setServernameFromNonIpHost(opts)); } else { socket = net.connect(opts); } } else if (type === 'SOCKS' || type === 'SOCKS5') { // Use a SOCKSv5h proxy const { SocksProxyAgent } = await import('socks-proxy-agent'); agent = new SocksProxyAgent(`socks://${target}`, this.opts); } else if (type === 'SOCKS4') { // Use a SOCKSv4a proxy const { SocksProxyAgent } = await import('socks-proxy-agent'); agent = new SocksProxyAgent(`socks4a://${target}`, this.opts); } else if (type === 'PROXY' || type === 'HTTP' || type === 'HTTPS') { // Use an HTTP or HTTPS proxy // http://dev.chromium.org/developers/design-documents/secure-web-proxy const proxyURL = `${type === 'HTTPS' ? 'https' : 'http'}://${target}`; if (secureEndpoint || isWebSocket) { const { HttpsProxyAgent } = await import('https-proxy-agent'); agent = new HttpsProxyAgent(proxyURL, this.opts); } else { const { HttpProxyAgent } = await import('http-proxy-agent'); agent = new HttpProxyAgent(proxyURL, this.opts); } } try { if (socket) { // "DIRECT" connection, wait for connection confirmation await once(socket, 'connect'); req.emit('proxy', { proxy, socket }); return socket; } if (agent) { const s = await agent.connect(req, opts); if (!(s instanceof net.Socket)) { throw new Error('Expected a `net.Socket` to be returned from agent'); } req.emit('proxy', { proxy, socket: s }); return s; } throw new Error(`Could not determine proxy type for: ${proxy}`); } catch (err) { debug('Got error for proxy %o: %o', proxy, err); req.emit('proxy', { proxy, error: err }); } } throw new Error(`Failed to establish a socket connection to proxies: ${JSON.stringify(proxies)}`); } } PacProxyAgent.protocols = [ 'pac+data', 'pac+file', 'pac+ftp', 'pac+http', 'pac+https', ]; //# sourceMappingURL=index.js.map