2018-07-10 10:02:20 -05:00
|
|
|
import * as Bull from 'bull'
|
2018-12-28 06:47:17 -06:00
|
|
|
import { VideoResolution, VideoState } from '../../../../shared'
|
2017-12-28 04:16:08 -06:00
|
|
|
import { logger } from '../../../helpers/logger'
|
2017-12-12 10:53:50 -06:00
|
|
|
import { VideoModel } from '../../../models/video/video'
|
2018-01-25 08:05:18 -06:00
|
|
|
import { JobQueue } from '../job-queue'
|
2018-06-12 13:04:58 -05:00
|
|
|
import { federateVideoIfNeeded } from '../../activitypub'
|
|
|
|
import { retryTransactionWrapper } from '../../../helpers/database-utils'
|
|
|
|
import { sequelizeTypescript } from '../../../initializers'
|
2018-07-10 10:02:20 -05:00
|
|
|
import * as Bluebird from 'bluebird'
|
2018-08-14 08:28:30 -05:00
|
|
|
import { computeResolutionsToTranscode } from '../../../helpers/ffmpeg-utils'
|
2018-12-28 06:47:17 -06:00
|
|
|
import { importVideoFile, optimizeVideofile, transcodeOriginalVideofile } from '../../video-transcoding'
|
2018-12-26 03:36:24 -06:00
|
|
|
import { Notifier } from '../../notifier'
|
2017-10-02 05:20:26 -05:00
|
|
|
|
2018-01-25 08:05:18 -06:00
|
|
|
export type VideoFilePayload = {
|
|
|
|
videoUUID: string
|
2018-06-12 13:04:58 -05:00
|
|
|
isNewVideo?: boolean
|
2018-05-30 03:49:40 -05:00
|
|
|
resolution?: VideoResolution
|
2018-02-27 08:57:28 -06:00
|
|
|
isPortraitMode?: boolean
|
2018-01-25 08:05:18 -06:00
|
|
|
}
|
|
|
|
|
2018-06-07 02:43:18 -05:00
|
|
|
export type VideoFileImportPayload = {
|
2018-06-02 14:39:41 -05:00
|
|
|
videoUUID: string,
|
|
|
|
filePath: string
|
|
|
|
}
|
|
|
|
|
2018-07-10 10:02:20 -05:00
|
|
|
async function processVideoFileImport (job: Bull.Job) {
|
2018-06-07 02:43:18 -05:00
|
|
|
const payload = job.data as VideoFileImportPayload
|
|
|
|
logger.info('Processing video file import in job %d.', job.id)
|
2018-06-02 14:39:41 -05:00
|
|
|
|
2018-09-18 05:00:49 -05:00
|
|
|
const video = await VideoModel.loadAndPopulateAccountAndServerAndTags(payload.videoUUID)
|
2018-06-02 14:39:41 -05:00
|
|
|
// No video, maybe deleted?
|
|
|
|
if (!video) {
|
2018-07-25 15:01:25 -05:00
|
|
|
logger.info('Do not process job %d, video does not exist.', job.id)
|
2018-06-02 14:39:41 -05:00
|
|
|
return undefined
|
|
|
|
}
|
|
|
|
|
2018-09-18 04:02:51 -05:00
|
|
|
await importVideoFile(video, payload.filePath)
|
2018-06-02 14:39:41 -05:00
|
|
|
|
|
|
|
await onVideoFileTranscoderOrImportSuccess(video)
|
|
|
|
return video
|
|
|
|
}
|
|
|
|
|
2018-07-10 10:02:20 -05:00
|
|
|
async function processVideoFile (job: Bull.Job) {
|
2018-01-25 08:05:18 -06:00
|
|
|
const payload = job.data as VideoFilePayload
|
|
|
|
logger.info('Processing video file in job %d.', job.id)
|
|
|
|
|
2018-09-18 05:00:49 -05:00
|
|
|
const video = await VideoModel.loadAndPopulateAccountAndServerAndTags(payload.videoUUID)
|
2017-10-25 09:03:33 -05:00
|
|
|
// No video, maybe deleted?
|
|
|
|
if (!video) {
|
2018-07-25 15:01:25 -05:00
|
|
|
logger.info('Do not process job %d, video does not exist.', job.id)
|
2017-10-25 09:03:33 -05:00
|
|
|
return undefined
|
|
|
|
}
|
|
|
|
|
2018-01-25 08:05:18 -06:00
|
|
|
// Transcoding in other resolution
|
|
|
|
if (payload.resolution) {
|
2018-09-18 04:02:51 -05:00
|
|
|
await transcodeOriginalVideofile(video, payload.resolution, payload.isPortraitMode || false)
|
2018-06-12 13:04:58 -05:00
|
|
|
|
2018-06-13 07:27:40 -05:00
|
|
|
await retryTransactionWrapper(onVideoFileTranscoderOrImportSuccess, video)
|
2018-01-25 08:05:18 -06:00
|
|
|
} else {
|
2018-10-08 09:26:04 -05:00
|
|
|
await optimizeVideofile(video)
|
2018-06-12 13:04:58 -05:00
|
|
|
|
2018-06-13 07:27:40 -05:00
|
|
|
await retryTransactionWrapper(onVideoFileOptimizerSuccess, video, payload.isNewVideo)
|
2018-01-25 08:05:18 -06:00
|
|
|
}
|
2017-10-17 08:37:40 -05:00
|
|
|
|
2017-10-25 09:03:33 -05:00
|
|
|
return video
|
2017-10-02 05:20:26 -05:00
|
|
|
}
|
|
|
|
|
2018-06-02 14:39:41 -05:00
|
|
|
async function onVideoFileTranscoderOrImportSuccess (video: VideoModel) {
|
2018-01-25 08:05:18 -06:00
|
|
|
if (video === undefined) return undefined
|
|
|
|
|
2019-01-02 09:37:43 -06:00
|
|
|
const { videoDatabase, videoPublished } = await sequelizeTypescript.transaction(async t => {
|
2018-06-12 13:04:58 -05:00
|
|
|
// Maybe the video changed in database, refresh it
|
2018-09-18 05:00:49 -05:00
|
|
|
let videoDatabase = await VideoModel.loadAndPopulateAccountAndServerAndTags(video.uuid, t)
|
2018-06-12 13:04:58 -05:00
|
|
|
// Video does not exist anymore
|
|
|
|
if (!videoDatabase) return undefined
|
2018-01-25 08:05:18 -06:00
|
|
|
|
2019-01-02 09:37:43 -06:00
|
|
|
let videoPublished = false
|
2018-06-28 09:58:15 -05:00
|
|
|
|
2018-06-12 13:04:58 -05:00
|
|
|
// We transcoded the video file in another format, now we can publish it
|
2018-06-28 09:58:15 -05:00
|
|
|
if (videoDatabase.state !== VideoState.PUBLISHED) {
|
2019-01-02 09:37:43 -06:00
|
|
|
videoPublished = true
|
2018-06-28 09:58:15 -05:00
|
|
|
|
|
|
|
videoDatabase.state = VideoState.PUBLISHED
|
|
|
|
videoDatabase.publishedAt = new Date()
|
|
|
|
videoDatabase = await videoDatabase.save({ transaction: t })
|
|
|
|
}
|
2018-06-12 13:04:58 -05:00
|
|
|
|
|
|
|
// If the video was not published, we consider it is a new one for other instances
|
2019-01-02 09:37:43 -06:00
|
|
|
await federateVideoIfNeeded(videoDatabase, videoPublished, t)
|
2018-01-25 08:05:18 -06:00
|
|
|
|
2019-01-02 09:37:43 -06:00
|
|
|
return { videoDatabase, videoPublished }
|
2018-06-12 13:04:58 -05:00
|
|
|
})
|
2018-12-28 06:47:17 -06:00
|
|
|
|
2019-01-02 09:37:43 -06:00
|
|
|
if (videoPublished) {
|
|
|
|
Notifier.Instance.notifyOnNewVideo(videoDatabase)
|
|
|
|
Notifier.Instance.notifyOnPendingVideoPublished(videoDatabase)
|
|
|
|
}
|
2017-10-02 05:20:26 -05:00
|
|
|
}
|
|
|
|
|
2018-12-19 04:24:34 -06:00
|
|
|
async function onVideoFileOptimizerSuccess (videoArg: VideoModel, isNewVideo: boolean) {
|
|
|
|
if (videoArg === undefined) return undefined
|
2017-10-17 08:37:40 -05:00
|
|
|
|
2018-06-12 13:04:58 -05:00
|
|
|
// Outside the transaction (IO on disk)
|
2018-12-19 04:24:34 -06:00
|
|
|
const { videoFileResolution } = await videoArg.getOriginalFileResolution()
|
2018-06-12 13:04:58 -05:00
|
|
|
|
2019-01-02 09:37:43 -06:00
|
|
|
const { videoDatabase, videoPublished } = await sequelizeTypescript.transaction(async t => {
|
2018-06-12 13:04:58 -05:00
|
|
|
// Maybe the video changed in database, refresh it
|
2018-12-19 04:24:34 -06:00
|
|
|
let videoDatabase = await VideoModel.loadAndPopulateAccountAndServerAndTags(videoArg.uuid, t)
|
2018-06-12 13:04:58 -05:00
|
|
|
// Video does not exist anymore
|
|
|
|
if (!videoDatabase) return undefined
|
|
|
|
|
|
|
|
// 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 }
|
|
|
|
)
|
|
|
|
|
2019-01-02 09:37:43 -06:00
|
|
|
let videoPublished = false
|
|
|
|
|
2018-06-12 13:04:58 -05:00
|
|
|
if (resolutionsEnabled.length !== 0) {
|
2018-12-04 02:34:29 -06:00
|
|
|
const tasks: Bluebird<Bull.Job<any>>[] = []
|
2018-06-12 13:04:58 -05:00
|
|
|
|
|
|
|
for (const resolution of resolutionsEnabled) {
|
|
|
|
const dataInput = {
|
|
|
|
videoUUID: videoDatabase.uuid,
|
|
|
|
resolution
|
|
|
|
}
|
|
|
|
|
|
|
|
const p = JobQueue.Instance.createJob({ type: 'video-file', payload: dataInput })
|
|
|
|
tasks.push(p)
|
|
|
|
}
|
2017-10-25 09:03:33 -05:00
|
|
|
|
2018-06-12 13:04:58 -05:00
|
|
|
await Promise.all(tasks)
|
2018-03-19 09:02:36 -05:00
|
|
|
|
2018-06-12 13:04:58 -05:00
|
|
|
logger.info('Transcoding jobs created for uuid %s.', videoDatabase.uuid, { resolutionsEnabled })
|
|
|
|
} else {
|
2019-01-02 09:37:43 -06:00
|
|
|
videoPublished = true
|
|
|
|
|
2018-06-12 13:04:58 -05:00
|
|
|
// No transcoding to do, it's now published
|
2018-12-19 04:24:34 -06:00
|
|
|
videoDatabase.state = VideoState.PUBLISHED
|
|
|
|
videoDatabase = await videoDatabase.save({ transaction: t })
|
2018-03-19 09:02:36 -05:00
|
|
|
|
2018-12-19 04:24:34 -06:00
|
|
|
logger.info('No transcoding jobs created for video %s (no resolutions).', videoDatabase.uuid, { privacy: videoDatabase.privacy })
|
2017-10-25 09:03:33 -05:00
|
|
|
}
|
2018-03-19 09:02:36 -05:00
|
|
|
|
2018-12-26 03:36:24 -06:00
|
|
|
await federateVideoIfNeeded(videoDatabase, isNewVideo, t)
|
2018-12-28 06:47:17 -06:00
|
|
|
|
2019-01-02 09:37:43 -06:00
|
|
|
return { videoDatabase, videoPublished }
|
2018-06-12 13:04:58 -05:00
|
|
|
})
|
2018-12-28 06:47:17 -06:00
|
|
|
|
|
|
|
if (isNewVideo) Notifier.Instance.notifyOnNewVideo(videoDatabase)
|
2019-01-02 09:37:43 -06:00
|
|
|
if (videoPublished) Notifier.Instance.notifyOnPendingVideoPublished(videoDatabase)
|
2017-10-02 05:20:26 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
2018-06-02 14:39:41 -05:00
|
|
|
processVideoFile,
|
2018-06-07 02:43:18 -05:00
|
|
|
processVideoFileImport
|
2017-10-02 05:20:26 -05:00
|
|
|
}
|