proxy requests taking too long; closes #37

This commit is contained in:
Radek Stepan 2014-01-01 13:24:45 +00:00
parent 9d793a3265
commit f02bf813e9
8 changed files with 23 additions and 14 deletions

View File

@ -20514,7 +20514,7 @@ if (typeof exports == "object") {
timeout = setTimeout(function() {
exited = true;
return cb('Request has timed out');
}, 3e3);
}, 1e4);
return req.end(function(err, data) {
if (exited) {
return;

File diff suppressed because one or more lines are too long

View File

@ -872,7 +872,7 @@
timeout = setTimeout(function() {
exited = true;
return cb('Request has timed out');
}, 3e3);
}, 1e4);
return req.end(function(err, data) {
if (exited) {
return;

2
build/app.min.js vendored

File diff suppressed because one or more lines are too long

View File

@ -13,40 +13,47 @@ config.host ?= 'api.github.com'
_.extend scrubbed = {}, config, { 'protocol': 'http', 'token': null }
proxy = (req, res, next) ->
write = (code, body) ->
end = (code, body) ->
res.writeHead code, {'Content-Type': 'application/json; charset=utf-8'}
res.end body
# Log it.
console.log new Date(), req.url
# Config?
if req.url is '/config.json'
# Refer to us like so.
# Prefer custom header x-forwarded-host if defined.
scrubbed.host = req.headers['x-forwarded-host'] or req.headers.host
return write 200, JSON.stringify scrubbed, null, 4
return end 200, JSON.stringify scrubbed, null, 4
# API request?
# GitHub API request?
if req.url.match /^\/repos/
# The new headers.
# The default headers.
headers =
# See http://developer.github.com/v3/media/#beta-v3-and-the-future
'Accept': 'application/vnd.github.v3'
# See http://developer.github.com/v3/#user-agent-required
'User-Agent': 'GitHub-Burndown-Chart'
# Add a token?
headers.Authorization = 'token ' + config.token if config.token
headers.Authorization = "token #{config.token}" if config.token?
# Make the HTTPS request.
return request {
'uri': 'https://' + config.host + req.url
'uri': "https://#{config.host}#{req.url}"
headers
}, (_err, _res, body) ->
return write(500) if _err
write _res.statusCode, body
# Handle the response.
}, (err, _res, body) ->
return end(500) if err
end _res.statusCode, body
# Get handled by Connect.
do next
app = connect()
.use(proxy)
# Serve the public directory with the app, no need to launch another service.
.use(connect.static(__dirname + '/public'))
# Connect on an env port or go random.
.listen process.env.PORT, ->
console.log 'Proxy listening on port', app.address().port

1
public/.gitignore vendored Normal file
View File

@ -0,0 +1 @@
!config.json

1
public/config.json Symbolic link
View File

@ -0,0 +1 @@
../config.json

View File

@ -66,7 +66,7 @@ request = ({ protocol, host, path, query, headers }, cb) ->
timeout = setTimeout ->
exited = yes
cb 'Request has timed out'
, 3e3
, 1e4 # give us 10s
# Send.
req.end (err, data) ->