1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- import { HttpStatusCode, ResultList, VideoChangeOwnership } from '@shared/models'
- import { AbstractCommand, OverrideCommandOptions } from '../shared'
- export class ChangeOwnershipCommand extends AbstractCommand {
- create (options: OverrideCommandOptions & {
- videoId: number | string
- username: string
- }) {
- const { videoId, username } = options
- const path = '/api/v1/videos/' + videoId + '/give-ownership'
- return this.postBodyRequest({
- ...options,
- path,
- fields: { username },
- implicitToken: true,
- defaultExpectedStatus: HttpStatusCode.NO_CONTENT_204
- })
- }
- list (options: OverrideCommandOptions = {}) {
- const path = '/api/v1/videos/ownership'
- return this.getRequestBody<ResultList<VideoChangeOwnership>>({
- ...options,
- path,
- query: { sort: '-createdAt' },
- implicitToken: true,
- defaultExpectedStatus: HttpStatusCode.OK_200
- })
- }
- accept (options: OverrideCommandOptions & {
- ownershipId: number
- channelId: number
- }) {
- const { ownershipId, channelId } = options
- const path = '/api/v1/videos/ownership/' + ownershipId + '/accept'
- return this.postBodyRequest({
- ...options,
- path,
- fields: { channelId },
- implicitToken: true,
- defaultExpectedStatus: HttpStatusCode.NO_CONTENT_204
- })
- }
- refuse (options: OverrideCommandOptions & {
- ownershipId: number
- }) {
- const { ownershipId } = options
- const path = '/api/v1/videos/ownership/' + ownershipId + '/refuse'
- return this.postBodyRequest({
- ...options,
- path,
- implicitToken: true,
- defaultExpectedStatus: HttpStatusCode.NO_CONTENT_204
- })
- }
- }
|