2018-06-14 18:06:56 +02:00
|
|
|
import { logger } from '../../helpers/logger'
|
|
|
|
import { AbstractScheduler } from './abstract-scheduler'
|
|
|
|
import { ScheduleVideoUpdateModel } from '../../models/video/schedule-video-update'
|
|
|
|
import { retryTransactionWrapper } from '../../helpers/database-utils'
|
|
|
|
import { federateVideoIfNeeded } from '../activitypub'
|
|
|
|
import { SCHEDULER_INTERVALS_MS, sequelizeTypescript } from '../../initializers'
|
|
|
|
import { VideoPrivacy } from '../../../shared/models/videos'
|
|
|
|
|
|
|
|
export class UpdateVideosScheduler extends AbstractScheduler {
|
|
|
|
|
|
|
|
private static instance: AbstractScheduler
|
|
|
|
|
|
|
|
protected schedulerIntervalMs = SCHEDULER_INTERVALS_MS.updateVideos
|
|
|
|
|
|
|
|
private constructor () {
|
|
|
|
super()
|
|
|
|
}
|
|
|
|
|
2018-12-20 14:31:11 +01:00
|
|
|
protected async internalExecute () {
|
|
|
|
return retryTransactionWrapper(this.updateVideos.bind(this))
|
2018-06-14 18:06:56 +02:00
|
|
|
}
|
|
|
|
|
2018-06-15 16:52:15 +02:00
|
|
|
private async updateVideos () {
|
|
|
|
if (!await ScheduleVideoUpdateModel.areVideosToUpdate()) return undefined
|
|
|
|
|
2018-06-14 18:06:56 +02:00
|
|
|
return sequelizeTypescript.transaction(async t => {
|
|
|
|
const schedules = await ScheduleVideoUpdateModel.listVideosToUpdate(t)
|
|
|
|
|
|
|
|
for (const schedule of schedules) {
|
|
|
|
const video = schedule.Video
|
|
|
|
logger.info('Executing scheduled video update on %s.', video.uuid)
|
|
|
|
|
|
|
|
if (schedule.privacy) {
|
|
|
|
const oldPrivacy = video.privacy
|
2018-07-24 15:11:28 +02:00
|
|
|
const isNewVideo = oldPrivacy === VideoPrivacy.PRIVATE
|
2018-06-14 18:06:56 +02:00
|
|
|
|
|
|
|
video.privacy = schedule.privacy
|
2018-07-24 15:11:28 +02:00
|
|
|
if (isNewVideo === true) video.publishedAt = new Date()
|
2018-06-14 18:06:56 +02:00
|
|
|
|
2018-07-24 15:11:28 +02:00
|
|
|
await video.save({ transaction: t })
|
2018-06-14 18:06:56 +02:00
|
|
|
await federateVideoIfNeeded(video, isNewVideo, t)
|
|
|
|
}
|
|
|
|
|
|
|
|
await schedule.destroy({ transaction: t })
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
static get Instance () {
|
|
|
|
return this.instance || (this.instance = new this())
|
|
|
|
}
|
|
|
|
}
|