PeerTube/server/lib/job-queue/handlers/video-file.ts

114 lines
3.7 KiB
TypeScript
Raw Normal View History

import * as kue from 'kue'
import { VideoResolution } from '../../../../shared'
2017-12-19 10:34:56 +01:00
import { VideoPrivacy } from '../../../../shared/models/videos'
2017-12-28 11:16:08 +01:00
import { logger } from '../../../helpers/logger'
import { computeResolutionsToTranscode } from '../../../helpers/utils'
2017-12-12 17:53:50 +01:00
import { sequelizeTypescript } from '../../../initializers'
import { VideoModel } from '../../../models/video/video'
2017-12-15 17:34:38 +01:00
import { shareVideoByServerAndChannel } from '../../activitypub'
import { sendCreateVideo, sendUpdateVideo } from '../../activitypub/send'
import { JobQueue } from '../job-queue'
export type VideoFilePayload = {
videoUUID: string
isNewVideo: boolean
resolution?: VideoResolution
2018-02-27 15:57:28 +01:00
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) {
2018-02-27 15:57:28 +01:00
await video.transcodeOriginalVideofile(payload.resolution, payload.isPortraitMode)
await onVideoFileTranscoderSuccess(video)
} else {
await video.optimizeOriginalVideofile()
await onVideoFileOptimizerSuccess(video, payload.isNewVideo)
}
2017-10-17 15:37:40 +02:00
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) {
2017-10-17 15:37:40 +02:00
if (video === undefined) return undefined
2017-10-26 14:22:37 +02:00
// Maybe the video changed in database, refresh it
2017-12-12 17:53:50 +01:00
const videoDatabase = await VideoModel.loadByUUIDAndPopulateAccountAndServerAndTags(video.uuid)
2017-10-26 14:22:37 +02:00
// Video does not exist anymore
if (!videoDatabase) return undefined
2017-12-19 10:34:56 +01:00
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)
}
2017-12-19 10:34:56 +01:00
}
2018-02-27 15:57:28 +01:00
const { videoFileResolution } = await videoDatabase.getOriginalFileResolution()
2017-11-15 16:28:35 +01:00
// Create transcoding jobs if there are enabled resolutions
2018-02-27 15:57:28 +01:00
const resolutionsEnabled = computeResolutionsToTranscode(videoFileResolution)
logger.info(
2018-02-27 15:57:28 +01:00
'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
}