1
0
Fork 0
peertube/server/middlewares/error.ts

61 lines
1.4 KiB
TypeScript
Raw Normal View History

2021-08-27 12:32:44 +00:00
import express from 'express'
2021-06-02 16:15:41 +00:00
import { ProblemDocument, ProblemDocumentExtension } from 'http-problem-details'
import { logger } from '@server/helpers/logger'
2021-07-16 08:42:24 +00:00
import { HttpStatusCode } from '@shared/models'
2021-06-02 16:15:41 +00:00
function apiFailMiddleware (req: express.Request, res: express.Response, next: express.NextFunction) {
res.fail = options => {
const { status = HttpStatusCode.BAD_REQUEST_400, message, title, type, data, instance } = options
const extension = new ProblemDocumentExtension({
...data,
docs: res.locals.docUrl,
code: type,
// For <= 3.2 compatibility
error: message
})
res.status(status)
res.setHeader('Content-Type', 'application/problem+json')
const json = new ProblemDocument({
2021-06-02 16:15:41 +00:00
status,
title,
instance,
detail: message,
type: type
2023-02-22 15:15:14 +00:00
? `https://docs.joinpeertube.org/api/rest-reference.html#section/Errors/${type}`
2021-06-02 16:15:41 +00:00
: undefined
}, extension)
logger.debug('Bad HTTP request.', { json })
res.json(json)
2021-06-02 16:15:41 +00:00
}
if (next) next()
}
function handleStaticError (err: any, req: express.Request, res: express.Response, next: express.NextFunction) {
const message = err.message || ''
if (message.includes('ENOENT')) {
return res.fail({
status: err.status || HttpStatusCode.INTERNAL_SERVER_ERROR_500,
message: err.message,
type: err.name
})
}
return next(err)
}
2021-06-02 16:15:41 +00:00
export {
apiFailMiddleware,
handleStaticError
2021-06-02 16:15:41 +00:00
}