2017-11-20 09:43:39 +01:00
|
|
|
import * as express from 'express'
|
2017-11-20 11:19:23 +01:00
|
|
|
import { body, param } from 'express-validator/check'
|
2017-12-28 11:16:08 +01:00
|
|
|
import { isTestInstance } from '../../helpers/core-utils'
|
2017-12-14 17:38:41 +01:00
|
|
|
import { isEachUniqueHostValid, isHostValid } from '../../helpers/custom-validators/servers'
|
2017-12-28 11:16:08 +01:00
|
|
|
import { logger } from '../../helpers/logger'
|
|
|
|
import { getServerActor } from '../../helpers/utils'
|
2018-08-16 15:25:20 +02:00
|
|
|
import { CONFIG, SERVER_ACTOR_NAME } from '../../initializers'
|
2017-12-14 17:38:41 +01:00
|
|
|
import { ActorFollowModel } from '../../models/activitypub/actor-follow'
|
2017-11-27 17:30:46 +01:00
|
|
|
import { areValidationErrors } from './utils'
|
2019-04-08 11:52:29 +02:00
|
|
|
import { ActorModel } from '../../models/activitypub/actor'
|
|
|
|
import { loadActorUrlOrGetFromWebfinger } from '../../helpers/webfinger'
|
|
|
|
import { isValidActorHandle } from '../../helpers/custom-validators/activitypub/actor'
|
2017-11-20 09:43:39 +01: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') {
|
2018-07-27 10:13:19 +02:00
|
|
|
return res.status(500)
|
2017-11-20 09:43:39 +01:00
|
|
|
.json({
|
2018-04-24 17:05:32 +02:00
|
|
|
error: 'Cannot follow on a non HTTPS web server.'
|
2017-11-20 09:43:39 +01:00
|
|
|
})
|
|
|
|
.end()
|
|
|
|
}
|
|
|
|
|
|
|
|
logger.debug('Checking follow parameters', { parameters: req.body })
|
|
|
|
|
2017-11-27 17:30:46 +01:00
|
|
|
if (areValidationErrors(req, res)) return
|
|
|
|
|
|
|
|
return next()
|
2017-11-20 09:43:39 +01:00
|
|
|
}
|
|
|
|
]
|
|
|
|
|
|
|
|
const removeFollowingValidator = [
|
2017-12-14 17:38:41 +01:00
|
|
|
param('host').custom(isHostValid).withMessage('Should have a valid host'),
|
2017-11-20 09:43:39 +01:00
|
|
|
|
2017-11-27 17:30:46 +01:00
|
|
|
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
|
2019-04-08 11:52:29 +02:00
|
|
|
logger.debug('Checking unfollowing parameters', { parameters: req.params })
|
2017-11-20 09:43:39 +01:00
|
|
|
|
2017-11-27 17:30:46 +01:00
|
|
|
if (areValidationErrors(req, res)) return
|
2017-11-20 09:43:39 +01:00
|
|
|
|
2017-12-14 17:38:41 +01:00
|
|
|
const serverActor = await getServerActor()
|
2018-08-23 17:58:39 +02:00
|
|
|
const follow = await ActorFollowModel.loadByActorAndTargetNameAndHostForAPI(serverActor.id, SERVER_ACTOR_NAME, req.params.host)
|
2017-11-20 09:43:39 +01:00
|
|
|
|
2017-11-27 17:30:46 +01:00
|
|
|
if (!follow) {
|
2017-12-28 14:29:57 +01:00
|
|
|
return res
|
|
|
|
.status(404)
|
|
|
|
.json({
|
2019-04-08 11:52:29 +02:00
|
|
|
error: `Following ${req.params.host} not found.`
|
|
|
|
})
|
|
|
|
.end()
|
|
|
|
}
|
|
|
|
|
|
|
|
res.locals.follow = follow
|
|
|
|
return next()
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
|
|
|
const removeFollowerValidator = [
|
|
|
|
param('nameWithHost').custom(isValidActorHandle).withMessage('Should have a valid nameWithHost'),
|
|
|
|
|
|
|
|
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
|
|
|
|
logger.debug('Checking remove follower parameters', { parameters: req.params })
|
|
|
|
|
|
|
|
if (areValidationErrors(req, res)) return
|
|
|
|
|
2019-04-08 14:04:57 +02:00
|
|
|
let follow: ActorFollowModel
|
|
|
|
try {
|
|
|
|
const actorUrl = await loadActorUrlOrGetFromWebfinger(req.params.nameWithHost)
|
|
|
|
const actor = await ActorModel.loadByUrl(actorUrl)
|
2019-04-08 11:52:29 +02:00
|
|
|
|
2019-04-08 14:04:57 +02: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 })
|
|
|
|
}
|
2019-04-08 11:52:29 +02:00
|
|
|
|
|
|
|
if (!follow) {
|
|
|
|
return res
|
|
|
|
.status(404)
|
|
|
|
.json({
|
|
|
|
error: `Follower ${req.params.nameWithHost} not found.`
|
2017-12-28 14:29:57 +01:00
|
|
|
})
|
2017-11-27 17:30:46 +01:00
|
|
|
.end()
|
|
|
|
}
|
2017-11-20 09:43:39 +01:00
|
|
|
|
2017-11-27 17:30:46 +01:00
|
|
|
res.locals.follow = follow
|
|
|
|
return next()
|
2017-11-20 09:43:39 +01:00
|
|
|
}
|
|
|
|
]
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
|
|
|
followValidator,
|
2019-04-08 11:52:29 +02:00
|
|
|
removeFollowingValidator,
|
|
|
|
removeFollowerValidator
|
2017-11-20 09:43:39 +01:00
|
|
|
}
|