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