-
Notifications
You must be signed in to change notification settings - Fork 18
/
app.js
206 lines (174 loc) · 6.86 KB
/
app.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
/***************
* node-unblocker: Web Proxy for evading firewalls and content filters,
* similar to CGIProxy or PHProxy
*
*
* This project is hosted on github: https://github.com/nfriedly/node-unblocker
*
* By Nathan Friedly - http://nfriedly.com
* Released under the terms of the GPL v3
*/
// native imports
var http = require('http'),
https = require('https'),
url = require('url'),
querystring = require('querystring');
// for great performance!
// kind of hard to see much difference in local testing, but I think this should make an appreciable improvement in production
// https://github.com/substack/hyperquest#rant
http.globalAgent.maxSockets = 64;
https.globalAgent.maxSockets = 64;
// local dependencies
var googleAnalytics = require('./lib/googleanalyticsstream'),
blocklist = require('./lib/blocklist'),
serveStatic = require('./lib/static'),
proxy = require('./lib/proxy');
// the configuration file
var config = require('./config');
googleAnalytics.setId(config.google_analytics_id);
serveStatic.setGa(googleAnalytics);
// third-party dependencies
var connect = require('connect'), // todo: call by version once 2.x is listed in npm
RedisStore = require('connect-redis')(connect),
redis;
function handleRequest(request, response) {
// convenience methods
request.thisHost = thisHost.bind(thisHost, request);
request.thisSite = thisSite.bind(thisSite, request);
response.redirectTo = redirectTo.bind(redirectTo, request, response);
var url_data = url.parse(request.url);
// if the user requested the "home" page
// (located at /proxy so that we can more easily tell the difference
// between a user who is looking for the home page and a "/" link)
if (url_data.pathname == "/proxy") {
request.url = "/index.html";
return serveStatic(request, response);
}
// disallow almost everything via robots.txt
if (url_data.pathname == "/robots.txt") {
return serveStatic(request, response);
}
// this is for users who's form actually submitted due to JS being disabled
if (url_data.pathname == "/proxy/no-js") {
// grab the "url" parameter from the querystring
var site = querystring.parse(url.parse(request.url)
.query)
.url;
// and redirect the user to /proxy/url
response.redirectTo(site || "");
}
// only requests that start with this get proxied - the rest get
// redirected to either a url that matches this or the home page
if (url_data.pathname.indexOf("/proxy/http") === 0) {
var uri = url.parse(proxy.getRealUrl(request.url));
// make sure the url in't blocked
if (!blocklist.urlAllowed(uri)) {
return response.redirectTo("?error=Please use a different proxy to access this site");
}
return proxy(uri, request, response);
}
// any other url gets redirected to the correct proxied url if we can
// determine it based on their referrer, or the home page otherwise
return handleUnknown(request, response);
}
/**
* This is what makes this server magic: if we get an unrecognized request that wasn't corrected by
* proxy's filter, this checks the referrer to determine what the path should be, and then issues a
* 302 redirect to a proxied url at that path
*
* todo: handle querystring and post data
*/
function handleUnknown(request, response) {
if (request.url.indexOf('/proxy/') === 0) {
// no trailing slashes
if (request.url == "/proxy/") {
return response.redirectTo("");
}
// we already know it doesn't start with http, so lets fix that first
// "/proxy/".length = 7
return response.redirectTo("/http://" + request.url.substr(7));
}
// if there is no referer, then either they just got here or we can't help them
if (!request.headers.referer) {
return response.redirectTo(""); // "" because we don't want a trailing slash
}
var ref = url.parse(request.headers.referer);
// if we couldn't parse the referrer or they came from another site, they send them to the home page
if (!ref || ref.host != thisHost(request)) {
return response.redirectTo(""); // "" because we don't want a trailing slash
}
// now we know where they came from, so we can do something for them
if (ref.pathname.indexOf('/proxy/http') === 0) {
var real_url = url.parse(proxy.getRealUrl(ref.pathname));
// now, take the requested pat on the previous known host and send the user on their way
return response.redirectTo(real_url.protocol + "//" + real_url.host + request.url);
}
// else they were refered by something on this site that wasn't the home page and didn't come
// through the proxy - aka this shouldn't happen
response.redirectTo("");
}
// returns the configured host if one exists, otherwise the host that the current request came in on
function thisHost(request) {
if (config.host) {
return config.host;
} else {
return request.headers.host; // normal case: include the hostname but assume we're either on a standard port or behind a reverse proxy
}
}
// returns the http://site.com/proxy
function thisSite(request) {
return 'http://' + thisHost(request) + '/proxy';
}
function redirectTo(request, response, site) {
site = site || "";
if (site.length && site.substr(0, 1) != "/" && site.substr(0, 1) != "?") {
site = "/" + site;
}
if (site.substr(0, 6) == "/proxy") { // no /proxy/proxy redirects
site = site.substr(6);
}
if (site == "/") site = ""; // no endless redirect loops
try {
response.writeHead(307, {
'Location': thisSite(request) + site
});
//console.log("recirecting to " + thisSite(request) + site);
} catch (ex) {
// the headers were already sent - we can't redirect them
console.error("Failed to send redirect", ex);
}
response.end();
}
function initApp() {
// the redis client differs depending on if you're using redistogo (heroku) or not
if (config.redistogo_url) {
redis = require('redis-url').connect(config.redistogo_url);
} else {
redis = require('redis').createClient(config.redis_port, config.redis_host, config.redis_options);
}
redis.unref();
return connect()
.use(connect.cookieParser(config.secret))
.use(connect.session({
store: new RedisStore({
client: redis
}),
cookie: {
path: '/',
httpOnly: false,
maxAge: null
}
}))
.use(handleRequest);
}
function getApp(withRedis) {
return withRedis ? initApp() : handleRequest;
}
// for compatibility with gatlin
var app;
module.exports = function(req, res) {
if (!app) app = initApp();
app(req, res);
};
// for testing
module.exports.getApp = getApp;