2022-09-17 18:27:08 +00:00
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
|
|
|
import Redis from 'ioredis';
|
2022-09-20 20:33:11 +00:00
|
|
|
import type { UsersRepository } from '@/models/index.js';
|
2022-09-17 18:27:08 +00:00
|
|
|
import { Cache } from '@/misc/cache.js';
|
|
|
|
import type { CacheableLocalUser, CacheableUser, ILocalUser } from '@/models/entities/User.js';
|
|
|
|
import { DI } from '@/di-symbols.js';
|
2022-12-04 01:16:03 +00:00
|
|
|
import { UserEntityService } from '@/core/entities/UserEntityService.js';
|
2022-09-17 18:27:08 +00:00
|
|
|
import type { OnApplicationShutdown } from '@nestjs/common';
|
2022-12-04 06:03:09 +00:00
|
|
|
import { bindThis } from '@/decorators.js';
|
2022-09-17 18:27:08 +00:00
|
|
|
|
|
|
|
@Injectable()
|
|
|
|
export class UserCacheService implements OnApplicationShutdown {
|
|
|
|
public userByIdCache: Cache<CacheableUser>;
|
|
|
|
public localUserByNativeTokenCache: Cache<CacheableLocalUser | null>;
|
|
|
|
public localUserByIdCache: Cache<CacheableLocalUser>;
|
|
|
|
public uriPersonCache: Cache<CacheableUser | null>;
|
|
|
|
|
|
|
|
constructor(
|
|
|
|
@Inject(DI.redisSubscriber)
|
|
|
|
private redisSubscriber: Redis.Redis,
|
|
|
|
|
|
|
|
@Inject(DI.usersRepository)
|
|
|
|
private usersRepository: UsersRepository,
|
|
|
|
|
|
|
|
private userEntityService: UserEntityService,
|
|
|
|
) {
|
2022-12-04 06:03:09 +00:00
|
|
|
//this.onMessage = this.onMessage.bind(this);
|
2022-09-17 18:27:08 +00:00
|
|
|
|
|
|
|
this.userByIdCache = new Cache<CacheableUser>(Infinity);
|
|
|
|
this.localUserByNativeTokenCache = new Cache<CacheableLocalUser | null>(Infinity);
|
|
|
|
this.localUserByIdCache = new Cache<CacheableLocalUser>(Infinity);
|
|
|
|
this.uriPersonCache = new Cache<CacheableUser | null>(Infinity);
|
|
|
|
|
|
|
|
this.redisSubscriber.on('message', this.onMessage);
|
|
|
|
}
|
|
|
|
|
2022-12-04 06:03:09 +00:00
|
|
|
@bindThis
|
2022-09-23 22:12:11 +00:00
|
|
|
private async onMessage(_: string, data: string): Promise<void> {
|
2022-09-17 18:27:08 +00:00
|
|
|
const obj = JSON.parse(data);
|
|
|
|
|
|
|
|
if (obj.channel === 'internal') {
|
|
|
|
const { type, body } = obj.message;
|
|
|
|
switch (type) {
|
|
|
|
case 'userChangeSuspendedState':
|
|
|
|
case 'userChangeSilencedState':
|
|
|
|
case 'userChangeModeratorState':
|
|
|
|
case 'remoteUserUpdated': {
|
|
|
|
const user = await this.usersRepository.findOneByOrFail({ id: body.id });
|
|
|
|
this.userByIdCache.set(user.id, user);
|
|
|
|
for (const [k, v] of this.uriPersonCache.cache.entries()) {
|
|
|
|
if (v.value?.id === user.id) {
|
|
|
|
this.uriPersonCache.set(k, user);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (this.userEntityService.isLocalUser(user)) {
|
|
|
|
this.localUserByNativeTokenCache.set(user.token, user);
|
|
|
|
this.localUserByIdCache.set(user.id, user);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 'userTokenRegenerated': {
|
|
|
|
const user = await this.usersRepository.findOneByOrFail({ id: body.id }) as ILocalUser;
|
|
|
|
this.localUserByNativeTokenCache.delete(body.oldToken);
|
|
|
|
this.localUserByNativeTokenCache.set(body.newToken, user);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-12-04 06:03:09 +00:00
|
|
|
@bindThis
|
2022-09-17 18:27:08 +00:00
|
|
|
public onApplicationShutdown(signal?: string | undefined) {
|
|
|
|
this.redisSubscriber.off('message', this.onMessage);
|
|
|
|
}
|
|
|
|
}
|