10363c74c1
helpers modules should not import models
24 lines
657 B
TypeScript
24 lines
657 B
TypeScript
import { Response } from 'express'
|
|
import { VideoBlacklistModel } from '@server/models/video/video-blacklist'
|
|
import { HttpStatusCode } from '@shared/core-utils'
|
|
|
|
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'
|
|
})
|
|
return false
|
|
}
|
|
|
|
res.locals.videoBlacklist = videoBlacklist
|
|
return true
|
|
}
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
export {
|
|
doesVideoBlacklistExist
|
|
}
|