]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/controllers/api/videos/index.ts
Fix max buffer reached in youtube import
[github/Chocobozzz/PeerTube.git] / server / controllers / api / videos / index.ts
CommitLineData
4d4e5cd4 1import * as express from 'express'
93e1258c 2import { extname, join } from 'path'
571389d4 3import { VideoCreate, VideoPrivacy, VideoUpdate } from '../../../../shared'
da854ddd
C
4import { renamePromise } from '../../../helpers/core-utils'
5import { retryTransactionWrapper } from '../../../helpers/database-utils'
6import { getVideoFileHeight } from '../../../helpers/ffmpeg-utils'
ac81d1a0 7import { processImage } from '../../../helpers/image-utils'
da854ddd 8import { logger } from '../../../helpers/logger'
47564bbe 9import { createReqFiles, getFormattedObjects, getServerActor, resetSequelizeInstance } from '../../../helpers/utils'
65fcc311 10import {
ac81d1a0
C
11 CONFIG,
12 IMAGE_MIMETYPE_EXT,
13 PREVIEWS_SIZE,
14 sequelizeTypescript,
15 THUMBNAILS_SIZE,
16 VIDEO_CATEGORIES,
17 VIDEO_LANGUAGES,
18 VIDEO_LICENCES,
19 VIDEO_MIMETYPE_EXT,
3fd3ab2d
C
20 VIDEO_PRIVACIES
21} from '../../../initializers'
da854ddd 22import { fetchRemoteVideoDescription, getVideoActivityPubUrl, shareVideoByServerAndChannel } from '../../../lib/activitypub'
50d6de9c 23import { sendCreateVideo, sendCreateViewToOrigin, sendCreateViewToVideoFollowers, sendUpdateVideo } from '../../../lib/activitypub/send'
94a5ff8a 24import { JobQueue } from '../../../lib/job-queue'
65fcc311 25import {
ac81d1a0
C
26 asyncMiddleware,
27 authenticate,
28 paginationValidator,
29 setDefaultPagination,
30 setDefaultSort,
31 videosAddValidator,
32 videosGetValidator,
33 videosRemoveValidator,
34 videosSearchValidator,
35 videosSortValidator,
36 videosUpdateValidator
65fcc311 37} from '../../../middlewares'
3fd3ab2d
C
38import { TagModel } from '../../../models/video/tag'
39import { VideoModel } from '../../../models/video/video'
40import { VideoFileModel } from '../../../models/video/video-file'
65fcc311
C
41import { abuseVideoRouter } from './abuse'
42import { blacklistRouter } from './blacklist'
72c7248b 43import { videoChannelRouter } from './channel'
bf1f6508 44import { videoCommentRouter } from './comment'
571389d4 45import { rateVideoRouter } from './rate'
65fcc311
C
46
47const videosRouter = express.Router()
9f10b292 48
ac81d1a0
C
49const reqVideoFileAdd = createReqFiles(
50 [ 'videofile', 'thumbnailfile', 'previewfile' ],
51 Object.assign({}, VIDEO_MIMETYPE_EXT, IMAGE_MIMETYPE_EXT),
52 {
53 videofile: CONFIG.STORAGE.VIDEOS_DIR,
54 thumbnailfile: CONFIG.STORAGE.THUMBNAILS_DIR,
55 previewfile: CONFIG.STORAGE.PREVIEWS_DIR
56 }
57)
58const reqVideoFileUpdate = createReqFiles(
59 [ 'thumbnailfile', 'previewfile' ],
60 IMAGE_MIMETYPE_EXT,
61 {
62 thumbnailfile: CONFIG.STORAGE.THUMBNAILS_DIR,
63 previewfile: CONFIG.STORAGE.PREVIEWS_DIR
64 }
65)
8c308c2b 66
65fcc311
C
67videosRouter.use('/', abuseVideoRouter)
68videosRouter.use('/', blacklistRouter)
69videosRouter.use('/', rateVideoRouter)
72c7248b 70videosRouter.use('/', videoChannelRouter)
bf1f6508 71videosRouter.use('/', videoCommentRouter)
d33242b0 72
65fcc311
C
73videosRouter.get('/categories', listVideoCategories)
74videosRouter.get('/licences', listVideoLicences)
75videosRouter.get('/languages', listVideoLanguages)
fd45e8f4 76videosRouter.get('/privacies', listVideoPrivacies)
6e07c3de 77
65fcc311
C
78videosRouter.get('/',
79 paginationValidator,
80 videosSortValidator,
1174a847 81 setDefaultSort,
f05a1c30 82 setDefaultPagination,
eb080476 83 asyncMiddleware(listVideos)
fbf1134e 84)
f3aaa9a9
C
85videosRouter.get('/search',
86 videosSearchValidator,
87 paginationValidator,
88 videosSortValidator,
1174a847 89 setDefaultSort,
f05a1c30 90 setDefaultPagination,
f3aaa9a9
C
91 asyncMiddleware(searchVideos)
92)
65fcc311
C
93videosRouter.put('/:id',
94 authenticate,
ac81d1a0 95 reqVideoFileUpdate,
a2431b7d 96 asyncMiddleware(videosUpdateValidator),
eb080476 97 asyncMiddleware(updateVideoRetryWrapper)
7b1f49de 98)
e95561cd 99videosRouter.post('/upload',
65fcc311 100 authenticate,
ac81d1a0 101 reqVideoFileAdd,
3fd3ab2d 102 asyncMiddleware(videosAddValidator),
eb080476 103 asyncMiddleware(addVideoRetryWrapper)
fbf1134e 104)
9567011b
C
105
106videosRouter.get('/:id/description',
a2431b7d 107 asyncMiddleware(videosGetValidator),
9567011b
C
108 asyncMiddleware(getVideoDescription)
109)
65fcc311 110videosRouter.get('/:id',
a2431b7d 111 asyncMiddleware(videosGetValidator),
68ce3ae0 112 getVideo
fbf1134e 113)
1f3e9fec
C
114videosRouter.post('/:id/views',
115 asyncMiddleware(videosGetValidator),
116 asyncMiddleware(viewVideo)
117)
198b205c 118
65fcc311
C
119videosRouter.delete('/:id',
120 authenticate,
a2431b7d 121 asyncMiddleware(videosRemoveValidator),
eb080476 122 asyncMiddleware(removeVideoRetryWrapper)
fbf1134e 123)
198b205c 124
9f10b292 125// ---------------------------------------------------------------------------
c45f7f84 126
65fcc311
C
127export {
128 videosRouter
129}
c45f7f84 130
9f10b292 131// ---------------------------------------------------------------------------
c45f7f84 132
556ddc31 133function listVideoCategories (req: express.Request, res: express.Response) {
65fcc311 134 res.json(VIDEO_CATEGORIES)
6e07c3de
C
135}
136
556ddc31 137function listVideoLicences (req: express.Request, res: express.Response) {
65fcc311 138 res.json(VIDEO_LICENCES)
6f0c39e2
C
139}
140
556ddc31 141function listVideoLanguages (req: express.Request, res: express.Response) {
65fcc311 142 res.json(VIDEO_LANGUAGES)
3092476e
C
143}
144
fd45e8f4
C
145function listVideoPrivacies (req: express.Request, res: express.Response) {
146 res.json(VIDEO_PRIVACIES)
147}
148
ed04d94f
C
149// Wrapper to video add that retry the function if there is a database error
150// We need this because we run the transaction in SERIALIZABLE isolation that can fail
eb080476 151async function addVideoRetryWrapper (req: express.Request, res: express.Response, next: express.NextFunction) {
d6a5b018 152 const options = {
556ddc31 153 arguments: [ req, res, req.files['videofile'][0] ],
d6a5b018
C
154 errorMessage: 'Cannot insert the video with many retries.'
155 }
ed04d94f 156
cadb46d8 157 const video = await retryTransactionWrapper(addVideo, options)
eb080476 158
cadb46d8
C
159 res.json({
160 video: {
161 id: video.id,
162 uuid: video.uuid
163 }
164 }).end()
ed04d94f
C
165}
166
e11f68a3 167async function addVideo (req: express.Request, res: express.Response, videoPhysicalFile: Express.Multer.File) {
556ddc31 168 const videoInfo: VideoCreate = req.body
9f10b292 169
e11f68a3
C
170 // Prepare data so we don't block the transaction
171 const videoData = {
172 name: videoInfo.name,
173 remote: false,
174 extname: extname(videoPhysicalFile.filename),
175 category: videoInfo.category,
176 licence: videoInfo.licence,
177 language: videoInfo.language,
47564bbe 178 commentsEnabled: videoInfo.commentsEnabled,
e11f68a3
C
179 nsfw: videoInfo.nsfw,
180 description: videoInfo.description,
181 privacy: videoInfo.privacy,
182 duration: videoPhysicalFile['duration'], // duration was added by a previous middleware
183 channelId: res.locals.videoChannel.id
184 }
3fd3ab2d 185 const video = new VideoModel(videoData)
e11f68a3 186 video.url = getVideoActivityPubUrl(video)
eb080476 187
ac81d1a0 188 const videoFileHeight = await getVideoFileHeight(videoPhysicalFile.path)
6fcd19ba 189
e11f68a3
C
190 const videoFileData = {
191 extname: extname(videoPhysicalFile.filename),
192 resolution: videoFileHeight,
193 size: videoPhysicalFile.size
194 }
3fd3ab2d 195 const videoFile = new VideoFileModel(videoFileData)
e11f68a3 196 const videoDir = CONFIG.STORAGE.VIDEOS_DIR
e11f68a3 197 const destination = join(videoDir, video.getVideoFilename(videoFile))
e3a682a8 198
ac81d1a0 199 await renamePromise(videoPhysicalFile.path, destination)
e3a682a8
C
200 // This is important in case if there is another attempt in the retry process
201 videoPhysicalFile.filename = video.getVideoFilename(videoFile)
82815eb6 202 videoPhysicalFile.path = destination
ac81d1a0
C
203
204 // Process thumbnail or create it from the video
205 const thumbnailField = req.files['thumbnailfile']
206 if (thumbnailField) {
207 const thumbnailPhysicalFile = thumbnailField[0]
208 await processImage(thumbnailPhysicalFile, join(CONFIG.STORAGE.THUMBNAILS_DIR, video.getThumbnailName()), THUMBNAILS_SIZE)
209 } else {
210 await video.createThumbnail(videoFile)
211 }
93e1258c 212
ac81d1a0
C
213 // Process preview or create it from the video
214 const previewField = req.files['previewfile']
215 if (previewField) {
216 const previewPhysicalFile = previewField[0]
217 await processImage(previewPhysicalFile, join(CONFIG.STORAGE.PREVIEWS_DIR, video.getPreviewName()), PREVIEWS_SIZE)
218 } else {
219 await video.createPreview(videoFile)
220 }
eb080476 221
ac81d1a0 222 await video.createTorrentAndSetInfoHash(videoFile)
eb080476 223
94a5ff8a 224 const videoCreated = await sequelizeTypescript.transaction(async t => {
e11f68a3 225 const sequelizeOptions = { transaction: t }
eb080476 226
eb080476
C
227 const videoCreated = await video.save(sequelizeOptions)
228 // Do not forget to add video channel information to the created video
229 videoCreated.VideoChannel = res.locals.videoChannel
7920c273 230
eb080476 231 videoFile.videoId = video.id
eb080476 232 await videoFile.save(sequelizeOptions)
e11f68a3
C
233
234 video.VideoFiles = [ videoFile ]
93e1258c 235
eb080476 236 if (videoInfo.tags) {
3fd3ab2d 237 const tagInstances = await TagModel.findOrCreateTags(videoInfo.tags, t)
eb080476 238
3fd3ab2d 239 await video.$set('Tags', tagInstances, sequelizeOptions)
eb080476
C
240 video.Tags = tagInstances
241 }
242
243 // Let transcoding job send the video to friends because the video file extension might change
cadb46d8 244 if (CONFIG.TRANSCODING.ENABLED === true) return videoCreated
60862425 245 // Don't send video to remote servers, it is private
cadb46d8 246 if (video.privacy === VideoPrivacy.PRIVATE) return videoCreated
eb080476 247
50d6de9c 248 await sendCreateVideo(video, t)
a7d647c4 249 await shareVideoByServerAndChannel(video, t)
eb080476 250
cadb46d8
C
251 logger.info('Video with name %s and uuid %s created.', videoInfo.name, videoCreated.uuid)
252
253 return videoCreated
254 })
94a5ff8a
C
255
256 if (CONFIG.TRANSCODING.ENABLED === true) {
257 // Put uuid because we don't have id auto incremented for now
258 const dataInput = {
259 videoUUID: videoCreated.uuid
260 }
261
262 await JobQueue.Instance.createJob({ type: 'video-file', payload: dataInput })
263 }
264
265 return videoCreated
7b1f49de
C
266}
267
eb080476 268async function updateVideoRetryWrapper (req: express.Request, res: express.Response, next: express.NextFunction) {
d6a5b018
C
269 const options = {
270 arguments: [ req, res ],
271 errorMessage: 'Cannot update the video with many retries.'
272 }
ed04d94f 273
eb080476
C
274 await retryTransactionWrapper(updateVideo, options)
275
276 return res.type('json').status(204).end()
ed04d94f
C
277}
278
eb080476 279async function updateVideo (req: express.Request, res: express.Response) {
3fd3ab2d 280 const videoInstance: VideoModel = res.locals.video
7f4e7c36 281 const videoFieldsSave = videoInstance.toJSON()
556ddc31 282 const videoInfoToUpdate: VideoUpdate = req.body
fd45e8f4 283 const wasPrivateVideo = videoInstance.privacy === VideoPrivacy.PRIVATE
7b1f49de 284
ac81d1a0
C
285 // Process thumbnail or create it from the video
286 if (req.files && req.files['thumbnailfile']) {
287 const thumbnailPhysicalFile = req.files['thumbnailfile'][0]
288 await processImage(thumbnailPhysicalFile, join(CONFIG.STORAGE.THUMBNAILS_DIR, videoInstance.getThumbnailName()), THUMBNAILS_SIZE)
289 }
290
291 // Process preview or create it from the video
292 if (req.files && req.files['previewfile']) {
293 const previewPhysicalFile = req.files['previewfile'][0]
294 await processImage(previewPhysicalFile, join(CONFIG.STORAGE.PREVIEWS_DIR, videoInstance.getPreviewName()), PREVIEWS_SIZE)
295 }
296
eb080476 297 try {
3fd3ab2d 298 await sequelizeTypescript.transaction(async t => {
eb080476
C
299 const sequelizeOptions = {
300 transaction: t
301 }
7b1f49de 302
eb080476
C
303 if (videoInfoToUpdate.name !== undefined) videoInstance.set('name', videoInfoToUpdate.name)
304 if (videoInfoToUpdate.category !== undefined) videoInstance.set('category', videoInfoToUpdate.category)
305 if (videoInfoToUpdate.licence !== undefined) videoInstance.set('licence', videoInfoToUpdate.licence)
306 if (videoInfoToUpdate.language !== undefined) videoInstance.set('language', videoInfoToUpdate.language)
307 if (videoInfoToUpdate.nsfw !== undefined) videoInstance.set('nsfw', videoInfoToUpdate.nsfw)
f595d394 308 if (videoInfoToUpdate.privacy !== undefined) videoInstance.set('privacy', parseInt(videoInfoToUpdate.privacy.toString(), 10))
eb080476 309 if (videoInfoToUpdate.description !== undefined) videoInstance.set('description', videoInfoToUpdate.description)
47564bbe 310 if (videoInfoToUpdate.commentsEnabled !== undefined) videoInstance.set('commentsEnabled', videoInfoToUpdate.commentsEnabled)
7b1f49de 311
54141398 312 const videoInstanceUpdated = await videoInstance.save(sequelizeOptions)
7b1f49de 313
eb080476 314 if (videoInfoToUpdate.tags) {
3fd3ab2d 315 const tagInstances = await TagModel.findOrCreateTags(videoInfoToUpdate.tags, t)
7b1f49de 316
3fd3ab2d 317 await videoInstance.$set('Tags', tagInstances, sequelizeOptions)
eb080476
C
318 videoInstance.Tags = tagInstances
319 }
7920c273 320
eb080476 321 // Now we'll update the video's meta data to our friends
fd45e8f4 322 if (wasPrivateVideo === false) {
54141398 323 await sendUpdateVideo(videoInstanceUpdated, t)
fd45e8f4
C
324 }
325
60862425 326 // Video is not private anymore, send a create action to remote servers
f595d394 327 if (wasPrivateVideo === true && videoInstanceUpdated.privacy !== VideoPrivacy.PRIVATE) {
50d6de9c 328 await sendCreateVideo(videoInstanceUpdated, t)
a7d647c4 329 await shareVideoByServerAndChannel(videoInstanceUpdated, t)
fd45e8f4 330 }
eb080476 331 })
6fcd19ba 332
eb080476
C
333 logger.info('Video with name %s and uuid %s updated.', videoInstance.name, videoInstance.uuid)
334 } catch (err) {
6fcd19ba
C
335 // Force fields we want to update
336 // If the transaction is retried, sequelize will think the object has not changed
337 // So it will skip the SQL request, even if the last one was ROLLBACKed!
eb080476 338 resetSequelizeInstance(videoInstance, videoFieldsSave)
6fcd19ba
C
339
340 throw err
eb080476 341 }
9f10b292 342}
8c308c2b 343
1f3e9fec
C
344function getVideo (req: express.Request, res: express.Response) {
345 const videoInstance = res.locals.video
346
347 return res.json(videoInstance.toFormattedDetailsJSON())
348}
349
350async function viewVideo (req: express.Request, res: express.Response) {
818f7987 351 const videoInstance = res.locals.video
9e167724 352
1f3e9fec 353 await videoInstance.increment('views')
50d6de9c 354 const serverAccount = await getServerActor()
40ff5707 355
9e167724 356 if (videoInstance.isOwned()) {
1f3e9fec 357 await sendCreateViewToVideoFollowers(serverAccount, videoInstance, undefined)
e4c87ec2 358 } else {
1f3e9fec 359 await sendCreateViewToOrigin(serverAccount, videoInstance, undefined)
9e167724
C
360 }
361
1f3e9fec 362 return res.status(204).end()
9f10b292 363}
8c308c2b 364
9567011b
C
365async function getVideoDescription (req: express.Request, res: express.Response) {
366 const videoInstance = res.locals.video
367 let description = ''
368
369 if (videoInstance.isOwned()) {
370 description = videoInstance.description
371 } else {
571389d4 372 description = await fetchRemoteVideoDescription(videoInstance)
9567011b
C
373 }
374
375 return res.json({ description })
376}
377
eb080476 378async function listVideos (req: express.Request, res: express.Response, next: express.NextFunction) {
3fd3ab2d 379 const resultList = await VideoModel.listForApi(req.query.start, req.query.count, req.query.sort)
eb080476
C
380
381 return res.json(getFormattedObjects(resultList.data, resultList.total))
9f10b292 382}
c45f7f84 383
eb080476 384async function removeVideoRetryWrapper (req: express.Request, res: express.Response, next: express.NextFunction) {
91f6f169
C
385 const options = {
386 arguments: [ req, res ],
387 errorMessage: 'Cannot remove the video with many retries.'
388 }
8c308c2b 389
eb080476
C
390 await retryTransactionWrapper(removeVideo, options)
391
392 return res.type('json').status(204).end()
91f6f169
C
393}
394
eb080476 395async function removeVideo (req: express.Request, res: express.Response) {
3fd3ab2d 396 const videoInstance: VideoModel = res.locals.video
91f6f169 397
3fd3ab2d 398 await sequelizeTypescript.transaction(async t => {
eb080476 399 await videoInstance.destroy({ transaction: t })
91f6f169 400 })
eb080476
C
401
402 logger.info('Video with name %s and uuid %s deleted.', videoInstance.name, videoInstance.uuid)
9f10b292 403}
8c308c2b 404
eb080476 405async function searchVideos (req: express.Request, res: express.Response, next: express.NextFunction) {
3fd3ab2d 406 const resultList = await VideoModel.searchAndPopulateAccountAndServerAndTags(
f3aaa9a9 407 req.query.search,
eb080476
C
408 req.query.start,
409 req.query.count,
410 req.query.sort
411 )
412
413 return res.json(getFormattedObjects(resultList.data, resultList.total))
9f10b292 414}