27 lines
833 B
TypeScript
27 lines
833 B
TypeScript
import { logger, loggerTagsFactory } from '@server/helpers/logger.js'
|
|
import { YoutubeDLCLI } from '@server/helpers/youtube-dl/index.js'
|
|
import { SCHEDULER_INTERVALS_MS } from '../../initializers/constants.js'
|
|
import { AbstractScheduler } from './abstract-scheduler.js'
|
|
|
|
const lTags = loggerTagsFactory('schedulers', 'youtube-dl')
|
|
|
|
export class YoutubeDlUpdateScheduler extends AbstractScheduler {
|
|
private static instance: AbstractScheduler
|
|
|
|
protected schedulerIntervalMs = SCHEDULER_INTERVALS_MS.YOUTUBE_DL_UPDATE
|
|
|
|
private constructor () {
|
|
super({ randomRunOnEnable: true })
|
|
}
|
|
|
|
protected internalExecute () {
|
|
logger.info('Running youtube-dl updated scheduler', lTags())
|
|
|
|
return YoutubeDLCLI.updateYoutubeDLBinary()
|
|
}
|
|
|
|
static get Instance () {
|
|
return this.instance || (this.instance = new this())
|
|
}
|
|
}
|