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

59 lines
1.8 KiB
TypeScript
Raw Normal View History

2017-12-12 16:53:50 +00:00
import { join } from 'path'
2020-01-31 15:56:52 +00:00
import { FILES_CACHE } from '../../initializers/constants'
2017-12-12 16:53:50 +00:00
import { VideoModel } from '../../models/video/video'
2018-07-12 17:02:00 +00:00
import { AbstractVideoStaticFileCache } from './abstract-video-static-file-cache'
import { doRequestAndSaveToFile } from '@server/helpers/requests'
import { ThumbnailModel } from '@server/models/video/thumbnail'
import { ThumbnailType } from '@shared/models'
import { logger } from '@server/helpers/logger'
2017-07-12 09:56:02 +00:00
2018-07-12 17:02:00 +00:00
class VideosPreviewCache extends AbstractVideoStaticFileCache <string> {
2017-07-12 09:56:02 +00:00
private static instance: VideosPreviewCache
2018-07-12 17:02:00 +00:00
private constructor () {
super()
}
2017-07-12 09:56:02 +00:00
static get Instance () {
return this.instance || (this.instance = new this())
}
async getFilePathImpl (filename: string) {
2021-02-16 07:50:40 +00:00
const thumbnail = await ThumbnailModel.loadWithVideoByFilename(filename, ThumbnailType.PREVIEW)
if (!thumbnail) return undefined
2017-12-20 10:05:10 +00:00
if (thumbnail.Video.isOwned()) return { isOwned: true, path: thumbnail.getPath() }
2017-12-20 10:05:10 +00:00
return this.loadRemoteFile(thumbnail.Video.uuid)
2017-07-12 09:56:02 +00:00
}
2021-02-15 13:08:16 +00:00
// Key is the video UUID
2018-07-12 17:02:00 +00:00
protected async loadRemoteFile (key: string) {
2022-06-28 12:57:51 +00:00
const video = await VideoModel.loadFull(key)
if (!video) return undefined
2017-07-12 09:56:02 +00:00
2018-07-12 17:02:00 +00:00
if (video.isOwned()) throw new Error('Cannot load remote preview of owned video.')
2017-07-12 09:56:02 +00:00
const preview = video.getPreview()
const destPath = join(FILES_CACHE.PREVIEWS.DIRECTORY, preview.filename)
const remoteUrl = preview.getFileUrl(video)
2019-04-23 07:50:57 +00:00
2022-06-30 07:25:17 +00:00
try {
await doRequestAndSaveToFile(remoteUrl, destPath)
logger.debug('Fetched remote preview %s to %s.', remoteUrl, destPath)
return { isOwned: false, path: destPath }
} catch (err) {
logger.info('Cannot fetch remote preview file %s.', remoteUrl, { err })
2022-06-30 07:25:17 +00:00
return undefined
}
2017-07-12 09:56:02 +00:00
}
}
export {
VideosPreviewCache
}