PeerTube/server/helpers/middlewares/abuses.ts

26 lines
620 B
TypeScript
Raw Normal View History

2019-08-15 09:53:26 +00:00
import { Response } from 'express'
2020-07-01 14:05:30 +00:00
import { AbuseModel } from '../../models/abuse/abuse'
import { HttpStatusCode } from '../../../shared/core-utils/miscs/http-error-codes'
2019-08-15 09:53:26 +00:00
2020-07-07 08:57:04 +00:00
async function doesAbuseExist (abuseId: number | string, res: Response) {
const abuse = await AbuseModel.loadByIdWithReporter(parseInt(abuseId + '', 10))
2020-07-01 14:05:30 +00:00
2020-07-07 08:57:04 +00:00
if (!abuse) {
res.fail({
status: HttpStatusCode.NOT_FOUND_404,
message: 'Abuse not found'
})
2020-07-07 08:57:04 +00:00
return false
}
res.locals.abuse = abuse
return true
2020-07-01 14:05:30 +00:00
}
2019-08-15 09:53:26 +00:00
// ---------------------------------------------------------------------------
export {
2020-11-10 13:41:20 +00:00
doesAbuseExist
2019-08-15 09:53:26 +00:00
}