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

132 lines
4.3 KiB
TypeScript
Raw Normal View History

2017-11-20 08:43:39 +00:00
import * as express from 'express'
import { body, param, query } from 'express-validator'
2017-12-28 10:16:08 +00:00
import { isTestInstance } from '../../helpers/core-utils'
2017-12-14 16:38:41 +00:00
import { isEachUniqueHostValid, isHostValid } from '../../helpers/custom-validators/servers'
2017-12-28 10:16:08 +00:00
import { logger } from '../../helpers/logger'
import { SERVER_ACTOR_NAME, WEBSERVER } from '../../initializers/constants'
2017-12-14 16:38:41 +00:00
import { ActorFollowModel } from '../../models/activitypub/actor-follow'
2017-11-27 16:30:46 +00:00
import { areValidationErrors } from './utils'
import { ActorModel } from '../../models/activitypub/actor'
import { loadActorUrlOrGetFromWebfinger } from '../../helpers/webfinger'
import { isActorTypeValid, isValidActorHandle } from '../../helpers/custom-validators/activitypub/actor'
2019-08-15 09:53:26 +00:00
import { MActorFollowActorsDefault } from '@server/typings/models'
import { isFollowStateValid } from '@server/helpers/custom-validators/follows'
2020-04-23 07:32:53 +00:00
import { getServerActor } from '@server/models/application/application'
const listFollowsValidator = [
query('state')
.optional()
.custom(isFollowStateValid).withMessage('Should have a valid follow state'),
query('actorType')
.optional()
.custom(isActorTypeValid).withMessage('Should have a valid actor type'),
(req: express.Request, res: express.Response, next: express.NextFunction) => {
if (areValidationErrors(req, res)) return
return next()
}
]
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
2019-04-11 09:33:44 +00:00
if (isTestInstance() === false && WEBSERVER.SCHEME === 'http') {
return res.status(500)
2017-11-20 08:43:39 +00:00
.json({
2018-04-24 15:05:32 +00:00
error: 'Cannot follow on a non HTTPS web server.'
2017-11-20 08:43:39 +00:00
})
.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-12-14 16:38:41 +00:00
param('host').custom(isHostValid).withMessage('Should have a valid host'),
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) => {
logger.debug('Checking unfollowing 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-12-14 16:38:41 +00:00
const serverActor = await getServerActor()
2018-08-23 15:58:39 +00:00
const follow = await ActorFollowModel.loadByActorAndTargetNameAndHostForAPI(serverActor.id, SERVER_ACTOR_NAME, req.params.host)
2017-11-20 08:43:39 +00:00
2017-11-27 16:30:46 +00:00
if (!follow) {
2017-12-28 13:29:57 +00:00
return res
.status(404)
.json({
error: `Following ${req.params.host} not found.`
})
.end()
}
res.locals.follow = follow
return next()
}
]
const getFollowerValidator = [
param('nameWithHost').custom(isValidActorHandle).withMessage('Should have a valid nameWithHost'),
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
logger.debug('Checking get follower parameters', { parameters: req.params })
if (areValidationErrors(req, res)) return
2019-08-15 09:53:26 +00:00
let follow: MActorFollowActorsDefault
2019-04-08 12:04:57 +00:00
try {
const actorUrl = await loadActorUrlOrGetFromWebfinger(req.params.nameWithHost)
const actor = await ActorModel.loadByUrl(actorUrl)
2019-04-08 12:04:57 +00:00
const serverActor = await getServerActor()
follow = await ActorFollowModel.loadByActorAndTarget(actor.id, serverActor.id)
} catch (err) {
logger.warn('Cannot get actor from handle.', { handle: req.params.nameWithHost, err })
}
if (!follow) {
return res
.status(404)
.json({
error: `Follower ${req.params.nameWithHost} not found.`
2017-12-28 13:29:57 +00:00
})
2017-11-27 16:30:46 +00:00
.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
}
]
const acceptOrRejectFollowerValidator = [
(req: express.Request, res: express.Response, next: express.NextFunction) => {
logger.debug('Checking accept/reject follower parameters', { parameters: req.params })
const follow = res.locals.follow
if (follow.state !== 'pending') {
return res.status(400).json({ error: 'Follow is not in pending state.' }).end()
}
return next()
}
]
2017-11-20 08:43:39 +00:00
// ---------------------------------------------------------------------------
export {
followValidator,
removeFollowingValidator,
getFollowerValidator,
acceptOrRejectFollowerValidator,
listFollowsValidator
2017-11-20 08:43:39 +00:00
}