Forked from tonygambone/https_forward_proxy.js
Last active
December 26, 2015 00:49
-
-
Save fffaraz/7066558 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// HTTP forward proxy server that can also proxy HTTPS requests | |
// using the CONNECT method | |
// requires https://github.com/nodejitsu/node-http-proxy | |
var httpProxy = require('http-proxy'); | |
var url = require('url'); | |
var net = require('net'); | |
var http = require('http'); | |
process.on('uncaughtException', logError); | |
function truncate(str) { | |
var maxLength = 70; | |
return (str.length >= maxLength ? str.substring(0,maxLength) + '...' : str); | |
} | |
function logRequest(req) { | |
console.log(req.method + ' ' + truncate(req.url)); | |
//for (var i in req.headers) | |
// console.log(' * ' + i + ': ' + truncate(req.headers[i])); | |
} | |
function logError(e) { | |
console.warn('*** ' + e); | |
} | |
// this proxy will handle regular HTTP requests | |
var regularProxy = new httpProxy.RoutingProxy(); | |
// standard HTTP server that will pass requests | |
// to the proxy | |
var server = http.createServer(function (req, res) { | |
logRequest(req); | |
uri = url.parse(req.url); | |
regularProxy.proxyRequest(req, res, { | |
host: uri.hostname, | |
port: uri.port || 80 | |
}); | |
}); | |
// when a CONNECT request comes in, the 'upgrade' | |
// event is emitted | |
server.on('upgrade', function(req, socket, head) { | |
logRequest(req); | |
// URL is in the form 'hostname:port' | |
var parts = req.url.split(':', 2); | |
// open a TCP connection to the remote host | |
var conn = net.connect(parts[1], parts[0], function() { | |
// respond to the client that the connection was made | |
socket.write("HTTP/1.1 200 OK\r\n\r\n"); | |
// create a tunnel between the two hosts | |
socket.pipe(conn); | |
conn.pipe(socket); | |
}); | |
}); | |
// when a CONNECT request comes in, the 'connect' | |
// event is emitted | |
server.on('connect', function(req, socket, head) { | |
logRequest(req); | |
// URL is in the form 'hostname:port' | |
var parts = req.url.split(':', 2); | |
// open a TCP connection to the remote host | |
var conn = net.connect(parts[1], parts[0], function() { | |
// respond to the client that the connection was made | |
socket.write("HTTP/1.1 200 OK\r\n\r\n"); | |
// create a tunnel between the two hosts | |
socket.pipe(conn); | |
conn.pipe(socket); | |
}); | |
}); | |
server.listen(3333); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment