-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgithubauth.js
More file actions
59 lines (51 loc) · 1.67 KB
/
githubauth.js
File metadata and controls
59 lines (51 loc) · 1.67 KB
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
var http = require('http'),
qs = require('querystring'),
fs = require('fs'),
express = require('express'),
https = require('https');
module.exports = function(app) {
// 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) {
config[i] = process.env[i.toUpperCase()] || config[i];
}
return config;
}
var config = loadConfig();
function authenticate(code, cb) {
var data = qs.stringify({
client_id: config.oauth_client_id,
client_secret: config.oauth_client_secret,
code: code
});
var reqOptions = {
host: config.oauth_host,
port: config.oauth_port,
path: config.oauth_path,
method: config.oauth_method,
headers: { '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, qs.parse(body).access_token);
});
});
req.write(data);
req.end();
req.on('error', function(e) { cb(e.message); });
}
app.use(express.json({strict: true}));
app.get('/authenticate/:code', function(req, res) {
console.log('authenticating code:' + req.params.code);
authenticate(req.params.code, function(err, token) {
var result = err || !token ? {"error": "bad_code"} : { "token": token };
console.log(result);
res.json(result);
});
});
}