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
99
shared/server-commands/users/subscriptions-command.ts
Normal file
99
shared/server-commands/users/subscriptions-command.ts
Normal file
|
@ -0,0 +1,99 @@
|
|||
import { HttpStatusCode, ResultList, Video, VideoChannel } from '@shared/models'
|
||||
import { AbstractCommand, OverrideCommandOptions } from '../shared'
|
||||
|
||||
export class SubscriptionsCommand extends AbstractCommand {
|
||||
|
||||
add (options: OverrideCommandOptions & {
|
||||
targetUri: string
|
||||
}) {
|
||||
const path = '/api/v1/users/me/subscriptions'
|
||||
|
||||
return this.postBodyRequest({
|
||||
...options,
|
||||
|
||||
path,
|
||||
fields: { uri: options.targetUri },
|
||||
implicitToken: true,
|
||||
defaultExpectedStatus: HttpStatusCode.NO_CONTENT_204
|
||||
})
|
||||
}
|
||||
|
||||
list (options: OverrideCommandOptions & {
|
||||
sort?: string // default -createdAt
|
||||
search?: string
|
||||
} = {}) {
|
||||
const { sort = '-createdAt', search } = options
|
||||
const path = '/api/v1/users/me/subscriptions'
|
||||
|
||||
return this.getRequestBody<ResultList<VideoChannel>>({
|
||||
...options,
|
||||
|
||||
path,
|
||||
query: {
|
||||
sort,
|
||||
search
|
||||
},
|
||||
implicitToken: true,
|
||||
defaultExpectedStatus: HttpStatusCode.OK_200
|
||||
})
|
||||
}
|
||||
|
||||
listVideos (options: OverrideCommandOptions & {
|
||||
sort?: string // default -createdAt
|
||||
} = {}) {
|
||||
const { sort = '-createdAt' } = options
|
||||
const path = '/api/v1/users/me/subscriptions/videos'
|
||||
|
||||
return this.getRequestBody<ResultList<Video>>({
|
||||
...options,
|
||||
|
||||
path,
|
||||
query: { sort },
|
||||
implicitToken: true,
|
||||
defaultExpectedStatus: HttpStatusCode.OK_200
|
||||
})
|
||||
}
|
||||
|
||||
get (options: OverrideCommandOptions & {
|
||||
uri: string
|
||||
}) {
|
||||
const path = '/api/v1/users/me/subscriptions/' + options.uri
|
||||
|
||||
return this.getRequestBody<VideoChannel>({
|
||||
...options,
|
||||
|
||||
path,
|
||||
implicitToken: true,
|
||||
defaultExpectedStatus: HttpStatusCode.OK_200
|
||||
})
|
||||
}
|
||||
|
||||
remove (options: OverrideCommandOptions & {
|
||||
uri: string
|
||||
}) {
|
||||
const path = '/api/v1/users/me/subscriptions/' + options.uri
|
||||
|
||||
return this.deleteRequest({
|
||||
...options,
|
||||
|
||||
path,
|
||||
implicitToken: true,
|
||||
defaultExpectedStatus: HttpStatusCode.NO_CONTENT_204
|
||||
})
|
||||
}
|
||||
|
||||
exist (options: OverrideCommandOptions & {
|
||||
uris: string[]
|
||||
}) {
|
||||
const path = '/api/v1/users/me/subscriptions/exist'
|
||||
|
||||
return this.getRequestBody<{ [id: string ]: boolean }>({
|
||||
...options,
|
||||
|
||||
path,
|
||||
query: { 'uris[]': options.uris },
|
||||
implicitToken: true,
|
||||
defaultExpectedStatus: HttpStatusCode.OK_200
|
||||
})
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue