]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/lib/files-cache/videos-caption-cache.ts
Try to fix subscriptions inconsistencies
[github/Chocobozzz/PeerTube.git] / server / lib / files-cache / videos-caption-cache.ts
CommitLineData
40e87e9e 1import { join } from 'path'
74dc3bca 2import { FILES_CACHE } from '../../initializers/constants'
40e87e9e
C
3import { VideoModel } from '../../models/video/video'
4import { VideoCaptionModel } from '../../models/video/video-caption'
5import { AbstractVideoStaticFileCache } from './abstract-video-static-file-cache'
6dd9de95 6import { CONFIG } from '../../initializers/config'
3acc5084 7import { logger } from '../../helpers/logger'
dc852737 8import { fetchRemoteVideoStaticFile } from '../activitypub'
40e87e9e
C
9
10type GetPathParam = { videoId: string, language: string }
11
12class VideosCaptionCache extends AbstractVideoStaticFileCache <GetPathParam> {
13
14 private static readonly KEY_DELIMITER = '%'
15 private static instance: VideosCaptionCache
16
17 private constructor () {
18 super()
19 }
20
21 static get Instance () {
22 return this.instance || (this.instance = new this())
23 }
24
e8bafea3 25 async getFilePathImpl (params: GetPathParam) {
40e87e9e
C
26 const videoCaption = await VideoCaptionModel.loadByVideoIdAndLanguage(params.videoId, params.language)
27 if (!videoCaption) return undefined
28
3acc5084 29 if (videoCaption.isOwned()) return { isOwned: true, path: join(CONFIG.STORAGE.CAPTIONS_DIR, videoCaption.getCaptionName()) }
40e87e9e
C
30
31 const key = params.videoId + VideosCaptionCache.KEY_DELIMITER + params.language
e8bafea3 32 return this.loadRemoteFile(key)
40e87e9e
C
33 }
34
35 protected async loadRemoteFile (key: string) {
3acc5084
C
36 logger.debug('Loading remote caption file %s.', key)
37
40e87e9e
C
38 const [ videoId, language ] = key.split(VideosCaptionCache.KEY_DELIMITER)
39
40 const videoCaption = await VideoCaptionModel.loadByVideoIdAndLanguage(videoId, language)
41 if (!videoCaption) return undefined
42
43 if (videoCaption.isOwned()) throw new Error('Cannot load remote caption of owned video.')
44
45 // Used to fetch the path
627621c1 46 const video = await VideoModel.loadAndPopulateAccountAndServerAndTags(videoId)
40e87e9e
C
47 if (!video) return undefined
48
e8bafea3 49 // FIXME: use URL
40e87e9e 50 const remoteStaticPath = videoCaption.getCaptionStaticPath()
d74d29ad 51 const destPath = join(FILES_CACHE.VIDEO_CAPTIONS.DIRECTORY, videoCaption.getCaptionName())
40e87e9e 52
dc852737 53 await fetchRemoteVideoStaticFile(video, remoteStaticPath, destPath)
3acc5084 54
dc852737 55 return { isOwned: false, path: destPath }
40e87e9e
C
56 }
57}
58
59export {
60 VideosCaptionCache
61}