]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - server/controllers/api/videos/captions.ts
Add video caption created and deleted hooks
[github/Chocobozzz/PeerTube.git] / server / controllers / api / videos / captions.ts
... / ...
CommitLineData
1import express from 'express'
2import { MVideoCaption } from '@server/types/models'
3import { HttpStatusCode } from '../../../../shared/models/http/http-error-codes'
4import { moveAndProcessCaptionFile } from '../../../helpers/captions-utils'
5import { createReqFiles } from '../../../helpers/express-utils'
6import { logger } from '../../../helpers/logger'
7import { getFormattedObjects } from '../../../helpers/utils'
8import { CONFIG } from '../../../initializers/config'
9import { MIMETYPES } from '../../../initializers/constants'
10import { sequelizeTypescript } from '../../../initializers/database'
11import { federateVideoIfNeeded } from '../../../lib/activitypub/videos'
12import { asyncMiddleware, asyncRetryTransactionMiddleware, authenticate } from '../../../middlewares'
13import { addVideoCaptionValidator, deleteVideoCaptionValidator, listVideoCaptionsValidator } from '../../../middlewares/validators'
14import { VideoCaptionModel } from '../../../models/video/video-caption'
15import { Hooks } from '@server/lib/plugins/hooks'
16
17const reqVideoCaptionAdd = createReqFiles(
18 [ 'captionfile' ],
19 MIMETYPES.VIDEO_CAPTIONS.MIMETYPE_EXT,
20 {
21 captionfile: CONFIG.STORAGE.CAPTIONS_DIR
22 }
23)
24
25const videoCaptionsRouter = express.Router()
26
27videoCaptionsRouter.get('/:videoId/captions',
28 asyncMiddleware(listVideoCaptionsValidator),
29 asyncMiddleware(listVideoCaptions)
30)
31videoCaptionsRouter.put('/:videoId/captions/:captionLanguage',
32 authenticate,
33 reqVideoCaptionAdd,
34 asyncMiddleware(addVideoCaptionValidator),
35 asyncRetryTransactionMiddleware(addVideoCaption)
36)
37videoCaptionsRouter.delete('/:videoId/captions/:captionLanguage',
38 authenticate,
39 asyncMiddleware(deleteVideoCaptionValidator),
40 asyncRetryTransactionMiddleware(deleteVideoCaption)
41)
42
43// ---------------------------------------------------------------------------
44
45export {
46 videoCaptionsRouter
47}
48
49// ---------------------------------------------------------------------------
50
51async function listVideoCaptions (req: express.Request, res: express.Response) {
52 const data = await VideoCaptionModel.listVideoCaptions(res.locals.videoId.id)
53
54 return res.json(getFormattedObjects(data, data.length))
55}
56
57async 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
84async 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}