1
0
Fork 0
peertube/server/middlewares/validators/follows.ts

59 lines
1.8 KiB
TypeScript
Raw Normal View History

2017-11-20 08:43:39 +00:00
import * as express from 'express'
2017-11-20 10:19:23 +00:00
import { body, param } from 'express-validator/check'
2017-11-20 08:43:39 +00:00
import { isTestInstance } from '../../helpers/core-utils'
import { isEachUniqueHostValid } from '../../helpers/custom-validators/servers'
import { logger } from '../../helpers/logger'
import { CONFIG, database as db } from '../../initializers'
2017-11-27 16:30:46 +00:00
import { areValidationErrors } from './utils'
2017-11-20 08:43:39 +00:00
import { getServerAccount } from '../../helpers/utils'
2017-11-20 10:19:23 +00:00
import { isIdOrUUIDValid } from '../../helpers/custom-validators/misc'
2017-11-20 08:43:39 +00:00
const followValidator = [
body('hosts').custom(isEachUniqueHostValid).withMessage('Should have an array of unique hosts'),
(req: express.Request, res: express.Response, next: express.NextFunction) => {
// Force https if the administrator wants to make friends
if (isTestInstance() === false && CONFIG.WEBSERVER.SCHEME === 'http') {
return res.status(400)
.json({
error: 'Cannot follow non HTTPS web server.'
})
.end()
}
logger.debug('Checking follow parameters', { parameters: req.body })
2017-11-27 16:30:46 +00:00
if (areValidationErrors(req, res)) return
return next()
2017-11-20 08:43:39 +00:00
}
]
const removeFollowingValidator = [
2017-11-20 10:19:23 +00:00
param('accountId').custom(isIdOrUUIDValid).withMessage('Should have a valid account id'),
2017-11-20 08:43:39 +00:00
2017-11-27 16:30:46 +00:00
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
2017-11-21 12:43:29 +00:00
logger.debug('Checking unfollow parameters', { parameters: req.params })
2017-11-20 08:43:39 +00:00
2017-11-27 16:30:46 +00:00
if (areValidationErrors(req, res)) return
2017-11-20 08:43:39 +00:00
2017-11-27 16:30:46 +00:00
const serverAccount = await getServerAccount()
const follow = await db.AccountFollow.loadByAccountAndTarget(serverAccount.id, req.params.accountId)
2017-11-20 08:43:39 +00:00
2017-11-27 16:30:46 +00:00
if (!follow) {
return res.status(404)
.end()
}
2017-11-20 08:43:39 +00:00
2017-11-27 16:30:46 +00:00
res.locals.follow = follow
return next()
2017-11-20 08:43:39 +00:00
}
]
// ---------------------------------------------------------------------------
export {
followValidator,
removeFollowingValidator
}