2018-10-24 21:42:33 +08:00
|
|
|
'use strict';
|
|
|
|
|
2019-10-04 00:24:39 +08:00
|
|
|
const errorHandlerFactory = require('../../services/error-handler-factory');
|
|
|
|
const { stringifyForLogs } = require('../../utils/logs');
|
2018-12-06 02:15:57 +08:00
|
|
|
const MAX_ERROR_STRING_LENGTH = 1024;
|
2018-02-17 01:21:06 +08:00
|
|
|
|
2019-12-24 01:19:08 +08:00
|
|
|
module.exports = function error () {
|
|
|
|
return function errorMiddleware (err, req, res, next) {
|
2018-03-28 19:06:39 +08:00
|
|
|
const errorHandler = errorHandlerFactory(err);
|
2019-12-24 01:19:08 +08:00
|
|
|
const errorResponse = errorHandler.getResponse();
|
2018-02-17 01:21:06 +08:00
|
|
|
|
|
|
|
if (global.settings.environment === 'development') {
|
2018-03-28 19:35:19 +08:00
|
|
|
errorResponse.stack = err.stack;
|
2018-02-17 01:21:06 +08:00
|
|
|
}
|
|
|
|
|
2018-03-28 16:48:08 +08:00
|
|
|
if (global.settings.environment !== 'test') {
|
2018-02-17 01:21:06 +08:00
|
|
|
// TODO: email this Exception report
|
2019-12-24 01:19:08 +08:00
|
|
|
console.error('EXCEPTION REPORT: ' + err.stack);
|
2018-02-17 01:21:06 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Force inline content disposition
|
2019-12-24 01:19:08 +08:00
|
|
|
res.header('Content-Disposition', 'inline');
|
2018-02-17 01:21:06 +08:00
|
|
|
|
2018-03-28 16:48:08 +08:00
|
|
|
if (req && req.profiler) {
|
|
|
|
req.profiler.done('finish');
|
|
|
|
res.header('X-SQLAPI-Profiler', req.profiler.toJSONString());
|
2018-02-17 01:21:06 +08:00
|
|
|
}
|
|
|
|
|
2018-03-28 19:50:45 +08:00
|
|
|
setErrorHeader(errorHandler, res);
|
2018-02-17 01:21:06 +08:00
|
|
|
|
|
|
|
res.header('Content-Type', 'application/json; charset=utf-8');
|
2018-03-28 18:50:07 +08:00
|
|
|
res.status(getStatusError(errorHandler, req));
|
2018-02-17 01:21:06 +08:00
|
|
|
if (req.query && req.query.callback) {
|
2018-03-28 19:35:19 +08:00
|
|
|
res.jsonp(errorResponse);
|
2018-02-17 01:21:06 +08:00
|
|
|
} else {
|
2018-03-28 19:35:19 +08:00
|
|
|
res.json(errorResponse);
|
2018-02-17 01:21:06 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (req && req.profiler) {
|
|
|
|
res.req.profiler.sendStats();
|
|
|
|
}
|
|
|
|
|
2020-02-27 00:19:07 +08:00
|
|
|
return next();
|
2018-02-17 01:21:06 +08:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2019-12-24 01:19:08 +08:00
|
|
|
function getStatusError (errorHandler, req) {
|
2018-03-28 19:52:45 +08:00
|
|
|
let statusError = errorHandler.http_status;
|
2018-02-17 01:21:06 +08:00
|
|
|
|
|
|
|
// JSONP has to return 200 status error
|
|
|
|
if (req && req.query && req.query.callback) {
|
|
|
|
statusError = 200;
|
|
|
|
}
|
|
|
|
|
|
|
|
return statusError;
|
|
|
|
}
|
|
|
|
|
2019-12-24 01:19:08 +08:00
|
|
|
function setErrorHeader (errorHandler, res) {
|
2018-03-28 19:50:45 +08:00
|
|
|
const errorsLog = {
|
|
|
|
context: errorHandler.context,
|
|
|
|
detail: errorHandler.detail,
|
|
|
|
hint: errorHandler.hint,
|
|
|
|
statusCode: errorHandler.http_status,
|
|
|
|
message: errorHandler.message
|
|
|
|
};
|
2018-02-17 01:21:06 +08:00
|
|
|
|
2019-02-27 17:40:49 +08:00
|
|
|
res.set('X-SQLAPI-Errors', stringifyForLogs(errorsLog, MAX_ERROR_STRING_LENGTH));
|
2018-02-17 01:21:06 +08:00
|
|
|
}
|