-
Notifications
You must be signed in to change notification settings - Fork 37
/
app.js
133 lines (117 loc) · 3.82 KB
/
app.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
const express = require('express');
const logger = require('morgan');
const bodyParser = require('body-parser');
const async = require('async');
const { debug, info, warn, error } = require('portal-env').Logger('portal-chatbot:app');
const wicked = require('wicked-sdk');
const correlationIdHandler = wicked.correlationIdHandler();
const chatbot = require('./chatbot');
const utils = require('./utils');
const app = express();
app.initialized = false;
app.lastErr = false;
// Correlation ID
app.use(correlationIdHandler);
logger.token('correlation-id', function (req, res) {
return req.correlationId;
});
app.use(logger('{"date":":date[clf]","method":":method","url":":url","remote-addr":":remote-addr","version":":http-version","status":":status","content-length":":res[content-length]","referrer":":referrer","response-time":":response-time","correlation-id":":correlation-id"}'));
app.use(bodyParser.json());
app.use(bodyParser.urlencoded({ extended: false }));
app.post('/', function (req, res, next) {
debug("post('/')");
if (!app.initialized)
return res.status(503).json({ message: 'Initializing.' });
if (req.app.processingWebhooks) {
debug('Still processing last webhook load.');
return res.send('OK');
}
req.app.processingWebhooks = true;
processWebhooks(app, req.body, function (err) {
req.app.processingWebhooks = false;
if (err) {
error(err);
app.lastErr = err;
return res.status(500).json(err);
}
app.lastErr = null;
return res.send('OK');
});
});
app._startupSeconds = utils.getUtc();
app.get('/ping', function (req, res, next) {
const health = {
name: 'chatbot',
message: 'Up and running',
uptime: (utils.getUtc() - app._startupSeconds),
healthy: true,
pingUrl: app.get('my_url') + 'ping',
version: utils.getVersion(),
gitLastCommit: utils.getGitLastCommit(),
gitBranch: utils.getGitBranch(),
buildDate: utils.getBuildDate()
};
if (!app.initialized) {
health.healthy = 2;
health.message = 'Initializing - Waiting for API';
res.status(503);
} else if (app.lastErr) {
health.healthy = 0;
health.message = lastErr.message;
health.error = JSON.stringify(lastErr, null, 2);
res.status(500);
}
res.json(health);
});
function processWebhooks(app, webhooks, callback) {
debug('processWebhooks()');
const baseUrl = app.get('api_url');
async.eachSeries(webhooks, function (event, done) {
// Brainfucking callback and closure orgy
const acknowledgeEvent = function (ackErr) {
if (ackErr)
return ackCallback(ackErr);
wicked.deleteWebhookEvent('chatbot', event.id, done);
};
if (chatbot.isEventInteresting(event)) {
chatbot.handleEvent(app, event, acknowledgeEvent);
} else {
acknowledgeEvent(null);
}
}, function (err) {
if (err)
return callback(err);
return callback(null);
});
}
// catch 404 and forward to error handler
app.use(function (req, res, next) {
debug("Not found: " + req.path);
const err = new Error('Not Found');
err.status = 404;
next(err);
});
// error handlers
// development error handler
// will print stacktrace
if (app.get('env') === 'development') {
app.use(function (err, req, res, next) {
debug(err);
res.status(err.status || 500);
res.jsonp({
message: err.message,
error: err
});
});
}
// production error handler
// no stacktraces leaked to user
app.use(function (err, req, res, next) {
debug(err);
res.status(err.status || 500);
res.jsonp({
message: err.message,
error: {}
});
});
module.exports = app;