2019-04-11 11:33:36 -04:00
|
|
|
import { logger } from '../../helpers/logger'
|
|
|
|
import { AbstractScheduler } from './abstract-scheduler'
|
|
|
|
import { SCHEDULER_INTERVALS_MS } from '../../initializers/constants'
|
|
|
|
import { CONFIG } from '../../initializers/config'
|
2020-06-15 09:18:54 -04:00
|
|
|
import { VideoViewModel } from '../../models/video/video-view'
|
2019-04-11 11:33:36 -04:00
|
|
|
|
|
|
|
export class RemoveOldViewsScheduler extends AbstractScheduler {
|
|
|
|
|
|
|
|
private static instance: AbstractScheduler
|
|
|
|
|
|
|
|
protected schedulerIntervalMs = SCHEDULER_INTERVALS_MS.removeOldViews
|
|
|
|
|
|
|
|
private constructor () {
|
|
|
|
super()
|
|
|
|
}
|
|
|
|
|
|
|
|
protected internalExecute () {
|
|
|
|
if (CONFIG.VIEWS.VIDEOS.REMOTE.MAX_AGE === -1) return
|
|
|
|
|
|
|
|
logger.info('Removing old videos views.')
|
|
|
|
|
|
|
|
const now = new Date()
|
|
|
|
const beforeDate = new Date(now.getTime() - CONFIG.VIEWS.VIDEOS.REMOTE.MAX_AGE).toISOString()
|
|
|
|
|
|
|
|
return VideoViewModel.removeOldRemoteViewsHistory(beforeDate)
|
|
|
|
}
|
|
|
|
|
|
|
|
static get Instance () {
|
|
|
|
return this.instance || (this.instance = new this())
|
|
|
|
}
|
|
|
|
}
|