1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2024-11-03 21:04:03 +08:00
pigallery2/src/backend/routes/ErrorRouter.ts

45 lines
1.3 KiB
TypeScript
Raw Normal View History

2018-03-31 03:30:30 +08:00
import {RenderingMWs} from '../middlewares/RenderingMWs';
import {ErrorCodes, ErrorDTO} from '../../common/entities/Error';
import {Logger} from '../Logger';
2020-01-03 05:11:59 +08:00
import {Express, Request, Response} from 'express';
2016-05-09 23:04:56 +08:00
export class ErrorRouter {
2018-11-29 06:49:33 +08:00
public static route(app: Express) {
this.addApiErrorHandler(app);
this.addGenericHandler(app);
}
2018-11-29 06:49:33 +08:00
private static addApiErrorHandler(app: Express) {
2018-03-31 03:30:30 +08:00
app.use('/api/*',
RenderingMWs.renderError
);
2018-03-31 03:30:30 +08:00
}
2018-11-29 06:49:33 +08:00
private static addGenericHandler(app: Express) {
app.use((err: any, req: Request, res: Response, next: Function) => {
2020-01-08 05:17:54 +08:00
if (err.name === 'UnauthorizedError') {
// jwt authentication error
res.status(401);
return next(new ErrorDTO(ErrorCodes.NOT_AUTHENTICATED, 'Invalid token'));
}
if (err.name === 'ForbiddenError' && err.code === 'EBADCSRFTOKEN') {
// jwt authentication error
res.status(401);
return next(new ErrorDTO(ErrorCodes.NOT_AUTHENTICATED, 'Invalid CSRF token', err, req));
}
console.log(err);
2020-01-08 05:17:54 +08:00
2018-03-31 03:30:30 +08:00
// Flush out the stack to the console
Logger.error('Unexpected error:');
2017-07-18 05:12:12 +08:00
console.error(err);
return next(new ErrorDTO(ErrorCodes.SERVER_ERROR, 'Unknown server side error', err, req));
},
RenderingMWs.renderError
);
}
}