]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/middlewares/validators/follows.ts
Add beautiful loading bar
[github/Chocobozzz/PeerTube.git] / server / middlewares / validators / follows.ts
CommitLineData
54141398 1import * as express from 'express'
7e9334c3 2import { body, param } from 'express-validator/check'
54141398 3import { isTestInstance } from '../../helpers/core-utils'
54141398
C
4import { isEachUniqueHostValid } from '../../helpers/custom-validators/servers'
5import { logger } from '../../helpers/logger'
6import { CONFIG, database as db } from '../../initializers'
a2431b7d 7import { areValidationErrors } from './utils'
54141398 8import { getServerAccount } from '../../helpers/utils'
7e9334c3 9import { isIdOrUUIDValid } from '../../helpers/custom-validators/misc'
54141398
C
10
11const followValidator = [
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 follow non HTTPS web server.'
20 })
21 .end()
22 }
23
24 logger.debug('Checking follow parameters', { parameters: req.body })
25
a2431b7d
C
26 if (areValidationErrors(req, res)) return
27
28 return next()
54141398
C
29 }
30]
31
32const removeFollowingValidator = [
7e9334c3 33 param('accountId').custom(isIdOrUUIDValid).withMessage('Should have a valid account id'),
54141398 34
a2431b7d 35 async (req: express.Request, res: express.Response, next: express.NextFunction) => {
0f91ae62 36 logger.debug('Checking unfollow parameters', { parameters: req.params })
54141398 37
a2431b7d 38 if (areValidationErrors(req, res)) return
54141398 39
a2431b7d
C
40 const serverAccount = await getServerAccount()
41 const follow = await db.AccountFollow.loadByAccountAndTarget(serverAccount.id, req.params.accountId)
54141398 42
a2431b7d
C
43 if (!follow) {
44 return res.status(404)
45 .end()
46 }
54141398 47
a2431b7d
C
48 res.locals.follow = follow
49 return next()
54141398
C
50 }
51]
52
53// ---------------------------------------------------------------------------
54
55export {
56 followValidator,
57 removeFollowingValidator
58}