2023-07-27 08:31:52 +03:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2023-06-10 07:45:11 +03:00
|
|
|
import { Inject, Injectable, OnApplicationShutdown } from '@nestjs/common';
|
2023-04-14 07:50:05 +03:00
|
|
|
import * as Redis from 'ioredis';
|
2023-08-16 11:51:28 +03:00
|
|
|
import type { MiUser } from '@/models/entities/User.js';
|
2022-09-20 23:33:11 +03:00
|
|
|
import type { UserKeypairsRepository } from '@/models/index.js';
|
2023-04-05 06:10:40 +03:00
|
|
|
import { RedisKVCache } from '@/misc/cache.js';
|
2023-08-16 11:51:28 +03:00
|
|
|
import type { MiUserKeypair } from '@/models/entities/UserKeypair.js';
|
2022-09-17 21:27:08 +03:00
|
|
|
import { DI } from '@/di-symbols.js';
|
2022-12-04 08:03:09 +02:00
|
|
|
import { bindThis } from '@/decorators.js';
|
2022-09-17 21:27:08 +03:00
|
|
|
|
|
|
|
@Injectable()
|
2023-06-10 07:45:11 +03:00
|
|
|
export class UserKeypairService implements OnApplicationShutdown {
|
2023-08-16 11:51:28 +03:00
|
|
|
private cache: RedisKVCache<MiUserKeypair>;
|
2022-09-17 21:27:08 +03:00
|
|
|
|
|
|
|
constructor(
|
2023-04-05 06:10:40 +03:00
|
|
|
@Inject(DI.redis)
|
|
|
|
private redisClient: Redis.Redis,
|
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
@Inject(DI.userKeypairsRepository)
|
|
|
|
private userKeypairsRepository: UserKeypairsRepository,
|
|
|
|
) {
|
2023-08-16 11:51:28 +03:00
|
|
|
this.cache = new RedisKVCache<MiUserKeypair>(this.redisClient, 'userKeypair', {
|
2023-04-05 06:10:40 +03:00
|
|
|
lifetime: 1000 * 60 * 60 * 24, // 24h
|
|
|
|
memoryCacheLifetime: Infinity,
|
|
|
|
fetcher: (key) => this.userKeypairsRepository.findOneByOrFail({ userId: key }),
|
|
|
|
toRedisConverter: (value) => JSON.stringify(value),
|
|
|
|
fromRedisConverter: (value) => JSON.parse(value),
|
|
|
|
});
|
2022-09-17 21:27:08 +03:00
|
|
|
}
|
|
|
|
|
2022-12-04 08:03:09 +02:00
|
|
|
@bindThis
|
2023-08-16 11:51:28 +03:00
|
|
|
public async getUserKeypair(userId: MiUser['id']): Promise<MiUserKeypair> {
|
2023-04-05 06:10:40 +03:00
|
|
|
return await this.cache.fetch(userId);
|
2022-09-17 21:27:08 +03:00
|
|
|
}
|
2023-06-10 07:45:11 +03:00
|
|
|
|
|
|
|
@bindThis
|
|
|
|
public dispose(): void {
|
|
|
|
this.cache.dispose();
|
|
|
|
}
|
|
|
|
|
|
|
|
@bindThis
|
|
|
|
public onApplicationShutdown(signal?: string | undefined): void {
|
|
|
|
this.dispose();
|
|
|
|
}
|
2022-09-17 21:27:08 +03:00
|
|
|
}
|