2021-10-21 16:28:39 +02:00
|
|
|
import { YoutubeDLCLI } from '@server/helpers/youtube-dl'
|
2019-04-11 14:26:41 +02:00
|
|
|
import { SCHEDULER_INTERVALS_MS } from '../../initializers/constants'
|
2021-05-11 10:54:05 +02:00
|
|
|
import { AbstractScheduler } from './abstract-scheduler'
|
2018-08-02 16:02:51 +02:00
|
|
|
|
|
|
|
export class YoutubeDlUpdateScheduler extends AbstractScheduler {
|
|
|
|
|
|
|
|
private static instance: AbstractScheduler
|
|
|
|
|
2021-10-22 10:28:00 +02:00
|
|
|
protected schedulerIntervalMs = SCHEDULER_INTERVALS_MS.YOUTUBE_DL_UPDATE
|
2018-08-02 16:02:51 +02:00
|
|
|
|
|
|
|
private constructor () {
|
|
|
|
super()
|
|
|
|
}
|
|
|
|
|
2018-12-20 14:31:11 +01:00
|
|
|
protected internalExecute () {
|
2021-10-21 16:28:39 +02:00
|
|
|
return YoutubeDLCLI.updateYoutubeDLBinary()
|
2018-08-02 16:02:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static get Instance () {
|
|
|
|
return this.instance || (this.instance = new this())
|
|
|
|
}
|
|
|
|
}
|