32 lines
859 B
TypeScript
32 lines
859 B
TypeScript
|
/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/no-floating-promises */
|
||
|
|
||
|
import { HttpStatusCode, VideoToken } from '@shared/models'
|
||
|
import { unwrapBody } from '../requests'
|
||
|
import { AbstractCommand, OverrideCommandOptions } from '../shared'
|
||
|
|
||
|
export class VideoTokenCommand extends AbstractCommand {
|
||
|
|
||
|
create (options: OverrideCommandOptions & {
|
||
|
videoId: number | string
|
||
|
}) {
|
||
|
const { videoId } = options
|
||
|
const path = '/api/v1/videos/' + videoId + '/token'
|
||
|
|
||
|
return unwrapBody<VideoToken>(this.postBodyRequest({
|
||
|
...options,
|
||
|
|
||
|
path,
|
||
|
implicitToken: true,
|
||
|
defaultExpectedStatus: HttpStatusCode.OK_200
|
||
|
}))
|
||
|
}
|
||
|
|
||
|
async getVideoFileToken (options: OverrideCommandOptions & {
|
||
|
videoId: number | string
|
||
|
}) {
|
||
|
const { files } = await this.create(options)
|
||
|
|
||
|
return files.token
|
||
|
}
|
||
|
}
|