1
0
Fork 0
peertube/server/lib/job-queue/handlers/video-file-import.ts

92 lines
3.1 KiB
TypeScript
Raw Normal View History

2019-03-19 16:10:53 +00:00
import * as Bull from 'bull'
import { copy, stat } from 'fs-extra'
import { extname } from 'path'
import { createTorrentAndSetInfoHash } from '@server/helpers/webtorrent'
import { getVideoFilePath } from '@server/lib/video-paths'
import { UserModel } from '@server/models/account/user'
2020-11-20 16:16:55 +00:00
import { MVideoFile, MVideoWithFile } from '@server/types/models'
2020-04-23 07:32:53 +00:00
import { VideoFileImportPayload } from '@shared/models'
2020-11-20 16:16:55 +00:00
import { getVideoFileFPS, getVideoFileResolution } from '../../../helpers/ffprobe-utils'
import { logger } from '../../../helpers/logger'
import { VideoModel } from '../../../models/video/video'
import { VideoFileModel } from '../../../models/video/video-file'
2021-01-21 14:58:17 +00:00
import { onNewWebTorrentFileResolution } from './video-transcoding'
2019-03-19 16:10:53 +00:00
async function processVideoFileImport (job: Bull.Job) {
const payload = job.data as VideoFileImportPayload
logger.info('Processing video file import in job %d.', job.id)
const video = await VideoModel.loadAndPopulateAccountAndServerAndTags(payload.videoUUID)
// No video, maybe deleted?
if (!video) {
logger.info('Do not process job %d, video does not exist.', job.id)
return undefined
}
2021-02-02 13:00:46 +00:00
const data = await getVideoFileResolution(payload.filePath)
2019-03-19 16:10:53 +00:00
await updateVideoFile(video, payload.filePath)
const user = await UserModel.loadByChannelActorId(video.VideoChannel.actorId)
2021-02-02 13:00:46 +00:00
const newResolutionPayload = {
type: 'new-resolution-to-webtorrent' as 'new-resolution-to-webtorrent',
videoUUID: video.uuid,
resolution: data.videoFileResolution,
isPortraitMode: data.isPortraitMode,
copyCodecs: false,
isNewVideo: false
}
await onNewWebTorrentFileResolution(video, user, newResolutionPayload)
2019-03-19 16:10:53 +00:00
return video
}
// ---------------------------------------------------------------------------
export {
processVideoFileImport
}
// ---------------------------------------------------------------------------
2019-08-15 09:53:26 +00:00
async function updateVideoFile (video: MVideoWithFile, inputFilePath: string) {
2019-03-19 16:10:53 +00:00
const { videoFileResolution } = await getVideoFileResolution(inputFilePath)
const { size } = await stat(inputFilePath)
const fps = await getVideoFileFPS(inputFilePath)
let updatedVideoFile = new VideoFileModel({
resolution: videoFileResolution,
extname: extname(inputFilePath),
size,
fps,
videoId: video.id
2019-08-15 09:53:26 +00:00
}) as MVideoFile
2019-03-19 16:10:53 +00:00
const currentVideoFile = video.VideoFiles.find(videoFile => videoFile.resolution === updatedVideoFile.resolution)
if (currentVideoFile) {
// Remove old file and old torrent
await video.removeFile(currentVideoFile)
await video.removeTorrent(currentVideoFile)
// Remove the old video file from the array
video.VideoFiles = video.VideoFiles.filter(f => f !== currentVideoFile)
// Update the database
2019-08-15 09:53:26 +00:00
currentVideoFile.extname = updatedVideoFile.extname
currentVideoFile.size = updatedVideoFile.size
currentVideoFile.fps = updatedVideoFile.fps
2019-03-19 16:10:53 +00:00
updatedVideoFile = currentVideoFile
}
const outputPath = getVideoFilePath(video, updatedVideoFile)
2019-03-19 16:10:53 +00:00
await copy(inputFilePath, outputPath)
await createTorrentAndSetInfoHash(video, updatedVideoFile)
2019-03-19 16:10:53 +00:00
await updatedVideoFile.save()
video.VideoFiles.push(updatedVideoFile)
}