aboutsummaryrefslogblamecommitdiffhomepage
path: root/server/lib/cache/videos-preview-cache.ts
blob: 0570f51e8ec624f821f2a7db000a859e9e14c222 (plain) (tree)
1
2
3
4
5
6
7


                                      

                                                                  
                                                                              
                                            



































                                                                                                        
                                            
                                                                                  
                                
 
                                                                                         
 


                                                                


                                                                 
                                              














                                                                           
import * as asyncLRU from 'async-lru'
import { join } from 'path'
import { createWriteStream } from 'fs'

import { database as db, CONFIG, CACHE } from '../../initializers'
import { logger, unlinkPromise, fetchRemoteVideoPreview } from '../../helpers'
import { VideoInstance } from '../../models'

class VideosPreviewCache {

  private static instance: VideosPreviewCache

  private lru

  private constructor () { }

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

  init (max: number) {
    this.lru = new asyncLRU({
      max,
      load: (key, cb) => {
        this.loadPreviews(key)
          .then(res => cb(null, res))
          .catch(err => cb(err))
      }
    })

    this.lru.on('evict', (obj: { key: string, value: string }) => {
      unlinkPromise(obj.value).then(() => logger.debug('%s evicted from VideosPreviewCache', obj.value))
    })
  }

  getPreviewPath (key: string) {
    return new Promise<string>((res, rej) => {
      this.lru.get(key, (err, value) => {
        err ? rej(err) : res(value)
      })
    })
  }

  private async loadPreviews (key: string) {
    const video = await db.Video.loadByUUIDAndPopulateAccountAndServerAndTags(key)
    if (!video) return undefined

    if (video.isOwned()) return join(CONFIG.STORAGE.PREVIEWS_DIR, video.getPreviewName())

    const res = await this.saveRemotePreviewAndReturnPath(video)

    return res
  }

  private saveRemotePreviewAndReturnPath (video: VideoInstance) {
    const req = fetchRemoteVideoPreview(video)

    return new Promise<string>((res, rej) => {
      const path = join(CACHE.DIRECTORIES.PREVIEWS, video.getPreviewName())
      const stream = createWriteStream(path)

      req.pipe(stream)
         .on('finish', () => res(path))
         .on('error', (err) => rej(err))
    })
  }
}

export {
  VideosPreviewCache
}