2019-04-11 08:26:41 -04:00
|
|
|
import { ACTOR_FOLLOW_SCORE } from '../../initializers/constants'
|
2018-12-20 08:31:11 -05:00
|
|
|
import { logger } from '../../helpers/logger'
|
|
|
|
|
|
|
|
// Cache follows scores, instead of writing them too often in database
|
|
|
|
// Keep data in memory, we don't really need Redis here as we don't really care to loose some scores
|
|
|
|
class ActorFollowScoreCache {
|
|
|
|
|
|
|
|
private static instance: ActorFollowScoreCache
|
|
|
|
private pendingFollowsScore: { [ url: string ]: number } = {}
|
2019-08-06 11:19:53 -04:00
|
|
|
private pendingBadServer = new Set<number>()
|
|
|
|
private pendingGoodServer = new Set<number>()
|
2018-12-20 08:31:11 -05:00
|
|
|
|
|
|
|
private constructor () {}
|
|
|
|
|
|
|
|
static get Instance () {
|
|
|
|
return this.instance || (this.instance = new this())
|
|
|
|
}
|
|
|
|
|
|
|
|
updateActorFollowsScore (goodInboxes: string[], badInboxes: string[]) {
|
|
|
|
if (goodInboxes.length === 0 && badInboxes.length === 0) return
|
|
|
|
|
|
|
|
logger.info('Updating %d good actor follows and %d bad actor follows scores in cache.', goodInboxes.length, badInboxes.length)
|
|
|
|
|
|
|
|
for (const goodInbox of goodInboxes) {
|
|
|
|
if (this.pendingFollowsScore[goodInbox] === undefined) this.pendingFollowsScore[goodInbox] = 0
|
|
|
|
|
|
|
|
this.pendingFollowsScore[goodInbox] += ACTOR_FOLLOW_SCORE.BONUS
|
|
|
|
}
|
|
|
|
|
|
|
|
for (const badInbox of badInboxes) {
|
|
|
|
if (this.pendingFollowsScore[badInbox] === undefined) this.pendingFollowsScore[badInbox] = 0
|
|
|
|
|
|
|
|
this.pendingFollowsScore[badInbox] += ACTOR_FOLLOW_SCORE.PENALTY
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-06 11:19:53 -04:00
|
|
|
addBadServerId (serverId: number) {
|
|
|
|
this.pendingBadServer.add(serverId)
|
|
|
|
}
|
|
|
|
|
|
|
|
getBadFollowingServerIds () {
|
|
|
|
return Array.from(this.pendingBadServer)
|
|
|
|
}
|
|
|
|
|
|
|
|
clearBadFollowingServerIds () {
|
|
|
|
this.pendingBadServer = new Set<number>()
|
|
|
|
}
|
|
|
|
|
|
|
|
addGoodServerId (serverId: number) {
|
|
|
|
this.pendingGoodServer.add(serverId)
|
|
|
|
}
|
|
|
|
|
|
|
|
getGoodFollowingServerIds () {
|
|
|
|
return Array.from(this.pendingGoodServer)
|
|
|
|
}
|
|
|
|
|
|
|
|
clearGoodFollowingServerIds () {
|
|
|
|
this.pendingGoodServer = new Set<number>()
|
|
|
|
}
|
|
|
|
|
|
|
|
getPendingFollowsScore () {
|
2018-12-20 08:31:11 -05:00
|
|
|
return this.pendingFollowsScore
|
|
|
|
}
|
|
|
|
|
|
|
|
clearPendingFollowsScore () {
|
|
|
|
this.pendingFollowsScore = {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export {
|
|
|
|
ActorFollowScoreCache
|
|
|
|
}
|