]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - server/lib/schedulers/actor-follow-scheduler.ts
Optimize actor follow scores modifications
[github/Chocobozzz/PeerTube.git] / server / lib / schedulers / actor-follow-scheduler.ts
1 import { isTestInstance } from '../../helpers/core-utils'
2 import { logger } from '../../helpers/logger'
3 import { ActorFollowModel } from '../../models/activitypub/actor-follow'
4 import { AbstractScheduler } from './abstract-scheduler'
5 import { SCHEDULER_INTERVALS_MS } from '../../initializers'
6 import { ActorFollowScoreCache } from '../cache'
7
8 export class ActorFollowScheduler extends AbstractScheduler {
9
10 private static instance: AbstractScheduler
11
12 protected schedulerIntervalMs = SCHEDULER_INTERVALS_MS.actorFollowScores
13
14 private constructor () {
15 super()
16 }
17
18 protected async internalExecute () {
19 await this.processPendingScores()
20
21 await this.removeBadActorFollows()
22 }
23
24 private async processPendingScores () {
25 const pendingScores = ActorFollowScoreCache.Instance.getPendingFollowsScoreCopy()
26
27 ActorFollowScoreCache.Instance.clearPendingFollowsScore()
28
29 for (const inbox of Object.keys(pendingScores)) {
30 await ActorFollowModel.updateFollowScore(inbox, pendingScores[inbox])
31 }
32 }
33
34 private async removeBadActorFollows () {
35 if (!isTestInstance()) logger.info('Removing bad actor follows (scheduler).')
36
37 try {
38 await ActorFollowModel.removeBadActorFollows()
39 } catch (err) {
40 logger.error('Error in bad actor follows scheduler.', { err })
41 }
42 }
43
44 static get Instance () {
45 return this.instance || (this.instance = new this())
46 }
47 }