PeerTube/server/core/middlewares/validators/redundancy.ts

199 lines
5.8 KiB
TypeScript
Raw Normal View History

2021-08-27 14:32:44 +02:00
import express from 'express'
2020-01-10 10:11:28 +01:00
import { body, param, query } from 'express-validator'
import { forceNumber } from '@peertube/peertube-core-utils'
import { HttpStatusCode } from '@peertube/peertube-models'
import { isVideoRedundancyTarget } from '@server/helpers/custom-validators/video-redundancies.js'
import {
exists,
isBooleanValid,
isIdOrUUIDValid,
isIdValid,
toBooleanOrNull,
toCompleteUUID,
toIntOrNull
} from '../../helpers/custom-validators/misc.js'
import { isHostValid } from '../../helpers/custom-validators/servers.js'
import { VideoRedundancyModel } from '../../models/redundancy/video-redundancy.js'
import { ServerModel } from '../../models/server/server.js'
import { areValidationErrors, doesVideoExist, isValidVideoIdParam } from './shared/index.js'
2018-09-11 16:27:07 +02:00
2019-01-29 08:37:25 +01:00
const videoFileRedundancyGetValidator = [
isValidVideoIdParam('videoId'),
2018-09-11 16:27:07 +02:00
param('resolution')
.customSanitizer(toIntOrNull)
.custom(exists),
2018-09-11 16:27:07 +02:00
param('fps')
.optional()
.customSanitizer(toIntOrNull)
.custom(exists),
2018-09-11 16:27:07 +02:00
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
if (areValidationErrors(req, res)) return
2019-03-19 09:26:50 +01:00
if (!await doesVideoExist(req.params.videoId, res)) return
2018-09-11 16:27:07 +02:00
2019-08-15 11:53:26 +02:00
const video = res.locals.videoAll
2019-10-21 14:50:55 +02:00
const paramResolution = req.params.resolution as unknown as number // We casted to int above
const paramFPS = req.params.fps as unknown as number // We casted to int above
2018-09-11 16:27:07 +02:00
const videoFile = video.VideoFiles.find(f => {
2019-10-21 14:50:55 +02:00
return f.resolution === paramResolution && (!req.params.fps || paramFPS)
2018-09-11 16:27:07 +02:00
})
if (!videoFile) {
return res.fail({
status: HttpStatusCode.NOT_FOUND_404,
message: 'Video file not found.'
})
}
2018-09-11 16:27:07 +02:00
res.locals.videoFile = videoFile
const videoRedundancy = await VideoRedundancyModel.loadLocalByFileId(videoFile.id)
if (!videoRedundancy) {
return res.fail({
status: HttpStatusCode.NOT_FOUND_404,
message: 'Video redundancy not found.'
})
}
2019-01-29 08:37:25 +01:00
res.locals.videoRedundancy = videoRedundancy
return next()
}
]
const videoPlaylistRedundancyGetValidator = [
isValidVideoIdParam('videoId'),
2019-10-21 14:50:55 +02:00
param('streamingPlaylistType')
.customSanitizer(toIntOrNull)
.custom(exists),
2019-01-29 08:37:25 +01:00
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
if (areValidationErrors(req, res)) return
2019-03-19 09:26:50 +01:00
if (!await doesVideoExist(req.params.videoId, res)) return
2019-01-29 08:37:25 +01:00
2019-08-15 11:53:26 +02:00
const video = res.locals.videoAll
2019-10-21 14:50:55 +02:00
const paramPlaylistType = req.params.streamingPlaylistType as unknown as number // We casted to int above
const videoStreamingPlaylist = video.VideoStreamingPlaylists.find(p => p.type === paramPlaylistType)
2019-01-29 08:37:25 +01:00
if (!videoStreamingPlaylist) {
return res.fail({
status: HttpStatusCode.NOT_FOUND_404,
message: 'Video playlist not found.'
})
}
2019-01-29 08:37:25 +01:00
res.locals.videoStreamingPlaylist = videoStreamingPlaylist
const videoRedundancy = await VideoRedundancyModel.loadLocalByStreamingPlaylistId(videoStreamingPlaylist.id)
if (!videoRedundancy) {
return res.fail({
status: HttpStatusCode.NOT_FOUND_404,
message: 'Video redundancy not found.'
})
}
2018-09-11 16:27:07 +02:00
res.locals.videoRedundancy = videoRedundancy
return next()
}
]
const updateServerRedundancyValidator = [
param('host')
.custom(isHostValid),
2018-09-11 16:27:07 +02:00
body('redundancyAllowed')
2019-07-25 16:23:44 +02:00
.customSanitizer(toBooleanOrNull)
.custom(isBooleanValid).withMessage('Should have a valid redundancyAllowed boolean'),
2018-09-11 16:27:07 +02:00
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
if (areValidationErrors(req, res)) return
const server = await ServerModel.loadByHost(req.params.host)
if (!server) {
return res.fail({
status: HttpStatusCode.NOT_FOUND_404,
message: `Server ${req.params.host} not found.`
})
2018-09-11 16:27:07 +02:00
}
res.locals.server = server
return next()
}
]
2020-01-10 10:11:28 +01:00
const listVideoRedundanciesValidator = [
query('target')
.custom(isVideoRedundancyTarget),
2020-01-10 10:11:28 +01:00
2020-01-31 16:56:52 +01:00
(req: express.Request, res: express.Response, next: express.NextFunction) => {
2020-01-10 10:11:28 +01:00
if (areValidationErrors(req, res)) return
return next()
}
]
const addVideoRedundancyValidator = [
body('videoId')
.customSanitizer(toCompleteUUID)
.custom(isIdOrUUIDValid),
2020-01-10 10:11:28 +01:00
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
if (areValidationErrors(req, res)) return
if (!await doesVideoExist(req.body.videoId, res, 'only-video')) return
if (res.locals.onlyVideo.remote === false) {
return res.fail({ message: 'Cannot create a redundancy on a local video' })
}
if (res.locals.onlyVideo.isLive) {
return res.fail({ message: 'Cannot create a redundancy of a live video' })
2020-01-10 10:11:28 +01:00
}
const alreadyExists = await VideoRedundancyModel.isLocalByVideoUUIDExists(res.locals.onlyVideo.uuid)
if (alreadyExists) {
return res.fail({
status: HttpStatusCode.CONFLICT_409,
message: 'This video is already duplicated by your instance.'
})
2020-01-10 10:11:28 +01:00
}
return next()
}
]
const removeVideoRedundancyValidator = [
param('redundancyId')
.custom(isIdValid),
2020-01-10 10:11:28 +01:00
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
if (areValidationErrors(req, res)) return
const redundancy = await VideoRedundancyModel.loadByIdWithVideo(forceNumber(req.params.redundancyId))
2020-01-10 10:11:28 +01:00
if (!redundancy) {
return res.fail({
status: HttpStatusCode.NOT_FOUND_404,
message: 'Video redundancy not found'
})
2020-01-10 10:11:28 +01:00
}
res.locals.videoRedundancy = redundancy
return next()
}
]
2018-09-11 16:27:07 +02:00
// ---------------------------------------------------------------------------
export {
2019-01-29 08:37:25 +01:00
videoFileRedundancyGetValidator,
videoPlaylistRedundancyGetValidator,
2020-01-10 10:11:28 +01:00
updateServerRedundancyValidator,
listVideoRedundanciesValidator,
addVideoRedundancyValidator,
removeVideoRedundancyValidator
2018-09-11 16:27:07 +02:00
}