2019-02-26 04:55:40 -05:00
|
|
|
import * as express from 'express'
|
2019-07-25 10:23:44 -04:00
|
|
|
import { body, param, query, ValidationChain } from 'express-validator'
|
2021-02-03 03:33:05 -05:00
|
|
|
import { ExpressPromiseHandler } from '@server/types/express'
|
|
|
|
import { MUserAccountId } from '@server/types/models'
|
2019-03-14 09:29:44 -04:00
|
|
|
import { UserRight, VideoPlaylistCreate, VideoPlaylistUpdate } from '../../../../shared'
|
2021-02-03 03:33:05 -05:00
|
|
|
import { HttpStatusCode } from '../../../../shared/core-utils/miscs/http-error-codes'
|
|
|
|
import { VideoPlaylistPrivacy } from '../../../../shared/models/videos/playlist/video-playlist-privacy.model'
|
|
|
|
import { VideoPlaylistType } from '../../../../shared/models/videos/playlist/video-playlist-type.model'
|
2019-07-25 10:23:44 -04:00
|
|
|
import {
|
|
|
|
isArrayOf,
|
|
|
|
isIdOrUUIDValid,
|
|
|
|
isIdValid,
|
|
|
|
isUUIDValid,
|
|
|
|
toIntArray,
|
|
|
|
toIntOrNull,
|
|
|
|
toValueOrNull
|
|
|
|
} from '../../../helpers/custom-validators/misc'
|
2019-02-26 04:55:40 -05:00
|
|
|
import {
|
2019-03-19 09:13:53 -04:00
|
|
|
isVideoPlaylistDescriptionValid,
|
2019-02-26 04:55:40 -05:00
|
|
|
isVideoPlaylistNameValid,
|
2019-03-05 04:58:44 -05:00
|
|
|
isVideoPlaylistPrivacyValid,
|
|
|
|
isVideoPlaylistTimestampValid,
|
|
|
|
isVideoPlaylistTypeValid
|
2019-02-26 04:55:40 -05:00
|
|
|
} from '../../../helpers/custom-validators/video-playlists'
|
2021-02-03 03:33:05 -05:00
|
|
|
import { isVideoImage } from '../../../helpers/custom-validators/videos'
|
2019-02-26 04:55:40 -05:00
|
|
|
import { cleanUpReqFiles } from '../../../helpers/express-utils'
|
2021-02-03 03:33:05 -05:00
|
|
|
import { logger } from '../../../helpers/logger'
|
2019-08-15 05:53:26 -04:00
|
|
|
import { doesVideoChannelIdExist, doesVideoExist, doesVideoPlaylistExist, VideoPlaylistFetchType } from '../../../helpers/middlewares'
|
2021-02-03 03:33:05 -05:00
|
|
|
import { CONSTRAINTS_FIELDS } from '../../../initializers/constants'
|
|
|
|
import { VideoPlaylistElementModel } from '../../../models/video/video-playlist-element'
|
2020-06-18 04:45:25 -04:00
|
|
|
import { MVideoPlaylist } from '../../../types/models/video/video-playlist'
|
2021-02-03 03:33:05 -05:00
|
|
|
import { authenticatePromiseIfNeeded } from '../../oauth'
|
|
|
|
import { areValidationErrors } from '../utils'
|
2019-02-26 04:55:40 -05:00
|
|
|
|
|
|
|
const videoPlaylistsAddValidator = getCommonPlaylistEditAttributes().concat([
|
2019-06-06 11:29:15 -04:00
|
|
|
body('displayName')
|
|
|
|
.custom(isVideoPlaylistNameValid).withMessage('Should have a valid display name'),
|
|
|
|
|
2019-02-26 04:55:40 -05:00
|
|
|
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
|
|
|
|
logger.debug('Checking videoPlaylistsAddValidator parameters', { parameters: req.body })
|
|
|
|
|
|
|
|
if (areValidationErrors(req, res)) return cleanUpReqFiles(req)
|
|
|
|
|
2019-03-14 09:29:44 -04:00
|
|
|
const body: VideoPlaylistCreate = req.body
|
2019-03-19 04:26:50 -04:00
|
|
|
if (body.videoChannelId && !await doesVideoChannelIdExist(body.videoChannelId, res)) return cleanUpReqFiles(req)
|
2019-03-14 09:29:44 -04:00
|
|
|
|
|
|
|
if (body.privacy === VideoPlaylistPrivacy.PUBLIC && !body.videoChannelId) {
|
|
|
|
cleanUpReqFiles(req)
|
2020-12-07 08:32:36 -05:00
|
|
|
return res.status(HttpStatusCode.BAD_REQUEST_400)
|
2019-03-14 09:29:44 -04:00
|
|
|
.json({ error: 'Cannot set "public" a playlist that is not assigned to a channel.' })
|
|
|
|
}
|
2019-02-26 04:55:40 -05:00
|
|
|
|
|
|
|
return next()
|
|
|
|
}
|
|
|
|
])
|
|
|
|
|
|
|
|
const videoPlaylistsUpdateValidator = getCommonPlaylistEditAttributes().concat([
|
|
|
|
param('playlistId')
|
|
|
|
.custom(isIdOrUUIDValid).withMessage('Should have a valid playlist id/uuid'),
|
|
|
|
|
2019-06-06 11:29:15 -04:00
|
|
|
body('displayName')
|
|
|
|
.optional()
|
|
|
|
.custom(isVideoPlaylistNameValid).withMessage('Should have a valid display name'),
|
|
|
|
|
2019-02-26 04:55:40 -05:00
|
|
|
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
|
|
|
|
logger.debug('Checking videoPlaylistsUpdateValidator parameters', { parameters: req.body })
|
|
|
|
|
|
|
|
if (areValidationErrors(req, res)) return cleanUpReqFiles(req)
|
|
|
|
|
2019-03-19 04:26:50 -04:00
|
|
|
if (!await doesVideoPlaylistExist(req.params.playlistId, res, 'all')) return cleanUpReqFiles(req)
|
2019-02-28 05:14:26 -05:00
|
|
|
|
2019-08-15 05:53:26 -04:00
|
|
|
const videoPlaylist = getPlaylist(res)
|
2019-02-28 05:14:26 -05:00
|
|
|
|
2019-08-15 05:53:26 -04:00
|
|
|
if (!checkUserCanManageVideoPlaylist(res.locals.oauth.token.User, videoPlaylist, UserRight.REMOVE_ANY_VIDEO_PLAYLIST, res)) {
|
2019-02-26 04:55:40 -05:00
|
|
|
return cleanUpReqFiles(req)
|
|
|
|
}
|
|
|
|
|
2019-03-14 09:29:44 -04:00
|
|
|
const body: VideoPlaylistUpdate = req.body
|
|
|
|
|
|
|
|
const newPrivacy = body.privacy || videoPlaylist.privacy
|
|
|
|
if (newPrivacy === VideoPlaylistPrivacy.PUBLIC &&
|
|
|
|
(
|
|
|
|
(!videoPlaylist.videoChannelId && !body.videoChannelId) ||
|
|
|
|
body.videoChannelId === null
|
|
|
|
)
|
|
|
|
) {
|
|
|
|
cleanUpReqFiles(req)
|
2020-12-07 08:32:36 -05:00
|
|
|
return res.status(HttpStatusCode.BAD_REQUEST_400)
|
2019-03-14 09:29:44 -04:00
|
|
|
.json({ error: 'Cannot set "public" a playlist that is not assigned to a channel.' })
|
|
|
|
}
|
|
|
|
|
2019-03-05 04:58:44 -05:00
|
|
|
if (videoPlaylist.type === VideoPlaylistType.WATCH_LATER) {
|
|
|
|
cleanUpReqFiles(req)
|
2020-12-07 08:32:36 -05:00
|
|
|
return res.status(HttpStatusCode.BAD_REQUEST_400)
|
2019-03-05 04:58:44 -05:00
|
|
|
.json({ error: 'Cannot update a watch later playlist.' })
|
|
|
|
}
|
|
|
|
|
2019-03-19 04:26:50 -04:00
|
|
|
if (body.videoChannelId && !await doesVideoChannelIdExist(body.videoChannelId, res)) return cleanUpReqFiles(req)
|
2019-02-26 04:55:40 -05:00
|
|
|
|
|
|
|
return next()
|
|
|
|
}
|
|
|
|
])
|
|
|
|
|
|
|
|
const videoPlaylistsDeleteValidator = [
|
|
|
|
param('playlistId')
|
|
|
|
.custom(isIdOrUUIDValid).withMessage('Should have a valid playlist id/uuid'),
|
|
|
|
|
|
|
|
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
|
|
|
|
logger.debug('Checking videoPlaylistsDeleteValidator parameters', { parameters: req.params })
|
|
|
|
|
|
|
|
if (areValidationErrors(req, res)) return
|
|
|
|
|
2019-03-19 04:26:50 -04:00
|
|
|
if (!await doesVideoPlaylistExist(req.params.playlistId, res)) return
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2019-08-15 05:53:26 -04:00
|
|
|
const videoPlaylist = getPlaylist(res)
|
2019-03-05 04:58:44 -05:00
|
|
|
if (videoPlaylist.type === VideoPlaylistType.WATCH_LATER) {
|
2020-12-07 08:32:36 -05:00
|
|
|
return res.status(HttpStatusCode.BAD_REQUEST_400)
|
2019-03-05 04:58:44 -05:00
|
|
|
.json({ error: 'Cannot delete a watch later playlist.' })
|
|
|
|
}
|
|
|
|
|
2019-08-15 05:53:26 -04:00
|
|
|
if (!checkUserCanManageVideoPlaylist(res.locals.oauth.token.User, videoPlaylist, UserRight.REMOVE_ANY_VIDEO_PLAYLIST, res)) {
|
2019-02-26 04:55:40 -05:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
return next()
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
2019-08-15 05:53:26 -04:00
|
|
|
const videoPlaylistsGetValidator = (fetchType: VideoPlaylistFetchType) => {
|
|
|
|
return [
|
|
|
|
param('playlistId')
|
|
|
|
.custom(isIdOrUUIDValid).withMessage('Should have a valid playlist id/uuid'),
|
2019-02-26 04:55:40 -05:00
|
|
|
|
2019-08-15 05:53:26 -04:00
|
|
|
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
|
|
|
|
logger.debug('Checking videoPlaylistsGetValidator parameters', { parameters: req.params })
|
2019-02-26 04:55:40 -05:00
|
|
|
|
2019-08-15 05:53:26 -04:00
|
|
|
if (areValidationErrors(req, res)) return
|
2019-02-26 04:55:40 -05:00
|
|
|
|
2019-08-15 05:53:26 -04:00
|
|
|
if (!await doesVideoPlaylistExist(req.params.playlistId, res, fetchType)) return
|
2019-02-26 04:55:40 -05:00
|
|
|
|
2019-08-15 05:53:26 -04:00
|
|
|
const videoPlaylist = res.locals.videoPlaylistFull || res.locals.videoPlaylistSummary
|
2019-02-28 05:14:26 -05:00
|
|
|
|
2019-08-15 05:53:26 -04:00
|
|
|
// Video is unlisted, check we used the uuid to fetch it
|
|
|
|
if (videoPlaylist.privacy === VideoPlaylistPrivacy.UNLISTED) {
|
|
|
|
if (isUUIDValid(req.params.playlistId)) return next()
|
2019-02-28 05:14:26 -05:00
|
|
|
|
2020-12-07 08:32:36 -05:00
|
|
|
return res.status(HttpStatusCode.NOT_FOUND_404).end()
|
2019-08-15 05:53:26 -04:00
|
|
|
}
|
2019-02-28 05:14:26 -05:00
|
|
|
|
2019-08-15 05:53:26 -04:00
|
|
|
if (videoPlaylist.privacy === VideoPlaylistPrivacy.PRIVATE) {
|
|
|
|
await authenticatePromiseIfNeeded(req, res)
|
2019-02-26 04:55:40 -05:00
|
|
|
|
2019-08-15 05:53:26 -04:00
|
|
|
const user = res.locals.oauth ? res.locals.oauth.token.User : null
|
2019-05-28 03:50:27 -04:00
|
|
|
|
2019-08-15 05:53:26 -04:00
|
|
|
if (
|
|
|
|
!user ||
|
|
|
|
(videoPlaylist.OwnerAccount.id !== user.Account.id && !user.hasRight(UserRight.UPDATE_ANY_VIDEO_PLAYLIST))
|
|
|
|
) {
|
2020-12-07 08:32:36 -05:00
|
|
|
return res.status(HttpStatusCode.FORBIDDEN_403)
|
2019-08-15 05:53:26 -04:00
|
|
|
.json({ error: 'Cannot get this private video playlist.' })
|
|
|
|
}
|
|
|
|
|
|
|
|
return next()
|
2019-02-26 04:55:40 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return next()
|
|
|
|
}
|
2019-08-15 05:53:26 -04:00
|
|
|
]
|
|
|
|
}
|
2019-02-26 04:55:40 -05:00
|
|
|
|
2019-12-26 05:52:46 -05:00
|
|
|
const videoPlaylistsSearchValidator = [
|
|
|
|
query('search').optional().not().isEmpty().withMessage('Should have a valid search'),
|
|
|
|
|
|
|
|
(req: express.Request, res: express.Response, next: express.NextFunction) => {
|
|
|
|
logger.debug('Checking videoPlaylists search query', { parameters: req.query })
|
|
|
|
|
|
|
|
if (areValidationErrors(req, res)) return
|
|
|
|
|
|
|
|
return next()
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
2019-02-26 04:55:40 -05:00
|
|
|
const videoPlaylistsAddVideoValidator = [
|
|
|
|
param('playlistId')
|
|
|
|
.custom(isIdOrUUIDValid).withMessage('Should have a valid playlist id/uuid'),
|
|
|
|
body('videoId')
|
|
|
|
.custom(isIdOrUUIDValid).withMessage('Should have a valid video id/uuid'),
|
|
|
|
body('startTimestamp')
|
|
|
|
.optional()
|
2019-03-05 04:58:44 -05:00
|
|
|
.custom(isVideoPlaylistTimestampValid).withMessage('Should have a valid start timestamp'),
|
2019-02-26 04:55:40 -05:00
|
|
|
body('stopTimestamp')
|
|
|
|
.optional()
|
2019-03-05 04:58:44 -05:00
|
|
|
.custom(isVideoPlaylistTimestampValid).withMessage('Should have a valid stop timestamp'),
|
2019-02-26 04:55:40 -05:00
|
|
|
|
|
|
|
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
|
|
|
|
logger.debug('Checking videoPlaylistsAddVideoValidator parameters', { parameters: req.params })
|
|
|
|
|
|
|
|
if (areValidationErrors(req, res)) return
|
|
|
|
|
2019-03-19 04:26:50 -04:00
|
|
|
if (!await doesVideoPlaylistExist(req.params.playlistId, res, 'all')) return
|
|
|
|
if (!await doesVideoExist(req.body.videoId, res, 'only-video')) return
|
2019-02-26 04:55:40 -05:00
|
|
|
|
2019-08-15 05:53:26 -04:00
|
|
|
const videoPlaylist = getPlaylist(res)
|
2019-02-26 04:55:40 -05:00
|
|
|
|
2019-08-15 05:53:26 -04:00
|
|
|
if (!checkUserCanManageVideoPlaylist(res.locals.oauth.token.User, videoPlaylist, UserRight.UPDATE_ANY_VIDEO_PLAYLIST, res)) {
|
2019-02-26 04:55:40 -05:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
return next()
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
|
|
|
const videoPlaylistsUpdateOrRemoveVideoValidator = [
|
|
|
|
param('playlistId')
|
|
|
|
.custom(isIdOrUUIDValid).withMessage('Should have a valid playlist id/uuid'),
|
2019-07-31 09:57:32 -04:00
|
|
|
param('playlistElementId')
|
|
|
|
.custom(isIdValid).withMessage('Should have an element id/uuid'),
|
2019-02-26 04:55:40 -05:00
|
|
|
body('startTimestamp')
|
|
|
|
.optional()
|
2019-03-05 04:58:44 -05:00
|
|
|
.custom(isVideoPlaylistTimestampValid).withMessage('Should have a valid start timestamp'),
|
2019-02-26 04:55:40 -05:00
|
|
|
body('stopTimestamp')
|
|
|
|
.optional()
|
2019-03-05 04:58:44 -05:00
|
|
|
.custom(isVideoPlaylistTimestampValid).withMessage('Should have a valid stop timestamp'),
|
2019-02-26 04:55:40 -05:00
|
|
|
|
|
|
|
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
|
|
|
|
logger.debug('Checking videoPlaylistsRemoveVideoValidator parameters', { parameters: req.params })
|
|
|
|
|
|
|
|
if (areValidationErrors(req, res)) return
|
|
|
|
|
2019-03-19 04:26:50 -04:00
|
|
|
if (!await doesVideoPlaylistExist(req.params.playlistId, res, 'all')) return
|
2019-02-26 04:55:40 -05:00
|
|
|
|
2019-08-15 05:53:26 -04:00
|
|
|
const videoPlaylist = getPlaylist(res)
|
2019-02-26 04:55:40 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
const videoPlaylistElement = await VideoPlaylistElementModel.loadById(req.params.playlistElementId)
|
2019-02-26 04:55:40 -05:00
|
|
|
if (!videoPlaylistElement) {
|
2020-12-07 08:32:36 -05:00
|
|
|
res.status(HttpStatusCode.NOT_FOUND_404)
|
2019-02-26 04:55:40 -05:00
|
|
|
.json({ error: 'Video playlist element not found' })
|
|
|
|
.end()
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
res.locals.videoPlaylistElement = videoPlaylistElement
|
|
|
|
|
|
|
|
if (!checkUserCanManageVideoPlaylist(res.locals.oauth.token.User, videoPlaylist, UserRight.UPDATE_ANY_VIDEO_PLAYLIST, res)) return
|
|
|
|
|
|
|
|
return next()
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
|
|
|
const videoPlaylistElementAPGetValidator = [
|
|
|
|
param('playlistId')
|
|
|
|
.custom(isIdOrUUIDValid).withMessage('Should have a valid playlist id/uuid'),
|
2020-08-17 10:39:32 -04:00
|
|
|
param('playlistElementId')
|
|
|
|
.custom(isIdValid).withMessage('Should have an playlist element id'),
|
2019-02-26 04:55:40 -05:00
|
|
|
|
|
|
|
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
|
|
|
|
logger.debug('Checking videoPlaylistElementAPGetValidator parameters', { parameters: req.params })
|
|
|
|
|
|
|
|
if (areValidationErrors(req, res)) return
|
|
|
|
|
2020-08-17 10:39:32 -04:00
|
|
|
const playlistElementId = parseInt(req.params.playlistElementId + '', 10)
|
|
|
|
const playlistId = req.params.playlistId
|
|
|
|
|
|
|
|
const videoPlaylistElement = await VideoPlaylistElementModel.loadByPlaylistAndElementIdForAP(playlistId, playlistElementId)
|
2019-02-26 04:55:40 -05:00
|
|
|
if (!videoPlaylistElement) {
|
2020-12-07 08:32:36 -05:00
|
|
|
res.status(HttpStatusCode.NOT_FOUND_404)
|
2019-02-26 04:55:40 -05:00
|
|
|
.json({ error: 'Video playlist element not found' })
|
|
|
|
.end()
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if (videoPlaylistElement.VideoPlaylist.privacy === VideoPlaylistPrivacy.PRIVATE) {
|
2020-12-07 08:32:36 -05:00
|
|
|
return res.status(HttpStatusCode.FORBIDDEN_403).end()
|
2019-02-26 04:55:40 -05:00
|
|
|
}
|
|
|
|
|
2019-08-21 08:31:57 -04:00
|
|
|
res.locals.videoPlaylistElementAP = videoPlaylistElement
|
2019-02-26 04:55:40 -05:00
|
|
|
|
|
|
|
return next()
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
|
|
|
const videoPlaylistsReorderVideosValidator = [
|
|
|
|
param('playlistId')
|
|
|
|
.custom(isIdOrUUIDValid).withMessage('Should have a valid playlist id/uuid'),
|
|
|
|
body('startPosition')
|
|
|
|
.isInt({ min: 1 }).withMessage('Should have a valid start position'),
|
|
|
|
body('insertAfterPosition')
|
|
|
|
.isInt({ min: 0 }).withMessage('Should have a valid insert after position'),
|
|
|
|
body('reorderLength')
|
|
|
|
.optional()
|
|
|
|
.isInt({ min: 1 }).withMessage('Should have a valid range length'),
|
|
|
|
|
|
|
|
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
|
|
|
|
logger.debug('Checking videoPlaylistsReorderVideosValidator parameters', { parameters: req.params })
|
|
|
|
|
|
|
|
if (areValidationErrors(req, res)) return
|
|
|
|
|
2019-03-19 04:26:50 -04:00
|
|
|
if (!await doesVideoPlaylistExist(req.params.playlistId, res, 'all')) return
|
2019-02-26 04:55:40 -05:00
|
|
|
|
2019-08-15 05:53:26 -04:00
|
|
|
const videoPlaylist = getPlaylist(res)
|
2019-02-26 04:55:40 -05:00
|
|
|
if (!checkUserCanManageVideoPlaylist(res.locals.oauth.token.User, videoPlaylist, UserRight.UPDATE_ANY_VIDEO_PLAYLIST, res)) return
|
|
|
|
|
2019-02-28 05:14:26 -05:00
|
|
|
const nextPosition = await VideoPlaylistElementModel.getNextPositionOf(videoPlaylist.id)
|
|
|
|
const startPosition: number = req.body.startPosition
|
|
|
|
const insertAfterPosition: number = req.body.insertAfterPosition
|
|
|
|
const reorderLength: number = req.body.reorderLength
|
|
|
|
|
|
|
|
if (startPosition >= nextPosition || insertAfterPosition >= nextPosition) {
|
2020-12-07 08:32:36 -05:00
|
|
|
res.status(HttpStatusCode.BAD_REQUEST_400)
|
2019-02-28 05:14:26 -05:00
|
|
|
.json({ error: `Start position or insert after position exceed the playlist limits (max: ${nextPosition - 1})` })
|
|
|
|
.end()
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if (reorderLength && reorderLength + startPosition > nextPosition) {
|
2020-12-07 08:32:36 -05:00
|
|
|
res.status(HttpStatusCode.BAD_REQUEST_400)
|
2019-02-28 05:14:26 -05:00
|
|
|
.json({ error: `Reorder length with this start position exceeds the playlist limits (max: ${nextPosition - startPosition})` })
|
|
|
|
.end()
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-02-26 04:55:40 -05:00
|
|
|
return next()
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
2019-03-05 04:58:44 -05:00
|
|
|
const commonVideoPlaylistFiltersValidator = [
|
|
|
|
query('playlistType')
|
|
|
|
.optional()
|
|
|
|
.custom(isVideoPlaylistTypeValid).withMessage('Should have a valid playlist type'),
|
|
|
|
|
|
|
|
(req: express.Request, res: express.Response, next: express.NextFunction) => {
|
|
|
|
logger.debug('Checking commonVideoPlaylistFiltersValidator parameters', { parameters: req.params })
|
|
|
|
|
|
|
|
if (areValidationErrors(req, res)) return
|
|
|
|
|
|
|
|
return next()
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
2019-03-07 11:06:00 -05:00
|
|
|
const doVideosInPlaylistExistValidator = [
|
|
|
|
query('videoIds')
|
|
|
|
.customSanitizer(toIntArray)
|
|
|
|
.custom(v => isArrayOf(v, isIdValid)).withMessage('Should have a valid video ids array'),
|
|
|
|
|
|
|
|
(req: express.Request, res: express.Response, next: express.NextFunction) => {
|
|
|
|
logger.debug('Checking areVideosInPlaylistExistValidator parameters', { parameters: req.query })
|
|
|
|
|
|
|
|
if (areValidationErrors(req, res)) return
|
|
|
|
|
|
|
|
return next()
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
2019-02-26 04:55:40 -05:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
|
|
|
videoPlaylistsAddValidator,
|
|
|
|
videoPlaylistsUpdateValidator,
|
|
|
|
videoPlaylistsDeleteValidator,
|
|
|
|
videoPlaylistsGetValidator,
|
2019-12-26 05:52:46 -05:00
|
|
|
videoPlaylistsSearchValidator,
|
2019-02-26 04:55:40 -05:00
|
|
|
|
|
|
|
videoPlaylistsAddVideoValidator,
|
|
|
|
videoPlaylistsUpdateOrRemoveVideoValidator,
|
|
|
|
videoPlaylistsReorderVideosValidator,
|
|
|
|
|
2019-03-05 04:58:44 -05:00
|
|
|
videoPlaylistElementAPGetValidator,
|
|
|
|
|
2019-03-07 11:06:00 -05:00
|
|
|
commonVideoPlaylistFiltersValidator,
|
|
|
|
|
|
|
|
doVideosInPlaylistExistValidator
|
2019-02-26 04:55:40 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
function getCommonPlaylistEditAttributes () {
|
|
|
|
return [
|
|
|
|
body('thumbnailfile')
|
2020-01-31 10:56:52 -05:00
|
|
|
.custom((value, { req }) => isVideoImage(req.files, 'thumbnailfile'))
|
|
|
|
.withMessage(
|
|
|
|
'This thumbnail file is not supported or too large. Please, make sure it is of the following type: ' +
|
|
|
|
CONSTRAINTS_FIELDS.VIDEO_PLAYLISTS.IMAGE.EXTNAME.join(', ')
|
|
|
|
),
|
2019-02-26 04:55:40 -05:00
|
|
|
|
|
|
|
body('description')
|
|
|
|
.optional()
|
|
|
|
.customSanitizer(toValueOrNull)
|
|
|
|
.custom(isVideoPlaylistDescriptionValid).withMessage('Should have a valid description'),
|
|
|
|
body('privacy')
|
|
|
|
.optional()
|
2019-07-25 10:23:44 -04:00
|
|
|
.customSanitizer(toIntOrNull)
|
2019-02-26 04:55:40 -05:00
|
|
|
.custom(isVideoPlaylistPrivacyValid).withMessage('Should have correct playlist privacy'),
|
|
|
|
body('videoChannelId')
|
|
|
|
.optional()
|
2019-07-25 10:23:44 -04:00
|
|
|
.customSanitizer(toIntOrNull)
|
2021-02-03 03:33:05 -05:00
|
|
|
] as (ValidationChain | ExpressPromiseHandler)[]
|
2019-02-26 04:55:40 -05:00
|
|
|
}
|
|
|
|
|
2019-08-15 05:53:26 -04:00
|
|
|
function checkUserCanManageVideoPlaylist (user: MUserAccountId, videoPlaylist: MVideoPlaylist, right: UserRight, res: express.Response) {
|
2019-02-26 04:55:40 -05:00
|
|
|
if (videoPlaylist.isOwned() === false) {
|
2020-12-07 08:32:36 -05:00
|
|
|
res.status(HttpStatusCode.FORBIDDEN_403)
|
2019-02-26 04:55:40 -05:00
|
|
|
.json({ error: 'Cannot manage video playlist of another server.' })
|
|
|
|
.end()
|
|
|
|
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check if the user can manage the video playlist
|
|
|
|
// The user can delete it if s/he is an admin
|
|
|
|
// Or if s/he is the video playlist's owner
|
|
|
|
if (user.hasRight(right) === false && videoPlaylist.ownerAccountId !== user.Account.id) {
|
2020-12-07 08:32:36 -05:00
|
|
|
res.status(HttpStatusCode.FORBIDDEN_403)
|
2019-02-26 04:55:40 -05:00
|
|
|
.json({ error: 'Cannot manage video playlist of another user' })
|
|
|
|
.end()
|
|
|
|
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
return true
|
|
|
|
}
|
2019-08-15 05:53:26 -04:00
|
|
|
|
|
|
|
function getPlaylist (res: express.Response) {
|
|
|
|
return res.locals.videoPlaylistFull || res.locals.videoPlaylistSummary
|
|
|
|
}
|