2021-08-27 08:32:44 -04:00
|
|
|
import express from 'express'
|
2020-01-10 04:11:28 -05:00
|
|
|
import { body, param, query } from 'express-validator'
|
2021-06-03 11:33:44 -04:00
|
|
|
import { isVideoRedundancyTarget } from '@server/helpers/custom-validators/video-redundancies'
|
2022-11-15 08:41:55 -05:00
|
|
|
import { forceNumber } from '@shared/core-utils'
|
2021-07-16 04:42:24 -04:00
|
|
|
import { HttpStatusCode } from '../../../shared/models/http/http-error-codes'
|
2021-06-28 11:30:59 -04:00
|
|
|
import {
|
|
|
|
exists,
|
|
|
|
isBooleanValid,
|
|
|
|
isIdOrUUIDValid,
|
|
|
|
isIdValid,
|
|
|
|
toBooleanOrNull,
|
|
|
|
toCompleteUUID,
|
|
|
|
toIntOrNull
|
|
|
|
} from '../../helpers/custom-validators/misc'
|
2021-06-03 11:33:44 -04:00
|
|
|
import { isHostValid } from '../../helpers/custom-validators/servers'
|
2018-09-11 10:27:07 -04:00
|
|
|
import { VideoRedundancyModel } from '../../models/redundancy/video-redundancy'
|
|
|
|
import { ServerModel } from '../../models/server/server'
|
2021-06-28 11:30:59 -04:00
|
|
|
import { areValidationErrors, doesVideoExist, isValidVideoIdParam } from './shared'
|
2018-09-11 10:27:07 -04:00
|
|
|
|
2019-01-29 02:37:25 -05:00
|
|
|
const videoFileRedundancyGetValidator = [
|
2021-06-28 11:30:59 -04:00
|
|
|
isValidVideoIdParam('videoId'),
|
|
|
|
|
2018-09-11 10:27:07 -04:00
|
|
|
param('resolution')
|
|
|
|
.customSanitizer(toIntOrNull)
|
2022-08-17 08:27:04 -04:00
|
|
|
.custom(exists),
|
2018-09-11 10:27:07 -04:00
|
|
|
param('fps')
|
|
|
|
.optional()
|
|
|
|
.customSanitizer(toIntOrNull)
|
2022-08-17 08:27:04 -04:00
|
|
|
.custom(exists),
|
2018-09-11 10:27:07 -04:00
|
|
|
|
|
|
|
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
|
|
|
|
if (areValidationErrors(req, res)) return
|
2019-03-19 04:26:50 -04:00
|
|
|
if (!await doesVideoExist(req.params.videoId, res)) return
|
2018-09-11 10:27:07 -04:00
|
|
|
|
2019-08-15 05:53:26 -04:00
|
|
|
const video = res.locals.videoAll
|
2019-10-21 08:50:55 -04: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 10:27:07 -04:00
|
|
|
const videoFile = video.VideoFiles.find(f => {
|
2019-10-21 08:50:55 -04:00
|
|
|
return f.resolution === paramResolution && (!req.params.fps || paramFPS)
|
2018-09-11 10:27:07 -04:00
|
|
|
})
|
|
|
|
|
2021-05-31 19:36:53 -04:00
|
|
|
if (!videoFile) {
|
|
|
|
return res.fail({
|
|
|
|
status: HttpStatusCode.NOT_FOUND_404,
|
|
|
|
message: 'Video file not found.'
|
|
|
|
})
|
|
|
|
}
|
2018-09-11 10:27:07 -04:00
|
|
|
res.locals.videoFile = videoFile
|
|
|
|
|
2018-10-01 03:41:48 -04:00
|
|
|
const videoRedundancy = await VideoRedundancyModel.loadLocalByFileId(videoFile.id)
|
2021-05-31 19:36:53 -04:00
|
|
|
if (!videoRedundancy) {
|
|
|
|
return res.fail({
|
|
|
|
status: HttpStatusCode.NOT_FOUND_404,
|
|
|
|
message: 'Video redundancy not found.'
|
|
|
|
})
|
|
|
|
}
|
2019-01-29 02:37:25 -05:00
|
|
|
res.locals.videoRedundancy = videoRedundancy
|
|
|
|
|
|
|
|
return next()
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
|
|
|
const videoPlaylistRedundancyGetValidator = [
|
2021-06-28 11:30:59 -04:00
|
|
|
isValidVideoIdParam('videoId'),
|
|
|
|
|
2019-10-21 08:50:55 -04:00
|
|
|
param('streamingPlaylistType')
|
|
|
|
.customSanitizer(toIntOrNull)
|
2022-08-17 08:27:04 -04:00
|
|
|
.custom(exists),
|
2019-01-29 02:37:25 -05:00
|
|
|
|
|
|
|
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
|
|
|
|
if (areValidationErrors(req, res)) return
|
2019-03-19 04:26:50 -04:00
|
|
|
if (!await doesVideoExist(req.params.videoId, res)) return
|
2019-01-29 02:37:25 -05:00
|
|
|
|
2019-08-15 05:53:26 -04:00
|
|
|
const video = res.locals.videoAll
|
2019-10-21 08:50:55 -04: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 02:37:25 -05:00
|
|
|
|
2021-05-31 19:36:53 -04:00
|
|
|
if (!videoStreamingPlaylist) {
|
|
|
|
return res.fail({
|
|
|
|
status: HttpStatusCode.NOT_FOUND_404,
|
|
|
|
message: 'Video playlist not found.'
|
|
|
|
})
|
|
|
|
}
|
2019-01-29 02:37:25 -05:00
|
|
|
res.locals.videoStreamingPlaylist = videoStreamingPlaylist
|
|
|
|
|
|
|
|
const videoRedundancy = await VideoRedundancyModel.loadLocalByStreamingPlaylistId(videoStreamingPlaylist.id)
|
2021-05-31 19:36:53 -04:00
|
|
|
if (!videoRedundancy) {
|
|
|
|
return res.fail({
|
|
|
|
status: HttpStatusCode.NOT_FOUND_404,
|
|
|
|
message: 'Video redundancy not found.'
|
|
|
|
})
|
|
|
|
}
|
2018-09-11 10:27:07 -04:00
|
|
|
res.locals.videoRedundancy = videoRedundancy
|
|
|
|
|
|
|
|
return next()
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
|
|
|
const updateServerRedundancyValidator = [
|
2022-08-17 08:27:04 -04:00
|
|
|
param('host')
|
|
|
|
.custom(isHostValid),
|
|
|
|
|
2018-09-11 10:27:07 -04:00
|
|
|
body('redundancyAllowed')
|
2019-07-25 10:23:44 -04:00
|
|
|
.customSanitizer(toBooleanOrNull)
|
2022-08-17 08:27:04 -04:00
|
|
|
.custom(isBooleanValid).withMessage('Should have a valid redundancyAllowed boolean'),
|
2018-09-11 10:27:07 -04: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) {
|
2021-05-31 19:36:53 -04:00
|
|
|
return res.fail({
|
|
|
|
status: HttpStatusCode.NOT_FOUND_404,
|
|
|
|
message: `Server ${req.params.host} not found.`
|
|
|
|
})
|
2018-09-11 10:27:07 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
res.locals.server = server
|
|
|
|
return next()
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
2020-01-10 04:11:28 -05:00
|
|
|
const listVideoRedundanciesValidator = [
|
|
|
|
query('target')
|
2022-08-17 08:27:04 -04:00
|
|
|
.custom(isVideoRedundancyTarget),
|
2020-01-10 04:11:28 -05:00
|
|
|
|
2020-01-31 10:56:52 -05:00
|
|
|
(req: express.Request, res: express.Response, next: express.NextFunction) => {
|
2020-01-10 04:11:28 -05:00
|
|
|
if (areValidationErrors(req, res)) return
|
|
|
|
|
|
|
|
return next()
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
|
|
|
const addVideoRedundancyValidator = [
|
|
|
|
body('videoId')
|
2021-06-28 11:30:59 -04:00
|
|
|
.customSanitizer(toCompleteUUID)
|
2022-08-17 08:27:04 -04:00
|
|
|
.custom(isIdOrUUIDValid),
|
2020-01-10 04:11:28 -05: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) {
|
2021-05-31 19:36:53 -04:00
|
|
|
return res.fail({ message: 'Cannot create a redundancy on a local video' })
|
2020-12-07 09:08:12 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
if (res.locals.onlyVideo.isLive) {
|
2021-05-31 19:36:53 -04:00
|
|
|
return res.fail({ message: 'Cannot create a redundancy of a live video' })
|
2020-01-10 04:11:28 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
const alreadyExists = await VideoRedundancyModel.isLocalByVideoUUIDExists(res.locals.onlyVideo.uuid)
|
|
|
|
if (alreadyExists) {
|
2021-05-31 19:36:53 -04:00
|
|
|
return res.fail({
|
|
|
|
status: HttpStatusCode.CONFLICT_409,
|
|
|
|
message: 'This video is already duplicated by your instance.'
|
|
|
|
})
|
2020-01-10 04:11:28 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return next()
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
|
|
|
const removeVideoRedundancyValidator = [
|
|
|
|
param('redundancyId')
|
2022-08-17 08:27:04 -04:00
|
|
|
.custom(isIdValid),
|
2020-01-10 04:11:28 -05:00
|
|
|
|
|
|
|
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
|
|
|
|
if (areValidationErrors(req, res)) return
|
|
|
|
|
2022-11-15 08:41:55 -05:00
|
|
|
const redundancy = await VideoRedundancyModel.loadByIdWithVideo(forceNumber(req.params.redundancyId))
|
2020-01-10 04:11:28 -05:00
|
|
|
if (!redundancy) {
|
2021-05-31 19:36:53 -04:00
|
|
|
return res.fail({
|
|
|
|
status: HttpStatusCode.NOT_FOUND_404,
|
|
|
|
message: 'Video redundancy not found'
|
|
|
|
})
|
2020-01-10 04:11:28 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
res.locals.videoRedundancy = redundancy
|
|
|
|
|
|
|
|
return next()
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
2018-09-11 10:27:07 -04:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
2019-01-29 02:37:25 -05:00
|
|
|
videoFileRedundancyGetValidator,
|
|
|
|
videoPlaylistRedundancyGetValidator,
|
2020-01-10 04:11:28 -05:00
|
|
|
updateServerRedundancyValidator,
|
|
|
|
listVideoRedundanciesValidator,
|
|
|
|
addVideoRedundancyValidator,
|
|
|
|
removeVideoRedundancyValidator
|
2018-09-11 10:27:07 -04:00
|
|
|
}
|