2019-04-24 03:28:06 -04:00
|
|
|
import { remove } from 'fs-extra'
|
2018-07-12 13:02:00 -04:00
|
|
|
import { logger } from '../../helpers/logger'
|
2021-08-27 08:32:44 -04:00
|
|
|
import memoizee from 'memoizee'
|
2018-07-12 13:02:00 -04:00
|
|
|
|
2021-02-16 10:25:53 -05:00
|
|
|
type GetFilePathResult = { isOwned: boolean, path: string, downloadName?: string } | undefined
|
2019-04-23 03:50:57 -04:00
|
|
|
|
2018-07-12 13:02:00 -04:00
|
|
|
export abstract class AbstractVideoStaticFileCache <T> {
|
|
|
|
|
2019-04-23 03:50:57 -04:00
|
|
|
getFilePath: (params: T) => Promise<GetFilePathResult>
|
2018-07-12 13:02:00 -04:00
|
|
|
|
2019-04-23 03:50:57 -04:00
|
|
|
abstract getFilePathImpl (params: T): Promise<GetFilePathResult>
|
2018-07-12 13:02:00 -04:00
|
|
|
|
|
|
|
// Load and save the remote file, then return the local path from filesystem
|
2019-04-23 03:50:57 -04:00
|
|
|
protected abstract loadRemoteFile (key: string): Promise<GetFilePathResult>
|
2018-07-12 13:02:00 -04:00
|
|
|
|
2018-07-16 08:22:16 -04:00
|
|
|
init (max: number, maxAge: number) {
|
2019-04-17 04:07:00 -04:00
|
|
|
this.getFilePath = memoizee(this.getFilePathImpl, {
|
2018-07-16 08:22:16 -04:00
|
|
|
maxAge,
|
2019-04-17 04:07:00 -04:00
|
|
|
max,
|
|
|
|
promise: true,
|
2019-05-28 03:36:46 -04:00
|
|
|
dispose: (result?: GetFilePathResult) => {
|
|
|
|
if (result && result.isOwned !== true) {
|
2019-04-23 03:50:57 -04: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 13:02:00 -04:00
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|