PeerTube/shared/extra-utils/server/follows-command.ts

127 lines
3.0 KiB
TypeScript
Raw Normal View History

2021-07-07 09:16:40 +02:00
import { pick } from 'lodash'
2021-07-16 14:27:30 +02:00
import { ActivityPubActorType, ActorFollow, FollowState, HttpStatusCode, ResultList } from '@shared/models'
2021-07-07 09:16:40 +02:00
import { AbstractCommand, OverrideCommandOptions } from '../shared'
2021-07-16 09:47:51 +02:00
import { PeerTubeServer } from './server'
2021-07-07 09:16:40 +02:00
export class FollowsCommand extends AbstractCommand {
getFollowers (options: OverrideCommandOptions & {
start: number
count: number
sort: string
search?: string
actorType?: ActivityPubActorType
state?: FollowState
}) {
const path = '/api/v1/server/followers'
const toPick = [ 'start', 'count', 'sort', 'search', 'state', 'actorType' ]
const query = pick(options, toPick)
return this.getRequestBody<ResultList<ActorFollow>>({
...options,
path,
query,
implicitToken: false,
2021-07-07 09:16:40 +02:00
defaultExpectedStatus: HttpStatusCode.OK_200
})
}
getFollowings (options: OverrideCommandOptions & {
start: number
count: number
sort: string
search?: string
actorType?: ActivityPubActorType
state?: FollowState
}) {
const path = '/api/v1/server/following'
const toPick = [ 'start', 'count', 'sort', 'search', 'state', 'actorType' ]
const query = pick(options, toPick)
return this.getRequestBody<ResultList<ActorFollow>>({
...options,
path,
query,
implicitToken: false,
2021-07-07 09:16:40 +02:00
defaultExpectedStatus: HttpStatusCode.OK_200
})
}
follow (options: OverrideCommandOptions & {
targets: string[]
}) {
const path = '/api/v1/server/following'
const hosts = options.targets.map(f => f.replace(/^http:\/\//, ''))
return this.postBodyRequest({
...options,
path,
fields: { hosts },
implicitToken: true,
2021-07-07 09:16:40 +02:00
defaultExpectedStatus: HttpStatusCode.NO_CONTENT_204
})
}
async unfollow (options: OverrideCommandOptions & {
2021-07-16 09:47:51 +02:00
target: PeerTubeServer
2021-07-07 09:16:40 +02:00
}) {
const path = '/api/v1/server/following/' + options.target.host
return this.deleteRequest({
...options,
path,
implicitToken: true,
2021-07-07 09:16:40 +02:00
defaultExpectedStatus: HttpStatusCode.NO_CONTENT_204
})
}
acceptFollower (options: OverrideCommandOptions & {
follower: string
}) {
const path = '/api/v1/server/followers/' + options.follower + '/accept'
return this.postBodyRequest({
...options,
path,
implicitToken: true,
2021-07-07 09:16:40 +02:00
defaultExpectedStatus: HttpStatusCode.NO_CONTENT_204
})
}
rejectFollower (options: OverrideCommandOptions & {
follower: string
}) {
const path = '/api/v1/server/followers/' + options.follower + '/reject'
return this.postBodyRequest({
...options,
path,
implicitToken: true,
2021-07-07 09:16:40 +02:00
defaultExpectedStatus: HttpStatusCode.NO_CONTENT_204
})
}
removeFollower (options: OverrideCommandOptions & {
2021-07-16 09:47:51 +02:00
follower: PeerTubeServer
2021-07-07 09:16:40 +02:00
}) {
const path = '/api/v1/server/followers/peertube@' + options.follower.host
return this.deleteRequest({
...options,
path,
implicitToken: true,
2021-07-07 09:16:40 +02:00
defaultExpectedStatus: HttpStatusCode.NO_CONTENT_204
})
}
}