Improve video REST documentation
This commit is contained in:
parent
9f167f12aa
commit
5dce26d202
|
@ -1,6 +1,5 @@
|
||||||
import { AccountSummary, VideoChannelSummary, VideoResolution, VideoState } from '../../index'
|
import { AccountSummary, VideoChannelSummary, VideoResolution, VideoState } from '../../index'
|
||||||
import { Account } from '../actors'
|
import { Account } from '../actors'
|
||||||
import { Avatar } from '../avatars/avatar.model'
|
|
||||||
import { VideoChannel } from './channel/video-channel.model'
|
import { VideoChannel } from './channel/video-channel.model'
|
||||||
import { VideoPrivacy } from './video-privacy.enum'
|
import { VideoPrivacy } from './video-privacy.enum'
|
||||||
import { VideoScheduleUpdate } from './video-schedule-update.model'
|
import { VideoScheduleUpdate } from './video-schedule-update.model'
|
||||||
|
@ -68,9 +67,9 @@ export interface VideoDetails extends Video {
|
||||||
descriptionPath: string
|
descriptionPath: string
|
||||||
support: string
|
support: string
|
||||||
channel: VideoChannel
|
channel: VideoChannel
|
||||||
|
account: Account
|
||||||
tags: string[]
|
tags: string[]
|
||||||
files: VideoFile[]
|
files: VideoFile[]
|
||||||
account: Account
|
|
||||||
commentsEnabled: boolean
|
commentsEnabled: boolean
|
||||||
downloadEnabled: boolean
|
downloadEnabled: boolean
|
||||||
|
|
||||||
|
|
|
@ -844,21 +844,8 @@ paths:
|
||||||
commentsEnabled:
|
commentsEnabled:
|
||||||
description: Enable or disable comments for this video
|
description: Enable or disable comments for this video
|
||||||
type: string
|
type: string
|
||||||
scheduleUpdate: &ref_0
|
scheduleUpdate:
|
||||||
type: object
|
$ref: '#/components/schemas/VideoScheduledUpdate'
|
||||||
properties:
|
|
||||||
privacy:
|
|
||||||
type: string
|
|
||||||
enum:
|
|
||||||
- Public
|
|
||||||
- Unlisted
|
|
||||||
description: Video privacy target
|
|
||||||
updateAt:
|
|
||||||
type: string
|
|
||||||
format: date
|
|
||||||
description: When to update the video
|
|
||||||
required:
|
|
||||||
- updateAt
|
|
||||||
get:
|
get:
|
||||||
summary: Get a video by its id
|
summary: Get a video by its id
|
||||||
tags:
|
tags:
|
||||||
|
@ -871,7 +858,7 @@ paths:
|
||||||
content:
|
content:
|
||||||
application/json:
|
application/json:
|
||||||
schema:
|
schema:
|
||||||
$ref: '#/components/schemas/Video'
|
$ref: '#/components/schemas/VideoDetails'
|
||||||
delete:
|
delete:
|
||||||
summary: Delete a video by its id
|
summary: Delete a video by its id
|
||||||
security:
|
security:
|
||||||
|
@ -1053,7 +1040,8 @@ paths:
|
||||||
commentsEnabled:
|
commentsEnabled:
|
||||||
description: Enable or disable comments for this video
|
description: Enable or disable comments for this video
|
||||||
type: string
|
type: string
|
||||||
scheduleUpdate: *ref_0
|
scheduleUpdate:
|
||||||
|
$ref: '#/components/schemas/VideoScheduledUpdate'
|
||||||
required:
|
required:
|
||||||
- videofile
|
- videofile
|
||||||
- channelId
|
- channelId
|
||||||
|
@ -1157,7 +1145,8 @@ paths:
|
||||||
commentsEnabled:
|
commentsEnabled:
|
||||||
description: Enable or disable comments for this video
|
description: Enable or disable comments for this video
|
||||||
type: string
|
type: string
|
||||||
scheduleUpdate: *ref_0
|
scheduleUpdate:
|
||||||
|
$ref: '#/components/schemas/VideoScheduledUpdate'
|
||||||
required:
|
required:
|
||||||
- channelId
|
- channelId
|
||||||
- name
|
- name
|
||||||
|
@ -1834,6 +1823,112 @@ components:
|
||||||
- 3
|
- 3
|
||||||
label:
|
label:
|
||||||
type: string
|
type: string
|
||||||
|
VideoStateConstant:
|
||||||
|
properties:
|
||||||
|
id:
|
||||||
|
type: integer
|
||||||
|
enum:
|
||||||
|
- 1
|
||||||
|
- 2
|
||||||
|
- 3
|
||||||
|
description: 'The video state (Published = 1, to transcode = 2, to import = 3)'
|
||||||
|
label:
|
||||||
|
type: string
|
||||||
|
VideoResolutionConstant:
|
||||||
|
properties:
|
||||||
|
id:
|
||||||
|
type: integer
|
||||||
|
description: 'Video resolution (240, 360, 720 ...)'
|
||||||
|
label:
|
||||||
|
type: string
|
||||||
|
VideoScheduledUpdate:
|
||||||
|
properties:
|
||||||
|
privacy:
|
||||||
|
$ref: '#/components/schemas/VideoPrivacySet'
|
||||||
|
description: Video privacy target
|
||||||
|
updateAt:
|
||||||
|
type: string
|
||||||
|
format: date
|
||||||
|
description: When to update the video
|
||||||
|
required:
|
||||||
|
- updateAt
|
||||||
|
VideoAccountSummary:
|
||||||
|
properties:
|
||||||
|
id:
|
||||||
|
type: number
|
||||||
|
name:
|
||||||
|
type: string
|
||||||
|
displayName:
|
||||||
|
type: string
|
||||||
|
url:
|
||||||
|
type: string
|
||||||
|
host:
|
||||||
|
type: string
|
||||||
|
avatar:
|
||||||
|
nullable: true
|
||||||
|
$ref: '#/components/schemas/Avatar'
|
||||||
|
VideoChannelSummary:
|
||||||
|
properties:
|
||||||
|
id:
|
||||||
|
type: number
|
||||||
|
name:
|
||||||
|
type: string
|
||||||
|
displayName:
|
||||||
|
type: string
|
||||||
|
url:
|
||||||
|
type: string
|
||||||
|
host:
|
||||||
|
type: string
|
||||||
|
avatar:
|
||||||
|
nullable: true
|
||||||
|
$ref: '#/components/schemas/Avatar'
|
||||||
|
PlaylistElement:
|
||||||
|
properties:
|
||||||
|
position:
|
||||||
|
type: number
|
||||||
|
startTimestamp:
|
||||||
|
type: number
|
||||||
|
stopTimestamp:
|
||||||
|
type: number
|
||||||
|
VideoFile:
|
||||||
|
properties:
|
||||||
|
magnetUri:
|
||||||
|
type: string
|
||||||
|
resolution:
|
||||||
|
$ref: '#/components/schemas/VideoResolutionConstant'
|
||||||
|
size:
|
||||||
|
type: number
|
||||||
|
description: 'Video file size in bytes'
|
||||||
|
torrentUrl:
|
||||||
|
type: string
|
||||||
|
torrentDownaloadUrl:
|
||||||
|
type: string
|
||||||
|
fileUrl:
|
||||||
|
type: string
|
||||||
|
fileDownloadUrl:
|
||||||
|
type: string
|
||||||
|
fps:
|
||||||
|
type: number
|
||||||
|
VideoStreamingPlaylists:
|
||||||
|
properties:
|
||||||
|
id:
|
||||||
|
type: number
|
||||||
|
type:
|
||||||
|
type: number
|
||||||
|
enum:
|
||||||
|
- 1
|
||||||
|
description: 'Playlist type (HLS = 1)'
|
||||||
|
playlistUrl:
|
||||||
|
type: string
|
||||||
|
segmentsSha256Url:
|
||||||
|
type: string
|
||||||
|
redundancies:
|
||||||
|
type: array
|
||||||
|
items:
|
||||||
|
type: object
|
||||||
|
properties:
|
||||||
|
baseUrl:
|
||||||
|
type: string
|
||||||
Video:
|
Video:
|
||||||
properties:
|
properties:
|
||||||
id:
|
id:
|
||||||
|
@ -1846,6 +1941,8 @@ components:
|
||||||
type: string
|
type: string
|
||||||
updatedAt:
|
updatedAt:
|
||||||
type: string
|
type: string
|
||||||
|
originallyPublishedAt:
|
||||||
|
type: string
|
||||||
category:
|
category:
|
||||||
$ref: '#/components/schemas/VideoConstantNumber'
|
$ref: '#/components/schemas/VideoConstantNumber'
|
||||||
licence:
|
licence:
|
||||||
|
@ -1876,19 +1973,66 @@ components:
|
||||||
type: number
|
type: number
|
||||||
nsfw:
|
nsfw:
|
||||||
type: boolean
|
type: boolean
|
||||||
|
waitTranscoding:
|
||||||
|
type: boolean
|
||||||
|
nullable: true
|
||||||
|
state:
|
||||||
|
$ref: '#/components/schemas/VideoStateConstant'
|
||||||
|
scheduledUpdate:
|
||||||
|
nullable: true
|
||||||
|
$ref: '#/components/schemas/VideoScheduledUpdate'
|
||||||
|
blacklisted:
|
||||||
|
nullable: true
|
||||||
|
type: boolean
|
||||||
|
blacklistedReason:
|
||||||
|
nullable: true
|
||||||
|
type: string
|
||||||
account:
|
account:
|
||||||
|
$ref: '#/components/schemas/VideoAccountSummary'
|
||||||
|
channel:
|
||||||
|
$ref: '#/components/schemas/VideoChannelSummary'
|
||||||
|
userHistory:
|
||||||
|
nullable: true
|
||||||
type: object
|
type: object
|
||||||
properties:
|
properties:
|
||||||
name:
|
currentTime:
|
||||||
|
type: number
|
||||||
|
playlistElement:
|
||||||
|
nullable: true
|
||||||
|
$ref: '#/components/schemas/PlaylistElement'
|
||||||
|
VideoDetails:
|
||||||
|
allOf:
|
||||||
|
- $ref: '#/components/schemas/Video'
|
||||||
|
- type: object
|
||||||
|
properties:
|
||||||
|
descriptionPath:
|
||||||
type: string
|
type: string
|
||||||
displayName:
|
support:
|
||||||
type: string
|
type: string
|
||||||
url:
|
channel:
|
||||||
|
$ref: '#/components/schemas/VideoChannel'
|
||||||
|
account:
|
||||||
|
$ref: '#/components/schemas/Account'
|
||||||
|
tags:
|
||||||
|
type: array
|
||||||
|
items:
|
||||||
type: string
|
type: string
|
||||||
host:
|
files:
|
||||||
|
type: array
|
||||||
|
items:
|
||||||
|
$ref: '#/components/schemas/VideoFile'
|
||||||
|
commentsEnabled:
|
||||||
|
type: boolean
|
||||||
|
downloadEnabled:
|
||||||
|
type: boolean
|
||||||
|
trackerUrls:
|
||||||
|
type: array
|
||||||
|
items:
|
||||||
type: string
|
type: string
|
||||||
avatar:
|
streamingPlaylists:
|
||||||
$ref: '#/components/schemas/Avatar'
|
type: array
|
||||||
|
items:
|
||||||
|
$ref: '#/components/schemas/VideoStreamingPlaylists'
|
||||||
VideoAbuse:
|
VideoAbuse:
|
||||||
properties:
|
properties:
|
||||||
id:
|
id:
|
||||||
|
|
Loading…
Reference in New Issue