forked from atmos/camo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
260 lines (233 loc) · 9.04 KB
/
server.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
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
// Generated by CoffeeScript 1.6.3
(function() {
var Crypto, Fs, Http, QueryString, Url, camo_hostname, content_length_limit, current_connections, debug_log, error_log, finish, four_oh_four, hexdec, logging_enabled, max_redirects, port, process_url, server, shared_key, socket_timeout, started_at, total_connections, version;
Fs = require('fs');
Url = require('url');
Http = require('http');
Crypto = require('crypto');
QueryString = require('querystring');
port = parseInt(process.env.PORT || 8081);
version = "1.2.1";
shared_key = process.env.CAMO_KEY || '0x24FEEDFACEDEADBEEFCAFE';
max_redirects = process.env.CAMO_MAX_REDIRECTS || 4;
camo_hostname = process.env.CAMO_HOSTNAME || "unknown";
socket_timeout = process.env.CAMO_SOCKET_TIMEOUT || 10;
logging_enabled = process.env.CAMO_LOGGING_ENABLED || "disabled";
content_length_limit = parseInt(process.env.CAMO_LENGTH_LIMIT || 5242880, 10);
debug_log = function(msg) {
if (logging_enabled === "debug") {
console.log("--------------------------------------------");
console.log(msg);
return console.log("--------------------------------------------");
}
};
error_log = function(msg) {
if (logging_enabled !== "disabled") {
return console.error("[" + (new Date().toISOString()) + "] " + msg);
}
};
total_connections = 0;
current_connections = 0;
started_at = new Date;
four_oh_four = function(resp, msg, url) {
error_log("" + msg + ": " + ((url != null ? url.format() : void 0) || 'unknown'));
resp.writeHead(404);
return finish(resp, "Not Found");
};
finish = function(resp, str) {
current_connections -= 1;
if (current_connections < 1) {
current_connections = 0;
}
return resp.connection && resp.end(str);
};
process_url = function(url, transferred_headers, resp, remaining_redirects) {
var query_path, src, srcReq;
if (url.host != null) {
if (url.protocol === 'https:') {
error_log("Redirecting https URL to origin: " + (url.format()));
resp.writeHead(302, {
'Location': url.format()
});
finish(resp);
return;
} else if (url.protocol !== 'http:') {
four_oh_four(resp, "Unknown protocol", url);
return;
}
src = Http.createClient(url.port || 80, url.hostname);
src.on('error', function(error) {
return four_oh_four(resp, "Client Request error " + error.stack, url);
});
query_path = url.pathname;
if (url.query != null) {
query_path += "?" + url.query;
}
transferred_headers.host = url.host;
debug_log(transferred_headers);
srcReq = src.request('GET', query_path, transferred_headers);
srcReq.setTimeout(socket_timeout * 1000, function() {
srcReq.abort();
return four_oh_four(resp, "Socket timeout", url);
});
srcReq.on('response', function(srcResp) {
var content_length, is_finished, newHeaders, newUrl;
is_finished = true;
debug_log(srcResp.headers);
content_length = srcResp.headers['content-length'];
if (content_length > content_length_limit) {
srcResp.destroy();
return four_oh_four(resp, "Content-Length exceeded", url);
} else {
newHeaders = {
'content-type': srcResp.headers['content-type'],
'cache-control': srcResp.headers['cache-control'] || 'public, max-age=31536000',
'Camo-Host': camo_hostname,
'X-Content-Type-Options': 'nosniff'
};
if (content_length != null) {
newHeaders['content-length'] = content_length;
}
if (srcResp.headers['transfer-encoding']) {
newHeaders['transfer-encoding'] = srcResp.headers['transfer-encoding'];
}
if (srcResp.headers['content-encoding']) {
newHeaders['content-encoding'] = srcResp.headers['content-encoding'];
}
srcResp.on('end', function() {
if (is_finished) {
return finish(resp);
}
});
srcResp.on('error', function() {
if (is_finished) {
return finish(resp);
}
});
switch (srcResp.statusCode) {
case 200:
if (newHeaders['content-type'] && newHeaders['content-type'].slice(0, 5) !== 'image') {
srcResp.destroy();
four_oh_four(resp, "Non-Image content-type returned", url);
return;
}
debug_log(newHeaders);
resp.writeHead(srcResp.statusCode, newHeaders);
return srcResp.pipe(resp);
case 301:
case 302:
case 303:
case 307:
srcResp.destroy();
if (remaining_redirects <= 0) {
return four_oh_four(resp, "Exceeded max depth", url);
} else if (!srcResp.headers['location']) {
return four_oh_four(resp, "Redirect with no location", url);
} else {
is_finished = false;
newUrl = Url.parse(srcResp.headers['location']);
if (!((newUrl.host != null) && (newUrl.hostname != null))) {
newUrl.host = newUrl.hostname = url.hostname;
newUrl.protocol = url.protocol;
}
debug_log("Redirected to " + (newUrl.format()));
return process_url(newUrl, transferred_headers, resp, remaining_redirects - 1);
}
break;
case 304:
srcResp.destroy();
return resp.writeHead(srcResp.statusCode, newHeaders);
default:
srcResp.destroy();
return four_oh_four(resp, "Origin responded with " + srcResp.statusCode, url);
}
}
});
srcReq.on('error', function() {
return finish(resp);
});
srcReq.end();
resp.on('close', function() {
error_log("Request aborted");
return srcReq.abort();
});
return resp.on('error', function(e) {
error_log("Request error: " + e);
return srcReq.abort();
});
} else {
return four_oh_four(resp, "No host found " + url.host, url);
}
};
hexdec = function(str) {
var buf, i, _i, _ref;
if (str && str.length > 0 && str.length % 2 === 0 && !str.match(/[^0-9a-f]/)) {
buf = new Buffer(str.length / 2);
for (i = _i = 0, _ref = str.length; _i < _ref; i = _i += 2) {
buf[i / 2] = parseInt(str.slice(i, +(i + 1) + 1 || 9e9), 16);
}
return buf.toString();
}
};
server = Http.createServer(function(req, resp) {
var dest_url, encoded_url, hmac, hmac_digest, query_digest, transferred_headers, url, url_type, user_agent, _base, _ref, _ref1;
if (req.method !== 'GET' || req.url === '/') {
resp.writeHead(200);
return resp.end('hwhat');
} else if (req.url === '/favicon.ico') {
resp.writeHead(200);
return resp.end('ok');
} else if (req.url === '/status') {
resp.writeHead(200);
return resp.end("ok " + current_connections + "/" + total_connections + " since " + (started_at.toString()));
} else {
total_connections += 1;
current_connections += 1;
url = Url.parse(req.url);
user_agent = (_base = process.env).CAMO_HEADER_VIA || (_base.CAMO_HEADER_VIA = "Camo Asset Proxy " + version);
transferred_headers = {
'Via': user_agent,
'User-Agent': user_agent,
'Accept': (_ref = req.headers.accept) != null ? _ref : 'image/*',
'Accept-Encoding': req.headers['accept-encoding'],
'x-forwarded-for': req.headers['x-forwarded-for'],
'x-content-type-options': 'nosniff'
};
delete req.headers.cookie;
_ref1 = url.pathname.replace(/^\//, '').split("/", 2), query_digest = _ref1[0], encoded_url = _ref1[1];
if (encoded_url = hexdec(encoded_url)) {
url_type = 'path';
dest_url = encoded_url;
} else {
url_type = 'query';
dest_url = QueryString.parse(url.query).url;
}
debug_log({
type: url_type,
url: req.url,
headers: req.headers,
dest: dest_url,
digest: query_digest
});
if (req.headers['via'] && req.headers['via'].indexOf(user_agent) !== -1) {
return four_oh_four(resp, "Requesting from self");
}
if ((url.pathname != null) && dest_url) {
hmac = Crypto.createHmac("sha1", shared_key);
hmac.update(dest_url, 'utf8');
hmac_digest = hmac.digest('hex');
if (hmac_digest === query_digest) {
url = Url.parse(dest_url);
return process_url(url, transferred_headers, resp, max_redirects);
} else {
return four_oh_four(resp, "checksum mismatch " + hmac_digest + ":" + query_digest);
}
} else {
return four_oh_four(resp, "No pathname provided on the server");
}
}
});
console.log("SSL-Proxy running on " + port + " with pid:" + process.pid + ".");
console.log("Using the secret key " + shared_key);
server.listen(port);
}).call(this);