PeerTube/server/lib/schedulers/update-videos-scheduler.ts

64 lines
2.0 KiB
TypeScript
Raw Normal View History

import { VideoModel } from '@server/models/video/video'
import { MVideoFullLight } from '@server/types/models'
import { logger } from '../../helpers/logger'
import { SCHEDULER_INTERVALS_MS } from '../../initializers/constants'
import { sequelizeTypescript } from '../../initializers/database'
import { ScheduleVideoUpdateModel } from '../../models/video/schedule-video-update'
2020-04-23 09:32:53 +02:00
import { federateVideoIfNeeded } from '../activitypub/videos'
2018-12-26 10:36:24 +01:00
import { Notifier } from '../notifier'
import { AbstractScheduler } from './abstract-scheduler'
export class UpdateVideosScheduler extends AbstractScheduler {
private static instance: AbstractScheduler
2021-10-22 10:28:00 +02:00
protected schedulerIntervalMs = SCHEDULER_INTERVALS_MS.UPDATE_VIDEOS
private constructor () {
super()
}
protected async internalExecute () {
return this.updateVideos()
}
private async updateVideos () {
if (!await ScheduleVideoUpdateModel.areVideosToUpdate()) return undefined
2021-06-11 14:33:16 +02:00
const schedules = await ScheduleVideoUpdateModel.listVideosToUpdate()
const publishedVideos: MVideoFullLight[] = []
for (const schedule of schedules) {
await sequelizeTypescript.transaction(async t => {
2022-06-28 14:57:51 +02:00
const video = await VideoModel.loadFull(schedule.videoId, t)
logger.info('Executing scheduled video update on %s.', video.uuid)
if (schedule.privacy) {
2019-12-12 15:47:47 +01:00
const wasConfidentialVideo = video.isConfidential()
const isNewVideo = video.isNewVideo(schedule.privacy)
2019-12-12 15:47:47 +01:00
video.setPrivacy(schedule.privacy)
await video.save({ transaction: t })
await federateVideoIfNeeded(video, isNewVideo, t)
2018-12-26 10:36:24 +01:00
2019-12-12 15:47:47 +01:00
if (wasConfidentialVideo) {
2021-06-11 14:33:16 +02:00
publishedVideos.push(video)
2018-12-26 10:36:24 +01:00
}
}
await schedule.destroy({ transaction: t })
2021-06-11 14:33:16 +02:00
})
}
for (const v of publishedVideos) {
2019-07-23 12:04:15 +02:00
Notifier.Instance.notifyOnNewVideoIfNeeded(v)
Notifier.Instance.notifyOnVideoPublishedAfterScheduledUpdate(v)
}
}
static get Instance () {
return this.instance || (this.instance = new this())
}
}