PeerTube/server/controllers/api/videos/import.ts

350 lines
12 KiB
TypeScript
Raw Normal View History

import * as express from 'express'
2020-09-17 10:00:46 +02:00
import { move, readFile } from 'fs-extra'
2018-08-07 09:54:36 +02:00
import * as magnetUtil from 'magnet-uri'
import * as parseTorrent from 'parse-torrent'
2020-09-17 10:00:46 +02:00
import { join } from 'path'
import { setVideoTags } from '@server/lib/video'
2019-08-15 11:53:26 +02:00
import {
2019-08-20 13:52:49 +02:00
MChannelAccountDefault,
2019-08-15 11:53:26 +02:00
MThumbnail,
MUser,
2019-08-20 19:05:31 +02:00
MVideoAccountDefault,
2020-04-11 04:24:42 +02:00
MVideoCaptionVideo,
2019-08-20 10:22:05 +02:00
MVideoTag,
2019-08-15 11:53:26 +02:00
MVideoThumbnailAccountDefault,
MVideoWithBlacklistLight
2020-06-18 10:45:25 +02:00
} from '@server/types/models'
import { MVideoImport, MVideoImportFormattable } from '@server/types/models/video/video-import'
2020-09-17 10:00:46 +02:00
import { VideoImportCreate, VideoImportState, VideoPrivacy, VideoState } from '../../../../shared'
2020-12-08 14:30:29 +01:00
import { HttpStatusCode } from '../../../../shared/core-utils/miscs/http-error-codes'
2020-09-17 10:00:46 +02:00
import { ThumbnailType } from '../../../../shared/models/videos/thumbnail.type'
import { auditLoggerFactory, getAuditIdFromRes, VideoImportAuditView } from '../../../helpers/audit-logger'
import { moveAndProcessCaptionFile } from '../../../helpers/captions-utils'
import { isArray } from '../../../helpers/custom-validators/misc'
import { createReqFiles } from '../../../helpers/express-utils'
import { logger } from '../../../helpers/logger'
import { getSecureTorrentName } from '../../../helpers/utils'
import { getYoutubeDLInfo, getYoutubeDLSubs, YoutubeDLInfo } from '../../../helpers/youtube-dl'
import { CONFIG } from '../../../initializers/config'
import { MIMETYPES } from '../../../initializers/constants'
import { sequelizeTypescript } from '../../../initializers/database'
2020-11-20 11:21:08 +01:00
import { getLocalVideoActivityPubUrl } from '../../../lib/activitypub/url'
2020-09-17 10:00:46 +02:00
import { JobQueue } from '../../../lib/job-queue/job-queue'
import { createVideoMiniatureFromExisting, createVideoMiniatureFromUrl } from '../../../lib/thumbnail'
import { autoBlacklistVideoIfNeeded } from '../../../lib/video-blacklist'
import { asyncMiddleware, asyncRetryTransactionMiddleware, authenticate, videoImportAddValidator } from '../../../middlewares'
import { VideoModel } from '../../../models/video/video'
import { VideoCaptionModel } from '../../../models/video/video-caption'
import { VideoImportModel } from '../../../models/video/video-import'
const auditLogger = auditLoggerFactory('video-imports')
const videoImportsRouter = express.Router()
const reqVideoFileImport = createReqFiles(
2018-08-07 09:54:36 +02:00
[ 'thumbnailfile', 'previewfile', 'torrentfile' ],
2018-12-11 14:52:50 +01:00
Object.assign({}, MIMETYPES.TORRENT.MIMETYPE_EXT, MIMETYPES.IMAGE.MIMETYPE_EXT),
{
2018-12-04 16:02:49 +01:00
thumbnailfile: CONFIG.STORAGE.TMP_DIR,
previewfile: CONFIG.STORAGE.TMP_DIR,
torrentfile: CONFIG.STORAGE.TMP_DIR
}
)
videoImportsRouter.post('/imports',
authenticate,
reqVideoFileImport,
asyncMiddleware(videoImportAddValidator),
asyncRetryTransactionMiddleware(addVideoImport)
)
// ---------------------------------------------------------------------------
export {
videoImportsRouter
}
// ---------------------------------------------------------------------------
2018-08-06 17:13:39 +02:00
function addVideoImport (req: express.Request, res: express.Response) {
if (req.body.targetUrl) return addYoutubeDLImport(req, res)
2020-06-17 10:55:40 +02:00
const file = req.files?.['torrentfile']?.[0]
2018-08-07 09:54:36 +02:00
if (req.body.magnetUri || file) return addTorrentImport(req, res, file)
2018-08-06 17:13:39 +02:00
}
2018-08-07 09:54:36 +02:00
async function addTorrentImport (req: express.Request, res: express.Response, torrentfile: Express.Multer.File) {
2018-08-06 17:13:39 +02:00
const body: VideoImportCreate = req.body
2018-08-07 10:07:53 +02:00
const user = res.locals.oauth.token.User
2018-08-06 17:13:39 +02:00
2018-08-07 09:54:36 +02:00
let videoName: string
let torrentName: string
let magnetUri: string
if (torrentfile) {
torrentName = torrentfile.originalname
// Rename the torrent to a secured name
const newTorrentPath = join(CONFIG.STORAGE.TORRENTS_DIR, getSecureTorrentName(torrentName))
await move(torrentfile.path, newTorrentPath)
2018-08-07 09:54:36 +02:00
torrentfile.path = newTorrentPath
2018-08-27 16:23:34 +02:00
const buf = await readFile(torrentfile.path)
2018-08-07 09:54:36 +02:00
const parsedTorrent = parseTorrent(buf)
2020-01-31 16:56:52 +01:00
videoName = isArray(parsedTorrent.name) ? parsedTorrent.name[0] : parsedTorrent.name as string
2018-08-07 09:54:36 +02:00
} else {
magnetUri = body.magnetUri
const parsed = magnetUtil.decode(magnetUri)
2020-01-31 16:56:52 +01:00
videoName = isArray(parsed.name) ? parsed.name[0] : parsed.name as string
2018-08-07 09:54:36 +02:00
}
2018-08-06 17:13:39 +02:00
const video = buildVideo(res.locals.videoChannel.id, body, { name: videoName })
2018-08-06 17:13:39 +02:00
const thumbnailModel = await processThumbnail(req, video)
const previewModel = await processPreview(req, video)
2018-08-06 17:13:39 +02:00
2018-08-07 15:17:17 +02:00
const tags = body.tags || undefined
2018-08-06 17:13:39 +02:00
const videoImportAttributes = {
magnetUri,
2018-08-07 09:54:36 +02:00
torrentName,
2018-08-07 10:07:53 +02:00
state: VideoImportState.PENDING,
userId: user.id
2018-08-06 17:13:39 +02:00
}
const videoImport = await insertIntoDB({
video,
thumbnailModel,
previewModel,
videoChannel: res.locals.videoChannel,
tags,
videoImportAttributes,
user
})
2018-08-06 17:13:39 +02:00
// Create job to import the video
const payload = {
2018-08-07 09:54:36 +02:00
type: torrentfile ? 'torrent-file' as 'torrent-file' : 'magnet-uri' as 'magnet-uri',
2018-08-06 17:13:39 +02:00
videoImportId: videoImport.id,
magnetUri
}
2020-01-31 16:56:52 +01:00
await JobQueue.Instance.createJobWithPromise({ type: 'video-import', payload })
2018-08-06 17:13:39 +02:00
2018-09-19 17:02:16 +02:00
auditLogger.create(getAuditIdFromRes(res), new VideoImportAuditView(videoImport.toFormattedJSON()))
2018-08-06 17:13:39 +02:00
return res.json(videoImport.toFormattedJSON()).end()
}
async function addYoutubeDLImport (req: express.Request, res: express.Response) {
const body: VideoImportCreate = req.body
const targetUrl = body.targetUrl
2018-08-07 10:07:53 +02:00
const user = res.locals.oauth.token.User
2020-04-11 04:24:42 +02:00
// Get video infos
let youtubeDLInfo: YoutubeDLInfo
try {
youtubeDLInfo = await getYoutubeDLInfo(targetUrl)
} catch (err) {
logger.info('Cannot fetch information from import for URL %s.', targetUrl, { err })
return res.status(HttpStatusCode.BAD_REQUEST_400).json({
error: 'Cannot fetch remote information of this URL.'
}).end()
}
const video = buildVideo(res.locals.videoChannel.id, body, youtubeDLInfo)
2018-08-06 17:13:39 +02:00
let thumbnailModel: MThumbnail
// Process video thumbnail from request.files
thumbnailModel = await processThumbnail(req, video)
// Process video thumbnail from url if processing from request.files failed
if (!thumbnailModel && youtubeDLInfo.thumbnailUrl) {
thumbnailModel = await processThumbnailFromUrl(youtubeDLInfo.thumbnailUrl, video)
}
let previewModel: MThumbnail
// Process video preview from request.files
previewModel = await processPreview(req, video)
// Process video preview from url if processing from request.files failed
if (!previewModel && youtubeDLInfo.thumbnailUrl) {
previewModel = await processPreviewFromUrl(youtubeDLInfo.thumbnailUrl, video)
}
2018-08-06 17:13:39 +02:00
const tags = body.tags || youtubeDLInfo.tags
const videoImportAttributes = {
targetUrl,
2018-08-07 10:07:53 +02:00
state: VideoImportState.PENDING,
userId: user.id
2018-08-06 17:13:39 +02:00
}
const videoImport = await insertIntoDB({
video,
thumbnailModel,
previewModel,
videoChannel: res.locals.videoChannel,
tags,
videoImportAttributes,
user
})
2018-08-06 17:13:39 +02:00
2020-04-11 04:24:42 +02:00
// Get video subtitles
try {
const subtitles = await getYoutubeDLSubs(targetUrl)
2020-04-15 14:15:44 +02:00
logger.info('Will create %s subtitles from youtube import %s.', subtitles.length, targetUrl)
2020-04-11 04:24:42 +02:00
for (const subtitle of subtitles) {
const videoCaption = new VideoCaptionModel({
videoId: video.id,
language: subtitle.language
}) as MVideoCaptionVideo
videoCaption.Video = video
// Move physical file
await moveAndProcessCaptionFile(subtitle, videoCaption)
await sequelizeTypescript.transaction(async t => {
await VideoCaptionModel.insertOrReplaceLanguage(video.id, subtitle.language, null, t)
})
}
} catch (err) {
logger.warn('Cannot get video subtitles.', { err })
}
2018-08-06 17:13:39 +02:00
// Create job to import the video
const payload = {
type: 'youtube-dl' as 'youtube-dl',
videoImportId: videoImport.id,
generateThumbnail: !thumbnailModel,
generatePreview: !previewModel,
2020-04-03 15:41:39 +02:00
fileExt: youtubeDLInfo.fileExt
? `.${youtubeDLInfo.fileExt}`
: '.mp4'
2018-08-06 17:13:39 +02:00
}
2020-01-31 16:56:52 +01:00
await JobQueue.Instance.createJobWithPromise({ type: 'video-import', payload })
2018-08-06 17:13:39 +02:00
2018-09-19 17:02:16 +02:00
auditLogger.create(getAuditIdFromRes(res), new VideoImportAuditView(videoImport.toFormattedJSON()))
2018-08-06 17:13:39 +02:00
return res.json(videoImport.toFormattedJSON()).end()
}
function buildVideo (channelId: number, body: VideoImportCreate, importData: YoutubeDLInfo) {
const videoData = {
2018-08-06 17:13:39 +02:00
name: body.name || importData.name || 'Unknown name',
remote: false,
2018-08-06 17:13:39 +02:00
category: body.category || importData.category,
licence: body.licence || importData.licence,
language: body.language || importData.language,
commentsEnabled: body.commentsEnabled !== false, // If the value is not "false", the default is "true"
downloadEnabled: body.downloadEnabled !== false,
waitTranscoding: body.waitTranscoding || false,
state: VideoState.TO_IMPORT,
2018-08-06 17:13:39 +02:00
nsfw: body.nsfw || importData.nsfw || false,
description: body.description || importData.description,
support: body.support || null,
privacy: body.privacy || VideoPrivacy.PRIVATE,
duration: 0, // duration will be set by the import job
channelId: channelId,
originallyPublishedAt: body.originallyPublishedAt || importData.originallyPublishedAt
}
const video = new VideoModel(videoData)
2020-11-20 11:21:08 +01:00
video.url = getLocalVideoActivityPubUrl(video)
2018-08-06 17:13:39 +02:00
return video
}
async function processThumbnail (req: express.Request, video: VideoModel) {
2018-08-03 11:10:31 +02:00
const thumbnailField = req.files ? req.files['thumbnailfile'] : undefined
if (thumbnailField) {
2020-01-31 16:56:52 +01:00
const thumbnailPhysicalFile = thumbnailField[0]
2018-08-06 17:13:39 +02:00
2020-09-17 10:00:46 +02:00
return createVideoMiniatureFromExisting({
inputPath: thumbnailPhysicalFile.path,
video,
type: ThumbnailType.MINIATURE,
automaticallyGenerated: false
})
}
return undefined
2018-08-06 17:13:39 +02:00
}
async function processPreview (req: express.Request, video: VideoModel) {
2018-08-03 11:10:31 +02:00
const previewField = req.files ? req.files['previewfile'] : undefined
if (previewField) {
const previewPhysicalFile = previewField[0]
2018-08-06 17:13:39 +02:00
2020-09-17 10:00:46 +02:00
return createVideoMiniatureFromExisting({
inputPath: previewPhysicalFile.path,
video,
type: ThumbnailType.PREVIEW,
automaticallyGenerated: false
})
}
return undefined
2018-08-06 17:13:39 +02:00
}
async function processThumbnailFromUrl (url: string, video: VideoModel) {
try {
return createVideoMiniatureFromUrl(url, video, ThumbnailType.MINIATURE)
} catch (err) {
logger.warn('Cannot generate video thumbnail %s for %s.', url, video.url, { err })
return undefined
}
}
async function processPreviewFromUrl (url: string, video: VideoModel) {
try {
return createVideoMiniatureFromUrl(url, video, ThumbnailType.PREVIEW)
} catch (err) {
logger.warn('Cannot generate video preview %s for %s.', url, video.url, { err })
return undefined
}
}
function insertIntoDB (parameters: {
2020-01-31 16:56:52 +01:00
video: MVideoThumbnailAccountDefault
thumbnailModel: MThumbnail
previewModel: MThumbnail
videoChannel: MChannelAccountDefault
tags: string[]
videoImportAttributes: Partial<MVideoImport>
2019-08-15 11:53:26 +02:00
user: MUser
2020-12-08 14:30:29 +01:00
}): Promise<MVideoImportFormattable> {
const { video, thumbnailModel, previewModel, videoChannel, tags, videoImportAttributes, user } = parameters
2018-08-06 17:13:39 +02:00
return sequelizeTypescript.transaction(async t => {
const sequelizeOptions = { transaction: t }
// Save video object in database
2019-08-20 19:05:31 +02:00
const videoCreated = await video.save(sequelizeOptions) as (MVideoAccountDefault & MVideoWithBlacklistLight & MVideoTag)
2018-08-06 17:13:39 +02:00
videoCreated.VideoChannel = videoChannel
2019-04-23 09:50:57 +02:00
if (thumbnailModel) await videoCreated.addAndSaveThumbnail(thumbnailModel, t)
if (previewModel) await videoCreated.addAndSaveThumbnail(previewModel, t)
2019-07-23 12:04:15 +02:00
await autoBlacklistVideoIfNeeded({
2019-08-15 11:53:26 +02:00
video: videoCreated,
2019-07-23 12:04:15 +02:00
user,
notify: false,
isRemote: false,
isNew: true,
transaction: t
})
2020-09-17 10:00:46 +02:00
await setVideoTags({ video: videoCreated, tags, transaction: t })
// Create video import object in database
2018-08-06 17:13:39 +02:00
const videoImport = await VideoImportModel.create(
Object.assign({ videoId: videoCreated.id }, videoImportAttributes),
sequelizeOptions
2019-08-20 19:05:31 +02:00
) as MVideoImportFormattable
videoImport.Video = videoCreated
return videoImport
})
}