]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/helpers/custom-validators/video-channels.ts
Redirect to uuid video route after upload
[github/Chocobozzz/PeerTube.git] / server / helpers / custom-validators / video-channels.ts
CommitLineData
72c7248b
C
1import * as express from 'express'
2import 'express-validator'
3import 'multer'
4e50b6a1 4import * as validator from 'validator'
3fd3ab2d
C
5import { CONSTRAINTS_FIELDS } from '../../initializers'
6import { VideoChannelModel } from '../../models/video/video-channel'
4e50b6a1 7import { exists } from './misc'
72c7248b
C
8
9const VIDEO_CHANNELS_CONSTRAINTS_FIELDS = CONSTRAINTS_FIELDS.VIDEO_CHANNELS
10
11function isVideoChannelDescriptionValid (value: string) {
12 return value === null || validator.isLength(value, VIDEO_CHANNELS_CONSTRAINTS_FIELDS.DESCRIPTION)
13}
14
15function isVideoChannelNameValid (value: string) {
16 return exists(value) && validator.isLength(value, VIDEO_CHANNELS_CONSTRAINTS_FIELDS.NAME)
17}
18
a2431b7d 19async function isVideoChannelExist (id: string, res: express.Response) {
3fd3ab2d 20 let videoChannel: VideoChannelModel
4e50b6a1 21 if (validator.isInt(id)) {
3fd3ab2d 22 videoChannel = await VideoChannelModel.loadAndPopulateAccount(+id)
4e50b6a1 23 } else { // UUID
3fd3ab2d 24 videoChannel = await VideoChannelModel.loadByUUIDAndPopulateAccount(id)
4e50b6a1
C
25 }
26
27 if (!videoChannel) {
28 res.status(404)
29 .json({ error: 'Video channel not found' })
30 .end()
31
32 return false
33 }
34
35 res.locals.videoChannel = videoChannel
36 return true
37}
38
72c7248b
C
39// ---------------------------------------------------------------------------
40
41export {
42 isVideoChannelDescriptionValid,
4e50b6a1 43 isVideoChannelNameValid,
a2431b7d 44 isVideoChannelExist
72c7248b 45}