aboutsummaryrefslogblamecommitdiffhomepage
path: root/server/lib/job-queue/handlers/video-file.ts
blob: 93f9e9fe7784260afd459d5d567cf0de74b928cb (plain) (tree)
1
2
3
4
5
6
7
8
9
10

                                                    
                                                               

                                                                      

                                                           
                                                                

                                                                         
 

                                

                              
                          






                                                                                                

                             
                                                                                                  


                    

                                    
                                                                                      


                                             
                                                                
   
 
              

 












                                                                                                 

 
                                                                                     

                                           
                                                    
                                                                                                 


                                      
                                               








                                                             
   
 
                                                                                 
 
                                                             
                                                                               
              
                                                                                                               



                                        




                                                  

                   



                                                                                       
     



                                                                                                    



                                                                                     




                                                                              
                  
 
import * as kue from 'kue'
import { VideoResolution } from '../../../../shared'
import { VideoPrivacy } from '../../../../shared/models/videos'
import { logger } from '../../../helpers/logger'
import { computeResolutionsToTranscode } from '../../../helpers/utils'
import { sequelizeTypescript } from '../../../initializers'
import { VideoModel } from '../../../models/video/video'
import { shareVideoByServerAndChannel } from '../../activitypub'
import { sendCreateVideo, sendUpdateVideo } from '../../activitypub/send'
import { JobQueue } from '../job-queue'

export type VideoFilePayload = {
  videoUUID: string
  isNewVideo: boolean
  resolution?: VideoResolution
  isPortraitMode?: boolean
}

async function processVideoFile (job: kue.Job) {
  const payload = job.data as VideoFilePayload
  logger.info('Processing video file in job %d.', job.id)

  const video = await VideoModel.loadByUUIDAndPopulateAccountAndServerAndTags(payload.videoUUID)
  // No video, maybe deleted?
  if (!video) {
    logger.info('Do not process job %d, video does not exist.', job.id, { videoUUID: video.uuid })
    return undefined
  }

  // Transcoding in other resolution
  if (payload.resolution) {
    await video.transcodeOriginalVideofile(payload.resolution, payload.isPortraitMode)
    await onVideoFileTranscoderSuccess(video)
  } else {
    await video.optimizeOriginalVideofile()
    await onVideoFileOptimizerSuccess(video, payload.isNewVideo)
  }

  return video
}

async function onVideoFileTranscoderSuccess (video: VideoModel) {
  if (video === undefined) return undefined

  // Maybe the video changed in database, refresh it
  const videoDatabase = await VideoModel.loadByUUIDAndPopulateAccountAndServerAndTags(video.uuid)
  // Video does not exist anymore
  if (!videoDatabase) return undefined

  if (video.privacy !== VideoPrivacy.PRIVATE) {
    await sendUpdateVideo(video, undefined)
  }

  return undefined
}

async function onVideoFileOptimizerSuccess (video: VideoModel, isNewVideo: boolean) {
  if (video === undefined) return undefined

  // Maybe the video changed in database, refresh it
  const videoDatabase = await VideoModel.loadByUUIDAndPopulateAccountAndServerAndTags(video.uuid)
  // Video does not exist anymore
  if (!videoDatabase) return undefined

  if (video.privacy !== VideoPrivacy.PRIVATE) {
    if (isNewVideo === true) {
      // Now we'll add the video's meta data to our followers
      await sequelizeTypescript.transaction(async t => {
        await sendCreateVideo(video, t)
        await shareVideoByServerAndChannel(video, t)
      })
    } else {
      await sendUpdateVideo(video, undefined)
    }
  }

  const { videoFileResolution } = await videoDatabase.getOriginalFileResolution()

  // Create transcoding jobs if there are enabled resolutions
  const resolutionsEnabled = computeResolutionsToTranscode(videoFileResolution)
  logger.info(
    'Resolutions computed for video %s and origin file height of %d.', videoDatabase.uuid, videoFileResolution,
    { resolutions: resolutionsEnabled }
  )

  if (resolutionsEnabled.length !== 0) {
    const tasks: Promise<any>[] = []

    for (const resolution of resolutionsEnabled) {
      const dataInput = {
        videoUUID: videoDatabase.uuid,
        resolution,
        isNewVideo
      }

      const p = JobQueue.Instance.createJob({ type: 'video-file', payload: dataInput })
      tasks.push(p)
    }

    await Promise.all(tasks)

    logger.info('Transcoding jobs created for uuid %s.', videoDatabase.uuid, { resolutionsEnabled })
  } else {
    logger.info('No transcoding jobs created for video %s (no resolutions enabled).')
    return undefined
  }
}

// ---------------------------------------------------------------------------

export {
  processVideoFile
}