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-11-20 09:43:39 +01: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 17:30:46 +01:00
|
|
|
import { areValidationErrors } from './utils'
|
2017-11-20 09:43:39 +01:00
|
|
|
import { getServerAccount } from '../../helpers/utils'
|
2017-11-20 11:19:23 +01:00
|
|
|
import { isIdOrUUIDValid } from '../../helpers/custom-validators/misc'
|
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') {
|
|
|
|
return res.status(400)
|
|
|
|
.json({
|
|
|
|
error: 'Cannot follow non HTTPS web server.'
|
|
|
|
})
|
|
|
|
.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-11-20 11:19:23 +01:00
|
|
|
param('accountId').custom(isIdOrUUIDValid).withMessage('Should have a valid account id'),
|
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) => {
|
2017-11-21 13:43:29 +01:00
|
|
|
logger.debug('Checking unfollow 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-11-27 17:30:46 +01:00
|
|
|
const serverAccount = await getServerAccount()
|
|
|
|
const follow = await db.AccountFollow.loadByAccountAndTarget(serverAccount.id, req.params.accountId)
|
2017-11-20 09:43:39 +01:00
|
|
|
|
2017-11-27 17:30:46 +01:00
|
|
|
if (!follow) {
|
|
|
|
return res.status(404)
|
|
|
|
.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,
|
|
|
|
removeFollowingValidator
|
|
|
|
}
|