mirror of https://github.com/Chocobozzz/PeerTube
53 lines
1.4 KiB
TypeScript
53 lines
1.4 KiB
TypeScript
import { LRUCache } from 'lru-cache'
|
|
import { MOAuthTokenUser } from '@server/types/models/index.js'
|
|
import { LRU_CACHE } from '../../initializers/constants.js'
|
|
|
|
export class TokensCache {
|
|
|
|
private static instance: TokensCache
|
|
|
|
private readonly accessTokenCache = new LRUCache<string, MOAuthTokenUser>({ max: LRU_CACHE.USER_TOKENS.MAX_SIZE })
|
|
private readonly userHavingToken = new LRUCache<number, string>({ max: LRU_CACHE.USER_TOKENS.MAX_SIZE })
|
|
|
|
private constructor () { }
|
|
|
|
static get Instance () {
|
|
return this.instance || (this.instance = new this())
|
|
}
|
|
|
|
hasToken (token: string) {
|
|
return this.accessTokenCache.has(token)
|
|
}
|
|
|
|
getByToken (token: string) {
|
|
return this.accessTokenCache.get(token)
|
|
}
|
|
|
|
setToken (token: MOAuthTokenUser) {
|
|
this.accessTokenCache.set(token.accessToken, token)
|
|
this.userHavingToken.set(token.userId, token.accessToken)
|
|
}
|
|
|
|
deleteUserToken (userId: number) {
|
|
this.clearCacheByUserId(userId)
|
|
}
|
|
|
|
clearCacheByUserId (userId: number) {
|
|
const token = this.userHavingToken.get(userId)
|
|
|
|
if (token !== undefined) {
|
|
this.accessTokenCache.delete(token)
|
|
this.userHavingToken.delete(userId)
|
|
}
|
|
}
|
|
|
|
clearCacheByToken (token: string) {
|
|
const tokenModel = this.accessTokenCache.get(token)
|
|
|
|
if (tokenModel !== undefined) {
|
|
this.userHavingToken.delete(tokenModel.userId)
|
|
this.accessTokenCache.delete(token)
|
|
}
|
|
}
|
|
}
|