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

53 lines
1.5 KiB
TypeScript
Raw Normal View History

2018-07-12 19:02:00 +02:00
import * as AsyncLRU from 'async-lru'
2018-08-27 16:23:34 +02:00
import { createWriteStream, remove } from 'fs-extra'
2018-07-12 19:02:00 +02:00
import { logger } from '../../helpers/logger'
import { VideoModel } from '../../models/video/video'
import { fetchRemoteVideoStaticFile } from '../activitypub'
export abstract class AbstractVideoStaticFileCache <T> {
protected lru
abstract getFilePath (params: T): Promise<string>
// Load and save the remote file, then return the local path from filesystem
protected abstract loadRemoteFile (key: string): Promise<string>
2018-07-16 14:22:16 +02:00
init (max: number, maxAge: number) {
2018-07-12 19:02:00 +02:00
this.lru = new AsyncLRU({
max,
2018-07-16 14:22:16 +02:00
maxAge,
2018-07-12 19:02:00 +02:00
load: (key, cb) => {
this.loadRemoteFile(key)
.then(res => cb(null, res))
.catch(err => cb(err))
}
})
this.lru.on('evict', (obj: { key: string, value: string }) => {
2018-08-27 16:23:34 +02:00
remove(obj.value)
2018-07-16 14:22:16 +02:00
.then(() => logger.debug('%s evicted from %s', obj.value, this.constructor.name))
2018-07-12 19:02:00 +02:00
})
}
protected loadFromLRU (key: string) {
return new Promise<string>((res, rej) => {
this.lru.get(key, (err, value) => {
err ? rej(err) : res(value)
})
})
}
protected saveRemoteVideoFileAndReturnPath (video: VideoModel, remoteStaticPath: string, destPath: string) {
return new Promise<string>((res, rej) => {
const req = fetchRemoteVideoStaticFile(video, remoteStaticPath, rej)
const stream = createWriteStream(destPath)
req.pipe(stream)
.on('error', (err) => rej(err))
.on('finish', () => res(destPath))
})
}
}