1
0
Fork 0
peertube/shared/extra-utils/videos/captions-command.ts

66 lines
1.6 KiB
TypeScript
Raw Normal View History

2021-07-16 12:27:30 +00:00
import { HttpStatusCode, ResultList, VideoCaption } from '@shared/models'
2021-07-13 07:43:59 +00:00
import { buildAbsoluteFixturePath } from '../miscs'
2021-07-08 09:49:38 +00:00
import { AbstractCommand, OverrideCommandOptions } from '../shared'
export class CaptionsCommand extends AbstractCommand {
2021-07-21 11:58:35 +00:00
add (options: OverrideCommandOptions & {
2021-07-08 09:49:38 +00:00
videoId: string | number
language: string
fixture: string
mimeType?: string
}) {
const { videoId, language, fixture, mimeType } = options
const path = '/api/v1/videos/' + videoId + '/captions/' + language
const captionfile = buildAbsoluteFixturePath(fixture)
const captionfileAttach = mimeType
? [ captionfile, { contentType: mimeType } ]
: captionfile
return this.putUploadRequest({
...options,
path,
fields: {},
attaches: {
captionfile: captionfileAttach
},
implicitToken: true,
defaultExpectedStatus: HttpStatusCode.NO_CONTENT_204
})
}
2021-07-21 11:58:35 +00:00
list (options: OverrideCommandOptions & {
2021-07-08 09:49:38 +00:00
videoId: string | number
}) {
const { videoId } = options
const path = '/api/v1/videos/' + videoId + '/captions'
return this.getRequestBody<ResultList<VideoCaption>>({
...options,
path,
implicitToken: false,
defaultExpectedStatus: HttpStatusCode.OK_200
})
}
2021-07-21 11:58:35 +00:00
delete (options: OverrideCommandOptions & {
2021-07-08 09:49:38 +00:00
videoId: string | number
language: string
}) {
const { videoId, language } = options
const path = '/api/v1/videos/' + videoId + '/captions/' + language
return this.deleteRequest({
...options,
path,
implicitToken: true,
defaultExpectedStatus: HttpStatusCode.NO_CONTENT_204
})
}
}