]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - server/helpers/custom-validators/jobs.ts
emit more specific status codes on video upload (#3423)
[github/Chocobozzz/PeerTube.git] / server / helpers / custom-validators / jobs.ts
... / ...
CommitLineData
1import { JobState } from '../../../shared/models'
2import { exists } from './misc'
3import { jobTypes } from '@server/lib/job-queue/job-queue'
4
5const jobStates: JobState[] = [ 'active', 'completed', 'failed', 'waiting', 'delayed' ]
6
7function isValidJobState (value: JobState) {
8 return exists(value) && jobStates.includes(value)
9}
10
11function isValidJobType (value: any) {
12 return exists(value) && jobTypes.includes(value)
13}
14
15// ---------------------------------------------------------------------------
16
17export {
18 isValidJobState,
19 isValidJobType
20}