aboutsummaryrefslogblamecommitdiffhomepage
path: root/server/lib/files-cache/videos-caption-cache.ts
blob: 58e2260b63bff999749ffe75b4fe6bc80a1a01e5 (plain) (tree)
1
2
3
4
5
6
7
8
9
                           

                                                                 
                                                          



                                                                                 
                                                                        
 









                                                        

                                                                                  

                                       
                                                                                                                        
 
                                        

   
                                
                                                
                                                                             




                                                                                             
                                                                                               

                                
                                                    
                                                                                      
 
                                                     
 
                                             





                    
import { join } from 'path'
import { doRequestAndSaveToFile } from '@server/helpers/requests'
import { CONFIG } from '../../initializers/config'
import { FILES_CACHE } from '../../initializers/constants'
import { VideoModel } from '../../models/video/video'
import { VideoCaptionModel } from '../../models/video/video-caption'
import { AbstractVideoStaticFileCache } from './abstract-video-static-file-cache'

class VideosCaptionCache extends AbstractVideoStaticFileCache <string> {

  private static instance: VideosCaptionCache

  private constructor () {
    super()
  }

  static get Instance () {
    return this.instance || (this.instance = new this())
  }

  async getFilePathImpl (filename: string) {
    const videoCaption = await VideoCaptionModel.loadWithVideoByFilename(filename)
    if (!videoCaption) return undefined

    if (videoCaption.isOwned()) return { isOwned: true, path: join(CONFIG.STORAGE.CAPTIONS_DIR, videoCaption.filename) }

    return this.loadRemoteFile(filename)
  }

  // Key is the caption filename
  protected async loadRemoteFile (key: string) {
    const videoCaption = await VideoCaptionModel.loadWithVideoByFilename(key)
    if (!videoCaption) return undefined

    if (videoCaption.isOwned()) throw new Error('Cannot load remote caption of owned video.')

    // Used to fetch the path
    const video = await VideoModel.loadAndPopulateAccountAndServerAndTags(videoCaption.videoId)
    if (!video) return undefined

    const remoteUrl = videoCaption.getFileUrl(video)
    const destPath = join(FILES_CACHE.VIDEO_CAPTIONS.DIRECTORY, videoCaption.filename)

    await doRequestAndSaveToFile(remoteUrl, destPath)

    return { isOwned: false, path: destPath }
  }
}

export {
  VideosCaptionCache
}