2021-08-27 08:32:44 -04:00
|
|
|
import express from 'express'
|
2021-06-02 12:15:41 -04:00
|
|
|
import { ProblemDocument, ProblemDocumentExtension } from 'http-problem-details'
|
2023-07-31 08:34:36 -04:00
|
|
|
import { logger } from '@server/helpers/logger.js'
|
|
|
|
import { HttpStatusCode } from '@peertube/peertube-models'
|
2021-06-02 12:15:41 -04:00
|
|
|
|
|
|
|
function apiFailMiddleware (req: express.Request, res: express.Response, next: express.NextFunction) {
|
|
|
|
res.fail = options => {
|
2023-04-21 08:55:10 -04:00
|
|
|
const { status = HttpStatusCode.BAD_REQUEST_400, message, title, type, data, instance, tags } = options
|
2021-06-02 12:15:41 -04:00
|
|
|
|
|
|
|
const extension = new ProblemDocumentExtension({
|
|
|
|
...data,
|
|
|
|
|
|
|
|
docs: res.locals.docUrl,
|
|
|
|
code: type,
|
|
|
|
|
|
|
|
// For <= 3.2 compatibility
|
|
|
|
error: message
|
|
|
|
})
|
|
|
|
|
2021-12-08 05:32:45 -05:00
|
|
|
const json = new ProblemDocument({
|
2021-06-02 12:15:41 -04:00
|
|
|
status,
|
|
|
|
title,
|
|
|
|
instance,
|
|
|
|
|
|
|
|
detail: message,
|
|
|
|
|
|
|
|
type: type
|
2023-04-21 08:55:10 -04:00
|
|
|
? `https://docs.joinpeertube.org/api-rest-reference.html#section/Errors/${type}`
|
2021-06-02 12:15:41 -04:00
|
|
|
: undefined
|
2021-12-08 05:32:45 -05:00
|
|
|
}, extension)
|
|
|
|
|
2023-04-21 08:55:10 -04:00
|
|
|
logger.debug('Bad HTTP request.', { json, tags })
|
2021-12-08 05:32:45 -05:00
|
|
|
|
2023-09-01 03:27:57 -04:00
|
|
|
res.status(status)
|
|
|
|
|
|
|
|
// Cannot display a proper error to the client since headers are already sent
|
|
|
|
if (res.headersSent) return
|
|
|
|
|
|
|
|
res.setHeader('Content-Type', 'application/problem+json')
|
2021-12-08 05:32:45 -05:00
|
|
|
res.json(json)
|
2021-06-02 12:15:41 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (next) next()
|
|
|
|
}
|
|
|
|
|
2022-07-27 08:38:07 -04:00
|
|
|
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 12:15:41 -04:00
|
|
|
export {
|
2022-07-27 08:38:07 -04:00
|
|
|
apiFailMiddleware,
|
|
|
|
handleStaticError
|
2021-06-02 12:15:41 -04:00
|
|
|
}
|