]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/controllers/api/videos/index.ts
Merge branch 'release/v1.0.0' into develop
[github/Chocobozzz/PeerTube.git] / server / controllers / api / videos / index.ts
CommitLineData
4d4e5cd4 1import * as express from 'express'
93e1258c 2import { extname, join } from 'path'
2186386c 3import { VideoCreate, VideoPrivacy, VideoState, VideoUpdate } from '../../../../shared'
3a6f351b 4import { getVideoFileFPS, getVideoFileResolution } from '../../../helpers/ffmpeg-utils'
ac81d1a0 5import { processImage } from '../../../helpers/image-utils'
da854ddd 6import { logger } from '../../../helpers/logger'
993cef4b 7import { auditLoggerFactory, getAuditIdFromRes, VideoAuditView } from '../../../helpers/audit-logger'
06215f15 8import { getFormattedObjects, getServerActor } from '../../../helpers/utils'
65fcc311 9import {
ac81d1a0
C
10 CONFIG,
11 IMAGE_MIMETYPE_EXT,
12 PREVIEWS_SIZE,
13 sequelizeTypescript,
14 THUMBNAILS_SIZE,
15 VIDEO_CATEGORIES,
16 VIDEO_LANGUAGES,
17 VIDEO_LICENCES,
18 VIDEO_MIMETYPE_EXT,
3fd3ab2d
C
19 VIDEO_PRIVACIES
20} from '../../../initializers'
0f320037
C
21import {
22 changeVideoChannelShare,
2186386c 23 federateVideoIfNeeded,
0f320037 24 fetchRemoteVideoDescription,
2186386c 25 getVideoActivityPubUrl
0f320037 26} from '../../../lib/activitypub'
2186386c 27import { sendCreateView } from '../../../lib/activitypub/send'
94a5ff8a 28import { JobQueue } from '../../../lib/job-queue'
b5c0e955 29import { Redis } from '../../../lib/redis'
65fcc311 30import {
ac81d1a0 31 asyncMiddleware,
90d4bb81 32 asyncRetryTransactionMiddleware,
ac81d1a0 33 authenticate,
d525fc39 34 commonVideosFiltersValidator,
0883b324 35 optionalAuthenticate,
ac81d1a0
C
36 paginationValidator,
37 setDefaultPagination,
38 setDefaultSort,
39 videosAddValidator,
40 videosGetValidator,
41 videosRemoveValidator,
ac81d1a0
C
42 videosSortValidator,
43 videosUpdateValidator
65fcc311 44} from '../../../middlewares'
3fd3ab2d
C
45import { TagModel } from '../../../models/video/tag'
46import { VideoModel } from '../../../models/video/video'
47import { VideoFileModel } from '../../../models/video/video-file'
65fcc311
C
48import { abuseVideoRouter } from './abuse'
49import { blacklistRouter } from './blacklist'
bf1f6508 50import { videoCommentRouter } from './comment'
571389d4 51import { rateVideoRouter } from './rate'
74d63469 52import { ownershipVideoRouter } from './ownership'
0883b324 53import { VideoFilter } from '../../../../shared/models/videos/video-query.type'
06215f15 54import { buildNSFWFilter, createReqFiles } from '../../../helpers/express-utils'
2baea0c7 55import { ScheduleVideoUpdateModel } from '../../../models/video/schedule-video-update'
40e87e9e 56import { videoCaptionsRouter } from './captions'
fbad87b0 57import { videoImportsRouter } from './import'
06215f15 58import { resetSequelizeInstance } from '../../../helpers/database-utils'
62689b94 59import { rename } from 'fs-extra'
6e46de09 60import { watchingRouter } from './watching'
65fcc311 61
80e36cd9 62const auditLogger = auditLoggerFactory('videos')
65fcc311 63const videosRouter = express.Router()
9f10b292 64
ac81d1a0
C
65const reqVideoFileAdd = createReqFiles(
66 [ 'videofile', 'thumbnailfile', 'previewfile' ],
67 Object.assign({}, VIDEO_MIMETYPE_EXT, IMAGE_MIMETYPE_EXT),
68 {
69 videofile: CONFIG.STORAGE.VIDEOS_DIR,
70 thumbnailfile: CONFIG.STORAGE.THUMBNAILS_DIR,
71 previewfile: CONFIG.STORAGE.PREVIEWS_DIR
72 }
73)
74const reqVideoFileUpdate = createReqFiles(
75 [ 'thumbnailfile', 'previewfile' ],
76 IMAGE_MIMETYPE_EXT,
77 {
78 thumbnailfile: CONFIG.STORAGE.THUMBNAILS_DIR,
79 previewfile: CONFIG.STORAGE.PREVIEWS_DIR
80 }
81)
8c308c2b 82
65fcc311
C
83videosRouter.use('/', abuseVideoRouter)
84videosRouter.use('/', blacklistRouter)
85videosRouter.use('/', rateVideoRouter)
bf1f6508 86videosRouter.use('/', videoCommentRouter)
40e87e9e 87videosRouter.use('/', videoCaptionsRouter)
fbad87b0 88videosRouter.use('/', videoImportsRouter)
74d63469 89videosRouter.use('/', ownershipVideoRouter)
6e46de09 90videosRouter.use('/', watchingRouter)
d33242b0 91
65fcc311
C
92videosRouter.get('/categories', listVideoCategories)
93videosRouter.get('/licences', listVideoLicences)
94videosRouter.get('/languages', listVideoLanguages)
fd45e8f4 95videosRouter.get('/privacies', listVideoPrivacies)
6e07c3de 96
65fcc311
C
97videosRouter.get('/',
98 paginationValidator,
99 videosSortValidator,
1174a847 100 setDefaultSort,
f05a1c30 101 setDefaultPagination,
0883b324 102 optionalAuthenticate,
d525fc39 103 commonVideosFiltersValidator,
eb080476 104 asyncMiddleware(listVideos)
fbf1134e 105)
65fcc311
C
106videosRouter.put('/:id',
107 authenticate,
ac81d1a0 108 reqVideoFileUpdate,
a2431b7d 109 asyncMiddleware(videosUpdateValidator),
90d4bb81 110 asyncRetryTransactionMiddleware(updateVideo)
7b1f49de 111)
e95561cd 112videosRouter.post('/upload',
65fcc311 113 authenticate,
ac81d1a0 114 reqVideoFileAdd,
3fd3ab2d 115 asyncMiddleware(videosAddValidator),
90d4bb81 116 asyncRetryTransactionMiddleware(addVideo)
fbf1134e 117)
9567011b
C
118
119videosRouter.get('/:id/description',
a2431b7d 120 asyncMiddleware(videosGetValidator),
9567011b
C
121 asyncMiddleware(getVideoDescription)
122)
65fcc311 123videosRouter.get('/:id',
6e46de09 124 optionalAuthenticate,
a2431b7d 125 asyncMiddleware(videosGetValidator),
68ce3ae0 126 getVideo
fbf1134e 127)
1f3e9fec
C
128videosRouter.post('/:id/views',
129 asyncMiddleware(videosGetValidator),
130 asyncMiddleware(viewVideo)
131)
198b205c 132
65fcc311
C
133videosRouter.delete('/:id',
134 authenticate,
a2431b7d 135 asyncMiddleware(videosRemoveValidator),
90d4bb81 136 asyncRetryTransactionMiddleware(removeVideo)
fbf1134e 137)
198b205c 138
9f10b292 139// ---------------------------------------------------------------------------
c45f7f84 140
65fcc311
C
141export {
142 videosRouter
143}
c45f7f84 144
9f10b292 145// ---------------------------------------------------------------------------
c45f7f84 146
556ddc31 147function listVideoCategories (req: express.Request, res: express.Response) {
65fcc311 148 res.json(VIDEO_CATEGORIES)
6e07c3de
C
149}
150
556ddc31 151function listVideoLicences (req: express.Request, res: express.Response) {
65fcc311 152 res.json(VIDEO_LICENCES)
6f0c39e2
C
153}
154
556ddc31 155function listVideoLanguages (req: express.Request, res: express.Response) {
65fcc311 156 res.json(VIDEO_LANGUAGES)
3092476e
C
157}
158
fd45e8f4
C
159function listVideoPrivacies (req: express.Request, res: express.Response) {
160 res.json(VIDEO_PRIVACIES)
161}
162
90d4bb81 163async function addVideo (req: express.Request, res: express.Response) {
8b917537
C
164 // Processing the video could be long
165 // Set timeout to 10 minutes
166 req.setTimeout(1000 * 60 * 10, () => {
167 logger.error('Upload video has timed out.')
168 return res.sendStatus(408)
169 })
170
90d4bb81 171 const videoPhysicalFile = req.files['videofile'][0]
556ddc31 172 const videoInfo: VideoCreate = req.body
9f10b292 173
e11f68a3
C
174 // Prepare data so we don't block the transaction
175 const videoData = {
176 name: videoInfo.name,
177 remote: false,
e11f68a3
C
178 category: videoInfo.category,
179 licence: videoInfo.licence,
180 language: videoInfo.language,
2186386c
C
181 commentsEnabled: videoInfo.commentsEnabled || false,
182 waitTranscoding: videoInfo.waitTranscoding || false,
183 state: CONFIG.TRANSCODING.ENABLED ? VideoState.TO_TRANSCODE : VideoState.PUBLISHED,
184 nsfw: videoInfo.nsfw || false,
e11f68a3 185 description: videoInfo.description,
2422c46b 186 support: videoInfo.support,
e11f68a3
C
187 privacy: videoInfo.privacy,
188 duration: videoPhysicalFile['duration'], // duration was added by a previous middleware
189 channelId: res.locals.videoChannel.id
190 }
3fd3ab2d 191 const video = new VideoModel(videoData)
2186386c 192 video.url = getVideoActivityPubUrl(video) // We use the UUID, so set the URL after building the object
eb080476 193
2186386c 194 // Build the file object
056aa7f2 195 const { videoFileResolution } = await getVideoFileResolution(videoPhysicalFile.path)
3a6f351b
C
196 const fps = await getVideoFileFPS(videoPhysicalFile.path)
197
e11f68a3
C
198 const videoFileData = {
199 extname: extname(videoPhysicalFile.filename),
056aa7f2 200 resolution: videoFileResolution,
3a6f351b
C
201 size: videoPhysicalFile.size,
202 fps
e11f68a3 203 }
3fd3ab2d 204 const videoFile = new VideoFileModel(videoFileData)
2186386c
C
205
206 // Move physical file
e11f68a3 207 const videoDir = CONFIG.STORAGE.VIDEOS_DIR
e11f68a3 208 const destination = join(videoDir, video.getVideoFilename(videoFile))
62689b94 209 await rename(videoPhysicalFile.path, destination)
e3a682a8
C
210 // This is important in case if there is another attempt in the retry process
211 videoPhysicalFile.filename = video.getVideoFilename(videoFile)
82815eb6 212 videoPhysicalFile.path = destination
ac81d1a0
C
213
214 // Process thumbnail or create it from the video
215 const thumbnailField = req.files['thumbnailfile']
216 if (thumbnailField) {
217 const thumbnailPhysicalFile = thumbnailField[0]
218 await processImage(thumbnailPhysicalFile, join(CONFIG.STORAGE.THUMBNAILS_DIR, video.getThumbnailName()), THUMBNAILS_SIZE)
219 } else {
220 await video.createThumbnail(videoFile)
221 }
93e1258c 222
ac81d1a0
C
223 // Process preview or create it from the video
224 const previewField = req.files['previewfile']
225 if (previewField) {
226 const previewPhysicalFile = previewField[0]
227 await processImage(previewPhysicalFile, join(CONFIG.STORAGE.PREVIEWS_DIR, video.getPreviewName()), PREVIEWS_SIZE)
228 } else {
229 await video.createPreview(videoFile)
230 }
eb080476 231
2186386c 232 // Create the torrent file
ac81d1a0 233 await video.createTorrentAndSetInfoHash(videoFile)
eb080476 234
94a5ff8a 235 const videoCreated = await sequelizeTypescript.transaction(async t => {
e11f68a3 236 const sequelizeOptions = { transaction: t }
eb080476 237
eb080476
C
238 const videoCreated = await video.save(sequelizeOptions)
239 // Do not forget to add video channel information to the created video
240 videoCreated.VideoChannel = res.locals.videoChannel
7920c273 241
eb080476 242 videoFile.videoId = video.id
eb080476 243 await videoFile.save(sequelizeOptions)
e11f68a3
C
244
245 video.VideoFiles = [ videoFile ]
93e1258c 246
2baea0c7 247 // Create tags
2efd32f6 248 if (videoInfo.tags !== undefined) {
3fd3ab2d 249 const tagInstances = await TagModel.findOrCreateTags(videoInfo.tags, t)
eb080476 250
3fd3ab2d 251 await video.$set('Tags', tagInstances, sequelizeOptions)
eb080476
C
252 video.Tags = tagInstances
253 }
254
2baea0c7
C
255 // Schedule an update in the future?
256 if (videoInfo.scheduleUpdate) {
257 await ScheduleVideoUpdateModel.create({
258 videoId: video.id,
259 updateAt: videoInfo.scheduleUpdate.updateAt,
260 privacy: videoInfo.scheduleUpdate.privacy || null
261 }, { transaction: t })
262 }
263
2186386c 264 await federateVideoIfNeeded(video, true, t)
eb080476 265
993cef4b 266 auditLogger.create(getAuditIdFromRes(res), new VideoAuditView(videoCreated.toFormattedDetailsJSON()))
cadb46d8
C
267 logger.info('Video with name %s and uuid %s created.', videoInfo.name, videoCreated.uuid)
268
269 return videoCreated
270 })
94a5ff8a 271
2186386c 272 if (video.state === VideoState.TO_TRANSCODE) {
94a5ff8a
C
273 // Put uuid because we don't have id auto incremented for now
274 const dataInput = {
0c948c16
C
275 videoUUID: videoCreated.uuid,
276 isNewVideo: true
94a5ff8a
C
277 }
278
279 await JobQueue.Instance.createJob({ type: 'video-file', payload: dataInput })
280 }
281
90d4bb81
C
282 return res.json({
283 video: {
284 id: videoCreated.id,
285 uuid: videoCreated.uuid
286 }
287 }).end()
ed04d94f
C
288}
289
eb080476 290async function updateVideo (req: express.Request, res: express.Response) {
3fd3ab2d 291 const videoInstance: VideoModel = res.locals.video
7f4e7c36 292 const videoFieldsSave = videoInstance.toJSON()
80e36cd9 293 const oldVideoAuditView = new VideoAuditView(videoInstance.toFormattedDetailsJSON())
556ddc31 294 const videoInfoToUpdate: VideoUpdate = req.body
fd45e8f4 295 const wasPrivateVideo = videoInstance.privacy === VideoPrivacy.PRIVATE
7b1f49de 296
ac81d1a0
C
297 // Process thumbnail or create it from the video
298 if (req.files && req.files['thumbnailfile']) {
299 const thumbnailPhysicalFile = req.files['thumbnailfile'][0]
300 await processImage(thumbnailPhysicalFile, join(CONFIG.STORAGE.THUMBNAILS_DIR, videoInstance.getThumbnailName()), THUMBNAILS_SIZE)
301 }
302
303 // Process preview or create it from the video
304 if (req.files && req.files['previewfile']) {
305 const previewPhysicalFile = req.files['previewfile'][0]
306 await processImage(previewPhysicalFile, join(CONFIG.STORAGE.PREVIEWS_DIR, videoInstance.getPreviewName()), PREVIEWS_SIZE)
307 }
308
eb080476 309 try {
3fd3ab2d 310 await sequelizeTypescript.transaction(async t => {
eb080476
C
311 const sequelizeOptions = {
312 transaction: t
313 }
0f320037 314 const oldVideoChannel = videoInstance.VideoChannel
7b1f49de 315
eb080476
C
316 if (videoInfoToUpdate.name !== undefined) videoInstance.set('name', videoInfoToUpdate.name)
317 if (videoInfoToUpdate.category !== undefined) videoInstance.set('category', videoInfoToUpdate.category)
318 if (videoInfoToUpdate.licence !== undefined) videoInstance.set('licence', videoInfoToUpdate.licence)
319 if (videoInfoToUpdate.language !== undefined) videoInstance.set('language', videoInfoToUpdate.language)
320 if (videoInfoToUpdate.nsfw !== undefined) videoInstance.set('nsfw', videoInfoToUpdate.nsfw)
2186386c 321 if (videoInfoToUpdate.waitTranscoding !== undefined) videoInstance.set('waitTranscoding', videoInfoToUpdate.waitTranscoding)
2422c46b 322 if (videoInfoToUpdate.support !== undefined) videoInstance.set('support', videoInfoToUpdate.support)
eb080476 323 if (videoInfoToUpdate.description !== undefined) videoInstance.set('description', videoInfoToUpdate.description)
47564bbe 324 if (videoInfoToUpdate.commentsEnabled !== undefined) videoInstance.set('commentsEnabled', videoInfoToUpdate.commentsEnabled)
2922e048
JLB
325 if (videoInfoToUpdate.privacy !== undefined) {
326 const newPrivacy = parseInt(videoInfoToUpdate.privacy.toString(), 10)
327 videoInstance.set('privacy', newPrivacy)
328
329 if (wasPrivateVideo === true && newPrivacy !== VideoPrivacy.PRIVATE) {
330 videoInstance.set('publishedAt', new Date())
331 }
332 }
7b1f49de 333
54141398 334 const videoInstanceUpdated = await videoInstance.save(sequelizeOptions)
7b1f49de 335
0f320037 336 // Video tags update?
2efd32f6 337 if (videoInfoToUpdate.tags !== undefined) {
3fd3ab2d 338 const tagInstances = await TagModel.findOrCreateTags(videoInfoToUpdate.tags, t)
7b1f49de 339
0f320037
C
340 await videoInstanceUpdated.$set('Tags', tagInstances, sequelizeOptions)
341 videoInstanceUpdated.Tags = tagInstances
eb080476 342 }
7920c273 343
0f320037
C
344 // Video channel update?
345 if (res.locals.videoChannel && videoInstanceUpdated.channelId !== res.locals.videoChannel.id) {
6200d8d9 346 await videoInstanceUpdated.$set('VideoChannel', res.locals.videoChannel, { transaction: t })
2186386c 347 videoInstanceUpdated.VideoChannel = res.locals.videoChannel
0f320037
C
348
349 if (wasPrivateVideo === false) await changeVideoChannelShare(videoInstanceUpdated, oldVideoChannel, t)
fd45e8f4
C
350 }
351
2baea0c7
C
352 // Schedule an update in the future?
353 if (videoInfoToUpdate.scheduleUpdate) {
354 await ScheduleVideoUpdateModel.upsert({
355 videoId: videoInstanceUpdated.id,
356 updateAt: videoInfoToUpdate.scheduleUpdate.updateAt,
357 privacy: videoInfoToUpdate.scheduleUpdate.privacy || null
358 }, { transaction: t })
e94fc297
C
359 } else if (videoInfoToUpdate.scheduleUpdate === null) {
360 await ScheduleVideoUpdateModel.deleteByVideoId(videoInstanceUpdated.id, t)
2baea0c7
C
361 }
362
2186386c 363 const isNewVideo = wasPrivateVideo && videoInstanceUpdated.privacy !== VideoPrivacy.PRIVATE
e94fc297 364 await federateVideoIfNeeded(videoInstanceUpdated, isNewVideo, t)
6fcd19ba 365
80e36cd9 366 auditLogger.update(
993cef4b 367 getAuditIdFromRes(res),
80e36cd9
AB
368 new VideoAuditView(videoInstanceUpdated.toFormattedDetailsJSON()),
369 oldVideoAuditView
370 )
371 logger.info('Video with name %s and uuid %s updated.', videoInstance.name, videoInstance.uuid)
372 })
eb080476 373 } catch (err) {
6fcd19ba
C
374 // Force fields we want to update
375 // If the transaction is retried, sequelize will think the object has not changed
376 // So it will skip the SQL request, even if the last one was ROLLBACKed!
eb080476 377 resetSequelizeInstance(videoInstance, videoFieldsSave)
6fcd19ba
C
378
379 throw err
eb080476 380 }
90d4bb81
C
381
382 return res.type('json').status(204).end()
9f10b292 383}
8c308c2b 384
1f3e9fec
C
385function getVideo (req: express.Request, res: express.Response) {
386 const videoInstance = res.locals.video
387
388 return res.json(videoInstance.toFormattedDetailsJSON())
389}
390
391async function viewVideo (req: express.Request, res: express.Response) {
818f7987 392 const videoInstance = res.locals.video
9e167724 393
490b595a 394 const ip = req.ip
6b616860 395 const exists = await Redis.Instance.isVideoIPViewExists(ip, videoInstance.uuid)
b5c0e955
C
396 if (exists) {
397 logger.debug('View for ip %s and video %s already exists.', ip, videoInstance.uuid)
398 return res.status(204).end()
399 }
400
6b616860
C
401 await Promise.all([
402 Redis.Instance.addVideoView(videoInstance.id),
403 Redis.Instance.setIPVideoView(ip, videoInstance.uuid)
404 ])
b5c0e955 405
a2377d15 406 const serverActor = await getServerActor()
40ff5707 407
a2377d15 408 await sendCreateView(serverActor, videoInstance, undefined)
9e167724 409
1f3e9fec 410 return res.status(204).end()
9f10b292 411}
8c308c2b 412
9567011b
C
413async function getVideoDescription (req: express.Request, res: express.Response) {
414 const videoInstance = res.locals.video
415 let description = ''
416
417 if (videoInstance.isOwned()) {
418 description = videoInstance.description
419 } else {
571389d4 420 description = await fetchRemoteVideoDescription(videoInstance)
9567011b
C
421 }
422
423 return res.json({ description })
424}
425
eb080476 426async function listVideos (req: express.Request, res: express.Response, next: express.NextFunction) {
48dce1c9
C
427 const resultList = await VideoModel.listForApi({
428 start: req.query.start,
429 count: req.query.count,
430 sort: req.query.sort,
06a05d5f 431 includeLocalVideos: true,
d525fc39
C
432 categoryOneOf: req.query.categoryOneOf,
433 licenceOneOf: req.query.licenceOneOf,
434 languageOneOf: req.query.languageOneOf,
435 tagsOneOf: req.query.tagsOneOf,
436 tagsAllOf: req.query.tagsAllOf,
437 nsfw: buildNSFWFilter(res, req.query.nsfw),
48dce1c9 438 filter: req.query.filter as VideoFilter,
6e46de09
C
439 withFiles: false,
440 userId: res.locals.oauth ? res.locals.oauth.token.User.id : undefined
48dce1c9 441 })
eb080476
C
442
443 return res.json(getFormattedObjects(resultList.data, resultList.total))
9f10b292 444}
c45f7f84 445
eb080476 446async function removeVideo (req: express.Request, res: express.Response) {
3fd3ab2d 447 const videoInstance: VideoModel = res.locals.video
91f6f169 448
3fd3ab2d 449 await sequelizeTypescript.transaction(async t => {
eb080476 450 await videoInstance.destroy({ transaction: t })
91f6f169 451 })
eb080476 452
993cef4b 453 auditLogger.delete(getAuditIdFromRes(res), new VideoAuditView(videoInstance.toFormattedDetailsJSON()))
eb080476 454 logger.info('Video with name %s and uuid %s deleted.', videoInstance.name, videoInstance.uuid)
90d4bb81
C
455
456 return res.type('json').status(204).end()
9f10b292 457}