2017-12-12 10:53:50 -06:00
|
|
|
import { join } from 'path'
|
2020-01-31 09:56:52 -06:00
|
|
|
import { FILES_CACHE } from '../../initializers/constants'
|
2017-12-12 10:53:50 -06:00
|
|
|
import { VideoModel } from '../../models/video/video'
|
2018-07-12 12:02:00 -05:00
|
|
|
import { AbstractVideoStaticFileCache } from './abstract-video-static-file-cache'
|
2020-01-30 04:53:38 -06:00
|
|
|
import { doRequestAndSaveToFile } from '@server/helpers/requests'
|
2017-07-12 04:56:02 -05:00
|
|
|
|
2018-07-12 12:02:00 -05:00
|
|
|
class VideosPreviewCache extends AbstractVideoStaticFileCache <string> {
|
2017-07-12 04:56:02 -05:00
|
|
|
|
|
|
|
private static instance: VideosPreviewCache
|
|
|
|
|
2018-07-12 12:02:00 -05:00
|
|
|
private constructor () {
|
|
|
|
super()
|
|
|
|
}
|
2017-07-12 04:56:02 -05:00
|
|
|
|
|
|
|
static get Instance () {
|
|
|
|
return this.instance || (this.instance = new this())
|
|
|
|
}
|
|
|
|
|
2019-04-17 03:07:00 -05:00
|
|
|
async getFilePathImpl (videoUUID: string) {
|
2019-08-09 08:04:36 -05:00
|
|
|
const video = await VideoModel.loadByUUID(videoUUID)
|
2017-12-20 04:05:10 -06:00
|
|
|
if (!video) return undefined
|
|
|
|
|
2019-05-16 09:55:34 -05:00
|
|
|
if (video.isOwned()) return { isOwned: true, path: video.getPreview().getPath() }
|
2017-12-20 04:05:10 -06:00
|
|
|
|
2019-04-17 03:07:00 -05:00
|
|
|
return this.loadRemoteFile(videoUUID)
|
2017-07-12 04:56:02 -05:00
|
|
|
}
|
|
|
|
|
2018-07-12 12:02:00 -05:00
|
|
|
protected async loadRemoteFile (key: string) {
|
2018-09-18 05:00:49 -05:00
|
|
|
const video = await VideoModel.loadAndPopulateAccountAndServerAndTags(key)
|
2017-10-25 09:03:33 -05:00
|
|
|
if (!video) return undefined
|
2017-07-12 04:56:02 -05:00
|
|
|
|
2018-07-12 12:02:00 -05:00
|
|
|
if (video.isOwned()) throw new Error('Cannot load remote preview of owned video.')
|
2017-07-12 04:56:02 -05:00
|
|
|
|
2020-01-30 04:53:38 -06:00
|
|
|
const preview = video.getPreview()
|
|
|
|
const destPath = join(FILES_CACHE.PREVIEWS.DIRECTORY, preview.filename)
|
2017-07-12 04:56:02 -05:00
|
|
|
|
2020-01-30 04:53:38 -06:00
|
|
|
const remoteUrl = preview.getFileUrl(video)
|
|
|
|
await doRequestAndSaveToFile({ uri: remoteUrl }, destPath)
|
2019-04-23 02:50:57 -05:00
|
|
|
|
2019-04-24 02:28:06 -05:00
|
|
|
return { isOwned: false, path: destPath }
|
2017-07-12 04:56:02 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export {
|
|
|
|
VideosPreviewCache
|
|
|
|
}
|