forked from bithavoc/express-winston
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
251 lines (205 loc) · 9.42 KB
/
index.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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
// Copyright (c) 2012-2014 Heapsource.com and Contributors - http://www.heapsource.com
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
//
var winston = require('winston');
var util = require('util');
var chalk = require('chalk');
//Allow this file to get an exclusive copy of underscore so it can change the template settings without affecting others
delete require.cache[require.resolve('underscore')];
var _ = require('underscore');
delete require.cache[require.resolve('underscore')];
/**
* A default list of properties in the request object that are allowed to be logged.
* These properties will be safely included in the meta of the log.
* 'body' is not included in this list because it can contains passwords and stuff that are sensitive for logging.
* TODO: Include 'body' and get the defaultRequestFilter to filter the inner properties like 'password' or 'password_confirmation', etc. Pull requests anyone?
* @type {Array}
*/
var requestWhitelist = ['url', 'headers', 'method', 'httpVersion', 'originalUrl', 'query'];
/**
* A default list of properties in the request body that are allowed to be logged.
* This will normally be empty here, since it should be done at the route level.
* @type {Array}
*/
var bodyWhitelist = [];
/**
* A default list of properties in the request body that are not allowed to be logged.
* @type {Array}
*/
var bodyBlacklist = [];
/**
* A default list of properties in the response object that are allowed to be logged.
* These properties will be safely included in the meta of the log.
* @type {Array}
*/
var responseWhitelist = ['statusCode'];
/**
* A default function to filter the properties of the req object.
* @param req
* @param propName
* @return {*}
*/
var defaultRequestFilter = function (req, propName) {
return req[propName];
};
/**
* A default function to filter the properties of the res object.
* @param res
* @param propName
* @return {*}
*/
var defaultResponseFilter = function (req, propName) {
return req[propName];
};
function filterObject(originalObj, whiteList, initialFilter) {
var obj = {};
var fieldsSet = false;
[].concat(whiteList).forEach(function (propName) {
var value = initialFilter(originalObj, propName);
if(typeof (value) !== 'undefined') {
obj[propName] = value;
fieldsSet = true;
};
});
return fieldsSet?obj:undefined;
}
//
// ### function errorLogger(options)
// #### @options {Object} options to initialize the middleware.
//
function errorLogger(options) {
ensureValidOptions(options);
options.requestFilter = options.requestFilter || defaultRequestFilter;
options.winstonInstance = options.winstonInstance || (new winston.Logger ({ transports: options.transports }));
return function (err, req, res, next) {
// Let winston gather all the error data.
var exceptionMeta = winston.exception.getAllInfo(err);
exceptionMeta.req = filterObject(req, requestWhitelist, options.requestFilter);
// This is fire and forget, we don't want logging to hold up the request so don't wait for the callback
options.winstonInstance.log('error', 'middlewareError', exceptionMeta, function () {
// Nothing to do here
});
next(err);
};
}
//
// ### function logger(options)
// #### @options {Object} options to initialize the middleware.
//
function logger(options) {
ensureValidOptions(options);
options.requestFilter = options.requestFilter || defaultRequestFilter;
options.responseFilter = options.responseFilter || defaultResponseFilter;
options.winstonInstance = options.winstonInstance || (new winston.Logger ({ transports: options.transports }));
options.level = options.level || "info";
options.statusLevels = options.statusLevels || false;
options.msg = options.msg || "HTTP {{req.method}} {{req.url}}";
options.colorStatus = options.colorStatus || false;
options.expressFormat = options.expressFormat || false;
return function (req, res, next) {
req._startTime = (new Date);
req._routeWhitelists = {
req: [],
res: [],
body: []
};
req._routeBlacklists = {
body: []
};
// Manage to get information from the response too, just like Connect.logger does:
var end = res.end;
res.end = function(chunk, encoding) {
res.responseTime = (new Date) - req._startTime;
res.end = end;
res.end(chunk, encoding);
var level = options.level;
if (options.statusLevels) {
if (res.statusCode >= 400) { level = "warn"; }
if (res.statusCode >= 500) { level = "error"; }
}
if ((options.colorStatus) || (options.expressFormat)) {
// Palette from https://github.com/expressjs/morgan/blob/master/index.js#L205
var statusColor = 'green';
if (res.statusCode >= 500) statusColor = 'red';
else if (res.statusCode >= 400) statusColor = 'yellow';
else if (res.statusCode >= 300) statusColor = 'cyan';
var coloredStatusCode = chalk[statusColor](res.statusCode);
}
var meta = {};
if(options.meta !== false) {
var bodyWhitelist, blacklist;
requestWhitelist = requestWhitelist.concat(req._routeWhitelists.req || []);
responseWhitelist = responseWhitelist.concat(req._routeWhitelists.res || []);
meta.req = filterObject(req, requestWhitelist, options.requestFilter);
meta.res = filterObject(res, responseWhitelist, options.responseFilter);
if (_.contains(responseWhitelist, 'body') && chunk != null) {
var contentHeader = res._headers['content-type'];
if( contentHeader && contentHeader.indexOf('json') >= 0)
meta.res.body = JSON.parse(chunk);
else if(_.isString( chunk))
meta.res.body = chunk;
else if( contentHeader && contentHeader.indexOf('text') >= 0)
meta.res.body = chunk.toString();
else
meta.res.body = util.inspect( chunk.slice(-100)) + chunk.length>100 ? '...' : '';
}
bodyWhitelist = req._routeWhitelists.body || [];
blacklist = _.union(bodyBlacklist, (req._routeBlacklists.body || []));
if( typeof (req.body) !== 'undefined') {
if (blacklist.length > 0 && bodyWhitelist.length === 0) {
var whitelist = _.difference(_.keys(req.body), blacklist);
meta.req.body = filterObject(req.body, whitelist, options.requestFilter);
} else {
meta.req.body = filterObject(req.body, bodyWhitelist, options.requestFilter);
}
}
meta.responseTime = res.responseTime;
}
if(options.expressFormat) {
var msg = chalk.grey(req.method+" "+req.url)+" "+chalk[statusColor](res.statusCode)+" "+chalk.grey(res.responseTime+"ms");
} else {
// Using mustache style templating
_.templateSettings = {
interpolate: /\{\{(.+?)\}\}/g
};
var template = _.template(options.msg);
var msg = template({req: req, res: res});
}
// This is fire and forget, we don't want logging to hold up the request so don't wait for the callback
options.winstonInstance.log(level, msg, meta, function () {
// Nothing to do here
});
};
next();
};
}
function ensureValidOptions(options) {
if(!options) throw new Error("options are required by express-winston middleware");
if(!((options.transports && (options.transports.length > 0)) || options.winstonInstance))
throw new Error("transports or a winstonInstance are required by express-winston middleware");
};
module.exports.errorLogger = errorLogger;
module.exports.logger = logger;
module.exports.requestWhitelist = requestWhitelist;
module.exports.bodyWhitelist = bodyWhitelist;
module.exports.bodyBlacklist = bodyBlacklist;
module.exports.responseWhitelist = responseWhitelist;
module.exports.defaultRequestFilter = defaultRequestFilter;
module.exports.defaultResponseFilter = defaultResponseFilter;