PeerTube/server/lib/jobs/transcoding-job-scheduler/video-file-optimizer-handle...

87 lines
2.8 KiB
TypeScript
Raw Normal View History

import * as Bluebird from 'bluebird'
2017-11-10 16:27:49 +00:00
import { computeResolutionsToTranscode, logger } from '../../../helpers'
2017-12-12 16:53:50 +00:00
import { sequelizeTypescript } from '../../../initializers'
import { VideoModel } from '../../../models/video/video'
import { shareVideoByServer } from '../../activitypub'
2017-12-14 16:38:41 +00:00
import { sendCreateVideo } from '../../activitypub/send'
import { JobScheduler } from '../job-scheduler'
2017-11-10 16:27:49 +00:00
import { TranscodingJobPayload } from './transcoding-job-scheduler'
2017-11-10 16:27:49 +00:00
async function process (data: TranscodingJobPayload, jobId: number) {
2017-12-12 16:53:50 +00:00
const video = await VideoModel.loadByUUIDAndPopulateAccountAndServerAndTags(data.videoUUID)
// No video, maybe deleted?
if (!video) {
logger.info('Do not process job %d, video does not exist.', jobId, { videoUUID: video.uuid })
return undefined
}
await video.optimizeOriginalVideofile()
2017-10-17 13:37:40 +00:00
return video
}
function onError (err: Error, jobId: number) {
logger.error('Error when optimized video file in job %d.', jobId, err)
return Promise.resolve()
}
2017-12-12 16:53:50 +00:00
async function onSuccess (jobId: number, video: VideoModel, jobScheduler: JobScheduler<TranscodingJobPayload, VideoModel>) {
2017-10-17 13:37:40 +00:00
if (video === undefined) return undefined
logger.info('Job %d is a success.', jobId)
2017-10-26 12:22:37 +00:00
// Maybe the video changed in database, refresh it
2017-12-12 16:53:50 +00:00
const videoDatabase = await VideoModel.loadByUUIDAndPopulateAccountAndServerAndTags(video.uuid)
2017-10-26 12:22:37 +00:00
// Video does not exist anymore
if (!videoDatabase) return undefined
2017-11-10 16:27:49 +00:00
// Now we'll add the video's meta data to our followers
2017-12-14 16:38:41 +00:00
await sendCreateVideo(video, undefined)
// TODO: share by channel
await shareVideoByServer(video, undefined)
2017-10-26 12:22:37 +00:00
const originalFileHeight = await videoDatabase.getOriginalFileHeight()
2017-11-15 15:28:35 +00:00
// Create transcoding jobs if there are enabled resolutions
const resolutionsEnabled = computeResolutionsToTranscode(originalFileHeight)
logger.info(
2017-10-26 12:22:37 +00:00
'Resolutions computed for video %s and origin file height of %d.', videoDatabase.uuid, originalFileHeight,
{ resolutions: resolutionsEnabled }
)
if (resolutionsEnabled.length !== 0) {
try {
2017-12-12 16:53:50 +00:00
await sequelizeTypescript.transaction(async t => {
const tasks: Bluebird<any>[] = []
for (const resolution of resolutionsEnabled) {
const dataInput = {
2017-10-26 12:22:37 +00:00
videoUUID: videoDatabase.uuid,
resolution
}
2017-11-10 16:27:49 +00:00
const p = jobScheduler.createJob(t, 'videoFileTranscoder', dataInput)
tasks.push(p)
}
await Promise.all(tasks)
})
2017-10-26 12:22:37 +00:00
logger.info('Transcoding jobs created for uuid %s.', videoDatabase.uuid, { resolutionsEnabled })
} catch (err) {
logger.warn('Cannot transcode the video.', err)
}
} else {
logger.info('No transcoding jobs created for video %s (no resolutions enabled).')
return undefined
}
}
// ---------------------------------------------------------------------------
export {
process,
onError,
onSuccess
}