mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-10-06 03:50:26 +02:00
shared/ typescript types dir server-commands
This commit is contained in:
parent
6b5f72beda
commit
bf54587a3e
242 changed files with 228 additions and 172 deletions
139
shared/server-commands/server/follows-command.ts
Normal file
139
shared/server-commands/server/follows-command.ts
Normal file
|
@ -0,0 +1,139 @@
|
|||
import { pick } from '@shared/core-utils'
|
||||
import { ActivityPubActorType, ActorFollow, FollowState, HttpStatusCode, ResultList, ServerFollowCreate } from '@shared/models'
|
||||
import { AbstractCommand, OverrideCommandOptions } from '../shared'
|
||||
import { PeerTubeServer } from './server'
|
||||
|
||||
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 query = pick(options, [ 'start', 'count', 'sort', 'search', 'state', 'actorType' ])
|
||||
|
||||
return this.getRequestBody<ResultList<ActorFollow>>({
|
||||
...options,
|
||||
|
||||
path,
|
||||
query,
|
||||
implicitToken: false,
|
||||
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 query = pick(options, [ 'start', 'count', 'sort', 'search', 'state', 'actorType' ])
|
||||
|
||||
return this.getRequestBody<ResultList<ActorFollow>>({
|
||||
...options,
|
||||
|
||||
path,
|
||||
query,
|
||||
implicitToken: false,
|
||||
defaultExpectedStatus: HttpStatusCode.OK_200
|
||||
})
|
||||
}
|
||||
|
||||
follow (options: OverrideCommandOptions & {
|
||||
hosts?: string[]
|
||||
handles?: string[]
|
||||
}) {
|
||||
const path = '/api/v1/server/following'
|
||||
|
||||
const fields: ServerFollowCreate = {}
|
||||
|
||||
if (options.hosts) {
|
||||
fields.hosts = options.hosts.map(f => f.replace(/^http:\/\//, ''))
|
||||
}
|
||||
|
||||
if (options.handles) {
|
||||
fields.handles = options.handles
|
||||
}
|
||||
|
||||
return this.postBodyRequest({
|
||||
...options,
|
||||
|
||||
path,
|
||||
fields,
|
||||
implicitToken: true,
|
||||
defaultExpectedStatus: HttpStatusCode.NO_CONTENT_204
|
||||
})
|
||||
}
|
||||
|
||||
async unfollow (options: OverrideCommandOptions & {
|
||||
target: PeerTubeServer | string
|
||||
}) {
|
||||
const { target } = options
|
||||
|
||||
const handle = typeof target === 'string'
|
||||
? target
|
||||
: target.host
|
||||
|
||||
const path = '/api/v1/server/following/' + handle
|
||||
|
||||
return this.deleteRequest({
|
||||
...options,
|
||||
|
||||
path,
|
||||
implicitToken: true,
|
||||
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,
|
||||
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,
|
||||
defaultExpectedStatus: HttpStatusCode.NO_CONTENT_204
|
||||
})
|
||||
}
|
||||
|
||||
removeFollower (options: OverrideCommandOptions & {
|
||||
follower: PeerTubeServer
|
||||
}) {
|
||||
const path = '/api/v1/server/followers/peertube@' + options.follower.host
|
||||
|
||||
return this.deleteRequest({
|
||||
...options,
|
||||
|
||||
path,
|
||||
implicitToken: true,
|
||||
defaultExpectedStatus: HttpStatusCode.NO_CONTENT_204
|
||||
})
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue