]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - server/controllers/api/videos/captions.ts
Merge branch 'release/4.0.0' into develop
[github/Chocobozzz/PeerTube.git] / server / controllers / api / videos / captions.ts
1 import express from 'express'
2 import { MVideoCaption } from '@server/types/models'
3 import { HttpStatusCode } from '../../../../shared/models/http/http-error-codes'
4 import { moveAndProcessCaptionFile } from '../../../helpers/captions-utils'
5 import { createReqFiles } from '../../../helpers/express-utils'
6 import { logger } from '../../../helpers/logger'
7 import { getFormattedObjects } from '../../../helpers/utils'
8 import { CONFIG } from '../../../initializers/config'
9 import { MIMETYPES } from '../../../initializers/constants'
10 import { sequelizeTypescript } from '../../../initializers/database'
11 import { federateVideoIfNeeded } from '../../../lib/activitypub/videos'
12 import { asyncMiddleware, asyncRetryTransactionMiddleware, authenticate } from '../../../middlewares'
13 import { addVideoCaptionValidator, deleteVideoCaptionValidator, listVideoCaptionsValidator } from '../../../middlewares/validators'
14 import { VideoCaptionModel } from '../../../models/video/video-caption'
15 import { Hooks } from '@server/lib/plugins/hooks'
16
17 const reqVideoCaptionAdd = createReqFiles(
18 [ 'captionfile' ],
19 MIMETYPES.VIDEO_CAPTIONS.MIMETYPE_EXT,
20 {
21 captionfile: CONFIG.STORAGE.CAPTIONS_DIR
22 }
23 )
24
25 const videoCaptionsRouter = express.Router()
26
27 videoCaptionsRouter.get('/:videoId/captions',
28 asyncMiddleware(listVideoCaptionsValidator),
29 asyncMiddleware(listVideoCaptions)
30 )
31 videoCaptionsRouter.put('/:videoId/captions/:captionLanguage',
32 authenticate,
33 reqVideoCaptionAdd,
34 asyncMiddleware(addVideoCaptionValidator),
35 asyncRetryTransactionMiddleware(addVideoCaption)
36 )
37 videoCaptionsRouter.delete('/:videoId/captions/:captionLanguage',
38 authenticate,
39 asyncMiddleware(deleteVideoCaptionValidator),
40 asyncRetryTransactionMiddleware(deleteVideoCaption)
41 )
42
43 // ---------------------------------------------------------------------------
44
45 export {
46 videoCaptionsRouter
47 }
48
49 // ---------------------------------------------------------------------------
50
51 async function listVideoCaptions (req: express.Request, res: express.Response) {
52 const data = await VideoCaptionModel.listVideoCaptions(res.locals.onlyVideo.id)
53
54 return res.json(getFormattedObjects(data, data.length))
55 }
56
57 async function addVideoCaption (req: express.Request, res: express.Response) {
58 const videoCaptionPhysicalFile = req.files['captionfile'][0]
59 const video = res.locals.videoAll
60
61 const captionLanguage = req.params.captionLanguage
62
63 const videoCaption = new VideoCaptionModel({
64 videoId: video.id,
65 filename: VideoCaptionModel.generateCaptionName(captionLanguage),
66 language: captionLanguage
67 }) as MVideoCaption
68
69 // Move physical file
70 await moveAndProcessCaptionFile(videoCaptionPhysicalFile, videoCaption)
71
72 await sequelizeTypescript.transaction(async t => {
73 await VideoCaptionModel.insertOrReplaceLanguage(videoCaption, t)
74
75 // Update video update
76 await federateVideoIfNeeded(video, false, t)
77 })
78
79 Hooks.runAction('action:api.video-caption.created', { caption: videoCaption, req, res })
80
81 return res.status(HttpStatusCode.NO_CONTENT_204).end()
82 }
83
84 async function deleteVideoCaption (req: express.Request, res: express.Response) {
85 const video = res.locals.videoAll
86 const videoCaption = res.locals.videoCaption
87
88 await sequelizeTypescript.transaction(async t => {
89 await videoCaption.destroy({ transaction: t })
90
91 // Send video update
92 await federateVideoIfNeeded(video, false, t)
93 })
94
95 logger.info('Video caption %s of video %s deleted.', videoCaption.language, video.uuid)
96
97 Hooks.runAction('action:api.video-caption.deleted', { caption: videoCaption, req, res })
98
99 return res.type('json').status(HttpStatusCode.NO_CONTENT_204).end()
100 }