Merge pull request #16 from Getable/parse-sequelize-errors

Parse Sequelize errors
This commit is contained in:
Mahdi Dibaiee 2016-08-26 13:11:29 +04:30 committed by GitHub
commit b18479e02e

View File

@ -1,4 +1,4 @@
import { wrap } from 'boom';
import Boom from 'boom';
export default (target, key, descriptor) => {
const fn = descriptor.value;
@ -7,11 +7,12 @@ export default (target, key, descriptor) => {
try {
await fn(request, reply);
} catch (e) {
if (e.original) {
const { code, detail } = e.original;
// pg error codes https://www.postgresql.org/docs/9.5/static/errcodes-appendix.html
if (code && (code.startsWith('22') || code.startsWith('23'))) {
const error = wrap(e, 406);
const error = Boom.wrap(e, 406);
// detail tends to be more specific information. So, if we have it, use.
if (detail) {
@ -20,8 +21,30 @@ export default (target, key, descriptor) => {
}
reply(error);
}
} else if (!e.isBoom) {
const { message } = e;
let err;
if (e.name === 'SequelizeValidationError')
err = Boom.badData(message);
else if (e.name === 'SequelizeConnectionTimedOutError')
err = Boom.gatewayTimeout(message);
else if (e.name === 'SequelizeHostNotReachableError')
err = Boom.serverUnavailable(message);
else if (e.name === 'SequelizeUniqueConstraintError')
err = Boom.conflict(message);
else if (e.name === 'SequelizeForeignKeyConstraintError')
err = Boom.expectationFailed(message);
else if (e.name === 'SequelizeExclusionConstraintError')
err = Boom.expectationFailed(message);
else if (e.name === 'SequelizeConnectionError')
err = Boom.badGateway(message);
else err = Boom.badImplementation(message);
reply(err);
} else {
reply(wrap(e));
reply(e);
}
}
};