freeCodeCamp/api-server/server/middlewares/error-reporter.js

63 lines
1.7 KiB
JavaScript
Raw Normal View History

import debug from 'debug';
import Rollbar from 'rollbar';
import {
isHandledError,
unwrapHandledError
} from '../utils/create-handled-error.js';
2018-11-29 12:12:15 +00:00
import { rollbar } from '../../../config/secrets';
2018-11-29 12:12:15 +00:00
const { appId } = rollbar;
const reporter = new Rollbar(appId);
const log = debug('fcc:middlewares:error-reporter');
2018-11-29 12:12:15 +00:00
const errTemplate = (error, req) => {
const { message, stack } = error;
return `
Time: ${new Date(Date.now()).toISOString()}
Error: ${message}
Is authenticated user: ${!!req.user}
Route: ${JSON.stringify(req.route, null, 2)}
2018-11-29 12:12:15 +00:00
Stack: ${stack}
2018-11-29 12:12:15 +00:00
// raw
${JSON.stringify(error, null, 2)}
`;
2018-11-29 12:12:15 +00:00
};
export function reportError(err) {
2018-12-02 13:38:27 +00:00
return process.env.NODE_ENV === 'production'
? reporter.error(err.message, err)
: console.error(err);
2018-11-29 12:12:15 +00:00
}
export default function errrorReporter() {
2018-05-18 20:11:44 +00:00
if (process.env.NODE_ENV !== 'production' && process.env.ERROR_REPORTER) {
return (err, req, res, next) => {
console.error(errTemplate(err, req));
if (isHandledError(err)) {
// log out user messages in development
const handled = unwrapHandledError(err);
log(handled.message);
}
next(err);
};
}
return (err, req, res, next) => {
// handled errors do not need to be reported,
// they report a message and maybe redirect the user
// errors with status codes shouldn't be reported
// as they are usually user messages
if (isHandledError(err) || err.statusCode || err.status) {
return next(err);
}
// logging the error provides us with more information,
// i.e isAuthenticatedUser, req.route
console.error(errTemplate(err, req));
2018-11-29 12:12:15 +00:00
reportError(err);
return next(err);
};
}