aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/server-commands/videos/video-token-command.ts
blob: c4ed29a8c2e1ca0a9391abd53a6a872a984c2aa5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/* 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
    videoPassword?: string
  }) {
    const { videoId, videoPassword } = options
    const path = '/api/v1/videos/' + videoId + '/token'

    return unwrapBody<VideoToken>(this.postBodyRequest({
      ...options,
      headers: this.buildVideoPasswordHeader(videoPassword),

      path,
      implicitToken: true,
      defaultExpectedStatus: HttpStatusCode.OK_200
    }))
  }

  async getVideoFileToken (options: OverrideCommandOptions & {
    videoId: number | string
    videoPassword?: string
  }) {
    const { files } = await this.create(options)

    return files.token
  }
}