aboutsummaryrefslogblamecommitdiffhomepage
path: root/server/middlewares/validators/shared/video-captions.ts
blob: 80f6c5a5246a1af7094c4914885b4999a2df8fd1 (plain) (tree)
1
2
3
4
5
6
7
8
9
                                  
                                                                      
                                               
                                                   
 
                                                                                         


                                                                                           



                                           











                                                                              
import { Response } from 'express'
import { VideoCaptionModel } from '@server/models/video/video-caption'
import { MVideoId } from '@server/types/models'
import { HttpStatusCode } from '@shared/core-utils'

async function doesVideoCaptionExist (video: MVideoId, language: string, res: Response) {
  const videoCaption = await VideoCaptionModel.loadByVideoIdAndLanguage(video.id, language)

  if (!videoCaption) {
    res.fail({
      status: HttpStatusCode.NOT_FOUND_404,
      message: 'Video caption not found'
    })
    return false
  }

  res.locals.videoCaption = videoCaption
  return true
}

// ---------------------------------------------------------------------------

export {
  doesVideoCaptionExist
}