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