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