]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - server/controllers/api/videos/captions.ts
4008de60fc59c2a12ddf175383e63cdd218a26ab
[github/Chocobozzz/PeerTube.git] / server / controllers / api / videos / captions.ts
1 import * as 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
16 const reqVideoCaptionAdd = createReqFiles(
17 [ 'captionfile' ],
18 MIMETYPES.VIDEO_CAPTIONS.MIMETYPE_EXT,
19 {
20 captionfile: CONFIG.STORAGE.CAPTIONS_DIR
21 }
22 )
23
24 const videoCaptionsRouter = express.Router()
25
26 videoCaptionsRouter.get('/:videoId/captions',
27 asyncMiddleware(listVideoCaptionsValidator),
28 asyncMiddleware(listVideoCaptions)
29 )
30 videoCaptionsRouter.put('/:videoId/captions/:captionLanguage',
31 authenticate,
32 reqVideoCaptionAdd,
33 asyncMiddleware(addVideoCaptionValidator),
34 asyncRetryTransactionMiddleware(addVideoCaption)
35 )
36 videoCaptionsRouter.delete('/:videoId/captions/:captionLanguage',
37 authenticate,
38 asyncMiddleware(deleteVideoCaptionValidator),
39 asyncRetryTransactionMiddleware(deleteVideoCaption)
40 )
41
42 // ---------------------------------------------------------------------------
43
44 export {
45 videoCaptionsRouter
46 }
47
48 // ---------------------------------------------------------------------------
49
50 async function listVideoCaptions (req: express.Request, res: express.Response) {
51 const data = await VideoCaptionModel.listVideoCaptions(res.locals.videoId.id)
52
53 return res.json(getFormattedObjects(data, data.length))
54 }
55
56 async function addVideoCaption (req: express.Request, res: express.Response) {
57 const videoCaptionPhysicalFile = req.files['captionfile'][0]
58 const video = res.locals.videoAll
59
60 const captionLanguage = req.params.captionLanguage
61
62 const videoCaption = new VideoCaptionModel({
63 videoId: video.id,
64 filename: VideoCaptionModel.generateCaptionName(captionLanguage),
65 language: captionLanguage
66 }) as MVideoCaption
67
68 // Move physical file
69 await moveAndProcessCaptionFile(videoCaptionPhysicalFile, videoCaption)
70
71 await sequelizeTypescript.transaction(async t => {
72 await VideoCaptionModel.insertOrReplaceLanguage(videoCaption, t)
73
74 // Update video update
75 await federateVideoIfNeeded(video, false, t)
76 })
77
78 return res.status(HttpStatusCode.NO_CONTENT_204).end()
79 }
80
81 async function deleteVideoCaption (req: express.Request, res: express.Response) {
82 const video = res.locals.videoAll
83 const videoCaption = res.locals.videoCaption
84
85 await sequelizeTypescript.transaction(async t => {
86 await videoCaption.destroy({ transaction: t })
87
88 // Send video update
89 await federateVideoIfNeeded(video, false, t)
90 })
91
92 logger.info('Video caption %s of video %s deleted.', videoCaption.language, video.uuid)
93
94 return res.type('json').status(HttpStatusCode.NO_CONTENT_204).end()
95 }