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