2018-06-14 12:06:56 -04: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'
|
2019-04-11 08:26:41 -04:00
|
|
|
import { SCHEDULER_INTERVALS_MS } from '../../initializers/constants'
|
2018-06-14 12:06:56 -04:00
|
|
|
import { VideoPrivacy } from '../../../shared/models/videos'
|
2018-12-26 04:36:24 -05:00
|
|
|
import { Notifier } from '../notifier'
|
2019-01-02 10:37:43 -05:00
|
|
|
import { VideoModel } from '../../models/video/video'
|
2019-04-11 08:26:41 -04:00
|
|
|
import { sequelizeTypescript } from '../../initializers/database'
|
2018-06-14 12:06:56 -04:00
|
|
|
|
|
|
|
export class UpdateVideosScheduler extends AbstractScheduler {
|
|
|
|
|
|
|
|
private static instance: AbstractScheduler
|
|
|
|
|
|
|
|
protected schedulerIntervalMs = SCHEDULER_INTERVALS_MS.updateVideos
|
|
|
|
|
|
|
|
private constructor () {
|
|
|
|
super()
|
|
|
|
}
|
|
|
|
|
2018-12-20 08:31:11 -05:00
|
|
|
protected async internalExecute () {
|
|
|
|
return retryTransactionWrapper(this.updateVideos.bind(this))
|
2018-06-14 12:06:56 -04:00
|
|
|
}
|
|
|
|
|
2018-06-15 10:52:15 -04:00
|
|
|
private async updateVideos () {
|
|
|
|
if (!await ScheduleVideoUpdateModel.areVideosToUpdate()) return undefined
|
|
|
|
|
2019-01-02 10:37:43 -05:00
|
|
|
const publishedVideos = await sequelizeTypescript.transaction(async t => {
|
2018-06-14 12:06:56 -04:00
|
|
|
const schedules = await ScheduleVideoUpdateModel.listVideosToUpdate(t)
|
2019-01-02 10:37:43 -05:00
|
|
|
const publishedVideos: VideoModel[] = []
|
2018-06-14 12:06:56 -04:00
|
|
|
|
|
|
|
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 09:11:28 -04:00
|
|
|
const isNewVideo = oldPrivacy === VideoPrivacy.PRIVATE
|
2018-06-14 12:06:56 -04:00
|
|
|
|
|
|
|
video.privacy = schedule.privacy
|
2018-07-24 09:11:28 -04:00
|
|
|
if (isNewVideo === true) video.publishedAt = new Date()
|
2018-06-14 12:06:56 -04:00
|
|
|
|
2018-07-24 09:11:28 -04:00
|
|
|
await video.save({ transaction: t })
|
2018-06-14 12:06:56 -04:00
|
|
|
await federateVideoIfNeeded(video, isNewVideo, t)
|
2018-12-26 04:36:24 -05:00
|
|
|
|
|
|
|
if (oldPrivacy === VideoPrivacy.UNLISTED || oldPrivacy === VideoPrivacy.PRIVATE) {
|
2019-01-02 10:37:43 -05:00
|
|
|
video.ScheduleVideoUpdate = schedule
|
|
|
|
publishedVideos.push(video)
|
2018-12-26 04:36:24 -05:00
|
|
|
}
|
2018-06-14 12:06:56 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
await schedule.destroy({ transaction: t })
|
|
|
|
}
|
2019-01-02 10:37:43 -05:00
|
|
|
|
|
|
|
return publishedVideos
|
2018-06-14 12:06:56 -04:00
|
|
|
})
|
2019-01-02 10:37:43 -05:00
|
|
|
|
|
|
|
for (const v of publishedVideos) {
|
|
|
|
Notifier.Instance.notifyOnNewVideo(v)
|
2019-04-02 05:26:47 -04:00
|
|
|
Notifier.Instance.notifyOnVideoPublishedAfterScheduledUpdate(v)
|
2019-01-02 10:37:43 -05:00
|
|
|
}
|
2018-06-14 12:06:56 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static get Instance () {
|
|
|
|
return this.instance || (this.instance = new this())
|
|
|
|
}
|
|
|
|
}
|