2023-10-19 07:18:22 -05:00
|
|
|
import express, { UploadFiles } from 'express'
|
2023-07-31 07:34:36 -05:00
|
|
|
import { move } from 'fs-extra/esm'
|
2021-08-17 01:26:20 -05:00
|
|
|
import { basename } from 'path'
|
2023-07-31 07:34:36 -05:00
|
|
|
import { getResumableUploadPath } from '@server/helpers/upload.js'
|
|
|
|
import { getLocalVideoActivityPubUrl } from '@server/lib/activitypub/url.js'
|
|
|
|
import { Redis } from '@server/lib/redis.js'
|
|
|
|
import { uploadx } from '@server/lib/uploadx.js'
|
2023-12-27 08:44:09 -06:00
|
|
|
import {
|
2024-02-12 03:47:52 -06:00
|
|
|
buildLocalVideoFromReq, buildVideoThumbnailsFromReq,
|
2023-12-27 08:44:09 -06:00
|
|
|
setVideoTags
|
|
|
|
} from '@server/lib/video.js'
|
2023-07-31 07:34:36 -05:00
|
|
|
import { buildNewFile } from '@server/lib/video-file.js'
|
|
|
|
import { VideoPathManager } from '@server/lib/video-path-manager.js'
|
|
|
|
import { buildNextVideoState } from '@server/lib/video-state.js'
|
|
|
|
import { openapiOperationDoc } from '@server/middlewares/doc.js'
|
|
|
|
import { VideoPasswordModel } from '@server/models/video/video-password.js'
|
|
|
|
import { VideoSourceModel } from '@server/models/video/video-source.js'
|
2023-10-19 07:18:22 -05:00
|
|
|
import { MVideoFile, MVideoFullLight, MVideoThumbnail } from '@server/types/models/index.js'
|
2023-07-31 07:34:36 -05:00
|
|
|
import { uuidToShort } from '@peertube/peertube-node-utils'
|
2024-02-12 03:47:52 -06:00
|
|
|
import { HttpStatusCode, ThumbnailType, VideoCreate, VideoPrivacy } from '@peertube/peertube-models'
|
2023-07-31 07:34:36 -05:00
|
|
|
import { auditLoggerFactory, getAuditIdFromRes, VideoAuditView } from '../../../helpers/audit-logger.js'
|
|
|
|
import { createReqFiles } from '../../../helpers/express-utils.js'
|
|
|
|
import { logger, loggerTagsFactory } from '../../../helpers/logger.js'
|
2023-10-12 08:32:01 -05:00
|
|
|
import { CONSTRAINTS_FIELDS, MIMETYPES } from '../../../initializers/constants.js'
|
2023-07-31 07:34:36 -05:00
|
|
|
import { sequelizeTypescript } from '../../../initializers/database.js'
|
|
|
|
import { Hooks } from '../../../lib/plugins/hooks.js'
|
|
|
|
import { generateLocalVideoMiniature } from '../../../lib/thumbnail.js'
|
|
|
|
import { autoBlacklistVideoIfNeeded } from '../../../lib/video-blacklist.js'
|
2021-05-12 07:51:17 -05:00
|
|
|
import {
|
|
|
|
asyncMiddleware,
|
|
|
|
asyncRetryTransactionMiddleware,
|
|
|
|
authenticate,
|
|
|
|
videosAddLegacyValidator,
|
|
|
|
videosAddResumableInitValidator,
|
2022-01-18 02:29:46 -06:00
|
|
|
videosAddResumableValidator
|
2023-07-31 07:34:36 -05:00
|
|
|
} from '../../../middlewares/index.js'
|
|
|
|
import { ScheduleVideoUpdateModel } from '../../../models/video/schedule-video-update.js'
|
|
|
|
import { VideoModel } from '../../../models/video/video.js'
|
2023-10-19 07:18:22 -05:00
|
|
|
import { ffprobePromise, getChaptersFromContainer } from '@peertube/peertube-ffmpeg'
|
2023-08-28 03:55:04 -05:00
|
|
|
import { replaceChapters, replaceChaptersFromDescriptionIfNeeded } from '@server/lib/video-chapters.js'
|
2023-10-19 07:18:22 -05:00
|
|
|
import { FfprobeData } from 'fluent-ffmpeg'
|
2024-02-12 03:47:52 -06:00
|
|
|
import { addVideoJobsAfterCreation } from '@server/lib/video-jobs.js'
|
2021-05-12 07:51:17 -05:00
|
|
|
|
|
|
|
const lTags = loggerTagsFactory('api', 'video')
|
|
|
|
const auditLogger = auditLoggerFactory('videos')
|
|
|
|
const uploadRouter = express.Router()
|
2021-11-10 02:42:37 -06:00
|
|
|
|
2021-05-12 07:51:17 -05:00
|
|
|
const reqVideoFileAdd = createReqFiles(
|
|
|
|
[ 'videofile', 'thumbnailfile', 'previewfile' ],
|
2022-03-04 03:57:36 -06:00
|
|
|
{ ...MIMETYPES.VIDEO.MIMETYPE_EXT, ...MIMETYPES.IMAGE.MIMETYPE_EXT }
|
2021-05-12 07:51:17 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
const reqVideoFileAddResumable = createReqFiles(
|
|
|
|
[ 'thumbnailfile', 'previewfile' ],
|
|
|
|
MIMETYPES.IMAGE.MIMETYPE_EXT,
|
2022-03-04 03:57:36 -06:00
|
|
|
getResumableUploadPath()
|
2021-05-12 07:51:17 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
uploadRouter.post('/upload',
|
2021-06-04 01:57:07 -05:00
|
|
|
openapiOperationDoc({ operationId: 'uploadLegacy' }),
|
2021-05-12 07:51:17 -05:00
|
|
|
authenticate,
|
|
|
|
reqVideoFileAdd,
|
|
|
|
asyncMiddleware(videosAddLegacyValidator),
|
|
|
|
asyncRetryTransactionMiddleware(addVideoLegacy)
|
|
|
|
)
|
|
|
|
|
|
|
|
uploadRouter.post('/upload-resumable',
|
2021-06-04 01:57:07 -05:00
|
|
|
openapiOperationDoc({ operationId: 'uploadResumableInit' }),
|
2021-05-12 07:51:17 -05:00
|
|
|
authenticate,
|
|
|
|
reqVideoFileAddResumable,
|
|
|
|
asyncMiddleware(videosAddResumableInitValidator),
|
2023-06-29 04:35:25 -05:00
|
|
|
(req, res) => uploadx.upload(req, res) // Prevent next() call, explicitely tell to uploadx it's the end
|
2021-05-12 07:51:17 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
uploadRouter.delete('/upload-resumable',
|
|
|
|
authenticate,
|
2021-11-10 02:42:37 -06:00
|
|
|
asyncMiddleware(deleteUploadResumableCache),
|
2023-06-29 04:35:25 -05:00
|
|
|
(req, res) => uploadx.upload(req, res) // Prevent next() call, explicitely tell to uploadx it's the end
|
2021-05-12 07:51:17 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
uploadRouter.put('/upload-resumable',
|
2021-06-04 01:57:07 -05:00
|
|
|
openapiOperationDoc({ operationId: 'uploadResumable' }),
|
2021-05-12 07:51:17 -05:00
|
|
|
authenticate,
|
2021-11-10 02:42:37 -06:00
|
|
|
uploadx.upload, // uploadx doesn't next() before the file upload completes
|
2021-05-12 07:51:17 -05:00
|
|
|
asyncMiddleware(videosAddResumableValidator),
|
|
|
|
asyncMiddleware(addVideoResumable)
|
|
|
|
)
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
|
|
|
uploadRouter
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2021-11-10 02:42:37 -06:00
|
|
|
async function addVideoLegacy (req: express.Request, res: express.Response) {
|
2021-05-12 07:51:17 -05:00
|
|
|
// Uploading the video could be long
|
|
|
|
// Set timeout to 10 minutes, as Express's default is 2 minutes
|
|
|
|
req.setTimeout(1000 * 60 * 10, () => {
|
2021-05-31 18:36:53 -05:00
|
|
|
logger.error('Video upload has timed out.')
|
|
|
|
return res.fail({
|
|
|
|
status: HttpStatusCode.REQUEST_TIMEOUT_408,
|
|
|
|
message: 'Video upload has timed out.'
|
|
|
|
})
|
2021-05-12 07:51:17 -05:00
|
|
|
})
|
|
|
|
|
|
|
|
const videoPhysicalFile = req.files['videofile'][0]
|
|
|
|
const videoInfo: VideoCreate = req.body
|
|
|
|
const files = req.files
|
|
|
|
|
2021-11-24 07:33:14 -06:00
|
|
|
const response = await addVideo({ req, res, videoPhysicalFile, videoInfo, files })
|
2021-10-25 10:42:20 -05:00
|
|
|
|
|
|
|
return res.json(response)
|
2021-05-12 07:51:17 -05:00
|
|
|
}
|
|
|
|
|
2021-11-10 02:42:37 -06:00
|
|
|
async function addVideoResumable (req: express.Request, res: express.Response) {
|
2023-07-19 09:02:49 -05:00
|
|
|
const videoPhysicalFile = res.locals.uploadVideoFileResumable
|
2021-05-12 07:51:17 -05:00
|
|
|
const videoInfo = videoPhysicalFile.metadata
|
2023-06-06 04:14:13 -05:00
|
|
|
const files = { previewfile: videoInfo.previewfile, thumbnailfile: videoInfo.thumbnailfile }
|
2021-05-12 07:51:17 -05:00
|
|
|
|
2021-11-24 07:33:14 -06:00
|
|
|
const response = await addVideo({ req, res, videoPhysicalFile, videoInfo, files })
|
2024-02-19 07:41:38 -06:00
|
|
|
await Redis.Instance.deleteUploadSession(req.query.upload_id)
|
|
|
|
await uploadx.storage.delete(res.locals.uploadVideoFileResumable)
|
2021-10-25 10:42:20 -05:00
|
|
|
|
|
|
|
return res.json(response)
|
2021-05-12 07:51:17 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
async function addVideo (options: {
|
2021-11-24 07:33:14 -06:00
|
|
|
req: express.Request
|
2021-05-12 07:51:17 -05:00
|
|
|
res: express.Response
|
|
|
|
videoPhysicalFile: express.VideoUploadFile
|
|
|
|
videoInfo: VideoCreate
|
|
|
|
files: express.UploadFiles
|
|
|
|
}) {
|
2021-11-24 07:33:14 -06:00
|
|
|
const { req, res, videoPhysicalFile, videoInfo, files } = options
|
2021-05-12 07:51:17 -05:00
|
|
|
const videoChannel = res.locals.videoChannel
|
|
|
|
const user = res.locals.oauth.token.User
|
|
|
|
|
2021-12-10 06:49:19 -06:00
|
|
|
let videoData = buildLocalVideoFromReq(videoInfo, videoChannel.id)
|
|
|
|
videoData = await Hooks.wrapObject(videoData, 'filter:api.video.upload.video-attribute.result')
|
2021-05-12 07:51:17 -05:00
|
|
|
|
2021-08-17 01:26:20 -05:00
|
|
|
videoData.state = buildNextVideoState()
|
2021-05-12 07:51:17 -05:00
|
|
|
videoData.duration = videoPhysicalFile.duration // duration was added by a previous middleware
|
|
|
|
|
|
|
|
const video = new VideoModel(videoData) as MVideoFullLight
|
|
|
|
video.VideoChannel = videoChannel
|
|
|
|
video.url = getLocalVideoActivityPubUrl(video) // We use the UUID, so set the URL after building the object
|
|
|
|
|
2023-10-19 07:18:22 -05:00
|
|
|
const ffprobe = await ffprobePromise(videoPhysicalFile.path)
|
|
|
|
|
|
|
|
const videoFile = await buildNewFile({ path: videoPhysicalFile.path, mode: 'web-video', ffprobe })
|
2022-06-21 08:31:25 -05:00
|
|
|
const originalFilename = videoPhysicalFile.originalname
|
2021-05-12 07:51:17 -05:00
|
|
|
|
2023-10-12 08:32:01 -05:00
|
|
|
const containerChapters = await getChaptersFromContainer({
|
|
|
|
path: videoPhysicalFile.path,
|
2023-10-19 07:18:22 -05:00
|
|
|
maxTitleLength: CONSTRAINTS_FIELDS.VIDEO_CHAPTERS.TITLE.max,
|
|
|
|
ffprobe
|
2023-10-12 08:32:01 -05:00
|
|
|
})
|
2023-08-28 03:55:04 -05:00
|
|
|
logger.debug(`Got ${containerChapters.length} chapters from video "${video.name}" container`, { containerChapters, ...lTags(video.uuid) })
|
|
|
|
|
2021-05-12 07:51:17 -05:00
|
|
|
// Move physical file
|
2021-08-17 01:26:20 -05:00
|
|
|
const destination = VideoPathManager.Instance.getFSVideoFileOutputPath(video, videoFile)
|
2021-05-12 07:51:17 -05:00
|
|
|
await move(videoPhysicalFile.path, destination)
|
|
|
|
// This is important in case if there is another attempt in the retry process
|
2021-08-17 01:26:20 -05:00
|
|
|
videoPhysicalFile.filename = basename(destination)
|
2021-05-12 07:51:17 -05:00
|
|
|
videoPhysicalFile.path = destination
|
|
|
|
|
2023-10-19 07:18:22 -05:00
|
|
|
const thumbnails = await createThumbnailFiles({ video, files, videoFile, ffprobe })
|
2021-05-12 07:51:17 -05:00
|
|
|
|
|
|
|
const { videoCreated } = await sequelizeTypescript.transaction(async t => {
|
|
|
|
const sequelizeOptions = { transaction: t }
|
|
|
|
|
|
|
|
const videoCreated = await video.save(sequelizeOptions) as MVideoFullLight
|
|
|
|
|
2023-10-19 07:18:22 -05:00
|
|
|
for (const thumbnail of thumbnails) {
|
|
|
|
await videoCreated.addAndSaveThumbnail(thumbnail, t)
|
|
|
|
}
|
2021-05-12 07:51:17 -05:00
|
|
|
|
|
|
|
// Do not forget to add video channel information to the created video
|
|
|
|
videoCreated.VideoChannel = res.locals.videoChannel
|
|
|
|
|
|
|
|
videoFile.videoId = video.id
|
|
|
|
await videoFile.save(sequelizeOptions)
|
|
|
|
|
|
|
|
video.VideoFiles = [ videoFile ]
|
|
|
|
|
2022-06-21 08:31:25 -05:00
|
|
|
await VideoSourceModel.create({
|
|
|
|
filename: originalFilename,
|
|
|
|
videoId: video.id
|
|
|
|
}, { transaction: t })
|
|
|
|
|
2021-05-12 07:51:17 -05:00
|
|
|
await setVideoTags({ video, tags: videoInfo.tags, transaction: t })
|
|
|
|
|
|
|
|
// Schedule an update in the future?
|
|
|
|
if (videoInfo.scheduleUpdate) {
|
|
|
|
await ScheduleVideoUpdateModel.create({
|
|
|
|
videoId: video.id,
|
|
|
|
updateAt: new Date(videoInfo.scheduleUpdate.updateAt),
|
|
|
|
privacy: videoInfo.scheduleUpdate.privacy || null
|
|
|
|
}, sequelizeOptions)
|
|
|
|
}
|
|
|
|
|
2023-08-28 03:55:04 -05:00
|
|
|
if (!await replaceChaptersFromDescriptionIfNeeded({ newDescription: video.description, video, transaction: t })) {
|
|
|
|
await replaceChapters({ video, chapters: containerChapters, transaction: t })
|
|
|
|
}
|
|
|
|
|
2021-05-12 07:51:17 -05:00
|
|
|
await autoBlacklistVideoIfNeeded({
|
|
|
|
video,
|
|
|
|
user,
|
|
|
|
isRemote: false,
|
|
|
|
isNew: true,
|
2023-07-19 09:02:49 -05:00
|
|
|
isNewFile: true,
|
2021-05-12 07:51:17 -05:00
|
|
|
transaction: t
|
|
|
|
})
|
|
|
|
|
2023-06-29 02:48:55 -05:00
|
|
|
if (videoInfo.privacy === VideoPrivacy.PASSWORD_PROTECTED) {
|
|
|
|
await VideoPasswordModel.addPasswords(videoInfo.videoPasswords, video.id, t)
|
|
|
|
}
|
|
|
|
|
2021-05-12 07:51:17 -05:00
|
|
|
auditLogger.create(getAuditIdFromRes(res), new VideoAuditView(videoCreated.toFormattedDetailsJSON()))
|
|
|
|
logger.info('Video with name %s and uuid %s created.', videoInfo.name, videoCreated.uuid, lTags(videoCreated.uuid))
|
|
|
|
|
|
|
|
return { videoCreated }
|
|
|
|
})
|
|
|
|
|
2021-08-30 09:24:25 -05:00
|
|
|
// Channel has a new content, set as updated
|
|
|
|
await videoCreated.VideoChannel.setAsUpdated()
|
|
|
|
|
2024-02-12 03:47:52 -06:00
|
|
|
addVideoJobsAfterCreation({ video: videoCreated, videoFile })
|
2022-08-08 08:48:17 -05:00
|
|
|
.catch(err => logger.error('Cannot build new video jobs of %s.', videoCreated.uuid, { err, ...lTags(videoCreated.uuid) }))
|
2021-05-12 07:51:17 -05:00
|
|
|
|
2021-11-24 07:33:14 -06:00
|
|
|
Hooks.runAction('action:api.video.uploaded', { video: videoCreated, req, res })
|
2021-05-12 07:51:17 -05:00
|
|
|
|
2021-10-25 10:42:20 -05:00
|
|
|
return {
|
2021-05-12 07:51:17 -05:00
|
|
|
video: {
|
|
|
|
id: videoCreated.id,
|
2021-06-28 10:30:59 -05:00
|
|
|
shortUUID: uuidToShort(videoCreated.uuid),
|
2021-05-12 07:51:17 -05:00
|
|
|
uuid: videoCreated.uuid
|
|
|
|
}
|
2021-10-25 10:42:20 -05:00
|
|
|
}
|
2021-05-12 07:51:17 -05:00
|
|
|
}
|
|
|
|
|
2021-11-10 02:42:37 -06:00
|
|
|
async function deleteUploadResumableCache (req: express.Request, res: express.Response, next: express.NextFunction) {
|
|
|
|
await Redis.Instance.deleteUploadSession(req.query.upload_id)
|
|
|
|
|
|
|
|
return next()
|
|
|
|
}
|
2023-10-19 07:18:22 -05:00
|
|
|
|
|
|
|
async function createThumbnailFiles (options: {
|
|
|
|
video: MVideoThumbnail
|
|
|
|
files: UploadFiles
|
|
|
|
videoFile: MVideoFile
|
|
|
|
ffprobe?: FfprobeData
|
|
|
|
}) {
|
|
|
|
const { video, videoFile, files, ffprobe } = options
|
|
|
|
|
|
|
|
const models = await buildVideoThumbnailsFromReq({
|
|
|
|
video,
|
|
|
|
files,
|
|
|
|
fallback: () => Promise.resolve(undefined)
|
|
|
|
})
|
|
|
|
|
|
|
|
const filteredModels = models.filter(m => !!m)
|
|
|
|
|
|
|
|
const thumbnailsToGenerate = [ ThumbnailType.MINIATURE, ThumbnailType.PREVIEW ].filter(type => {
|
|
|
|
// Generate missing thumbnail types
|
|
|
|
return !filteredModels.some(m => m.type === type)
|
|
|
|
})
|
|
|
|
|
|
|
|
return [ ...filteredModels, ...await generateLocalVideoMiniature({ video, videoFile, types: thumbnailsToGenerate, ffprobe }) ]
|
|
|
|
}
|