mirror of https://github.com/Chocobozzz/PeerTube
136 lines
3.4 KiB
TypeScript
136 lines
3.4 KiB
TypeScript
|
/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
|
||
|
|
||
|
import { HttpStatusCode } from '@shared/core-utils'
|
||
|
import { AccountBlock, ResultList, ServerBlock } from '@shared/models'
|
||
|
import { AbstractCommand, OverrideCommandOptions } from '../shared'
|
||
|
|
||
|
type ListBlocklistOptions = OverrideCommandOptions & {
|
||
|
start: number
|
||
|
count: number
|
||
|
sort: string // default -createdAt
|
||
|
}
|
||
|
|
||
|
export class BlocklistCommand extends AbstractCommand {
|
||
|
|
||
|
listMyAccountBlocklist (options: ListBlocklistOptions) {
|
||
|
const path = '/api/v1/users/me/blocklist/accounts'
|
||
|
|
||
|
return this.listBlocklist<AccountBlock>(options, path)
|
||
|
}
|
||
|
|
||
|
listMyServerBlocklist (options: ListBlocklistOptions) {
|
||
|
const path = '/api/v1/users/me/blocklist/servers'
|
||
|
|
||
|
return this.listBlocklist<ServerBlock>(options, path)
|
||
|
}
|
||
|
|
||
|
listServerAccountBlocklist (options: ListBlocklistOptions) {
|
||
|
const path = '/api/v1/server/blocklist/accounts'
|
||
|
|
||
|
return this.listBlocklist<AccountBlock>(options, path)
|
||
|
}
|
||
|
|
||
|
listServerServerBlocklist (options: ListBlocklistOptions) {
|
||
|
const path = '/api/v1/server/blocklist/servers'
|
||
|
|
||
|
return this.listBlocklist<ServerBlock>(options, path)
|
||
|
}
|
||
|
|
||
|
// ---------------------------------------------------------------------------
|
||
|
|
||
|
addToMyBlocklist (options: OverrideCommandOptions & {
|
||
|
account?: string
|
||
|
server?: string
|
||
|
}) {
|
||
|
const { account, server } = options
|
||
|
|
||
|
const path = account
|
||
|
? '/api/v1/users/me/blocklist/accounts'
|
||
|
: '/api/v1/users/me/blocklist/servers'
|
||
|
|
||
|
return this.postBodyRequest({
|
||
|
...options,
|
||
|
|
||
|
path,
|
||
|
fields: {
|
||
|
accountName: account,
|
||
|
host: server
|
||
|
},
|
||
|
defaultExpectedStatus: HttpStatusCode.NO_CONTENT_204
|
||
|
})
|
||
|
}
|
||
|
|
||
|
addToServerBlocklist (options: OverrideCommandOptions & {
|
||
|
account?: string
|
||
|
server?: string
|
||
|
}) {
|
||
|
const { account, server } = options
|
||
|
|
||
|
const path = account
|
||
|
? '/api/v1/server/blocklist/accounts'
|
||
|
: '/api/v1/server/blocklist/servers'
|
||
|
|
||
|
return this.postBodyRequest({
|
||
|
...options,
|
||
|
|
||
|
path,
|
||
|
fields: {
|
||
|
accountName: account,
|
||
|
host: server
|
||
|
},
|
||
|
defaultExpectedStatus: HttpStatusCode.NO_CONTENT_204
|
||
|
})
|
||
|
}
|
||
|
|
||
|
// ---------------------------------------------------------------------------
|
||
|
|
||
|
removeFromMyBlocklist (options: OverrideCommandOptions & {
|
||
|
account?: string
|
||
|
server?: string
|
||
|
}) {
|
||
|
const { account, server } = options
|
||
|
|
||
|
const path = account
|
||
|
? '/api/v1/users/me/blocklist/accounts/' + account
|
||
|
: '/api/v1/users/me/blocklist/servers/' + server
|
||
|
|
||
|
return this.deleteRequest({
|
||
|
...options,
|
||
|
|
||
|
path,
|
||
|
defaultExpectedStatus: HttpStatusCode.NO_CONTENT_204
|
||
|
})
|
||
|
}
|
||
|
|
||
|
removeFromServerBlocklist (options: OverrideCommandOptions & {
|
||
|
account?: string
|
||
|
server?: string
|
||
|
}) {
|
||
|
const { account, server } = options
|
||
|
|
||
|
const path = account
|
||
|
? '/api/v1/server/blocklist/accounts/' + account
|
||
|
: '/api/v1/server/blocklist/servers/' + server
|
||
|
|
||
|
return this.deleteRequest({
|
||
|
...options,
|
||
|
|
||
|
path,
|
||
|
defaultExpectedStatus: HttpStatusCode.NO_CONTENT_204
|
||
|
})
|
||
|
}
|
||
|
|
||
|
private listBlocklist <T> (options: ListBlocklistOptions, path: string) {
|
||
|
const { start, count, sort = '-createdAt' } = options
|
||
|
|
||
|
return this.getRequestBody<ResultList<T>>({
|
||
|
...options,
|
||
|
|
||
|
path,
|
||
|
query: { start, count, sort },
|
||
|
defaultExpectedStatus: HttpStatusCode.OK_200
|
||
|
})
|
||
|
}
|
||
|
|
||
|
}
|