UNPKG

http-proxy-agent

Version:

An HTTP(s) proxy `http.Agent` implementation for HTTP

103 lines (81 loc) 2.87 kB
/** * Module dependencies. */ var net = require('net'); var tls = require('tls'); var url = require('url'); var extend = require('extend'); var Agent = require('agent-base'); var inherits = require('util').inherits; /** * Module exports. */ module.exports = HttpProxyAgent; /** * The `HttpProxyAgent` implements an HTTP Agent subclass that connects to the * specified "HTTP proxy server" in order to proxy HTTP requests. * * @api public */ function HttpProxyAgent (opts) { if (!(this instanceof HttpProxyAgent)) return new HttpProxyAgent(opts); if ('string' == typeof opts) opts = url.parse(opts); if (!opts) throw new Error('an HTTP(S) proxy server `host` and `port` must be specified!'); Agent.call(this, connect); var proxy = extend({}, opts); // if `true`, then connect to the proxy server over TLS. defaults to `false`. this.secureProxy = proxy.protocol ? proxy.protocol == 'https:' : false; // prefer `hostname` over `host`, and set the `port` if needed proxy.host = proxy.hostname || proxy.host; proxy.port = +proxy.port || (this.secureProxy ? 443 : 80); if (proxy.host && proxy.path) { // if both a `host` and `path` are specified then it's most likely the // result of a `url.parse()` call... we need to remove the `path` portion so // that `net.connect()` doesn't attempt to open that as a unix socket file. delete proxy.path; delete proxy.pathname; } this.proxy = proxy; } inherits(HttpProxyAgent, Agent); /** * Default options for the "connect" opts object. */ var defaults = { port: 80 }; /** * Called when the node-core HTTP client library is creating a new HTTP request. * * @api public */ function connect (req, _opts, fn) { var proxy = this.proxy; var secureProxy = this.secureProxy; // these `opts` are the connect options to connect to the destination endpoint var opts = extend({}, defaults, _opts); // change the `http.ClientRequest` instance's "path" field // to the absolute path of the URL that will be requested var parsed = url.parse(req.path); if (null == parsed.protocol) parsed.protocol = 'http:'; if (null == parsed.hostname) parsed.hostname = opts.hostname || opts.host; if (null == parsed.port) parsed.port = opts.port; if (parsed.port == defaults.port) { // if port is 80, then we can remove the port so that the // ":80" portion is not on the produced URL delete parsed.port; } var absolute = url.format(parsed); req.path = absolute; // inject the `Proxy-Authorization` header if necessary var auth = proxy.auth; if (auth) { req.setHeader('Proxy-Authorization', 'Basic ' + new Buffer(auth).toString('base64')); } // create a socket connection to the proxy server var socket; if (secureProxy) { socket = tls.connect(proxy); } else { socket = net.connect(proxy); } fn(null, socket); };