2021-06-17 02:51:29 -04:00
|
|
|
import { VideoModel } from '@server/models/video/video'
|
2022-10-12 10:09:02 -04:00
|
|
|
import { MScheduleVideoUpdate } from '@server/types/models'
|
|
|
|
import { VideoPrivacy, VideoState } from '@shared/models'
|
2018-06-14 12:06:56 -04:00
|
|
|
import { logger } from '../../helpers/logger'
|
2021-06-17 02:51:29 -04:00
|
|
|
import { SCHEDULER_INTERVALS_MS } from '../../initializers/constants'
|
|
|
|
import { sequelizeTypescript } from '../../initializers/database'
|
2018-06-14 12:06:56 -04:00
|
|
|
import { ScheduleVideoUpdateModel } from '../../models/video/schedule-video-update'
|
2018-12-26 04:36:24 -05:00
|
|
|
import { Notifier } from '../notifier'
|
2022-10-12 10:09:02 -04:00
|
|
|
import { addVideoJobsAfterUpdate } from '../video'
|
|
|
|
import { VideoPathManager } from '../video-path-manager'
|
|
|
|
import { setVideoPrivacy } from '../video-privacy'
|
2021-06-17 02:51:29 -04:00
|
|
|
import { AbstractScheduler } from './abstract-scheduler'
|
2018-06-14 12:06:56 -04:00
|
|
|
|
|
|
|
export class UpdateVideosScheduler extends AbstractScheduler {
|
|
|
|
|
|
|
|
private static instance: AbstractScheduler
|
|
|
|
|
2021-10-22 04:28:00 -04:00
|
|
|
protected schedulerIntervalMs = SCHEDULER_INTERVALS_MS.UPDATE_VIDEOS
|
2018-06-14 12:06:56 -04:00
|
|
|
|
|
|
|
private constructor () {
|
|
|
|
super()
|
|
|
|
}
|
|
|
|
|
2018-12-20 08:31:11 -05:00
|
|
|
protected async internalExecute () {
|
2021-06-17 02:51:29 -04:00
|
|
|
return this.updateVideos()
|
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
|
|
|
|
|
2021-06-11 08:33:16 -04:00
|
|
|
const schedules = await ScheduleVideoUpdateModel.listVideosToUpdate()
|
|
|
|
|
|
|
|
for (const schedule of schedules) {
|
2022-10-12 10:09:02 -04:00
|
|
|
const videoOnly = await VideoModel.load(schedule.videoId)
|
|
|
|
const mutexReleaser = await VideoPathManager.Instance.lockFiles(videoOnly.uuid)
|
2018-06-14 12:06:56 -04:00
|
|
|
|
2022-10-12 10:09:02 -04:00
|
|
|
try {
|
|
|
|
const { video, published } = await this.updateAVideo(schedule)
|
2018-06-14 12:06:56 -04:00
|
|
|
|
2022-10-12 10:09:02 -04:00
|
|
|
if (published) Notifier.Instance.notifyOnVideoPublishedAfterScheduledUpdate(video)
|
|
|
|
} catch (err) {
|
|
|
|
logger.error('Cannot update video', { err })
|
|
|
|
}
|
2018-06-14 12:06:56 -04:00
|
|
|
|
2022-10-12 10:09:02 -04:00
|
|
|
mutexReleaser()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private async updateAVideo (schedule: MScheduleVideoUpdate) {
|
|
|
|
let oldPrivacy: VideoPrivacy
|
|
|
|
let isNewVideo: boolean
|
|
|
|
let published = false
|
|
|
|
|
|
|
|
const video = await sequelizeTypescript.transaction(async t => {
|
|
|
|
const video = await VideoModel.loadFull(schedule.videoId, t)
|
2022-10-31 03:51:52 -04:00
|
|
|
if (video.state === VideoState.TO_TRANSCODE) return null
|
2022-10-12 10:09:02 -04:00
|
|
|
|
|
|
|
logger.info('Executing scheduled video update on %s.', video.uuid)
|
|
|
|
|
|
|
|
if (schedule.privacy) {
|
|
|
|
isNewVideo = video.isNewVideo(schedule.privacy)
|
|
|
|
oldPrivacy = video.privacy
|
2018-12-26 04:36:24 -05:00
|
|
|
|
2022-10-12 10:09:02 -04:00
|
|
|
setVideoPrivacy(video, schedule.privacy)
|
|
|
|
await video.save({ transaction: t })
|
|
|
|
|
|
|
|
if (oldPrivacy === VideoPrivacy.PRIVATE) {
|
|
|
|
published = true
|
2018-06-14 12:06:56 -04:00
|
|
|
}
|
2022-10-12 10:09:02 -04:00
|
|
|
}
|
2018-06-14 12:06:56 -04:00
|
|
|
|
2022-10-12 10:09:02 -04:00
|
|
|
await schedule.destroy({ transaction: t })
|
2019-01-02 10:37:43 -05:00
|
|
|
|
2022-10-12 10:09:02 -04:00
|
|
|
return video
|
|
|
|
})
|
|
|
|
|
2022-10-31 03:51:52 -04:00
|
|
|
if (!video) {
|
|
|
|
return { video, published: false }
|
|
|
|
}
|
|
|
|
|
2022-10-12 10:09:02 -04:00
|
|
|
await addVideoJobsAfterUpdate({ video, oldPrivacy, isNewVideo, nameChanged: false })
|
|
|
|
|
|
|
|
return { video, published }
|
2018-06-14 12:06:56 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static get Instance () {
|
|
|
|
return this.instance || (this.instance = new this())
|
|
|
|
}
|
|
|
|
}
|