]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - server/lib/schedulers/remove-old-views-scheduler.ts
Add ability to set a custom video import timeout
[github/Chocobozzz/PeerTube.git] / server / lib / schedulers / remove-old-views-scheduler.ts
1 import { VideoViewModel } from '@server/models/view/video-view'
2 import { logger } from '../../helpers/logger'
3 import { CONFIG } from '../../initializers/config'
4 import { SCHEDULER_INTERVALS_MS } from '../../initializers/constants'
5 import { AbstractScheduler } from './abstract-scheduler'
6
7 export class RemoveOldViewsScheduler extends AbstractScheduler {
8
9 private static instance: AbstractScheduler
10
11 protected schedulerIntervalMs = SCHEDULER_INTERVALS_MS.REMOVE_OLD_VIEWS
12
13 private constructor () {
14 super()
15 }
16
17 protected internalExecute () {
18 if (CONFIG.VIEWS.VIDEOS.REMOTE.MAX_AGE === -1) return
19
20 logger.info('Removing old videos views.')
21
22 const now = new Date()
23 const beforeDate = new Date(now.getTime() - CONFIG.VIEWS.VIDEOS.REMOTE.MAX_AGE).toISOString()
24
25 return VideoViewModel.removeOldRemoteViewsHistory(beforeDate)
26 }
27
28 static get Instance () {
29 return this.instance || (this.instance = new this())
30 }
31 }