mongoose-diff-tracking
Version:
Manage Mongo Collection diff History and versions
43 lines (34 loc) • 1.1 kB
JavaScript
exports.create = function(logger) {
return function(req, res, next) {
var rEnd = res.end;
// To track response time
req._rlStartTime = new Date();
// Setup the key-value object of data to log and include some basic info
req.kvLog = {
date: req._rlStartTime.toISOString()
, method: req.method
, url: req.originalUrl
, _rlLevel: 'info' // internal usage
, type: 'reqlog'
};
// Proxy the real end function
res.end = function(chunk, encoding) {
// Do the work expected
res.end = rEnd;
res.end(chunk, encoding);
// And do the work we want now (logging!)
// Save a few more variables that we can only get at the end
req.kvLog.status = res.statusCode;
req.kvLog.response_time = (new Date() - req._rlStartTime);
// Send the log off to winston
var level = req.kvLog._rlLevel
, msg = req.kvLog.message || '';
delete req.kvLog._rlLevel;
if (msg.length) {
delete req.kvLog.message;
}
logger.log(level, msg, req.kvLog);
};
next();
};
};