2018-02-27 07:46:56 -05:00
|
|
|
import { isTestInstance } from '../../helpers/core-utils'
|
2018-01-11 03:35:50 -05:00
|
|
|
import { logger } from '../../helpers/logger'
|
|
|
|
import { ActorFollowModel } from '../../models/activitypub/actor-follow'
|
|
|
|
import { AbstractScheduler } from './abstract-scheduler'
|
2018-06-14 12:06:56 -04:00
|
|
|
import { SCHEDULER_INTERVALS_MS } from '../../initializers'
|
2019-03-19 09:23:17 -04:00
|
|
|
import { ActorFollowScoreCache } from '../files-cache'
|
2018-01-11 03:35:50 -05:00
|
|
|
|
2018-12-20 08:31:11 -05:00
|
|
|
export class ActorFollowScheduler extends AbstractScheduler {
|
2018-01-11 03:35:50 -05:00
|
|
|
|
|
|
|
private static instance: AbstractScheduler
|
|
|
|
|
2018-12-20 08:31:11 -05:00
|
|
|
protected schedulerIntervalMs = SCHEDULER_INTERVALS_MS.actorFollowScores
|
2018-06-14 12:06:56 -04:00
|
|
|
|
2018-01-11 03:35:50 -05:00
|
|
|
private constructor () {
|
|
|
|
super()
|
|
|
|
}
|
|
|
|
|
2018-12-20 08:31:11 -05:00
|
|
|
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 () {
|
2018-02-27 07:46:56 -05:00
|
|
|
if (!isTestInstance()) logger.info('Removing bad actor follows (scheduler).')
|
2018-02-27 05:08:59 -05:00
|
|
|
|
2018-01-11 03:35:50 -05:00
|
|
|
try {
|
|
|
|
await ActorFollowModel.removeBadActorFollows()
|
|
|
|
} catch (err) {
|
2018-03-26 09:54:13 -04:00
|
|
|
logger.error('Error in bad actor follows scheduler.', { err })
|
2018-01-11 03:35:50 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static get Instance () {
|
|
|
|
return this.instance || (this.instance = new this())
|
|
|
|
}
|
|
|
|
}
|