PeerTube/server/helpers/custom-validators/videos.ts

190 lines
5.3 KiB
TypeScript
Raw Normal View History

2017-05-15 22:22:03 +02:00
import { values } from 'lodash'
2017-06-05 21:53:49 +02:00
import * as validator from 'validator'
2017-06-11 15:19:43 +02:00
import 'multer'
2017-05-15 22:22:03 +02:00
import {
CONSTRAINTS_FIELDS,
VIDEO_CATEGORIES,
VIDEO_LICENCES,
VIDEO_LANGUAGES,
VIDEO_RATE_TYPES
} from '../../initializers'
import { isUserUsernameValid } from './users'
2017-06-10 22:15:25 +02:00
import { isArray, exists } from './misc'
2017-06-16 10:36:18 +02:00
import { VideoRateType } from '../../../shared'
2017-05-15 22:22:03 +02:00
const VIDEOS_CONSTRAINTS_FIELDS = CONSTRAINTS_FIELDS.VIDEOS
const VIDEO_ABUSES_CONSTRAINTS_FIELDS = CONSTRAINTS_FIELDS.VIDEO_ABUSES
const VIDEO_EVENTS_CONSTRAINTS_FIELDS = CONSTRAINTS_FIELDS.VIDEO_EVENTS
function isVideoIdOrUUIDValid (value: string) {
return validator.isInt(value) || isVideoUUIDValid(value)
}
2017-06-10 22:15:25 +02:00
function isVideoAuthorValid (value: string) {
2017-05-15 22:22:03 +02:00
return isUserUsernameValid(value)
2016-06-06 14:15:03 +02:00
}
2017-06-10 22:15:25 +02:00
function isVideoDateValid (value: string) {
return exists(value) && validator.isISO8601(value)
2016-06-06 14:15:03 +02:00
}
2017-06-10 22:15:25 +02:00
function isVideoCategoryValid (value: number) {
2017-05-15 22:22:03 +02:00
return VIDEO_CATEGORIES[value] !== undefined
2017-03-22 21:15:55 +01:00
}
2017-06-10 22:15:25 +02:00
function isVideoLicenceValid (value: number) {
2017-05-15 22:22:03 +02:00
return VIDEO_LICENCES[value] !== undefined
2017-03-27 20:53:11 +02:00
}
2017-06-10 22:15:25 +02:00
function isVideoLanguageValid (value: number) {
2017-05-15 22:22:03 +02:00
return value === null || VIDEO_LANGUAGES[value] !== undefined
2017-04-07 12:13:37 +02:00
}
2017-06-10 22:15:25 +02:00
function isVideoNSFWValid (value: any) {
return typeof value === 'boolean' || (typeof value === 'string' && validator.isBoolean(value))
2017-03-28 21:19:46 +02:00
}
2017-06-10 22:15:25 +02:00
function isVideoDescriptionValid (value: string) {
return exists(value) && validator.isLength(value, VIDEOS_CONSTRAINTS_FIELDS.DESCRIPTION)
2016-06-06 14:15:03 +02:00
}
2017-06-10 22:15:25 +02:00
function isVideoDurationValid (value: string) {
return exists(value) && validator.isInt(value + '', VIDEOS_CONSTRAINTS_FIELDS.DURATION)
2016-06-06 14:15:03 +02:00
}
2017-06-10 22:15:25 +02:00
function isVideoExtnameValid (value: string) {
2016-12-11 21:50:51 +01:00
return VIDEOS_CONSTRAINTS_FIELDS.EXTNAME.indexOf(value) !== -1
}
2017-06-10 22:15:25 +02:00
function isVideoInfoHashValid (value: string) {
return exists(value) && validator.isLength(value, VIDEOS_CONSTRAINTS_FIELDS.INFO_HASH)
2016-06-06 14:15:03 +02:00
}
2017-06-10 22:15:25 +02:00
function isVideoNameValid (value: string) {
return exists(value) && validator.isLength(value, VIDEOS_CONSTRAINTS_FIELDS.NAME)
2016-06-06 14:15:03 +02:00
}
2017-06-10 22:15:25 +02:00
function isVideoTagsValid (tags: string[]) {
2017-05-15 22:22:03 +02:00
return isArray(tags) &&
2017-06-10 22:15:25 +02:00
validator.isInt(tags.length.toString(), VIDEOS_CONSTRAINTS_FIELDS.TAGS) &&
2017-07-11 17:04:57 +02:00
tags.every(tag => {
2017-06-10 22:15:25 +02:00
return exists(tag) && validator.isLength(tag, VIDEOS_CONSTRAINTS_FIELDS.TAG)
2016-06-06 14:15:03 +02:00
})
}
2017-06-10 22:15:25 +02:00
function isVideoThumbnailValid (value: string) {
return exists(value) && validator.isLength(value, VIDEOS_CONSTRAINTS_FIELDS.THUMBNAIL)
}
2017-06-10 22:15:25 +02:00
function isVideoThumbnailDataValid (value: string) {
return exists(value) && validator.isByteLength(value, VIDEOS_CONSTRAINTS_FIELDS.THUMBNAIL_DATA)
2016-06-06 14:15:03 +02:00
}
function isVideoUUIDValid (value: string) {
return exists(value) && validator.isUUID('' + value, 4)
}
2017-06-10 22:15:25 +02:00
function isVideoAbuseReasonValid (value: string) {
return exists(value) && validator.isLength(value, VIDEO_ABUSES_CONSTRAINTS_FIELDS.REASON)
2016-07-31 20:58:43 +02:00
}
2017-06-10 22:15:25 +02:00
function isVideoAbuseReporterUsernameValid (value: string) {
2017-05-15 22:22:03 +02:00
return isUserUsernameValid(value)
}
2017-06-10 22:15:25 +02:00
function isVideoViewsValid (value: string) {
return exists(value) && validator.isInt(value + '', VIDEOS_CONSTRAINTS_FIELDS.VIEWS)
}
2017-06-10 22:15:25 +02:00
function isVideoLikesValid (value: string) {
return exists(value) && validator.isInt(value + '', VIDEOS_CONSTRAINTS_FIELDS.LIKES)
}
2017-06-10 22:15:25 +02:00
function isVideoDislikesValid (value: string) {
return exists(value) && validator.isInt(value + '', VIDEOS_CONSTRAINTS_FIELDS.DISLIKES)
2017-02-26 18:57:33 +01:00
}
2017-06-10 22:15:25 +02:00
function isVideoEventCountValid (value: string) {
return exists(value) && validator.isInt(value + '', VIDEO_EVENTS_CONSTRAINTS_FIELDS.COUNT)
}
2017-06-10 22:15:25 +02:00
function isVideoRatingTypeValid (value: string) {
2017-06-16 10:36:18 +02:00
return values(VIDEO_RATE_TYPES).indexOf(value as VideoRateType) !== -1
2017-03-08 21:35:43 +01:00
}
2017-06-10 22:15:25 +02:00
function isVideoFile (value: string, files: { [ fieldname: string ]: Express.Multer.File[] }) {
2017-02-10 11:27:14 +01:00
// Should have files
if (!files) return false
// Should have videofile file
const videofile = files.videofile
if (!videofile || videofile.length === 0) return false
// The file should exist
const file = videofile[0]
if (!file || !file.originalname) return false
return new RegExp('^video/(webm|mp4|ogg)$', 'i').test(file.mimetype)
}
2017-01-04 20:59:23 +01:00
// ---------------------------------------------------------------------------
2017-05-15 22:22:03 +02:00
export {
isVideoIdOrUUIDValid,
2017-05-15 22:22:03 +02:00
isVideoAuthorValid,
isVideoDateValid,
isVideoCategoryValid,
isVideoLicenceValid,
isVideoLanguageValid,
isVideoNSFWValid,
isVideoDescriptionValid,
isVideoDurationValid,
isVideoInfoHashValid,
isVideoNameValid,
isVideoTagsValid,
isVideoThumbnailValid,
isVideoThumbnailDataValid,
isVideoExtnameValid,
isVideoUUIDValid,
2017-05-15 22:22:03 +02:00
isVideoAbuseReasonValid,
isVideoAbuseReporterUsernameValid,
isVideoFile,
isVideoViewsValid,
isVideoLikesValid,
isVideoRatingTypeValid,
isVideoDislikesValid,
isVideoEventCountValid
}
2017-06-10 22:15:25 +02:00
declare global {
namespace ExpressValidator {
export interface Validator {
isVideoIdOrUUIDValid,
2017-06-10 22:15:25 +02:00
isVideoAuthorValid,
isVideoDateValid,
isVideoCategoryValid,
isVideoLicenceValid,
isVideoLanguageValid,
isVideoNSFWValid,
isVideoDescriptionValid,
isVideoDurationValid,
isVideoInfoHashValid,
isVideoNameValid,
isVideoTagsValid,
isVideoThumbnailValid,
isVideoThumbnailDataValid,
isVideoExtnameValid,
isVideoUUIDValid,
2017-06-10 22:15:25 +02:00
isVideoAbuseReasonValid,
isVideoAbuseReporterUsernameValid,
isVideoFile,
isVideoViewsValid,
isVideoLikesValid,
isVideoRatingTypeValid,
isVideoDislikesValid,
isVideoEventCountValid
}
}
}