1
0
Fork 0
peertube/server/lib/files-cache/videos-preview-cache.ts

47 lines
1.4 KiB
TypeScript
Raw Normal View History

2017-12-12 11:53:50 -05:00
import { join } from 'path'
import { FILES_CACHE, STATIC_PATHS } from '../../initializers/constants'
2017-12-12 11:53:50 -05:00
import { VideoModel } from '../../models/video/video'
2018-07-12 13:02:00 -04:00
import { AbstractVideoStaticFileCache } from './abstract-video-static-file-cache'
2019-04-11 05:33:44 -04:00
import { CONFIG } from '../../initializers/config'
2017-07-12 05:56:02 -04:00
2018-07-12 13:02:00 -04:00
class VideosPreviewCache extends AbstractVideoStaticFileCache <string> {
2017-07-12 05:56:02 -04:00
private static instance: VideosPreviewCache
2018-07-12 13:02:00 -04:00
private constructor () {
super()
}
2017-07-12 05:56:02 -04:00
static get Instance () {
return this.instance || (this.instance = new this())
}
async getFilePathImpl (videoUUID: string) {
const video = await VideoModel.loadByUUIDWithFile(videoUUID)
2017-12-20 05:05:10 -05:00
if (!video) return undefined
2019-04-23 03:50:57 -04:00
if (video.isOwned()) return { isOwned: true, path: join(CONFIG.STORAGE.PREVIEWS_DIR, video.getPreview().filename) }
2017-12-20 05:05:10 -05:00
return this.loadRemoteFile(videoUUID)
2017-07-12 05:56:02 -04:00
}
2018-07-12 13:02:00 -04:00
protected async loadRemoteFile (key: string) {
const video = await VideoModel.loadAndPopulateAccountAndServerAndTags(key)
if (!video) return undefined
2017-07-12 05:56:02 -04:00
2018-07-12 13:02:00 -04:00
if (video.isOwned()) throw new Error('Cannot load remote preview of owned video.')
2017-07-12 05:56:02 -04:00
// FIXME: use URL
const remoteStaticPath = join(STATIC_PATHS.PREVIEWS, video.getPreview().filename)
const destPath = join(FILES_CACHE.PREVIEWS.DIRECTORY, video.getPreview().filename)
2017-07-12 05:56:02 -04:00
2019-04-23 03:50:57 -04:00
const path = await this.saveRemoteVideoFileAndReturnPath(video, remoteStaticPath, destPath)
return { isOwned: false, path }
2017-07-12 05:56:02 -04:00
}
}
export {
VideosPreviewCache
}