2018-08-02 09:34:09 -04:00
|
|
|
import * as Bull from 'bull'
|
2020-05-14 05:10:26 -04:00
|
|
|
import { move, remove, stat } from 'fs-extra'
|
|
|
|
import { extname } from 'path'
|
2021-02-09 05:22:42 -05:00
|
|
|
import { retryTransactionWrapper } from '@server/helpers/database-utils'
|
2021-05-27 09:59:55 -04:00
|
|
|
import { YoutubeDL } from '@server/helpers/youtube-dl'
|
2020-05-14 05:10:26 -04:00
|
|
|
import { isPostImportVideoAccepted } from '@server/lib/moderation'
|
|
|
|
import { Hooks } from '@server/lib/plugins/hooks'
|
2021-05-27 09:59:55 -04:00
|
|
|
import { ServerConfigManager } from '@server/lib/server-config-manager'
|
2020-09-25 10:19:35 -04:00
|
|
|
import { isAbleToUploadVideo } from '@server/lib/user'
|
2021-01-21 10:57:21 -05:00
|
|
|
import { addOptimizeOrMergeAudioJob } from '@server/lib/video'
|
2021-02-16 10:25:53 -05:00
|
|
|
import { generateVideoFilename, getVideoFilePath } from '@server/lib/video-paths'
|
2021-02-09 05:22:42 -05:00
|
|
|
import { ThumbnailModel } from '@server/models/video/thumbnail'
|
2020-06-18 04:45:25 -04:00
|
|
|
import { MVideoImportDefault, MVideoImportDefaultFiles, MVideoImportVideo } from '@server/types/models/video/video-import'
|
2020-05-14 05:10:26 -04:00
|
|
|
import {
|
|
|
|
VideoImportPayload,
|
|
|
|
VideoImportTorrentPayload,
|
|
|
|
VideoImportTorrentPayloadType,
|
|
|
|
VideoImportYoutubeDLPayload,
|
|
|
|
VideoImportYoutubeDLPayloadType,
|
|
|
|
VideoState
|
|
|
|
} from '../../../../shared'
|
2018-08-02 09:34:09 -04:00
|
|
|
import { VideoImportState } from '../../../../shared/models/videos'
|
2020-05-14 05:10:26 -04:00
|
|
|
import { ThumbnailType } from '../../../../shared/models/videos/thumbnail.type'
|
2020-11-20 11:16:55 -05:00
|
|
|
import { getDurationFromVideoFile, getVideoFileFPS, getVideoFileResolution } from '../../../helpers/ffprobe-utils'
|
2020-05-14 05:10:26 -04:00
|
|
|
import { logger } from '../../../helpers/logger'
|
2018-08-07 03:54:36 -04:00
|
|
|
import { getSecureTorrentName } from '../../../helpers/utils'
|
2020-05-14 05:10:26 -04:00
|
|
|
import { createTorrentAndSetInfoHash, downloadWebTorrentVideo } from '../../../helpers/webtorrent'
|
2019-04-11 05:33:44 -04:00
|
|
|
import { CONFIG } from '../../../initializers/config'
|
2020-05-14 05:10:26 -04:00
|
|
|
import { VIDEO_IMPORT_TIMEOUT } from '../../../initializers/constants'
|
2019-04-11 08:26:41 -04:00
|
|
|
import { sequelizeTypescript } from '../../../initializers/database'
|
2020-05-14 05:10:26 -04:00
|
|
|
import { VideoModel } from '../../../models/video/video'
|
|
|
|
import { VideoFileModel } from '../../../models/video/video-file'
|
|
|
|
import { VideoImportModel } from '../../../models/video/video-import'
|
2020-06-18 04:45:25 -04:00
|
|
|
import { MThumbnail } from '../../../types/models/video/thumbnail'
|
2020-05-14 05:10:26 -04:00
|
|
|
import { federateVideoIfNeeded } from '../../activitypub/videos'
|
|
|
|
import { Notifier } from '../../notifier'
|
|
|
|
import { generateVideoMiniature } from '../../thumbnail'
|
2018-08-06 11:13:39 -04:00
|
|
|
|
2018-08-02 09:34:09 -04:00
|
|
|
async function processVideoImport (job: Bull.Job) {
|
|
|
|
const payload = job.data as VideoImportPayload
|
|
|
|
|
2018-08-06 11:13:39 -04:00
|
|
|
if (payload.type === 'youtube-dl') return processYoutubeDLImport(job, payload)
|
2018-08-07 03:54:36 -04:00
|
|
|
if (payload.type === 'magnet-uri' || payload.type === 'torrent-file') return processTorrentImport(job, payload)
|
2018-08-06 11:13:39 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
|
|
|
processVideoImport
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
async function processTorrentImport (job: Bull.Job, payload: VideoImportTorrentPayload) {
|
|
|
|
logger.info('Processing torrent video import in job %d.', job.id)
|
|
|
|
|
|
|
|
const videoImport = await getVideoImportOrDie(payload.videoImportId)
|
2018-08-07 03:54:36 -04:00
|
|
|
|
2018-08-06 11:13:39 -04:00
|
|
|
const options = {
|
2020-05-14 05:10:26 -04:00
|
|
|
type: payload.type,
|
2021-02-12 03:37:01 -05:00
|
|
|
videoImportId: payload.videoImportId
|
2018-08-06 11:13:39 -04:00
|
|
|
}
|
2018-08-07 03:54:36 -04:00
|
|
|
const target = {
|
|
|
|
torrentName: videoImport.torrentName ? getSecureTorrentName(videoImport.torrentName) : undefined,
|
|
|
|
magnetUri: videoImport.magnetUri
|
|
|
|
}
|
2018-10-01 06:00:05 -04:00
|
|
|
return processFile(() => downloadWebTorrentVideo(target, VIDEO_IMPORT_TIMEOUT), videoImport, options)
|
2018-08-06 11:13:39 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
async function processYoutubeDLImport (job: Bull.Job, payload: VideoImportYoutubeDLPayload) {
|
|
|
|
logger.info('Processing youtubeDL video import in job %d.', job.id)
|
|
|
|
|
|
|
|
const videoImport = await getVideoImportOrDie(payload.videoImportId)
|
|
|
|
const options = {
|
2020-05-14 05:10:26 -04:00
|
|
|
type: payload.type,
|
2021-02-12 03:37:01 -05:00
|
|
|
videoImportId: videoImport.id
|
2018-08-06 11:13:39 -04:00
|
|
|
}
|
|
|
|
|
2021-05-27 09:59:55 -04:00
|
|
|
const youtubeDL = new YoutubeDL(videoImport.targetUrl, ServerConfigManager.Instance.getEnabledResolutions('vod'))
|
2021-05-11 04:54:05 -04:00
|
|
|
|
2021-01-15 09:56:56 -05:00
|
|
|
return processFile(
|
2021-05-11 04:54:05 -04:00
|
|
|
() => youtubeDL.downloadYoutubeDLVideo(payload.fileExt, VIDEO_IMPORT_TIMEOUT),
|
2021-01-15 09:56:56 -05:00
|
|
|
videoImport,
|
|
|
|
options
|
|
|
|
)
|
2018-08-06 11:13:39 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
async function getVideoImportOrDie (videoImportId: number) {
|
|
|
|
const videoImport = await VideoImportModel.loadAndPopulateVideo(videoImportId)
|
2018-08-03 03:43:00 -04:00
|
|
|
if (!videoImport || !videoImport.Video) {
|
|
|
|
throw new Error('Cannot import video %s: the video import or video linked to this import does not exist anymore.')
|
|
|
|
}
|
2018-08-02 09:34:09 -04:00
|
|
|
|
2018-08-06 11:13:39 -04:00
|
|
|
return videoImport
|
|
|
|
}
|
|
|
|
|
|
|
|
type ProcessFileOptions = {
|
2020-05-14 05:10:26 -04:00
|
|
|
type: VideoImportYoutubeDLPayloadType | VideoImportTorrentPayloadType
|
2018-08-06 11:13:39 -04:00
|
|
|
videoImportId: number
|
|
|
|
}
|
2019-08-20 07:52:49 -04:00
|
|
|
async function processFile (downloader: () => Promise<string>, videoImport: MVideoImportDefault, options: ProcessFileOptions) {
|
2018-08-02 09:34:09 -04:00
|
|
|
let tempVideoPath: string
|
2018-08-03 03:43:00 -04:00
|
|
|
let videoDestFile: string
|
|
|
|
let videoFile: VideoFileModel
|
2018-12-04 10:02:49 -05:00
|
|
|
|
2018-08-02 09:34:09 -04:00
|
|
|
try {
|
|
|
|
// Download video from youtubeDL
|
2018-08-06 11:13:39 -04:00
|
|
|
tempVideoPath = await downloader()
|
2018-08-02 09:34:09 -04:00
|
|
|
|
|
|
|
// Get information about this video
|
2018-08-27 10:23:34 -04:00
|
|
|
const stats = await stat(tempVideoPath)
|
2020-09-25 10:19:35 -04:00
|
|
|
const isAble = await isAbleToUploadVideo(videoImport.User.id, stats.size)
|
2018-08-07 04:07:53 -04:00
|
|
|
if (isAble === false) {
|
|
|
|
throw new Error('The user video quota is exceeded with this video to import.')
|
|
|
|
}
|
|
|
|
|
2018-08-02 09:34:09 -04:00
|
|
|
const { videoFileResolution } = await getVideoFileResolution(tempVideoPath)
|
2018-08-03 03:27:30 -04:00
|
|
|
const fps = await getVideoFileFPS(tempVideoPath)
|
2018-08-02 09:34:09 -04:00
|
|
|
const duration = await getDurationFromVideoFile(tempVideoPath)
|
|
|
|
|
2020-05-14 05:10:26 -04:00
|
|
|
// Prepare video file object for creation in database
|
2021-02-16 10:25:53 -05:00
|
|
|
const fileExt = extname(tempVideoPath)
|
2018-08-02 09:34:09 -04:00
|
|
|
const videoFileData = {
|
2021-02-16 10:25:53 -05:00
|
|
|
extname: fileExt,
|
2018-08-02 09:34:09 -04:00
|
|
|
resolution: videoFileResolution,
|
2018-08-07 09:17:17 -04:00
|
|
|
size: stats.size,
|
2021-02-16 10:25:53 -05:00
|
|
|
filename: generateVideoFilename(videoImport.Video, false, videoFileResolution, fileExt),
|
2018-08-02 09:34:09 -04:00
|
|
|
fps,
|
|
|
|
videoId: videoImport.videoId
|
|
|
|
}
|
2018-08-03 03:43:00 -04:00
|
|
|
videoFile = new VideoFileModel(videoFileData)
|
2019-08-20 07:52:49 -04:00
|
|
|
|
2020-05-14 05:10:26 -04:00
|
|
|
const hookName = options.type === 'youtube-dl'
|
|
|
|
? 'filter:api.video.post-import-url.accept.result'
|
|
|
|
: 'filter:api.video.post-import-torrent.accept.result'
|
|
|
|
|
|
|
|
// Check we accept this video
|
|
|
|
const acceptParameters = {
|
|
|
|
videoImport,
|
|
|
|
video: videoImport.Video,
|
|
|
|
videoFilePath: tempVideoPath,
|
|
|
|
videoFile,
|
|
|
|
user: videoImport.User
|
|
|
|
}
|
|
|
|
const acceptedResult = await Hooks.wrapFun(isPostImportVideoAccepted, acceptParameters, hookName)
|
|
|
|
|
|
|
|
if (acceptedResult.accepted !== true) {
|
|
|
|
logger.info('Refused imported video.', { acceptedResult, acceptParameters })
|
|
|
|
|
|
|
|
videoImport.state = VideoImportState.REJECTED
|
|
|
|
await videoImport.save()
|
|
|
|
|
|
|
|
throw new Error(acceptedResult.errorMessage)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Video is accepted, resuming preparation
|
2019-11-15 09:06:03 -05:00
|
|
|
const videoWithFiles = Object.assign(videoImport.Video, { VideoFiles: [ videoFile ], VideoStreamingPlaylists: [] })
|
2018-11-16 10:48:17 -05:00
|
|
|
// To clean files if the import fails
|
2019-08-20 07:52:49 -04:00
|
|
|
const videoImportWithFiles: MVideoImportDefaultFiles = Object.assign(videoImport, { Video: videoWithFiles })
|
2018-08-02 09:34:09 -04:00
|
|
|
|
|
|
|
// Move file
|
2019-11-15 09:06:03 -05:00
|
|
|
videoDestFile = getVideoFilePath(videoImportWithFiles.Video, videoFile)
|
2018-12-11 09:12:38 -05:00
|
|
|
await move(tempVideoPath, videoDestFile)
|
2018-08-03 03:43:00 -04:00
|
|
|
tempVideoPath = null // This path is not used anymore
|
2018-08-02 09:34:09 -04:00
|
|
|
|
2021-02-12 03:37:01 -05:00
|
|
|
// Generate miniature if the import did not created it
|
2019-08-15 05:53:26 -04:00
|
|
|
let thumbnailModel: MThumbnail
|
2021-02-09 05:22:42 -05:00
|
|
|
let thumbnailSave: object
|
2021-02-12 03:37:01 -05:00
|
|
|
if (!videoImportWithFiles.Video.getMiniature()) {
|
2021-02-16 02:50:40 -05:00
|
|
|
thumbnailModel = await generateVideoMiniature({
|
|
|
|
video: videoImportWithFiles.Video,
|
|
|
|
videoFile,
|
|
|
|
type: ThumbnailType.MINIATURE
|
|
|
|
})
|
2021-02-09 05:22:42 -05:00
|
|
|
thumbnailSave = thumbnailModel.toJSON()
|
2018-08-02 09:34:09 -04:00
|
|
|
}
|
|
|
|
|
2021-02-12 03:37:01 -05:00
|
|
|
// Generate preview if the import did not created it
|
2019-08-15 05:53:26 -04:00
|
|
|
let previewModel: MThumbnail
|
2021-02-09 05:22:42 -05:00
|
|
|
let previewSave: object
|
2021-02-12 03:37:01 -05:00
|
|
|
if (!videoImportWithFiles.Video.getPreview()) {
|
2021-02-16 02:50:40 -05:00
|
|
|
previewModel = await generateVideoMiniature({
|
|
|
|
video: videoImportWithFiles.Video,
|
|
|
|
videoFile,
|
|
|
|
type: ThumbnailType.PREVIEW
|
|
|
|
})
|
2021-02-09 05:22:42 -05:00
|
|
|
previewSave = previewModel.toJSON()
|
2018-08-02 09:34:09 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Create torrent
|
2021-02-18 05:28:00 -05:00
|
|
|
await createTorrentAndSetInfoHash(videoImportWithFiles.Video, videoFile)
|
2018-08-02 09:34:09 -04:00
|
|
|
|
2021-02-09 05:22:42 -05:00
|
|
|
const videoFileSave = videoFile.toJSON()
|
2019-08-15 05:53:26 -04:00
|
|
|
|
2021-02-09 05:22:42 -05:00
|
|
|
const { videoImportUpdated, video } = await retryTransactionWrapper(() => {
|
|
|
|
return sequelizeTypescript.transaction(async t => {
|
|
|
|
const videoImportToUpdate = videoImportWithFiles as MVideoImportVideo
|
2018-08-03 03:43:00 -04:00
|
|
|
|
2021-02-09 05:22:42 -05:00
|
|
|
// Refresh video
|
|
|
|
const video = await VideoModel.load(videoImportToUpdate.videoId, t)
|
|
|
|
if (!video) throw new Error('Video linked to import ' + videoImportToUpdate.videoId + ' does not exist anymore.')
|
2018-08-02 09:34:09 -04:00
|
|
|
|
2021-02-09 05:22:42 -05:00
|
|
|
const videoFileCreated = await videoFile.save({ transaction: t })
|
2018-08-02 09:34:09 -04:00
|
|
|
|
2021-02-09 05:22:42 -05:00
|
|
|
// Update video DB object
|
|
|
|
video.duration = duration
|
|
|
|
video.state = CONFIG.TRANSCODING.ENABLED ? VideoState.TO_TRANSCODE : VideoState.PUBLISHED
|
|
|
|
await video.save({ transaction: t })
|
2019-04-17 04:07:00 -04:00
|
|
|
|
2021-02-09 05:22:42 -05:00
|
|
|
if (thumbnailModel) await video.addAndSaveThumbnail(thumbnailModel, t)
|
|
|
|
if (previewModel) await video.addAndSaveThumbnail(previewModel, t)
|
2018-08-02 09:34:09 -04:00
|
|
|
|
2021-02-09 05:22:42 -05:00
|
|
|
// Now we can federate the video (reload from database, we need more attributes)
|
|
|
|
const videoForFederation = await VideoModel.loadAndPopulateAccountAndServerAndTags(video.uuid, t)
|
|
|
|
await federateVideoIfNeeded(videoForFederation, true, t)
|
2018-08-02 09:34:09 -04:00
|
|
|
|
2021-02-09 05:22:42 -05:00
|
|
|
// Update video import object
|
|
|
|
videoImportToUpdate.state = VideoImportState.SUCCESS
|
|
|
|
const videoImportUpdated = await videoImportToUpdate.save({ transaction: t }) as MVideoImportVideo
|
|
|
|
videoImportUpdated.Video = video
|
2018-08-02 09:34:09 -04:00
|
|
|
|
2021-02-09 05:22:42 -05:00
|
|
|
videoImportToUpdate.Video = Object.assign(video, { VideoFiles: [ videoFileCreated ] })
|
|
|
|
|
|
|
|
logger.info('Video %s imported.', video.uuid)
|
|
|
|
|
|
|
|
return { videoImportUpdated, video: videoForFederation }
|
|
|
|
}).catch(err => {
|
|
|
|
// Reset fields
|
|
|
|
if (thumbnailModel) thumbnailModel = new ThumbnailModel(thumbnailSave)
|
|
|
|
if (previewModel) previewModel = new ThumbnailModel(previewSave)
|
|
|
|
|
|
|
|
videoFile = new VideoFileModel(videoFileSave)
|
|
|
|
|
|
|
|
throw err
|
|
|
|
})
|
2018-08-02 09:34:09 -04:00
|
|
|
})
|
|
|
|
|
2019-01-02 10:37:43 -05:00
|
|
|
Notifier.Instance.notifyOnFinishedVideoImport(videoImportUpdated, true)
|
2018-12-28 07:47:17 -05:00
|
|
|
|
2019-08-15 05:53:26 -04:00
|
|
|
if (video.isBlacklisted()) {
|
2019-08-30 10:50:12 -04:00
|
|
|
const videoBlacklist = Object.assign(video.VideoBlacklist, { Video: video })
|
|
|
|
|
|
|
|
Notifier.Instance.notifyOnVideoAutoBlacklist(videoBlacklist)
|
2019-04-02 05:26:47 -04:00
|
|
|
} else {
|
2019-08-15 05:53:26 -04:00
|
|
|
Notifier.Instance.notifyOnNewVideoIfNeeded(video)
|
2019-04-02 05:26:47 -04:00
|
|
|
}
|
|
|
|
|
2018-08-02 09:34:09 -04:00
|
|
|
// Create transcoding jobs?
|
2019-08-15 05:53:26 -04:00
|
|
|
if (video.state === VideoState.TO_TRANSCODE) {
|
2021-01-21 10:57:21 -05:00
|
|
|
await addOptimizeOrMergeAudioJob(videoImportUpdated.Video, videoFile, videoImport.User)
|
2018-08-02 09:34:09 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
} catch (err) {
|
|
|
|
try {
|
2018-10-01 04:44:16 -04:00
|
|
|
if (tempVideoPath) await remove(tempVideoPath)
|
2018-08-02 09:34:09 -04:00
|
|
|
} catch (errUnlink) {
|
2018-08-03 03:43:00 -04:00
|
|
|
logger.warn('Cannot cleanup files after a video import error.', { err: errUnlink })
|
2018-08-02 09:34:09 -04:00
|
|
|
}
|
|
|
|
|
2018-08-03 03:27:30 -04:00
|
|
|
videoImport.error = err.message
|
2020-05-14 05:10:26 -04:00
|
|
|
if (videoImport.state !== VideoImportState.REJECTED) {
|
|
|
|
videoImport.state = VideoImportState.FAILED
|
|
|
|
}
|
2018-08-02 09:34:09 -04:00
|
|
|
await videoImport.save()
|
|
|
|
|
2019-01-02 10:37:43 -05:00
|
|
|
Notifier.Instance.notifyOnFinishedVideoImport(videoImport, false)
|
|
|
|
|
2018-08-02 09:34:09 -04:00
|
|
|
throw err
|
|
|
|
}
|
|
|
|
}
|