]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/helpers/custom-validators/video-channels.ts
Update readme, architecture
[github/Chocobozzz/PeerTube.git] / server / helpers / custom-validators / video-channels.ts
CommitLineData
4e50b6a1 1import * as Bluebird from 'bluebird'
72c7248b
C
2import * as express from 'express'
3import 'express-validator'
4import 'multer'
4e50b6a1 5import * as validator from 'validator'
72c7248b 6
4e50b6a1 7import { CONSTRAINTS_FIELDS, database as db } from '../../initializers'
72c7248b
C
8import { VideoChannelInstance } from '../../models'
9import { logger } from '../logger'
e34c85e5 10import { isActivityPubUrlValid } from './index'
4e50b6a1 11import { exists } from './misc'
72c7248b
C
12
13const VIDEO_CHANNELS_CONSTRAINTS_FIELDS = CONSTRAINTS_FIELDS.VIDEO_CHANNELS
14
e34c85e5
C
15function isVideoChannelUrlValid (value: string) {
16 return isActivityPubUrlValid(value)
17}
18
72c7248b
C
19function isVideoChannelDescriptionValid (value: string) {
20 return value === null || validator.isLength(value, VIDEO_CHANNELS_CONSTRAINTS_FIELDS.DESCRIPTION)
21}
22
23function isVideoChannelNameValid (value: string) {
24 return exists(value) && validator.isLength(value, VIDEO_CHANNELS_CONSTRAINTS_FIELDS.NAME)
25}
26
72c7248b 27function checkVideoChannelExists (id: string, res: express.Response, callback: () => void) {
4e50b6a1 28 let promise: Bluebird<VideoChannelInstance>
72c7248b 29 if (validator.isInt(id)) {
38fa2065 30 promise = db.VideoChannel.loadAndPopulateAccount(+id)
72c7248b 31 } else { // UUID
38fa2065 32 promise = db.VideoChannel.loadByUUIDAndPopulateAccount(id)
72c7248b
C
33 }
34
35 promise.then(videoChannel => {
36 if (!videoChannel) {
37 return res.status(404)
38 .json({ error: 'Video channel not found' })
39 .end()
40 }
41
42 res.locals.videoChannel = videoChannel
43 callback()
44 })
45 .catch(err => {
46 logger.error('Error in video channel request validator.', err)
47 return res.sendStatus(500)
48 })
49}
50
4e50b6a1
C
51async function isVideoChannelExistsPromise (id: string, res: express.Response) {
52 let videoChannel: VideoChannelInstance
53 if (validator.isInt(id)) {
54 videoChannel = await db.VideoChannel.loadAndPopulateAccount(+id)
55 } else { // UUID
56 videoChannel = await db.VideoChannel.loadByUUIDAndPopulateAccount(id)
57 }
58
59 if (!videoChannel) {
60 res.status(404)
61 .json({ error: 'Video channel not found' })
62 .end()
63
64 return false
65 }
66
67 res.locals.videoChannel = videoChannel
68 return true
69}
70
72c7248b
C
71// ---------------------------------------------------------------------------
72
73export {
74 isVideoChannelDescriptionValid,
e34c85e5 75 checkVideoChannelExists,
4e50b6a1
C
76 isVideoChannelNameValid,
77 isVideoChannelExistsPromise,
e34c85e5 78 isVideoChannelUrlValid
72c7248b 79}