]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - server/middlewares/validators/shared/video-blacklists.ts
Refactor sort middlewares
[github/Chocobozzz/PeerTube.git] / server / middlewares / validators / shared / video-blacklists.ts
1 import { Response } from 'express'
2 import { VideoBlacklistModel } from '@server/models/video/video-blacklist'
3 import { HttpStatusCode } from '@shared/models'
4
5 async function doesVideoBlacklistExist (videoId: number, res: Response) {
6 const videoBlacklist = await VideoBlacklistModel.loadByVideoId(videoId)
7
8 if (videoBlacklist === null) {
9 res.fail({
10 status: HttpStatusCode.NOT_FOUND_404,
11 message: 'Blacklisted video not found'
12 })
13 return false
14 }
15
16 res.locals.videoBlacklist = videoBlacklist
17 return true
18 }
19
20 // ---------------------------------------------------------------------------
21
22 export {
23 doesVideoBlacklistExist
24 }