-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathapp.js
147 lines (128 loc) · 4.23 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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
'use strict';
const express = require('express');
const path = require('path');
const logger = require('morgan');
const bodyParser = require('body-parser');
const async = require('async');
const { debug, info, warn, error } = require('portal-env').Logger('portal-mailer:utils');
const wicked = require('wicked-sdk');
const correlationIdHandler = wicked.correlationIdHandler();
const mailer = require('./mailer');
const utils = require('./utils');
const app = express();
app.initialized = false;
app.lastErr = false;
// view engine setup
app.set('views', path.join(__dirname, 'views'));
app.set('view engine', 'jade');
// 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.use('/', routes);
//app.use('/users', users);
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.');
// Don't reset lastErr here!
return res.json({ message: '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.json({ message: 'OK' });
});
});
app._startupSeconds = utils.getUtc();
app.get('/ping', function (req, res, next) {
debug('/ping');
const health = {
name: 'mailer',
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 = app.lastErr.message;
health.error = JSON.stringify(app.lastErr, null, 2);
res.status(500);
}
res.json(health);
});
function processWebhooks(app, webhooks, callback) {
debug('processWebhooks()');
async.eachSeries(webhooks, function (event, done) {
debug('- process event ' + event);
// Brainfucking callback and closure orgy
const acknowledgeEvent = function (ackErr) {
debug('- acknowledgeEvent()');
if (ackErr) {
error(`An error occurred while mailing. Leaving event unacknowledged.`);
return done(null);
}
wicked.deleteWebhookEvent('mailer', event.id, done);
};
if (app.mailerGlobals.mailer.useMailer &&
mailer.isEventInteresting(event)) {
mailer.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('404');
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) {
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) {
res.status(err.status || 500);
res.jsonp({
message: err.message,
error: {}
});
});
module.exports = app;