2022-10-12 10:09:02 -04:00
|
|
|
import LRUCache from 'lru-cache'
|
|
|
|
import { LRU_CACHE } from '@server/initializers/constants'
|
2022-12-20 03:15:49 -05:00
|
|
|
import { MUserAccountUrl } from '@server/types/models'
|
|
|
|
import { pick } from '@shared/core-utils'
|
2022-10-12 10:09:02 -04:00
|
|
|
import { buildUUID } from '@shared/extra-utils'
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
// Create temporary tokens that can be used as URL query parameters to access video static files
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class VideoTokensManager {
|
|
|
|
|
|
|
|
private static instance: VideoTokensManager
|
|
|
|
|
2022-12-20 03:15:49 -05:00
|
|
|
private readonly lruCache = new LRUCache<string, { videoUUID: string, user: MUserAccountUrl }>({
|
2022-10-12 10:09:02 -04:00
|
|
|
max: LRU_CACHE.VIDEO_TOKENS.MAX_SIZE,
|
|
|
|
ttl: LRU_CACHE.VIDEO_TOKENS.TTL
|
|
|
|
})
|
|
|
|
|
|
|
|
private constructor () {}
|
|
|
|
|
2022-12-20 03:15:49 -05:00
|
|
|
create (options: {
|
|
|
|
user: MUserAccountUrl
|
|
|
|
videoUUID: string
|
|
|
|
}) {
|
2022-10-12 10:09:02 -04:00
|
|
|
const token = buildUUID()
|
|
|
|
|
|
|
|
const expires = new Date(new Date().getTime() + LRU_CACHE.VIDEO_TOKENS.TTL)
|
|
|
|
|
2022-12-20 03:15:49 -05:00
|
|
|
this.lruCache.set(token, pick(options, [ 'user', 'videoUUID' ]))
|
2022-10-12 10:09:02 -04:00
|
|
|
|
|
|
|
return { token, expires }
|
|
|
|
}
|
|
|
|
|
|
|
|
hasToken (options: {
|
|
|
|
token: string
|
|
|
|
videoUUID: string
|
|
|
|
}) {
|
|
|
|
const value = this.lruCache.get(options.token)
|
|
|
|
if (!value) return false
|
|
|
|
|
2022-12-20 03:15:49 -05:00
|
|
|
return value.videoUUID === options.videoUUID
|
|
|
|
}
|
|
|
|
|
|
|
|
getUserFromToken (options: {
|
|
|
|
token: string
|
|
|
|
}) {
|
|
|
|
const value = this.lruCache.get(options.token)
|
|
|
|
if (!value) return undefined
|
|
|
|
|
|
|
|
return value.user
|
2022-10-12 10:09:02 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static get Instance () {
|
|
|
|
return this.instance || (this.instance = new this())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
|
|
|
VideoTokensManager
|
|
|
|
}
|