1
0
Fork 0
mirror of https://github.com/Chocobozzz/PeerTube.git synced 2025-10-05 19:42:24 +02:00
Peertube/server/core/lib/schedulers/video-channel-sync-latest-scheduler.ts
2025-08-11 14:52:09 +02:00

65 lines
2.3 KiB
TypeScript

import { logger } from '@server/helpers/logger.js'
import { CONFIG } from '@server/initializers/config.js'
import { VideoChannelModel } from '@server/models/video/video-channel.js'
import { VideoChannelSyncModel } from '@server/models/video/video-channel-sync.js'
import { SCHEDULER_INTERVALS_MS } from '../../initializers/constants.js'
import { synchronizeChannel } from '../sync-channel.js'
import { AbstractScheduler } from './abstract-scheduler.js'
export class VideoChannelSyncLatestScheduler extends AbstractScheduler {
private static instance: AbstractScheduler
protected schedulerIntervalMs = SCHEDULER_INTERVALS_MS.CHANNEL_SYNC_CHECK_INTERVAL
private constructor () {
super()
}
protected async internalExecute () {
if (!CONFIG.IMPORT.VIDEO_CHANNEL_SYNCHRONIZATION.ENABLED) {
logger.debug('Discard channels synchronization as the feature is disabled')
return
}
logger.info('Checking channels to synchronize')
const channelSyncs = await VideoChannelSyncModel.listSyncs()
for (const sync of channelSyncs) {
const channel = await VideoChannelModel.loadAndPopulateAccount(sync.videoChannelId)
logger.info(
'Creating video import jobs for "%s" sync with external channel "%s"',
channel.Actor.preferredUsername,
sync.externalChannelUrl
)
// We can't rely on publication date for playlist elements
// For example, an old video may have been added to a playlist since the last sync
const skipPublishedBefore = this.isPlaylistUrl(sync.externalChannelUrl)
? undefined
: sync.lastSyncAt || sync.createdAt
await synchronizeChannel({
channel,
externalChannelUrl: sync.externalChannelUrl,
videosCountLimit: CONFIG.IMPORT.VIDEO_CHANNEL_SYNCHRONIZATION.VIDEOS_LIMIT_PER_SYNCHRONIZATION,
channelSync: sync,
skipPublishedBefore
})
}
}
static get Instance () {
return this.instance || (this.instance = new this())
}
private isPlaylistUrl (url: string): boolean {
const parsed = new URL(url)
const pathname = parsed.pathname.toLowerCase()
return pathname.startsWith('/playlist/') || // Dailymotion playlist
pathname.startsWith('/showcase/') || // Vimeo playlist
pathname.startsWith('/playlist?') || // YouTube playlist
pathname.startsWith('/w/p/') // PeerTube playlist
}
}