aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/lib/schedulers/video-channel-sync-latest-scheduler.ts
blob: fd9a3529914b628285c30513403e5d2d5c36317f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
import { logger } from '@server/helpers/logger'
import { CONFIG } from '@server/initializers/config'
import { VideoChannelModel } from '@server/models/video/video-channel'
import { VideoChannelSyncModel } from '@server/models/video/video-channel-sync'
import { VideoChannelSyncState } from '@shared/models'
import { SCHEDULER_INTERVALS_MS } from '../../initializers/constants'
import { synchronizeChannel } from '../sync-channel'
import { AbstractScheduler } from './abstract-scheduler'

export class VideoChannelSyncLatestScheduler extends AbstractScheduler {
  private static instance: AbstractScheduler
  protected schedulerIntervalMs = SCHEDULER_INTERVALS_MS.CHANNEL_SYNC_CHECK_INTERVAL

  private constructor () {
    super()
  }

  protected async internalExecute () {
    logger.debug('Running %s.%s', this.constructor.name, this.internalExecute.name)

    if (!CONFIG.IMPORT.VIDEO_CHANNEL_SYNCHRONIZATION.ENABLED) {
      logger.info('Discard channels synchronization as the feature is disabled')
      return
    }

    const channelSyncs = await VideoChannelSyncModel.listSyncs()

    for (const sync of channelSyncs) {
      const channel = await VideoChannelModel.loadAndPopulateAccount(sync.videoChannelId)

      try {
        logger.info(
          'Creating video import jobs for "%s" sync with external channel "%s"',
          channel.Actor.preferredUsername, sync.externalChannelUrl
        )

        const onlyAfter = sync.lastSyncAt || sync.createdAt

        sync.state = VideoChannelSyncState.PROCESSING
        sync.lastSyncAt = new Date()
        await sync.save()

        await synchronizeChannel({
          channel,
          externalChannelUrl: sync.externalChannelUrl,
          videosCountLimit: CONFIG.IMPORT.VIDEO_CHANNEL_SYNCHRONIZATION.VIDEOS_LIMIT_PER_SYNCHRONIZATION,
          channelSync: sync,
          onlyAfter
        })
      } catch (err) {
        logger.error(`Failed to synchronize channel ${channel.Actor.preferredUsername}`, { err })
        sync.state = VideoChannelSyncState.FAILED
        await sync.save()
      }
    }
  }

  static get Instance () {
    return this.instance || (this.instance = new this())
  }
}