2017-12-12 11:53:50 -05:00
|
|
|
import { join } from 'path'
|
2020-01-31 10:56:52 -05:00
|
|
|
import { FILES_CACHE } 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'
|
2020-01-30 05:53:38 -05:00
|
|
|
import { doRequestAndSaveToFile } from '@server/helpers/requests'
|
2021-02-12 10:23:19 -05:00
|
|
|
import { ThumbnailModel } from '@server/models/video/thumbnail'
|
|
|
|
import { ThumbnailType } from '@shared/models'
|
|
|
|
import { logger } from '@server/helpers/logger'
|
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())
|
|
|
|
}
|
|
|
|
|
2021-02-12 10:23:19 -05:00
|
|
|
async getFilePathImpl (filename: string) {
|
2021-02-16 02:50:40 -05:00
|
|
|
const thumbnail = await ThumbnailModel.loadWithVideoByFilename(filename, ThumbnailType.PREVIEW)
|
2021-02-12 10:23:19 -05:00
|
|
|
if (!thumbnail) return undefined
|
2017-12-20 05:05:10 -05:00
|
|
|
|
2021-02-12 10:23:19 -05:00
|
|
|
if (thumbnail.Video.isOwned()) return { isOwned: true, path: thumbnail.getPath() }
|
2017-12-20 05:05:10 -05:00
|
|
|
|
2021-02-12 10:23:19 -05:00
|
|
|
return this.loadRemoteFile(thumbnail.Video.uuid)
|
2017-07-12 05:56:02 -04:00
|
|
|
}
|
|
|
|
|
2021-02-15 08:08:16 -05:00
|
|
|
// Key is the video UUID
|
2018-07-12 13:02:00 -04:00
|
|
|
protected async loadRemoteFile (key: string) {
|
2018-09-18 06:00:49 -04:00
|
|
|
const video = await VideoModel.loadAndPopulateAccountAndServerAndTags(key)
|
2017-10-25 10:03:33 -04:00
|
|
|
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
|
|
|
|
2020-01-30 05:53:38 -05:00
|
|
|
const preview = video.getPreview()
|
|
|
|
const destPath = join(FILES_CACHE.PREVIEWS.DIRECTORY, preview.filename)
|
2017-07-12 05:56:02 -04:00
|
|
|
|
2020-01-30 05:53:38 -05:00
|
|
|
const remoteUrl = preview.getFileUrl(video)
|
2021-03-08 08:24:11 -05:00
|
|
|
await doRequestAndSaveToFile(remoteUrl, destPath)
|
2019-04-23 03:50:57 -04:00
|
|
|
|
2021-02-12 10:23:19 -05:00
|
|
|
logger.debug('Fetched remote preview %s to %s.', remoteUrl, destPath)
|
|
|
|
|
2019-04-24 03:28:06 -04:00
|
|
|
return { isOwned: false, path: destPath }
|
2017-07-12 05:56:02 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export {
|
|
|
|
VideosPreviewCache
|
|
|
|
}
|