Feat (error) include hint on PG errors

Provides useful info!
This commit is contained in:
Joey Baker 2016-09-04 17:26:51 -07:00
parent b032be20d1
commit da6b3ce963

View File

@ -8,7 +8,8 @@ export default (target, key, descriptor) => {
await fn(request, reply);
} catch (e) {
if (e.original) {
const { code, detail } = e.original;
const { code, detail, hint } = e.original;
let error;
// pg error codes https://www.postgresql.org/docs/9.5/static/errcodes-appendix.html
if (code && (code.startsWith('22') || code.startsWith('23'))) {
@ -20,6 +21,10 @@ export default (target, key, descriptor) => {
error.reformat();
}
// hint might provide useful information about how to fix the problem
if (hint) {
error.message += ` Hint: ${hint}`;
error.reformat();
}
reply(error);