]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/middlewares/validators/pods.ts
Fix lint
[github/Chocobozzz/PeerTube.git] / server / middlewares / validators / pods.ts
CommitLineData
b60e5f38 1import { body, param } from 'express-validator/check'
69818c93
C
2import * as express from 'express'
3
e02643f3 4import { database as db } from '../../initializers/database'
65fcc311 5import { checkErrors } from './utils'
8a02bd04 6import { logger, isEachUniqueHostValid } from '../../helpers'
65fcc311
C
7import { CONFIG } from '../../initializers'
8import { hasFriends } from '../../lib'
9import { isTestInstance } from '../../helpers'
9f10b292 10
b60e5f38
C
11const makeFriendsValidator = [
12 body('hosts').custom(isEachUniqueHostValid).withMessage('Should have an array of unique hosts'),
13
14 (req: express.Request, res: express.Response, next: express.NextFunction) => {
15 // Force https if the administrator wants to make friends
16 if (isTestInstance() === false && CONFIG.WEBSERVER.SCHEME === 'http') {
17 return res.status(400)
18 .json({
19 error: 'Cannot make friends with a non HTTPS web server.'
20 })
21 .end()
22 }
23
24 logger.debug('Checking makeFriends parameters', { parameters: req.body })
25
26 checkErrors(req, res, () => {
27 hasFriends()
28 .then(heHasFriends => {
29 if (heHasFriends === true) {
30 // We need to quit our friends before make new ones
31 return res.sendStatus(409)
32 }
33
34 return next()
35 })
36 .catch(err => {
37 logger.error('Cannot know if we have friends.', err)
38 res.sendStatus(500)
39 })
40 })
441b66f8 41 }
b60e5f38 42]
441b66f8 43
b60e5f38
C
44const podRemoveValidator = [
45 param('id').isNumeric().not().isEmpty().withMessage('Should have a valid id'),
46
47 (req: express.Request, res: express.Response, next: express.NextFunction) => {
48 logger.debug('Checking podRemoveValidator parameters', { parameters: req.params })
49
50 checkErrors(req, res, () => {
51 db.Pod.load(req.params.id)
52 .then(pod => {
53 if (!pod) {
54 logger.error('Cannot find pod %d.', req.params.id)
55 return res.sendStatus(404)
56 }
57
58 res.locals.pod = pod
59 return next()
60 })
61 .catch(err => {
62 logger.error('Cannot load pod %d.', req.params.id, err)
63 res.sendStatus(500)
64 })
65 })
66 }
67]
d5f5a670 68
9f10b292
C
69// ---------------------------------------------------------------------------
70
65fcc311
C
71export {
72 makeFriendsValidator,
d5f5a670 73 podRemoveValidator
65fcc311 74}