PeerTube/server/helpers/middlewares/video-abuses.ts

24 lines
571 B
TypeScript
Raw Normal View History

2019-08-15 11:53:26 +02:00
import { Response } from 'express'
import { VideoAbuseModel } from '../../models/video/video-abuse'
2019-07-23 10:40:39 +02:00
2019-08-15 11:53:26 +02:00
async function doesVideoAbuseExist (abuseId: number, videoId: number, res: Response) {
const videoAbuse = await VideoAbuseModel.loadByIdAndVideoId(abuseId, videoId)
2019-07-23 10:40:39 +02:00
2019-08-15 11:53:26 +02:00
if (videoAbuse === null) {
2019-07-23 10:40:39 +02:00
res.status(404)
2019-08-15 11:53:26 +02:00
.json({ error: 'Video abuse not found' })
2019-07-23 10:40:39 +02:00
.end()
return false
}
2019-08-15 11:53:26 +02:00
res.locals.videoAbuse = videoAbuse
2019-07-23 10:40:39 +02:00
return true
}
2019-08-15 11:53:26 +02:00
// ---------------------------------------------------------------------------
export {
doesVideoAbuseExist
}