PeerTube/server/lib/schedulers/actor-follow-scheduler.ts

48 lines
1.4 KiB
TypeScript
Raw Normal View History

import { isTestInstance } from '../../helpers/core-utils'
import { logger } from '../../helpers/logger'
import { ActorFollowModel } from '../../models/activitypub/actor-follow'
import { AbstractScheduler } from './abstract-scheduler'
import { SCHEDULER_INTERVALS_MS } from '../../initializers/constants'
2019-03-19 14:23:17 +01:00
import { ActorFollowScoreCache } from '../files-cache'
export class ActorFollowScheduler extends AbstractScheduler {
private static instance: AbstractScheduler
protected schedulerIntervalMs = SCHEDULER_INTERVALS_MS.actorFollowScores
private constructor () {
super()
}
protected async internalExecute () {
await this.processPendingScores()
await this.removeBadActorFollows()
}
private async processPendingScores () {
const pendingScores = ActorFollowScoreCache.Instance.getPendingFollowsScoreCopy()
ActorFollowScoreCache.Instance.clearPendingFollowsScore()
for (const inbox of Object.keys(pendingScores)) {
await ActorFollowModel.updateFollowScore(inbox, pendingScores[inbox])
}
}
private async removeBadActorFollows () {
if (!isTestInstance()) logger.info('Removing bad actor follows (scheduler).')
2018-02-27 11:08:59 +01:00
try {
await ActorFollowModel.removeBadActorFollows()
} catch (err) {
2018-03-26 15:54:13 +02:00
logger.error('Error in bad actor follows scheduler.', { err })
}
}
static get Instance () {
return this.instance || (this.instance = new this())
}
}