PeerTube/server/helpers/custom-validators/jobs.ts

21 lines
551 B
TypeScript
Raw Normal View History

import { JobState } from '../../../shared/models'
import { exists } from './misc'
2019-12-04 14:49:59 +01:00
import { jobTypes } from '@server/lib/job-queue/job-queue'
2018-07-10 17:02:20 +02:00
const jobStates: JobState[] = [ 'active', 'completed', 'failed', 'waiting', 'delayed' ]
function isValidJobState (value: JobState) {
2019-12-04 14:49:59 +01:00
return exists(value) && jobStates.includes(value)
}
function isValidJobType (value: any) {
return exists(value) && jobTypes.includes(value)
}
// ---------------------------------------------------------------------------
export {
2019-12-04 14:49:59 +01:00
isValidJobState,
isValidJobType
}