]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/controllers/api/videos/upload.ts
Fix error display for embeds
[github/Chocobozzz/PeerTube.git] / server / controllers / api / videos / upload.ts
CommitLineData
41fb13c3 1import express from 'express'
c158a5fa 2import { move } from 'fs-extra'
0305db28 3import { basename } from 'path'
790c2837 4import { getResumableUploadPath } from '@server/helpers/upload'
c158a5fa
C
5import { createTorrentAndSetInfoHash } from '@server/helpers/webtorrent'
6import { getLocalVideoActivityPubUrl } from '@server/lib/activitypub/url'
0305db28 7import { generateWebTorrentVideoFilename } from '@server/lib/paths'
276250f0 8import { Redis } from '@server/lib/redis'
6d472b40 9import { uploadx } from '@server/lib/uploadx'
0305db28
JB
10import {
11 addMoveToObjectStorageJob,
12 addOptimizeOrMergeAudioJob,
13 buildLocalVideoFromReq,
14 buildVideoThumbnailsFromReq,
15 setVideoTags
16} from '@server/lib/video'
17import { VideoPathManager } from '@server/lib/video-path-manager'
18import { buildNextVideoState } from '@server/lib/video-state'
1c627fd8 19import { openapiOperationDoc } from '@server/middlewares/doc'
c158a5fa 20import { MVideo, MVideoFile, MVideoFullLight } from '@server/types/models'
c55e3d72 21import { getLowercaseExtension, uuidToShort } from '@shared/core-utils'
c158a5fa 22import { VideoCreate, VideoState } from '../../../../shared'
c0e8b12e 23import { HttpStatusCode } from '../../../../shared/models'
c158a5fa
C
24import { auditLoggerFactory, getAuditIdFromRes, VideoAuditView } from '../../../helpers/audit-logger'
25import { retryTransactionWrapper } from '../../../helpers/database-utils'
26import { createReqFiles } from '../../../helpers/express-utils'
27import { getMetadataFromFile, getVideoFileFPS, getVideoFileResolution } from '../../../helpers/ffprobe-utils'
28import { logger, loggerTagsFactory } from '../../../helpers/logger'
29import { CONFIG } from '../../../initializers/config'
30import { DEFAULT_AUDIO_RESOLUTION, MIMETYPES } from '../../../initializers/constants'
31import { sequelizeTypescript } from '../../../initializers/database'
32import { federateVideoIfNeeded } from '../../../lib/activitypub/videos'
33import { Notifier } from '../../../lib/notifier'
34import { Hooks } from '../../../lib/plugins/hooks'
35import { generateVideoMiniature } from '../../../lib/thumbnail'
36import { autoBlacklistVideoIfNeeded } from '../../../lib/video-blacklist'
37import {
38 asyncMiddleware,
39 asyncRetryTransactionMiddleware,
40 authenticate,
41 videosAddLegacyValidator,
42 videosAddResumableInitValidator,
6d472b40
C
43 videosAddResumableValidator,
44 videosResumableUploadIdValidator
c158a5fa
C
45} from '../../../middlewares'
46import { ScheduleVideoUpdateModel } from '../../../models/video/schedule-video-update'
47import { VideoModel } from '../../../models/video/video'
48import { VideoFileModel } from '../../../models/video/video-file'
49
50const lTags = loggerTagsFactory('api', 'video')
51const auditLogger = auditLoggerFactory('videos')
52const uploadRouter = express.Router()
020d3d3d 53
c158a5fa
C
54const reqVideoFileAdd = createReqFiles(
55 [ 'videofile', 'thumbnailfile', 'previewfile' ],
56 Object.assign({}, MIMETYPES.VIDEO.MIMETYPE_EXT, MIMETYPES.IMAGE.MIMETYPE_EXT),
57 {
58 videofile: CONFIG.STORAGE.TMP_DIR,
59 thumbnailfile: CONFIG.STORAGE.TMP_DIR,
60 previewfile: CONFIG.STORAGE.TMP_DIR
61 }
62)
63
64const reqVideoFileAddResumable = createReqFiles(
65 [ 'thumbnailfile', 'previewfile' ],
66 MIMETYPES.IMAGE.MIMETYPE_EXT,
67 {
68 thumbnailfile: getResumableUploadPath(),
69 previewfile: getResumableUploadPath()
70 }
71)
72
73uploadRouter.post('/upload',
1c627fd8 74 openapiOperationDoc({ operationId: 'uploadLegacy' }),
c158a5fa
C
75 authenticate,
76 reqVideoFileAdd,
77 asyncMiddleware(videosAddLegacyValidator),
78 asyncRetryTransactionMiddleware(addVideoLegacy)
79)
80
81uploadRouter.post('/upload-resumable',
1c627fd8 82 openapiOperationDoc({ operationId: 'uploadResumableInit' }),
c158a5fa
C
83 authenticate,
84 reqVideoFileAddResumable,
85 asyncMiddleware(videosAddResumableInitValidator),
020d3d3d 86 uploadx.upload
c158a5fa
C
87)
88
89uploadRouter.delete('/upload-resumable',
90 authenticate,
020d3d3d
C
91 videosResumableUploadIdValidator,
92 asyncMiddleware(deleteUploadResumableCache),
93 uploadx.upload
c158a5fa
C
94)
95
96uploadRouter.put('/upload-resumable',
1c627fd8 97 openapiOperationDoc({ operationId: 'uploadResumable' }),
c158a5fa 98 authenticate,
020d3d3d
C
99 videosResumableUploadIdValidator,
100 uploadx.upload, // uploadx doesn't next() before the file upload completes
c158a5fa
C
101 asyncMiddleware(videosAddResumableValidator),
102 asyncMiddleware(addVideoResumable)
103)
104
105// ---------------------------------------------------------------------------
106
107export {
108 uploadRouter
109}
110
111// ---------------------------------------------------------------------------
112
020d3d3d 113async function addVideoLegacy (req: express.Request, res: express.Response) {
c158a5fa
C
114 // Uploading the video could be long
115 // Set timeout to 10 minutes, as Express's default is 2 minutes
116 req.setTimeout(1000 * 60 * 10, () => {
76148b27
RK
117 logger.error('Video upload has timed out.')
118 return res.fail({
119 status: HttpStatusCode.REQUEST_TIMEOUT_408,
120 message: 'Video upload has timed out.'
121 })
c158a5fa
C
122 })
123
124 const videoPhysicalFile = req.files['videofile'][0]
125 const videoInfo: VideoCreate = req.body
126 const files = req.files
127
7226e90f 128 const response = await addVideo({ req, res, videoPhysicalFile, videoInfo, files })
276250f0
RK
129
130 return res.json(response)
c158a5fa
C
131}
132
020d3d3d 133async function addVideoResumable (req: express.Request, res: express.Response) {
c158a5fa
C
134 const videoPhysicalFile = res.locals.videoFileResumable
135 const videoInfo = videoPhysicalFile.metadata
136 const files = { previewfile: videoInfo.previewfile }
137
7226e90f 138 const response = await addVideo({ req, res, videoPhysicalFile, videoInfo, files })
276250f0
RK
139 await Redis.Instance.setUploadSession(req.query.upload_id, response)
140
141 return res.json(response)
c158a5fa
C
142}
143
144async function addVideo (options: {
7226e90f 145 req: express.Request
c158a5fa
C
146 res: express.Response
147 videoPhysicalFile: express.VideoUploadFile
148 videoInfo: VideoCreate
149 files: express.UploadFiles
150}) {
7226e90f 151 const { req, res, videoPhysicalFile, videoInfo, files } = options
c158a5fa
C
152 const videoChannel = res.locals.videoChannel
153 const user = res.locals.oauth.token.User
154
d17d7430
C
155 let videoData = buildLocalVideoFromReq(videoInfo, videoChannel.id)
156 videoData = await Hooks.wrapObject(videoData, 'filter:api.video.upload.video-attribute.result')
c158a5fa 157
0305db28 158 videoData.state = buildNextVideoState()
c158a5fa
C
159 videoData.duration = videoPhysicalFile.duration // duration was added by a previous middleware
160
161 const video = new VideoModel(videoData) as MVideoFullLight
162 video.VideoChannel = videoChannel
163 video.url = getLocalVideoActivityPubUrl(video) // We use the UUID, so set the URL after building the object
164
0305db28 165 const videoFile = await buildNewFile(videoPhysicalFile)
c158a5fa
C
166
167 // Move physical file
0305db28 168 const destination = VideoPathManager.Instance.getFSVideoFileOutputPath(video, videoFile)
c158a5fa
C
169 await move(videoPhysicalFile.path, destination)
170 // This is important in case if there is another attempt in the retry process
0305db28 171 videoPhysicalFile.filename = basename(destination)
c158a5fa
C
172 videoPhysicalFile.path = destination
173
174 const [ thumbnailModel, previewModel ] = await buildVideoThumbnailsFromReq({
175 video,
176 files,
177 fallback: type => generateVideoMiniature({ video, videoFile, type })
178 })
179
180 const { videoCreated } = await sequelizeTypescript.transaction(async t => {
181 const sequelizeOptions = { transaction: t }
182
183 const videoCreated = await video.save(sequelizeOptions) as MVideoFullLight
184
185 await videoCreated.addAndSaveThumbnail(thumbnailModel, t)
186 await videoCreated.addAndSaveThumbnail(previewModel, t)
187
188 // Do not forget to add video channel information to the created video
189 videoCreated.VideoChannel = res.locals.videoChannel
190
191 videoFile.videoId = video.id
192 await videoFile.save(sequelizeOptions)
193
194 video.VideoFiles = [ videoFile ]
195
196 await setVideoTags({ video, tags: videoInfo.tags, transaction: t })
197
198 // Schedule an update in the future?
199 if (videoInfo.scheduleUpdate) {
200 await ScheduleVideoUpdateModel.create({
201 videoId: video.id,
202 updateAt: new Date(videoInfo.scheduleUpdate.updateAt),
203 privacy: videoInfo.scheduleUpdate.privacy || null
204 }, sequelizeOptions)
205 }
206
c158a5fa
C
207 await autoBlacklistVideoIfNeeded({
208 video,
209 user,
210 isRemote: false,
211 isNew: true,
212 transaction: t
213 })
214
215 auditLogger.create(getAuditIdFromRes(res), new VideoAuditView(videoCreated.toFormattedDetailsJSON()))
216 logger.info('Video with name %s and uuid %s created.', videoInfo.name, videoCreated.uuid, lTags(videoCreated.uuid))
217
218 return { videoCreated }
219 })
220
3419e0e1
C
221 // Channel has a new content, set as updated
222 await videoCreated.VideoChannel.setAsUpdated()
223
c158a5fa 224 createTorrentFederate(video, videoFile)
764b1a14 225 .then(() => {
0305db28
JB
226 if (video.state === VideoState.TO_MOVE_TO_EXTERNAL_STORAGE) {
227 return addMoveToObjectStorageJob(video)
228 }
c158a5fa 229
0305db28
JB
230 if (video.state === VideoState.TO_TRANSCODE) {
231 return addOptimizeOrMergeAudioJob(videoCreated, videoFile, user)
232 }
764b1a14
C
233 })
234 .catch(err => logger.error('Cannot add optimize/merge audio job for %s.', videoCreated.uuid, { err, ...lTags(videoCreated.uuid) }))
c158a5fa 235
7226e90f 236 Hooks.runAction('action:api.video.uploaded', { video: videoCreated, req, res })
c158a5fa 237
276250f0 238 return {
c158a5fa
C
239 video: {
240 id: videoCreated.id,
d4a8e7a6 241 shortUUID: uuidToShort(videoCreated.uuid),
c158a5fa
C
242 uuid: videoCreated.uuid
243 }
276250f0 244 }
c158a5fa
C
245}
246
0305db28 247async function buildNewFile (videoPhysicalFile: express.VideoUploadFile) {
c158a5fa 248 const videoFile = new VideoFileModel({
ea54cd04 249 extname: getLowercaseExtension(videoPhysicalFile.filename),
c158a5fa
C
250 size: videoPhysicalFile.size,
251 videoStreamingPlaylistId: null,
252 metadata: await getMetadataFromFile(videoPhysicalFile.path)
253 })
254
255 if (videoFile.isAudio()) {
256 videoFile.resolution = DEFAULT_AUDIO_RESOLUTION
257 } else {
258 videoFile.fps = await getVideoFileFPS(videoPhysicalFile.path)
679c12e6 259 videoFile.resolution = (await getVideoFileResolution(videoPhysicalFile.path)).resolution
c158a5fa
C
260 }
261
83903cb6 262 videoFile.filename = generateWebTorrentVideoFilename(videoFile.resolution, videoFile.extname)
c158a5fa
C
263
264 return videoFile
265}
266
267async function createTorrentAndSetInfoHashAsync (video: MVideo, fileArg: MVideoFile) {
268 await createTorrentAndSetInfoHash(video, fileArg)
269
270 // Refresh videoFile because the createTorrentAndSetInfoHash could be long
271 const refreshedFile = await VideoFileModel.loadWithVideo(fileArg.id)
272 // File does not exist anymore, remove the generated torrent
273 if (!refreshedFile) return fileArg.removeTorrent()
274
275 refreshedFile.infoHash = fileArg.infoHash
276 refreshedFile.torrentFilename = fileArg.torrentFilename
277
278 return refreshedFile.save()
279}
280
764b1a14 281function createTorrentFederate (video: MVideoFullLight, videoFile: MVideoFile) {
c158a5fa 282 // Create the torrent file in async way because it could be long
764b1a14 283 return createTorrentAndSetInfoHashAsync(video, videoFile)
c158a5fa
C
284 .catch(err => logger.error('Cannot create torrent file for video %s', video.url, { err, ...lTags(video.uuid) }))
285 .then(() => VideoModel.loadAndPopulateAccountAndServerAndTags(video.id))
286 .then(refreshedVideo => {
287 if (!refreshedVideo) return
288
289 // Only federate and notify after the torrent creation
290 Notifier.Instance.notifyOnNewVideoIfNeeded(refreshedVideo)
291
292 return retryTransactionWrapper(() => {
293 return sequelizeTypescript.transaction(t => federateVideoIfNeeded(refreshedVideo, true, t))
294 })
295 })
296 .catch(err => logger.error('Cannot federate or notify video creation %s', video.url, { err, ...lTags(video.uuid) }))
297}
020d3d3d
C
298
299async function deleteUploadResumableCache (req: express.Request, res: express.Response, next: express.NextFunction) {
300 await Redis.Instance.deleteUploadSession(req.query.upload_id)
301
302 return next()
303}