PeerTube/server/lib/files-cache/videos-preview-cache.ts

47 lines
1.3 KiB
TypeScript
Raw Normal View History

2017-12-12 17:53:50 +01:00
import { join } from 'path'
2020-01-31 16:56:52 +01:00
import { FILES_CACHE } from '../../initializers/constants'
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'
import { doRequestAndSaveToFile } from '@server/helpers/requests'
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())
}
async getFilePathImpl (videoUUID: string) {
2019-08-09 15:04:36 +02:00
const video = await VideoModel.loadByUUID(videoUUID)
2017-12-20 11:05:10 +01:00
if (!video) return undefined
2019-05-16 16:55:34 +02:00
if (video.isOwned()) return { isOwned: true, path: video.getPreview().getPath() }
2017-12-20 11:05:10 +01:00
return this.loadRemoteFile(videoUUID)
2017-07-12 11:56:02 +02:00
}
2018-07-12 19:02:00 +02:00
protected async loadRemoteFile (key: string) {
const video = await VideoModel.loadAndPopulateAccountAndServerAndTags(key)
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
const preview = video.getPreview()
const destPath = join(FILES_CACHE.PREVIEWS.DIRECTORY, preview.filename)
2017-07-12 11:56:02 +02:00
const remoteUrl = preview.getFileUrl(video)
await doRequestAndSaveToFile({ uri: remoteUrl }, destPath)
2019-04-23 09:50:57 +02:00
2019-04-24 09:28:06 +02:00
return { isOwned: false, path: destPath }
2017-07-12 11:56:02 +02:00
}
}
export {
VideosPreviewCache
}