Add ability to manually approves instance followers in REST API
This commit is contained in:
parent
5b9c965d5a
commit
14893eb71c
|
@ -205,3 +205,5 @@ followers:
|
||||||
instance:
|
instance:
|
||||||
# Allow or not other instances to follow yours
|
# Allow or not other instances to follow yours
|
||||||
enabled: true
|
enabled: true
|
||||||
|
# Whether or not an administrator must manually validate a new follower
|
||||||
|
manual_approval: false
|
||||||
|
|
|
@ -222,3 +222,5 @@ followers:
|
||||||
instance:
|
instance:
|
||||||
# Allow or not other instances to follow yours
|
# Allow or not other instances to follow yours
|
||||||
enabled: true
|
enabled: true
|
||||||
|
# Whether or not an administrator must manually validate a new follower
|
||||||
|
manual_approval: false
|
||||||
|
|
|
@ -282,7 +282,8 @@ function customConfig (): CustomConfig {
|
||||||
},
|
},
|
||||||
followers: {
|
followers: {
|
||||||
instance: {
|
instance: {
|
||||||
enabled: CONFIG.FOLLOWERS.INSTANCE.ENABLED
|
enabled: CONFIG.FOLLOWERS.INSTANCE.ENABLED,
|
||||||
|
manualApproval: CONFIG.FOLLOWERS.INSTANCE.MANUAL_APPROVAL
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,7 +3,7 @@ import { UserRight } from '../../../../shared/models/users'
|
||||||
import { logger } from '../../../helpers/logger'
|
import { logger } from '../../../helpers/logger'
|
||||||
import { getFormattedObjects, getServerActor } from '../../../helpers/utils'
|
import { getFormattedObjects, getServerActor } from '../../../helpers/utils'
|
||||||
import { sequelizeTypescript, SERVER_ACTOR_NAME } from '../../../initializers'
|
import { sequelizeTypescript, SERVER_ACTOR_NAME } from '../../../initializers'
|
||||||
import { sendReject, sendUndoFollow } from '../../../lib/activitypub/send'
|
import { sendAccept, sendReject, sendUndoFollow } from '../../../lib/activitypub/send'
|
||||||
import {
|
import {
|
||||||
asyncMiddleware,
|
asyncMiddleware,
|
||||||
authenticate,
|
authenticate,
|
||||||
|
@ -14,10 +14,11 @@ import {
|
||||||
setDefaultSort
|
setDefaultSort
|
||||||
} from '../../../middlewares'
|
} from '../../../middlewares'
|
||||||
import {
|
import {
|
||||||
|
acceptOrRejectFollowerValidator,
|
||||||
followersSortValidator,
|
followersSortValidator,
|
||||||
followingSortValidator,
|
followingSortValidator,
|
||||||
followValidator,
|
followValidator,
|
||||||
removeFollowerValidator,
|
getFollowerValidator,
|
||||||
removeFollowingValidator
|
removeFollowingValidator
|
||||||
} from '../../../middlewares/validators'
|
} from '../../../middlewares/validators'
|
||||||
import { ActorFollowModel } from '../../../models/activitypub/actor-follow'
|
import { ActorFollowModel } from '../../../models/activitypub/actor-follow'
|
||||||
|
@ -59,8 +60,24 @@ serverFollowsRouter.get('/followers',
|
||||||
serverFollowsRouter.delete('/followers/:nameWithHost',
|
serverFollowsRouter.delete('/followers/:nameWithHost',
|
||||||
authenticate,
|
authenticate,
|
||||||
ensureUserHasRight(UserRight.MANAGE_SERVER_FOLLOW),
|
ensureUserHasRight(UserRight.MANAGE_SERVER_FOLLOW),
|
||||||
asyncMiddleware(removeFollowerValidator),
|
asyncMiddleware(getFollowerValidator),
|
||||||
asyncMiddleware(removeFollower)
|
asyncMiddleware(removeOrRejectFollower)
|
||||||
|
)
|
||||||
|
|
||||||
|
serverFollowsRouter.post('/followers/:nameWithHost/reject',
|
||||||
|
authenticate,
|
||||||
|
ensureUserHasRight(UserRight.MANAGE_SERVER_FOLLOW),
|
||||||
|
asyncMiddleware(getFollowerValidator),
|
||||||
|
acceptOrRejectFollowerValidator,
|
||||||
|
asyncMiddleware(removeOrRejectFollower)
|
||||||
|
)
|
||||||
|
|
||||||
|
serverFollowsRouter.post('/followers/:nameWithHost/accept',
|
||||||
|
authenticate,
|
||||||
|
ensureUserHasRight(UserRight.MANAGE_SERVER_FOLLOW),
|
||||||
|
asyncMiddleware(getFollowerValidator),
|
||||||
|
acceptOrRejectFollowerValidator,
|
||||||
|
asyncMiddleware(acceptFollower)
|
||||||
)
|
)
|
||||||
|
|
||||||
// ---------------------------------------------------------------------------
|
// ---------------------------------------------------------------------------
|
||||||
|
@ -136,7 +153,7 @@ async function removeFollowing (req: express.Request, res: express.Response) {
|
||||||
return res.status(204).end()
|
return res.status(204).end()
|
||||||
}
|
}
|
||||||
|
|
||||||
async function removeFollower (req: express.Request, res: express.Response) {
|
async function removeOrRejectFollower (req: express.Request, res: express.Response) {
|
||||||
const follow = res.locals.follow
|
const follow = res.locals.follow
|
||||||
|
|
||||||
await sendReject(follow.ActorFollower, follow.ActorFollowing)
|
await sendReject(follow.ActorFollower, follow.ActorFollowing)
|
||||||
|
@ -145,3 +162,14 @@ async function removeFollower (req: express.Request, res: express.Response) {
|
||||||
|
|
||||||
return res.status(204).end()
|
return res.status(204).end()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
async function acceptFollower (req: express.Request, res: express.Response) {
|
||||||
|
const follow = res.locals.follow
|
||||||
|
|
||||||
|
await sendAccept(follow)
|
||||||
|
|
||||||
|
follow.state = 'accepted'
|
||||||
|
await follow.save()
|
||||||
|
|
||||||
|
return res.status(204).end()
|
||||||
|
}
|
||||||
|
|
|
@ -25,7 +25,7 @@ function checkMissedConfig () {
|
||||||
'instance.name', 'instance.short_description', 'instance.description', 'instance.terms', 'instance.default_client_route',
|
'instance.name', 'instance.short_description', 'instance.description', 'instance.terms', 'instance.default_client_route',
|
||||||
'instance.is_nsfw', 'instance.default_nsfw_policy', 'instance.robots', 'instance.securitytxt',
|
'instance.is_nsfw', 'instance.default_nsfw_policy', 'instance.robots', 'instance.securitytxt',
|
||||||
'services.twitter.username', 'services.twitter.whitelisted',
|
'services.twitter.username', 'services.twitter.whitelisted',
|
||||||
'followers.instance.enabled'
|
'followers.instance.enabled', 'followers.instance.manual_approval'
|
||||||
]
|
]
|
||||||
const requiredAlternatives = [
|
const requiredAlternatives = [
|
||||||
[ // set
|
[ // set
|
||||||
|
|
|
@ -327,7 +327,8 @@ const CONFIG = {
|
||||||
},
|
},
|
||||||
FOLLOWERS: {
|
FOLLOWERS: {
|
||||||
INSTANCE: {
|
INSTANCE: {
|
||||||
get ENABLED () { return config.get<boolean>('followers.instance.enabled') }
|
get ENABLED () { return config.get<boolean>('followers.instance.enabled') },
|
||||||
|
get MANUAL_APPROVAL () { return config.get<boolean>('followers.instance.manual_approval') }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -32,6 +32,8 @@ async function processFollow (actor: ActorModel, targetActorURL: string) {
|
||||||
|
|
||||||
const serverActor = await getServerActor()
|
const serverActor = await getServerActor()
|
||||||
if (targetActor.id === serverActor.id && CONFIG.FOLLOWERS.INSTANCE.ENABLED === false) {
|
if (targetActor.id === serverActor.id && CONFIG.FOLLOWERS.INSTANCE.ENABLED === false) {
|
||||||
|
logger.info('Rejecting %s because instance followers are disabled.', targetActor.url)
|
||||||
|
|
||||||
return sendReject(actor, targetActor)
|
return sendReject(actor, targetActor)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -43,7 +45,7 @@ async function processFollow (actor: ActorModel, targetActorURL: string) {
|
||||||
defaults: {
|
defaults: {
|
||||||
actorId: actor.id,
|
actorId: actor.id,
|
||||||
targetActorId: targetActor.id,
|
targetActorId: targetActor.id,
|
||||||
state: 'accepted'
|
state: CONFIG.FOLLOWERS.INSTANCE.MANUAL_APPROVAL ? 'pending' : 'accepted'
|
||||||
},
|
},
|
||||||
transaction: t
|
transaction: t
|
||||||
})
|
})
|
||||||
|
@ -51,7 +53,7 @@ async function processFollow (actor: ActorModel, targetActorURL: string) {
|
||||||
actorFollow.ActorFollower = actor
|
actorFollow.ActorFollower = actor
|
||||||
actorFollow.ActorFollowing = targetActor
|
actorFollow.ActorFollowing = targetActor
|
||||||
|
|
||||||
if (actorFollow.state !== 'accepted') {
|
if (actorFollow.state !== 'accepted' && CONFIG.FOLLOWERS.INSTANCE.MANUAL_APPROVAL === false) {
|
||||||
actorFollow.state = 'accepted'
|
actorFollow.state = 'accepted'
|
||||||
await actorFollow.save({ transaction: t })
|
await actorFollow.save({ transaction: t })
|
||||||
}
|
}
|
||||||
|
@ -60,7 +62,7 @@ async function processFollow (actor: ActorModel, targetActorURL: string) {
|
||||||
actorFollow.ActorFollowing = targetActor
|
actorFollow.ActorFollowing = targetActor
|
||||||
|
|
||||||
// Target sends to actor he accepted the follow request
|
// Target sends to actor he accepted the follow request
|
||||||
await sendAccept(actorFollow)
|
if (actorFollow.state === 'accepted') await sendAccept(actorFollow)
|
||||||
|
|
||||||
return { actorFollow, created }
|
return { actorFollow, created }
|
||||||
})
|
})
|
||||||
|
|
|
@ -44,6 +44,9 @@ const customConfigUpdateValidator = [
|
||||||
body('import.videos.http.enabled').isBoolean().withMessage('Should have a valid import video http enabled boolean'),
|
body('import.videos.http.enabled').isBoolean().withMessage('Should have a valid import video http enabled boolean'),
|
||||||
body('import.videos.torrent.enabled').isBoolean().withMessage('Should have a valid import video torrent enabled boolean'),
|
body('import.videos.torrent.enabled').isBoolean().withMessage('Should have a valid import video torrent enabled boolean'),
|
||||||
|
|
||||||
|
body('followers.instance.enabled').isBoolean().withMessage('Should have a valid followers of instance boolean'),
|
||||||
|
body('followers.instance.manualApproval').isBoolean().withMessage('Should have a valid manual approval boolean'),
|
||||||
|
|
||||||
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
|
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
|
||||||
logger.debug('Checking customConfigUpdateValidator parameters', { parameters: req.body })
|
logger.debug('Checking customConfigUpdateValidator parameters', { parameters: req.body })
|
||||||
|
|
||||||
|
|
|
@ -57,11 +57,11 @@ const removeFollowingValidator = [
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
||||||
const removeFollowerValidator = [
|
const getFollowerValidator = [
|
||||||
param('nameWithHost').custom(isValidActorHandle).withMessage('Should have a valid nameWithHost'),
|
param('nameWithHost').custom(isValidActorHandle).withMessage('Should have a valid nameWithHost'),
|
||||||
|
|
||||||
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
|
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
|
||||||
logger.debug('Checking remove follower parameters', { parameters: req.params })
|
logger.debug('Checking get follower parameters', { parameters: req.params })
|
||||||
|
|
||||||
if (areValidationErrors(req, res)) return
|
if (areValidationErrors(req, res)) return
|
||||||
|
|
||||||
|
@ -90,10 +90,24 @@ const removeFollowerValidator = [
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
||||||
|
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()
|
||||||
|
}
|
||||||
|
]
|
||||||
|
|
||||||
// ---------------------------------------------------------------------------
|
// ---------------------------------------------------------------------------
|
||||||
|
|
||||||
export {
|
export {
|
||||||
followValidator,
|
followValidator,
|
||||||
removeFollowingValidator,
|
removeFollowingValidator,
|
||||||
removeFollowerValidator
|
getFollowerValidator,
|
||||||
|
acceptOrRejectFollowerValidator
|
||||||
}
|
}
|
||||||
|
|
|
@ -90,7 +90,8 @@ describe('Test config API validators', function () {
|
||||||
},
|
},
|
||||||
followers: {
|
followers: {
|
||||||
instance: {
|
instance: {
|
||||||
enabled: false
|
enabled: false,
|
||||||
|
manualApproval: true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -184,6 +184,86 @@ describe('Test server follows API validators', function () {
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
|
describe('When accepting a follower', function () {
|
||||||
|
const path = '/api/v1/server/followers'
|
||||||
|
|
||||||
|
it('Should fail with an invalid token', async function () {
|
||||||
|
await makePostBodyRequest({
|
||||||
|
url: server.url,
|
||||||
|
path: path + '/toto@localhost:9002/accept',
|
||||||
|
token: 'fake_token',
|
||||||
|
statusCodeExpected: 401
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
|
it('Should fail if the user is not an administrator', async function () {
|
||||||
|
await makePostBodyRequest({
|
||||||
|
url: server.url,
|
||||||
|
path: path + '/toto@localhost:9002/accept',
|
||||||
|
token: userAccessToken,
|
||||||
|
statusCodeExpected: 403
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
|
it('Should fail with an invalid follower', async function () {
|
||||||
|
await makePostBodyRequest({
|
||||||
|
url: server.url,
|
||||||
|
path: path + '/toto/accept',
|
||||||
|
token: server.accessToken,
|
||||||
|
statusCodeExpected: 400
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
|
it('Should fail with an unknown follower', async function () {
|
||||||
|
await makePostBodyRequest({
|
||||||
|
url: server.url,
|
||||||
|
path: path + '/toto@localhost:9003/accept',
|
||||||
|
token: server.accessToken,
|
||||||
|
statusCodeExpected: 404
|
||||||
|
})
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
|
describe('When rejecting a follower', function () {
|
||||||
|
const path = '/api/v1/server/followers'
|
||||||
|
|
||||||
|
it('Should fail with an invalid token', async function () {
|
||||||
|
await makePostBodyRequest({
|
||||||
|
url: server.url,
|
||||||
|
path: path + '/toto@localhost:9002/reject',
|
||||||
|
token: 'fake_token',
|
||||||
|
statusCodeExpected: 401
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
|
it('Should fail if the user is not an administrator', async function () {
|
||||||
|
await makePostBodyRequest({
|
||||||
|
url: server.url,
|
||||||
|
path: path + '/toto@localhost:9002/reject',
|
||||||
|
token: userAccessToken,
|
||||||
|
statusCodeExpected: 403
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
|
it('Should fail with an invalid follower', async function () {
|
||||||
|
await makePostBodyRequest({
|
||||||
|
url: server.url,
|
||||||
|
path: path + '/toto/reject',
|
||||||
|
token: server.accessToken,
|
||||||
|
statusCodeExpected: 400
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
|
it('Should fail with an unknown follower', async function () {
|
||||||
|
await makePostBodyRequest({
|
||||||
|
url: server.url,
|
||||||
|
path: path + '/toto@localhost:9003/reject',
|
||||||
|
token: server.accessToken,
|
||||||
|
statusCodeExpected: 404
|
||||||
|
})
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
describe('When removing following', function () {
|
describe('When removing following', function () {
|
||||||
const path = '/api/v1/server/following'
|
const path = '/api/v1/server/following'
|
||||||
|
|
||||||
|
|
|
@ -65,6 +65,7 @@ function checkInitialConfig (data: CustomConfig) {
|
||||||
expect(data.autoBlacklist.videos.ofUsers.enabled).to.be.false
|
expect(data.autoBlacklist.videos.ofUsers.enabled).to.be.false
|
||||||
|
|
||||||
expect(data.followers.instance.enabled).to.be.true
|
expect(data.followers.instance.enabled).to.be.true
|
||||||
|
expect(data.followers.instance.manualApproval).to.be.false
|
||||||
}
|
}
|
||||||
|
|
||||||
function checkUpdatedConfig (data: CustomConfig) {
|
function checkUpdatedConfig (data: CustomConfig) {
|
||||||
|
@ -109,6 +110,7 @@ function checkUpdatedConfig (data: CustomConfig) {
|
||||||
expect(data.autoBlacklist.videos.ofUsers.enabled).to.be.true
|
expect(data.autoBlacklist.videos.ofUsers.enabled).to.be.true
|
||||||
|
|
||||||
expect(data.followers.instance.enabled).to.be.false
|
expect(data.followers.instance.enabled).to.be.false
|
||||||
|
expect(data.followers.instance.manualApproval).to.be.true
|
||||||
}
|
}
|
||||||
|
|
||||||
describe('Test config', function () {
|
describe('Test config', function () {
|
||||||
|
@ -241,7 +243,8 @@ describe('Test config', function () {
|
||||||
},
|
},
|
||||||
followers: {
|
followers: {
|
||||||
instance: {
|
instance: {
|
||||||
enabled: false
|
enabled: false,
|
||||||
|
manualApproval: true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
import * as chai from 'chai'
|
import * as chai from 'chai'
|
||||||
import 'mocha'
|
import 'mocha'
|
||||||
import {
|
import {
|
||||||
|
acceptFollower,
|
||||||
flushAndRunMultipleServers,
|
flushAndRunMultipleServers,
|
||||||
killallServers,
|
killallServers,
|
||||||
ServerInfo,
|
ServerInfo,
|
||||||
|
@ -13,19 +14,21 @@ import {
|
||||||
follow,
|
follow,
|
||||||
getFollowersListPaginationAndSort,
|
getFollowersListPaginationAndSort,
|
||||||
getFollowingListPaginationAndSort,
|
getFollowingListPaginationAndSort,
|
||||||
removeFollower
|
removeFollower,
|
||||||
|
rejectFollower
|
||||||
} from '../../../../shared/utils/server/follows'
|
} from '../../../../shared/utils/server/follows'
|
||||||
import { waitJobs } from '../../../../shared/utils/server/jobs'
|
import { waitJobs } from '../../../../shared/utils/server/jobs'
|
||||||
import { ActorFollow } from '../../../../shared/models/actors'
|
import { ActorFollow } from '../../../../shared/models/actors'
|
||||||
|
|
||||||
const expect = chai.expect
|
const expect = chai.expect
|
||||||
|
|
||||||
async function checkHasFollowers (servers: ServerInfo[]) {
|
async function checkServer1And2HasFollowers (servers: ServerInfo[], state = 'accepted') {
|
||||||
{
|
{
|
||||||
const res = await getFollowingListPaginationAndSort(servers[0].url, 0, 5, 'createdAt')
|
const res = await getFollowingListPaginationAndSort(servers[0].url, 0, 5, 'createdAt')
|
||||||
expect(res.body.total).to.equal(1)
|
expect(res.body.total).to.equal(1)
|
||||||
|
|
||||||
const follow = res.body.data[0] as ActorFollow
|
const follow = res.body.data[0] as ActorFollow
|
||||||
|
expect(follow.state).to.equal(state)
|
||||||
expect(follow.follower.url).to.equal('http://localhost:9001/accounts/peertube')
|
expect(follow.follower.url).to.equal('http://localhost:9001/accounts/peertube')
|
||||||
expect(follow.following.url).to.equal('http://localhost:9002/accounts/peertube')
|
expect(follow.following.url).to.equal('http://localhost:9002/accounts/peertube')
|
||||||
}
|
}
|
||||||
|
@ -35,6 +38,7 @@ async function checkHasFollowers (servers: ServerInfo[]) {
|
||||||
expect(res.body.total).to.equal(1)
|
expect(res.body.total).to.equal(1)
|
||||||
|
|
||||||
const follow = res.body.data[0] as ActorFollow
|
const follow = res.body.data[0] as ActorFollow
|
||||||
|
expect(follow.state).to.equal(state)
|
||||||
expect(follow.follower.url).to.equal('http://localhost:9001/accounts/peertube')
|
expect(follow.follower.url).to.equal('http://localhost:9001/accounts/peertube')
|
||||||
expect(follow.following.url).to.equal('http://localhost:9002/accounts/peertube')
|
expect(follow.following.url).to.equal('http://localhost:9002/accounts/peertube')
|
||||||
}
|
}
|
||||||
|
@ -58,7 +62,7 @@ describe('Test follows moderation', function () {
|
||||||
before(async function () {
|
before(async function () {
|
||||||
this.timeout(30000)
|
this.timeout(30000)
|
||||||
|
|
||||||
servers = await flushAndRunMultipleServers(2)
|
servers = await flushAndRunMultipleServers(3)
|
||||||
|
|
||||||
// Get the access tokens
|
// Get the access tokens
|
||||||
await setAccessTokensToServers(servers)
|
await setAccessTokensToServers(servers)
|
||||||
|
@ -73,7 +77,7 @@ describe('Test follows moderation', function () {
|
||||||
})
|
})
|
||||||
|
|
||||||
it('Should have correct follows', async function () {
|
it('Should have correct follows', async function () {
|
||||||
await checkHasFollowers(servers)
|
await checkServer1And2HasFollowers(servers)
|
||||||
})
|
})
|
||||||
|
|
||||||
it('Should remove follower on server 2', async function () {
|
it('Should remove follower on server 2', async function () {
|
||||||
|
@ -90,7 +94,8 @@ describe('Test follows moderation', function () {
|
||||||
const subConfig = {
|
const subConfig = {
|
||||||
followers: {
|
followers: {
|
||||||
instance: {
|
instance: {
|
||||||
enabled: false
|
enabled: false,
|
||||||
|
manualApproval: false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -107,7 +112,8 @@ describe('Test follows moderation', function () {
|
||||||
const subConfig = {
|
const subConfig = {
|
||||||
followers: {
|
followers: {
|
||||||
instance: {
|
instance: {
|
||||||
enabled: true
|
enabled: true,
|
||||||
|
manualApproval: false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -117,7 +123,70 @@ describe('Test follows moderation', function () {
|
||||||
await follow(servers[0].url, [ servers[1].url ], servers[0].accessToken)
|
await follow(servers[0].url, [ servers[1].url ], servers[0].accessToken)
|
||||||
await waitJobs(servers)
|
await waitJobs(servers)
|
||||||
|
|
||||||
await checkHasFollowers(servers)
|
await checkServer1And2HasFollowers(servers)
|
||||||
|
})
|
||||||
|
|
||||||
|
it('Should manually approve followers', async function () {
|
||||||
|
this.timeout(20000)
|
||||||
|
|
||||||
|
await removeFollower(servers[1].url, servers[1].accessToken, servers[0])
|
||||||
|
await waitJobs(servers)
|
||||||
|
|
||||||
|
const subConfig = {
|
||||||
|
followers: {
|
||||||
|
instance: {
|
||||||
|
enabled: true,
|
||||||
|
manualApproval: true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
await updateCustomSubConfig(servers[1].url, servers[1].accessToken, subConfig)
|
||||||
|
await updateCustomSubConfig(servers[2].url, servers[2].accessToken, subConfig)
|
||||||
|
|
||||||
|
await follow(servers[0].url, [ servers[1].url ], servers[0].accessToken)
|
||||||
|
await waitJobs(servers)
|
||||||
|
|
||||||
|
await checkServer1And2HasFollowers(servers, 'pending')
|
||||||
|
})
|
||||||
|
|
||||||
|
it('Should accept a follower', async function () {
|
||||||
|
await acceptFollower(servers[1].url, servers[1].accessToken, 'peertube@localhost:9001')
|
||||||
|
await waitJobs(servers)
|
||||||
|
|
||||||
|
await checkServer1And2HasFollowers(servers)
|
||||||
|
})
|
||||||
|
|
||||||
|
it('Should reject another follower', async function () {
|
||||||
|
this.timeout(20000)
|
||||||
|
|
||||||
|
await follow(servers[0].url, [ servers[2].url ], servers[0].accessToken)
|
||||||
|
await waitJobs(servers)
|
||||||
|
|
||||||
|
{
|
||||||
|
const res = await getFollowingListPaginationAndSort(servers[0].url, 0, 5, 'createdAt')
|
||||||
|
expect(res.body.total).to.equal(2)
|
||||||
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
const res = await getFollowersListPaginationAndSort(servers[1].url, 0, 5, 'createdAt')
|
||||||
|
expect(res.body.total).to.equal(1)
|
||||||
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
const res = await getFollowersListPaginationAndSort(servers[2].url, 0, 5, 'createdAt')
|
||||||
|
expect(res.body.total).to.equal(1)
|
||||||
|
}
|
||||||
|
|
||||||
|
await rejectFollower(servers[2].url, servers[2].accessToken, 'peertube@localhost:9001')
|
||||||
|
await waitJobs(servers)
|
||||||
|
|
||||||
|
await checkServer1And2HasFollowers(servers)
|
||||||
|
|
||||||
|
{
|
||||||
|
const res = await getFollowersListPaginationAndSort(servers[ 2 ].url, 0, 5, 'createdAt')
|
||||||
|
expect(res.body.total).to.equal(0)
|
||||||
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
after(async function () {
|
after(async function () {
|
||||||
|
|
|
@ -88,7 +88,8 @@ export interface CustomConfig {
|
||||||
|
|
||||||
followers: {
|
followers: {
|
||||||
instance: {
|
instance: {
|
||||||
enabled: boolean
|
enabled: boolean,
|
||||||
|
manualApproval: boolean
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -122,7 +122,8 @@ function updateCustomSubConfig (url: string, token: string, newConfig: any) {
|
||||||
},
|
},
|
||||||
followers: {
|
followers: {
|
||||||
instance: {
|
instance: {
|
||||||
enabled: true
|
enabled: true,
|
||||||
|
manualApproval: false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
import * as request from 'supertest'
|
import * as request from 'supertest'
|
||||||
import { ServerInfo } from './servers'
|
import { ServerInfo } from './servers'
|
||||||
import { waitJobs } from './jobs'
|
import { waitJobs } from './jobs'
|
||||||
|
import { makeGetRequest, makePostBodyRequest } from '..'
|
||||||
|
|
||||||
function getFollowersListPaginationAndSort (url: string, start: number, count: number, sort: string, search?: string) {
|
function getFollowersListPaginationAndSort (url: string, start: number, count: number, sort: string, search?: string) {
|
||||||
const path = '/api/v1/server/followers'
|
const path = '/api/v1/server/followers'
|
||||||
|
@ -16,6 +17,28 @@ function getFollowersListPaginationAndSort (url: string, start: number, count: n
|
||||||
.expect('Content-Type', /json/)
|
.expect('Content-Type', /json/)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function acceptFollower (url: string, token: string, follower: string, statusCodeExpected = 204) {
|
||||||
|
const path = '/api/v1/server/followers/' + follower + '/accept'
|
||||||
|
|
||||||
|
return makePostBodyRequest({
|
||||||
|
url,
|
||||||
|
token,
|
||||||
|
path,
|
||||||
|
statusCodeExpected
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
function rejectFollower (url: string, token: string, follower: string, statusCodeExpected = 204) {
|
||||||
|
const path = '/api/v1/server/followers/' + follower + '/reject'
|
||||||
|
|
||||||
|
return makePostBodyRequest({
|
||||||
|
url,
|
||||||
|
token,
|
||||||
|
path,
|
||||||
|
statusCodeExpected
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
function getFollowingListPaginationAndSort (url: string, start: number, count: number, sort: string, search?: string) {
|
function getFollowingListPaginationAndSort (url: string, start: number, count: number, sort: string, search?: string) {
|
||||||
const path = '/api/v1/server/following'
|
const path = '/api/v1/server/following'
|
||||||
|
|
||||||
|
@ -30,18 +53,16 @@ function getFollowingListPaginationAndSort (url: string, start: number, count: n
|
||||||
.expect('Content-Type', /json/)
|
.expect('Content-Type', /json/)
|
||||||
}
|
}
|
||||||
|
|
||||||
async function follow (follower: string, following: string[], accessToken: string, expectedStatus = 204) {
|
function follow (follower: string, following: string[], accessToken: string, expectedStatus = 204) {
|
||||||
const path = '/api/v1/server/following'
|
const path = '/api/v1/server/following'
|
||||||
|
|
||||||
const followingHosts = following.map(f => f.replace(/^http:\/\//, ''))
|
const followingHosts = following.map(f => f.replace(/^http:\/\//, ''))
|
||||||
const res = await request(follower)
|
return request(follower)
|
||||||
.post(path)
|
.post(path)
|
||||||
.set('Accept', 'application/json')
|
.set('Accept', 'application/json')
|
||||||
.set('Authorization', 'Bearer ' + accessToken)
|
.set('Authorization', 'Bearer ' + accessToken)
|
||||||
.send({ 'hosts': followingHosts })
|
.send({ 'hosts': followingHosts })
|
||||||
.expect(expectedStatus)
|
.expect(expectedStatus)
|
||||||
|
|
||||||
return res
|
|
||||||
}
|
}
|
||||||
|
|
||||||
async function unfollow (url: string, accessToken: string, target: ServerInfo, expectedStatus = 204) {
|
async function unfollow (url: string, accessToken: string, target: ServerInfo, expectedStatus = 204) {
|
||||||
|
@ -84,5 +105,7 @@ export {
|
||||||
unfollow,
|
unfollow,
|
||||||
removeFollower,
|
removeFollower,
|
||||||
follow,
|
follow,
|
||||||
doubleFollow
|
doubleFollow,
|
||||||
|
acceptFollower,
|
||||||
|
rejectFollower
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue