summaryrefslogtreecommitdiffstats
path: root/go/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'go/index.js')
-rw-r--r--go/index.js18
1 files changed, 1 insertions, 17 deletions
diff --git a/go/index.js b/go/index.js
index 3bac2f7b..e9b551c0 100644
--- a/go/index.js
+++ b/go/index.js
@@ -1,24 +1,12 @@
// configuration
-var hostname = process.env.HOSTN;
var httpPort = process.env.PORT;
-var uriPrefix = process.env.URI_PREFIX;
var redisPrefix = process.env.REDIS_KEY_PREFIX;
-var appendDomainToUri = process.env.NOT_SO_SHORT === 'true';
// automatic configuration
if (!httpPort) {
httpPort = 1337;
}
-if (!uriPrefix) {
- uriPrefix = '';
- if (hostname) {
- uriPrefix += 'http://' + hostname;
- if (httpPort != 80) {
- uriPrefix += ':' + httpPort;
- }
- }
-}
if (!redisPrefix) {
redisPrefix = 'go:';
}
@@ -73,7 +61,7 @@ function create (req, res) {
var uri = fields.uri;
// TODO check uri(?)
var shortPath = '/' + reply;
- var shortUri = uriPrefix + shortPath;
+ var shortUri = 'http://' + req.headers.host + shortPath;
var key = redisPrefix + shortPath;
redisClient.set(key, uri, function (error) {
@@ -81,10 +69,6 @@ function create (req, res) {
return internalError(err, req, res);
}
- if (appendDomainToUri) {
- shortUri += '#' + url.parse(uri).host
- }
-
res.writeHead(200, { 'content-type': 'text/plain' });
return res.end(shortUri + '\r\n');
});