PeerTube/server/helpers/custom-validators/video-captions.ts

41 lines
1.5 KiB
TypeScript
Raw Normal View History

import { CONSTRAINTS_FIELDS, MIMETYPES, VIDEO_LANGUAGES } from '../../initializers/constants'
2018-07-12 19:02:00 +02:00
import { exists, isFileValid } from './misc'
import { Response } from 'express'
import { VideoModel } from '../../models/video/video'
import { VideoCaptionModel } from '../../models/video/video-caption'
function isVideoCaptionLanguageValid (value: any) {
return exists(value) && VIDEO_LANGUAGES[ value ] !== undefined
}
2018-12-11 14:52:50 +01:00
const videoCaptionTypes = Object.keys(MIMETYPES.VIDEO_CAPTIONS.MIMETYPE_EXT)
2018-08-06 11:45:24 +02:00
.concat([ 'application/octet-stream' ]) // MacOS sends application/octet-stream ><
.map(m => `(${m})`)
2018-07-16 14:22:16 +02:00
const videoCaptionTypesRegex = videoCaptionTypes.join('|')
2018-07-12 19:02:00 +02:00
function isVideoCaptionFile (files: { [ fieldname: string ]: Express.Multer.File[] } | Express.Multer.File[], field: string) {
2018-07-16 14:22:16 +02:00
return isFileValid(files, videoCaptionTypesRegex, field, CONSTRAINTS_FIELDS.VIDEO_CAPTIONS.CAPTION_FILE.FILE_SIZE.max)
2018-07-12 19:02:00 +02:00
}
2019-03-19 09:26:50 +01:00
async function doesVideoCaptionExist (video: VideoModel, language: string, res: Response) {
2018-07-12 19:02:00 +02:00
const videoCaption = await VideoCaptionModel.loadByVideoIdAndLanguage(video.id, language)
if (!videoCaption) {
res.status(404)
.json({ error: 'Video caption not found' })
.end()
return false
}
res.locals.videoCaption = videoCaption
return true
}
// ---------------------------------------------------------------------------
export {
isVideoCaptionFile,
isVideoCaptionLanguageValid,
2019-03-19 09:26:50 +01:00
doesVideoCaptionExist
2018-07-12 19:02:00 +02:00
}