2019-04-24 09:28:06 +02:00
|
|
|
import { remove } from 'fs-extra'
|
2018-07-12 19:02:00 +02:00
|
|
|
import { logger } from '../../helpers/logger'
|
2019-04-17 10:07:00 +02:00
|
|
|
import * as memoizee from 'memoizee'
|
2018-07-12 19:02:00 +02:00
|
|
|
|
2021-02-16 16:25:53 +01:00
|
|
|
type GetFilePathResult = { isOwned: boolean, path: string, downloadName?: string } | undefined
|
2019-04-23 09:50:57 +02:00
|
|
|
|
2018-07-12 19:02:00 +02:00
|
|
|
export abstract class AbstractVideoStaticFileCache <T> {
|
|
|
|
|
2019-04-23 09:50:57 +02:00
|
|
|
getFilePath: (params: T) => Promise<GetFilePathResult>
|
2018-07-12 19:02:00 +02:00
|
|
|
|
2019-04-23 09:50:57 +02:00
|
|
|
abstract getFilePathImpl (params: T): Promise<GetFilePathResult>
|
2018-07-12 19:02:00 +02:00
|
|
|
|
|
|
|
// Load and save the remote file, then return the local path from filesystem
|
2019-04-23 09:50:57 +02:00
|
|
|
protected abstract loadRemoteFile (key: string): Promise<GetFilePathResult>
|
2018-07-12 19:02:00 +02:00
|
|
|
|
2018-07-16 14:22:16 +02:00
|
|
|
init (max: number, maxAge: number) {
|
2019-04-17 10:07:00 +02:00
|
|
|
this.getFilePath = memoizee(this.getFilePathImpl, {
|
2018-07-16 14:22:16 +02:00
|
|
|
maxAge,
|
2019-04-17 10:07:00 +02:00
|
|
|
max,
|
|
|
|
promise: true,
|
2019-05-28 09:36:46 +02:00
|
|
|
dispose: (result?: GetFilePathResult) => {
|
|
|
|
if (result && result.isOwned !== true) {
|
2019-04-23 09:50:57 +02:00
|
|
|
remove(result.path)
|
|
|
|
.then(() => logger.debug('%s removed from %s', result.path, this.constructor.name))
|
|
|
|
.catch(err => logger.error('Cannot remove %s from cache %s.', result.path, this.constructor.name, { err }))
|
|
|
|
}
|
2018-07-12 19:02:00 +02:00
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|