]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/lib/schedulers/update-videos-scheduler.ts
Try to fix subscriptions inconsistencies
[github/Chocobozzz/PeerTube.git] / server / lib / schedulers / update-videos-scheduler.ts
CommitLineData
2baea0c7 1import { logger } from '../../helpers/logger'
2baea0c7
C
2import { AbstractScheduler } from './abstract-scheduler'
3import { ScheduleVideoUpdateModel } from '../../models/video/schedule-video-update'
4import { retryTransactionWrapper } from '../../helpers/database-utils'
5import { federateVideoIfNeeded } from '../activitypub'
74dc3bca 6import { SCHEDULER_INTERVALS_MS } from '../../initializers/constants'
2baea0c7 7import { VideoPrivacy } from '../../../shared/models/videos'
cef534ed 8import { Notifier } from '../notifier'
74dc3bca 9import { sequelizeTypescript } from '../../initializers/database'
d7a25329 10import { MVideoFullLight } from '@server/typings/models'
2baea0c7
C
11
12export class UpdateVideosScheduler extends AbstractScheduler {
13
14 private static instance: AbstractScheduler
15
16 protected schedulerIntervalMs = SCHEDULER_INTERVALS_MS.updateVideos
17
2baea0c7
C
18 private constructor () {
19 super()
20 }
21
2f5c6b2f
C
22 protected async internalExecute () {
23 return retryTransactionWrapper(this.updateVideos.bind(this))
2baea0c7
C
24 }
25
bbe0f064
C
26 private async updateVideos () {
27 if (!await ScheduleVideoUpdateModel.areVideosToUpdate()) return undefined
28
dc133480 29 const publishedVideos = await sequelizeTypescript.transaction(async t => {
2baea0c7 30 const schedules = await ScheduleVideoUpdateModel.listVideosToUpdate(t)
d7a25329 31 const publishedVideos: MVideoFullLight[] = []
2baea0c7
C
32
33 for (const schedule of schedules) {
34 const video = schedule.Video
35 logger.info('Executing scheduled video update on %s.', video.uuid)
36
37 if (schedule.privacy) {
22a73cb8
C
38 const wasConfidentialVideo = video.isConfidential()
39 const isNewVideo = video.isNewVideo(schedule.privacy)
2baea0c7 40
22a73cb8 41 video.setPrivacy(schedule.privacy)
77de223a 42 await video.save({ transaction: t })
2baea0c7 43 await federateVideoIfNeeded(video, isNewVideo, t)
cef534ed 44
22a73cb8 45 if (wasConfidentialVideo) {
d7a25329
C
46 const videoToPublish: MVideoFullLight = Object.assign(video, { ScheduleVideoUpdate: schedule, UserVideoHistories: [] })
47 publishedVideos.push(videoToPublish)
cef534ed 48 }
2baea0c7
C
49 }
50
51 await schedule.destroy({ transaction: t })
52 }
dc133480
C
53
54 return publishedVideos
2baea0c7 55 })
dc133480
C
56
57 for (const v of publishedVideos) {
5b77537c 58 Notifier.Instance.notifyOnNewVideoIfNeeded(v)
7ccddd7b 59 Notifier.Instance.notifyOnVideoPublishedAfterScheduledUpdate(v)
dc133480 60 }
2baea0c7
C
61 }
62
63 static get Instance () {
64 return this.instance || (this.instance = new this())
65 }
66}