2023-07-28 16:28:16 +02:00
|
|
|
import { Request, Response, UploadFilesForCheck } from 'express'
|
2023-05-22 17:04:39 +02:00
|
|
|
import { decode as magnetUriDecode } from 'magnet-uri'
|
2020-01-07 14:56:07 +01:00
|
|
|
import validator from 'validator'
|
2023-07-31 14:34:36 +02:00
|
|
|
import { HttpStatusCode, VideoIncludeType, VideoPrivacy, VideoPrivacyType, VideoRateType } from '@peertube/peertube-models'
|
|
|
|
import { getVideoWithAttributes } from '@server/helpers/video.js'
|
2017-12-12 17:53:50 +01:00
|
|
|
import {
|
2019-04-11 15:38:53 +02:00
|
|
|
CONSTRAINTS_FIELDS,
|
|
|
|
MIMETYPES,
|
2017-12-12 17:53:50 +01:00
|
|
|
VIDEO_CATEGORIES,
|
2018-06-07 09:43:18 +02:00
|
|
|
VIDEO_LICENCES,
|
2021-05-10 11:13:41 +02:00
|
|
|
VIDEO_LIVE,
|
2017-12-12 17:53:50 +01:00
|
|
|
VIDEO_PRIVACIES,
|
2018-06-12 20:04:58 +02:00
|
|
|
VIDEO_RATE_TYPES,
|
2021-05-10 11:13:41 +02:00
|
|
|
VIDEO_STATES
|
2023-07-31 14:34:36 +02:00
|
|
|
} from '../../initializers/constants.js'
|
|
|
|
import { exists, isArray, isDateValid, isFileValid } from './misc.js'
|
2017-05-15 22:22:03 +02:00
|
|
|
|
|
|
|
const VIDEOS_CONSTRAINTS_FIELDS = CONSTRAINTS_FIELDS.VIDEOS
|
2015-12-04 16:13:32 +01:00
|
|
|
|
2024-02-13 09:32:17 +01:00
|
|
|
export function isVideoIncludeValid (include: VideoIncludeType) {
|
2023-07-31 14:34:36 +02:00
|
|
|
return exists(include) && validator.default.isInt('' + include)
|
2021-10-27 14:37:04 +02:00
|
|
|
}
|
|
|
|
|
2024-02-13 09:32:17 +01:00
|
|
|
export function isVideoCategoryValid (value: any) {
|
2020-01-31 16:56:52 +01:00
|
|
|
return value === null || VIDEO_CATEGORIES[value] !== undefined
|
2018-06-12 20:04:58 +02:00
|
|
|
}
|
|
|
|
|
2024-02-13 09:32:17 +01:00
|
|
|
export function isVideoStateValid (value: any) {
|
2020-01-31 16:56:52 +01:00
|
|
|
return exists(value) && VIDEO_STATES[value] !== undefined
|
2017-03-22 21:15:55 +01:00
|
|
|
}
|
|
|
|
|
2024-02-13 09:32:17 +01:00
|
|
|
export function isVideoLicenceValid (value: any) {
|
2020-01-31 16:56:52 +01:00
|
|
|
return value === null || VIDEO_LICENCES[value] !== undefined
|
2017-03-27 20:53:11 +02:00
|
|
|
}
|
|
|
|
|
2024-02-13 09:32:17 +01:00
|
|
|
export function isVideoLanguageValid (value: any) {
|
2018-04-23 14:39:52 +02:00
|
|
|
return value === null ||
|
2023-07-31 14:34:36 +02:00
|
|
|
(typeof value === 'string' && validator.default.isLength(value, VIDEOS_CONSTRAINTS_FIELDS.LANGUAGE))
|
2017-04-07 12:13:37 +02:00
|
|
|
}
|
|
|
|
|
2024-02-13 09:32:17 +01:00
|
|
|
export function isVideoDurationValid (value: string) {
|
2023-07-31 14:34:36 +02:00
|
|
|
return exists(value) && validator.default.isInt(value + '', VIDEOS_CONSTRAINTS_FIELDS.DURATION)
|
2017-11-15 16:28:35 +01:00
|
|
|
}
|
|
|
|
|
2024-02-13 09:32:17 +01:00
|
|
|
export function isVideoDescriptionValid (value: string) {
|
2023-07-31 14:34:36 +02:00
|
|
|
return value === null || (exists(value) && validator.default.isLength(value, VIDEOS_CONSTRAINTS_FIELDS.DESCRIPTION))
|
2016-06-06 14:15:03 +02:00
|
|
|
}
|
|
|
|
|
2024-02-13 09:32:17 +01:00
|
|
|
export function isVideoSupportValid (value: string) {
|
2023-07-31 14:34:36 +02:00
|
|
|
return value === null || (exists(value) && validator.default.isLength(value, VIDEOS_CONSTRAINTS_FIELDS.SUPPORT))
|
2018-02-15 14:46:26 +01:00
|
|
|
}
|
|
|
|
|
2024-02-13 09:32:17 +01:00
|
|
|
export function isVideoNameValid (value: string) {
|
2023-07-31 14:34:36 +02:00
|
|
|
return exists(value) && validator.default.isLength(value, VIDEOS_CONSTRAINTS_FIELDS.NAME)
|
2016-06-06 14:15:03 +02:00
|
|
|
}
|
|
|
|
|
2024-02-13 09:32:17 +01:00
|
|
|
export function isVideoSourceFilenameValid (value: string) {
|
|
|
|
return exists(value) && validator.default.isLength(value, CONSTRAINTS_FIELDS.VIDEO_SOURCE.FILENAME)
|
|
|
|
}
|
|
|
|
|
|
|
|
export function isVideoTagValid (tag: string) {
|
2023-07-31 14:34:36 +02:00
|
|
|
return exists(tag) && validator.default.isLength(tag, VIDEOS_CONSTRAINTS_FIELDS.TAG)
|
2017-11-10 14:34:45 +01:00
|
|
|
}
|
|
|
|
|
2024-02-13 09:32:17 +01:00
|
|
|
export function areVideoTagsValid (tags: string[]) {
|
2018-05-16 09:28:18 +02:00
|
|
|
return tags === null || (
|
|
|
|
isArray(tags) &&
|
2023-07-31 14:34:36 +02:00
|
|
|
validator.default.isInt(tags.length.toString(), VIDEOS_CONSTRAINTS_FIELDS.TAGS) &&
|
2018-05-16 09:28:18 +02:00
|
|
|
tags.every(tag => isVideoTagValid(tag))
|
|
|
|
)
|
2016-06-06 14:15:03 +02:00
|
|
|
}
|
|
|
|
|
2024-02-13 09:32:17 +01:00
|
|
|
export function isVideoViewsValid (value: string) {
|
2023-07-31 14:34:36 +02:00
|
|
|
return exists(value) && validator.default.isInt(value + '', VIDEOS_CONSTRAINTS_FIELDS.VIEWS)
|
2017-02-21 21:35:59 +01:00
|
|
|
}
|
|
|
|
|
2022-08-17 15:36:03 +02:00
|
|
|
const ratingTypes = new Set(Object.values(VIDEO_RATE_TYPES))
|
2024-02-13 09:32:17 +01:00
|
|
|
export function isVideoRatingTypeValid (value: string) {
|
2022-08-17 15:36:03 +02:00
|
|
|
return value === 'none' || ratingTypes.has(value as VideoRateType)
|
2017-03-08 21:35:43 +01:00
|
|
|
}
|
|
|
|
|
2024-02-13 09:32:17 +01:00
|
|
|
export function isVideoFileExtnameValid (value: string) {
|
2020-09-17 09:20:52 +02:00
|
|
|
return exists(value) && (value === VIDEO_LIVE.EXTENSION || MIMETYPES.VIDEO.EXT_MIMETYPE[value] !== undefined)
|
2018-12-11 14:52:50 +01:00
|
|
|
}
|
2018-06-12 20:04:58 +02:00
|
|
|
|
2024-02-13 09:32:17 +01:00
|
|
|
export function isVideoFileMimeTypeValid (files: UploadFilesForCheck, field = 'videofile') {
|
2022-02-11 10:51:33 +01:00
|
|
|
return isFileValid({
|
|
|
|
files,
|
|
|
|
mimeTypeRegex: MIMETYPES.VIDEO.MIMETYPES_REGEX,
|
|
|
|
field,
|
|
|
|
maxSize: null
|
|
|
|
})
|
2018-02-13 18:17:05 +01:00
|
|
|
}
|
2017-02-10 11:27:14 +01:00
|
|
|
|
2018-02-13 18:17:05 +01:00
|
|
|
const videoImageTypes = CONSTRAINTS_FIELDS.VIDEOS.IMAGE.EXTNAME
|
2018-06-12 20:04:58 +02:00
|
|
|
.map(v => v.replace('.', ''))
|
|
|
|
.join('|')
|
2018-02-13 18:17:05 +01:00
|
|
|
const videoImageTypesRegex = `image/(${videoImageTypes})`
|
2018-06-12 20:04:58 +02:00
|
|
|
|
2024-02-13 09:32:17 +01:00
|
|
|
export function isVideoImageValid (files: UploadFilesForCheck, field: string, optional = true) {
|
2022-02-11 10:51:33 +01:00
|
|
|
return isFileValid({
|
|
|
|
files,
|
|
|
|
mimeTypeRegex: videoImageTypesRegex,
|
|
|
|
field,
|
|
|
|
maxSize: CONSTRAINTS_FIELDS.VIDEOS.IMAGE.FILE_SIZE.max,
|
|
|
|
optional
|
|
|
|
})
|
2017-02-10 11:27:14 +01:00
|
|
|
}
|
|
|
|
|
2024-02-13 09:32:17 +01:00
|
|
|
export function isVideoPrivacyValid (value: number) {
|
2020-01-31 16:56:52 +01:00
|
|
|
return VIDEO_PRIVACIES[value] !== undefined
|
2017-11-23 18:04:48 +01:00
|
|
|
}
|
|
|
|
|
2024-02-13 09:32:17 +01:00
|
|
|
export function isVideoReplayPrivacyValid (value: number) {
|
2023-06-29 09:48:55 +02:00
|
|
|
return VIDEO_PRIVACIES[value] !== undefined && value !== VideoPrivacy.PASSWORD_PROTECTED
|
|
|
|
}
|
|
|
|
|
2024-02-13 09:32:17 +01:00
|
|
|
export function isScheduleVideoUpdatePrivacyValid (value: number) {
|
2019-12-12 15:47:47 +01:00
|
|
|
return value === VideoPrivacy.UNLISTED || value === VideoPrivacy.PUBLIC || value === VideoPrivacy.INTERNAL
|
2018-06-14 18:06:56 +02:00
|
|
|
}
|
|
|
|
|
2024-02-13 09:32:17 +01:00
|
|
|
export function isVideoOriginallyPublishedAtValid (value: string | null) {
|
2019-01-12 14:45:23 +01:00
|
|
|
return value === null || isDateValid(value)
|
|
|
|
}
|
|
|
|
|
2024-02-13 09:32:17 +01:00
|
|
|
export function isVideoFileInfoHashValid (value: string | null | undefined) {
|
2023-07-31 14:34:36 +02:00
|
|
|
return exists(value) && validator.default.isLength(value, VIDEOS_CONSTRAINTS_FIELDS.INFO_HASH)
|
2017-08-25 11:36:23 +02:00
|
|
|
}
|
|
|
|
|
2024-02-13 09:32:17 +01:00
|
|
|
export function isVideoFileResolutionValid (value: string) {
|
2023-07-31 14:34:36 +02:00
|
|
|
return exists(value) && validator.default.isInt(value + '')
|
2017-11-23 18:04:48 +01:00
|
|
|
}
|
|
|
|
|
2024-02-13 09:32:17 +01:00
|
|
|
export function isVideoFPSResolutionValid (value: string) {
|
2023-07-31 14:34:36 +02:00
|
|
|
return value === null || validator.default.isInt(value + '')
|
2018-06-29 16:41:29 +02:00
|
|
|
}
|
|
|
|
|
2024-02-13 09:32:17 +01:00
|
|
|
export function isVideoFileSizeValid (value: string) {
|
2023-07-31 14:34:36 +02:00
|
|
|
return exists(value) && validator.default.isInt(value + '', VIDEOS_CONSTRAINTS_FIELDS.FILE_SIZE)
|
2017-11-23 17:53:38 +01:00
|
|
|
}
|
|
|
|
|
2024-02-13 09:32:17 +01:00
|
|
|
export function isVideoMagnetUriValid (value: string) {
|
2018-08-06 17:13:39 +02:00
|
|
|
if (!exists(value)) return false
|
|
|
|
|
2023-05-22 17:04:39 +02:00
|
|
|
const parsed = magnetUriDecode(value)
|
2018-08-06 17:13:39 +02:00
|
|
|
return parsed && isVideoFileInfoHashValid(parsed.infoHash)
|
|
|
|
}
|
|
|
|
|
2024-02-13 09:32:17 +01:00
|
|
|
export function isPasswordValid (password: string) {
|
2023-06-29 09:48:55 +02:00
|
|
|
return password.length >= CONSTRAINTS_FIELDS.VIDEO_PASSWORD.LENGTH.min &&
|
|
|
|
password.length < CONSTRAINTS_FIELDS.VIDEO_PASSWORD.LENGTH.max
|
|
|
|
}
|
|
|
|
|
2024-02-13 09:32:17 +01:00
|
|
|
export function isValidPasswordProtectedPrivacy (req: Request, res: Response) {
|
2023-06-29 09:48:55 +02:00
|
|
|
const fail = (message: string) => {
|
|
|
|
res.fail({
|
|
|
|
status: HttpStatusCode.BAD_REQUEST_400,
|
|
|
|
message
|
|
|
|
})
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2023-07-31 14:34:36 +02:00
|
|
|
let privacy: VideoPrivacyType
|
2023-06-29 09:48:55 +02:00
|
|
|
const video = getVideoWithAttributes(res)
|
|
|
|
|
|
|
|
if (exists(req.body?.privacy)) privacy = req.body.privacy
|
|
|
|
else if (exists(video?.privacy)) privacy = video.privacy
|
|
|
|
|
|
|
|
if (privacy !== VideoPrivacy.PASSWORD_PROTECTED) return true
|
|
|
|
|
|
|
|
if (!exists(req.body.videoPasswords) && !exists(req.body.passwords)) return fail('Video passwords are missing.')
|
|
|
|
|
|
|
|
const passwords = req.body.videoPasswords || req.body.passwords
|
|
|
|
|
|
|
|
if (passwords.length === 0) return fail('At least one video password is required.')
|
|
|
|
|
|
|
|
if (new Set(passwords).size !== passwords.length) return fail('Duplicate video passwords are not allowed.')
|
|
|
|
|
|
|
|
for (const password of passwords) {
|
|
|
|
if (typeof password !== 'string') {
|
|
|
|
return fail('Video password should be a string.')
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!isPasswordValid(password)) {
|
|
|
|
return fail('Invalid video password. Password length should be at least 2 characters and no more than 100 characters.')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true
|
|
|
|
}
|