1
0
Fork 0
peertube/server/helpers/custom-validators/video-blacklist.ts

40 lines
1.2 KiB
TypeScript
Raw Normal View History

2018-08-13 14:57:13 +00:00
import { Response } from 'express'
import * as validator from 'validator'
import { exists } from './misc'
import { CONSTRAINTS_FIELDS } from '../../initializers/constants'
2018-08-13 14:57:13 +00:00
import { VideoBlacklistModel } from '../../models/video/video-blacklist'
import { VideoBlacklistType } from '../../../shared/models/videos'
2018-08-13 14:57:13 +00:00
const VIDEO_BLACKLIST_CONSTRAINTS_FIELDS = CONSTRAINTS_FIELDS.VIDEO_BLACKLIST
function isVideoBlacklistReasonValid (value: string) {
return value === null || validator.isLength(value, VIDEO_BLACKLIST_CONSTRAINTS_FIELDS.REASON)
}
2019-03-19 08:26:50 +00:00
async function doesVideoBlacklistExist (videoId: number, res: Response) {
2018-08-13 14:57:13 +00:00
const videoBlacklist = await VideoBlacklistModel.loadByVideoId(videoId)
if (videoBlacklist === null) {
res.status(404)
.json({ error: 'Blacklisted video not found' })
.end()
return false
}
res.locals.videoBlacklist = videoBlacklist
return true
}
function isVideoBlacklistTypeValid (value: any) {
return exists(value) && validator.isInt('' + value) && VideoBlacklistType[value] !== undefined
}
2018-08-13 14:57:13 +00:00
// ---------------------------------------------------------------------------
export {
isVideoBlacklistReasonValid,
isVideoBlacklistTypeValid,
2019-03-19 08:26:50 +00:00
doesVideoBlacklistExist
2018-08-13 14:57:13 +00:00
}