2018-08-02 10:02:51 -04:00
|
|
|
import { AbstractScheduler } from './abstract-scheduler'
|
|
|
|
import { SCHEDULER_INTERVALS_MS } from '../../initializers'
|
2018-09-19 10:24:24 -04:00
|
|
|
import { updateYoutubeDLBinary } from '../../helpers/youtube-dl'
|
2018-08-02 10:02:51 -04:00
|
|
|
|
|
|
|
export class YoutubeDlUpdateScheduler extends AbstractScheduler {
|
|
|
|
|
|
|
|
private static instance: AbstractScheduler
|
|
|
|
|
|
|
|
protected schedulerIntervalMs = SCHEDULER_INTERVALS_MS.youtubeDLUpdate
|
|
|
|
|
|
|
|
private constructor () {
|
|
|
|
super()
|
|
|
|
}
|
|
|
|
|
2018-09-19 10:24:24 -04:00
|
|
|
execute () {
|
|
|
|
return updateYoutubeDLBinary()
|
2018-08-02 10:02:51 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static get Instance () {
|
|
|
|
return this.instance || (this.instance = new this())
|
|
|
|
}
|
|
|
|
}
|