2017-12-12 17:53:50 +01:00
|
|
|
import { join } from 'path'
|
2018-07-12 19:02:00 +02:00
|
|
|
import { CACHE, CONFIG, STATIC_PATHS } from '../../initializers'
|
2017-12-12 17:53:50 +01:00
|
|
|
import { VideoModel } from '../../models/video/video'
|
2018-07-12 19:02:00 +02:00
|
|
|
import { AbstractVideoStaticFileCache } from './abstract-video-static-file-cache'
|
2017-07-12 11:56:02 +02:00
|
|
|
|
2018-07-12 19:02:00 +02:00
|
|
|
class VideosPreviewCache extends AbstractVideoStaticFileCache <string> {
|
2017-07-12 11:56:02 +02:00
|
|
|
|
|
|
|
private static instance: VideosPreviewCache
|
|
|
|
|
2018-07-12 19:02:00 +02:00
|
|
|
private constructor () {
|
|
|
|
super()
|
|
|
|
}
|
2017-07-12 11:56:02 +02:00
|
|
|
|
|
|
|
static get Instance () {
|
|
|
|
return this.instance || (this.instance = new this())
|
|
|
|
}
|
|
|
|
|
2018-07-12 19:02:00 +02:00
|
|
|
async getFilePath (videoUUID: string) {
|
2018-09-18 12:00:49 +02:00
|
|
|
const video = await VideoModel.loadByUUIDWithFile(videoUUID)
|
2017-12-20 11:05:10 +01:00
|
|
|
if (!video) return undefined
|
|
|
|
|
|
|
|
if (video.isOwned()) return join(CONFIG.STORAGE.PREVIEWS_DIR, video.getPreviewName())
|
|
|
|
|
2018-07-12 19:02:00 +02:00
|
|
|
return this.loadFromLRU(videoUUID)
|
2017-07-12 11:56:02 +02:00
|
|
|
}
|
|
|
|
|
2018-07-12 19:02:00 +02:00
|
|
|
protected async loadRemoteFile (key: string) {
|
2018-09-18 12:00:49 +02:00
|
|
|
const video = await VideoModel.loadAndPopulateAccountAndServerAndTags(key)
|
2017-10-25 16:03:33 +02:00
|
|
|
if (!video) return undefined
|
2017-07-12 11:56:02 +02:00
|
|
|
|
2018-07-12 19:02:00 +02:00
|
|
|
if (video.isOwned()) throw new Error('Cannot load remote preview of owned video.')
|
2017-07-12 11:56:02 +02:00
|
|
|
|
2018-07-12 19:02:00 +02:00
|
|
|
const remoteStaticPath = join(STATIC_PATHS.PREVIEWS, video.getPreviewName())
|
2018-07-16 14:22:16 +02:00
|
|
|
const destPath = join(CACHE.PREVIEWS.DIRECTORY, video.getPreviewName())
|
2017-07-12 11:56:02 +02:00
|
|
|
|
2018-07-12 19:02:00 +02:00
|
|
|
return this.saveRemoteVideoFileAndReturnPath(video, remoteStaticPath, destPath)
|
2017-07-12 11:56:02 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export {
|
|
|
|
VideosPreviewCache
|
|
|
|
}
|