forked from prose/gatekeeper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
server.js
154 lines (135 loc) · 3.94 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
var url = require('url'),
http = require('http'),
https = require('https'),
fs = require('fs'),
qs = require('querystring'),
express = require('express'),
app = express();
// Load config defaults from JSON file.
// Environment variables override defaults.
function loadConfig() {
var config = JSON.parse(fs.readFileSync(__dirname+ '/config.json', 'utf-8'));
for (var i in config) {
if (i === 'clients') {
for (var client in config.clients) {
for (var clientKey in config.clients[client]) {
var envKey;
if (client === 'default') {
envKey = clientKey.toUpperCase();
} else {
envKey = (clientKey + '_' + client).toUpperCase();
}
config.clients[client][clientKey] = process.env[envKey] || config.clients[client][clientKey];
}
}
continue;
}
config[i] = process.env[i.toUpperCase()] || config[i];
}
console.log('Configuration');
console.log(config);
return config;
}
var config = loadConfig();
function authenticate(code, client, cb) {
var data = qs.stringify({
client_id: config.clients[client].oauth_client_id,
client_secret: config.clients[client].oauth_client_secret,
code: code,
grant_type: 'authorization_code'
});
var reqOptions = {
host: config.oauth_host,
port: config.oauth_port,
path: config.oauth_path,
method: config.oauth_method,
headers: {
'Content-Type': 'application/x-www-form-urlencoded',
'Accept': 'application/json',
'content-length': data.length
}
};
var body = "";
var req = https.request(reqOptions, function(res) {
res.setEncoding('utf8');
res.on('data', function (chunk) { body += chunk; });
res.on('end', function() {
cb(null, JSON.parse(body).access_token);
});
});
req.write(data);
req.end();
req.on('error', function(e) { cb(e.message); });
}
// Convenience for allowing CORS on routes - GET only
app.all('*', function (req, res, next) {
res.header('Access-Control-Allow-Origin', '*');
res.header('Access-Control-Allow-Methods', 'GET, OPTIONS');
res.header('Access-Control-Allow-Headers', 'Content-Type');
next();
});
function checkRedirect(req, res) {
const code = req.params.code;
var client = req.params.client || "default";
const redirectUrl = process.env.GATEKEEPER_AUTHENTICATE_REDIRECT;
const clientRenames = process.env.GATEKEEPER_CLIENT_RENAMES;
if (clientRenames) {
const renames = JSON.parse(clientRenames);
if (renames[client]) {
client = renames[client];
}
}
if (redirectUrl) {
const url = `${redirectUrl}/${client}/${code}`;
console.log(`Authenticate for ${client} ${code} redirected to ${url}`);
res.redirect(302, url);
return true;
}
return false;
}
app.get('/authenticate/:client/:code', function(req, res) {
if (!config.clients[req.params.client]) {
return res.json(404, {
error: 'unknown_client'
});
}
const redirected = checkRedirect(req, res);
if (redirected) {
return;
}
console.log('authenticating ' + req.params.client + ' code:' + req.params.code);
authenticate(req.params.code, req.params.client, function(err, token) {
if (err || !token) {
return res.json(402, {
error: 'bad_code'
});
}
res.json({
token: token
});
});
});
app.get('/authenticate/:code', function(req, res) {
const redirected = checkRedirect(req, res);
if (redirected) {
return;
}
console.log('authenticating code:' + req.params.code);
authenticate(req.params.code, 'default', function(err, token) {
if (err || !token) {
return res.json(402, {
error: 'bad_code'
});
}
res.json({
token: token
});
});
});
var port = process.env.PORT || config.port || 9999;
app.listen(port, null, function (err) {
console.log('Gatekeeper, at your service: http://localhost:' + port);
});
module.exports = {
'app': app,
}