2022-08-08 03:42:08 -05:00
|
|
|
import { Job } from 'bullmq'
|
2020-01-10 03:11:28 -06:00
|
|
|
import { VideosRedundancyScheduler } from '@server/lib/schedulers/videos-redundancy-scheduler'
|
2020-04-23 02:32:53 -05:00
|
|
|
import { VideoRedundancyPayload } from '@shared/models'
|
2021-08-27 07:32:44 -05:00
|
|
|
import { logger } from '../../../helpers/logger'
|
2020-01-10 03:11:28 -06:00
|
|
|
|
2021-08-27 07:32:44 -05:00
|
|
|
async function processVideoRedundancy (job: Job) {
|
2020-01-10 03:11:28 -06:00
|
|
|
const payload = job.data as VideoRedundancyPayload
|
2022-08-08 08:48:17 -05:00
|
|
|
logger.info('Processing video redundancy in job %s.', job.id)
|
2020-01-10 03:11:28 -06:00
|
|
|
|
|
|
|
return VideosRedundancyScheduler.Instance.createManualRedundancy(payload.videoId)
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
|
|
|
processVideoRedundancy
|
|
|
|
}
|