aboutsummaryrefslogblamecommitdiffhomepage
path: root/server/helpers/custom-validators/video-blacklist.ts
blob: 34fcec38e341ee1584836c21c6b48860fc274f67 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
                                 
                               
                                                                 
                                                                  






                                                                                               
                                                 

                                                                                               

 



                                                                              
                           
 
import validator from 'validator'
import { exists } from './misc'
import { CONSTRAINTS_FIELDS } from '../../initializers/constants'
import { VideoBlacklistType } from '../../../shared/models/videos'

const VIDEO_BLACKLIST_CONSTRAINTS_FIELDS = CONSTRAINTS_FIELDS.VIDEO_BLACKLIST

function isVideoBlacklistReasonValid (value: string) {
  return value === null || validator.isLength(value, VIDEO_BLACKLIST_CONSTRAINTS_FIELDS.REASON)
}

function isVideoBlacklistTypeValid (value: any) {
  return exists(value) &&
    (value === VideoBlacklistType.AUTO_BEFORE_PUBLISHED || value === VideoBlacklistType.MANUAL)
}

// ---------------------------------------------------------------------------

export {
  isVideoBlacklistReasonValid,
  isVideoBlacklistTypeValid
}