PeerTube/server/lib/files-cache/abstract-video-static-file-...

31 lines
1.0 KiB
TypeScript
Raw Normal View History

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'
2021-08-27 14:32:44 +02:00
import memoizee from 'memoizee'
2018-07-12 19:02:00 +02: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) {
this.getFilePath = memoizee(this.getFilePathImpl, {
2018-07-16 14:22:16 +02:00
maxAge,
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
}
})
}
}