PeerTube/server/middlewares/validators/shared/video-blacklists.ts

25 lines
653 B
TypeScript
Raw Normal View History

2019-07-23 08:40:39 +00:00
import { Response } from 'express'
import { VideoBlacklistModel } from '@server/models/video/video-blacklist'
2021-07-16 08:42:24 +00:00
import { HttpStatusCode } from '@shared/models'
2019-07-23 08:40:39 +00:00
async function doesVideoBlacklistExist (videoId: number, res: Response) {
const videoBlacklist = await VideoBlacklistModel.loadByVideoId(videoId)
if (videoBlacklist === null) {
res.fail({
status: HttpStatusCode.NOT_FOUND_404,
message: 'Blacklisted video not found'
})
2019-07-23 08:40:39 +00:00
return false
}
res.locals.videoBlacklist = videoBlacklist
return true
}
// ---------------------------------------------------------------------------
export {
doesVideoBlacklistExist
}