PeerTube/server/controllers/api/videos/captions.ts

96 lines
3.3 KiB
TypeScript
Raw Normal View History

2021-08-27 14:32:44 +02:00
import express from 'express'
2021-02-15 14:08:16 +01:00
import { MVideoCaption } from '@server/types/models'
2021-07-16 10:42:24 +02:00
import { HttpStatusCode } from '../../../../shared/models/http/http-error-codes'
2021-02-15 14:08:16 +01:00
import { moveAndProcessCaptionFile } from '../../../helpers/captions-utils'
2018-07-12 19:02:00 +02:00
import { createReqFiles } from '../../../helpers/express-utils'
import { logger } from '../../../helpers/logger'
2021-02-15 14:08:16 +01:00
import { getFormattedObjects } from '../../../helpers/utils'
2019-04-11 11:33:44 +02:00
import { CONFIG } from '../../../initializers/config'
2021-02-15 14:08:16 +01:00
import { MIMETYPES } from '../../../initializers/constants'
import { sequelizeTypescript } from '../../../initializers/database'
2021-02-15 14:08:16 +01:00
import { federateVideoIfNeeded } from '../../../lib/activitypub/videos'
import { asyncMiddleware, asyncRetryTransactionMiddleware, authenticate } from '../../../middlewares'
import { addVideoCaptionValidator, deleteVideoCaptionValidator, listVideoCaptionsValidator } from '../../../middlewares/validators'
import { VideoCaptionModel } from '../../../models/video/video-caption'
2018-07-12 19:02:00 +02:00
const reqVideoCaptionAdd = createReqFiles(
[ 'captionfile' ],
2018-12-11 14:52:50 +01:00
MIMETYPES.VIDEO_CAPTIONS.MIMETYPE_EXT,
2018-07-12 19:02:00 +02:00
{
captionfile: CONFIG.STORAGE.CAPTIONS_DIR
}
)
const videoCaptionsRouter = express.Router()
videoCaptionsRouter.get('/:videoId/captions',
asyncMiddleware(listVideoCaptionsValidator),
asyncMiddleware(listVideoCaptions)
)
videoCaptionsRouter.put('/:videoId/captions/:captionLanguage',
authenticate,
reqVideoCaptionAdd,
asyncMiddleware(addVideoCaptionValidator),
asyncRetryTransactionMiddleware(addVideoCaption)
)
videoCaptionsRouter.delete('/:videoId/captions/:captionLanguage',
authenticate,
asyncMiddleware(deleteVideoCaptionValidator),
asyncRetryTransactionMiddleware(deleteVideoCaption)
)
// ---------------------------------------------------------------------------
export {
videoCaptionsRouter
}
// ---------------------------------------------------------------------------
async function listVideoCaptions (req: express.Request, res: express.Response) {
2019-08-15 11:53:26 +02:00
const data = await VideoCaptionModel.listVideoCaptions(res.locals.videoId.id)
2018-07-12 19:02:00 +02:00
return res.json(getFormattedObjects(data, data.length))
}
async function addVideoCaption (req: express.Request, res: express.Response) {
const videoCaptionPhysicalFile = req.files['captionfile'][0]
2019-08-15 11:53:26 +02:00
const video = res.locals.videoAll
2018-07-12 19:02:00 +02:00
2021-02-15 14:08:16 +01:00
const captionLanguage = req.params.captionLanguage
2018-07-12 19:02:00 +02:00
const videoCaption = new VideoCaptionModel({
videoId: video.id,
2021-02-15 14:08:16 +01:00
filename: VideoCaptionModel.generateCaptionName(captionLanguage),
language: captionLanguage
}) as MVideoCaption
2018-07-12 19:02:00 +02:00
// Move physical file
2018-07-16 14:22:16 +02:00
await moveAndProcessCaptionFile(videoCaptionPhysicalFile, videoCaption)
2018-07-12 19:02:00 +02:00
await sequelizeTypescript.transaction(async t => {
2021-02-15 14:08:16 +01:00
await VideoCaptionModel.insertOrReplaceLanguage(videoCaption, t)
2018-07-12 19:02:00 +02:00
// Update video update
await federateVideoIfNeeded(video, false, t)
})
return res.status(HttpStatusCode.NO_CONTENT_204).end()
2018-07-12 19:02:00 +02:00
}
async function deleteVideoCaption (req: express.Request, res: express.Response) {
2019-08-15 11:53:26 +02:00
const video = res.locals.videoAll
2019-03-19 10:35:15 +01:00
const videoCaption = res.locals.videoCaption
2018-07-12 19:02:00 +02:00
await sequelizeTypescript.transaction(async t => {
await videoCaption.destroy({ transaction: t })
// Send video update
await federateVideoIfNeeded(video, false, t)
})
logger.info('Video caption %s of video %s deleted.', videoCaption.language, video.uuid)
return res.type('json').status(HttpStatusCode.NO_CONTENT_204).end()
2018-07-12 19:02:00 +02:00
}