PeerTube/server/helpers/middlewares/video-captions.ts

26 lines
748 B
TypeScript
Raw Normal View History

2019-07-23 10:40:39 +02:00
import { Response } from 'express'
import { VideoCaptionModel } from '../../models/video/video-caption'
2020-06-18 10:45:25 +02:00
import { MVideoId } from '@server/types/models'
import { HttpStatusCode } from '../../../shared/core-utils/miscs/http-error-codes'
2019-07-23 10:40:39 +02:00
2019-08-15 11:53:26 +02:00
async function doesVideoCaptionExist (video: MVideoId, language: string, res: Response) {
2019-07-23 10:40:39 +02:00
const videoCaption = await VideoCaptionModel.loadByVideoIdAndLanguage(video.id, language)
if (!videoCaption) {
res.status(HttpStatusCode.NOT_FOUND_404)
2019-07-23 10:40:39 +02:00
.json({ error: 'Video caption not found' })
.end()
return false
}
res.locals.videoCaption = videoCaption
return true
}
// ---------------------------------------------------------------------------
export {
doesVideoCaptionExist
}