This repository was archived by the owner on Aug 2, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
62 lines (52 loc) · 1.84 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
/* istanbul ignore else */
if (process.env.NODE_ENV === 'test')
var configPath = './testing_config.js';
else
var configPath = './config.js';
var config = require(configPath);
var strings = require('./strings.js');
var restify = require('restify');
var fs = require('fs');
var path = require('path');
var FORBIDDEN_CODE = 403;
var FORBIDDEN_ERROR = {error: {code: 'FORBIDDEN',
message: strings.FORBIDDEN}};
function SEND_FORBIDDEN(req, res, next) {
res.send(FORBIDDEN_CODE, FORBIDDEN_ERROR);
}
var server = restify.createServer();
server.use(restify.queryParser()); // Allows us to access req.query
server.name = 'Hook to Deploy';
server.get('/hook/:hookName', function(req, res, next) {
if (!config.hooks.hasOwnProperty(req.params.hookName) || // hook does not exist or
!req.query.hasOwnProperty('key')) { // no key provided
SEND_FORBIDDEN(req, res, next);
return;
}
var hook = config.hooks[req.params.hookName];
if (req.query.key !== hook.key) { // hook key is incorrect
SEND_FORBIDDEN(req, res, next);
return;
}
hook.action(req, res); // Hook must handle res.send()
});
server.get('/results/:filename', function(req, res, next) {
var resultsPath = path.join(config.resultsFolder, req.params.filename);
if (fs.existsSync(resultsPath) && fs.statSync(resultsPath).isFile()) {
fs.readFile(resultsPath, {encoding: 'utf8'}, function(err, jsonFile) {
if (err) {
res.send(500, {error: err});
} else {
var data = JSON.parse(jsonFile);
res.send(data);
}
});
} else {
SEND_FORBIDDEN(req, res, next);
}
});
server.on('NotFound', SEND_FORBIDDEN);
server.on('MethodNotAllowed', SEND_FORBIDDEN);
server.listen(config.port, function() {
console.log('%s listening on %s', server.name, server.url);
});