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