2020-06-26 02:37:26 -04:00
|
|
|
import { Account, AccountSummary } from '../actors'
|
|
|
|
import { VideoChannel, VideoChannelSummary } from './channel/video-channel.model'
|
2021-11-18 08:35:08 -05:00
|
|
|
import { VideoFile } from './file'
|
2020-06-26 02:37:26 -04:00
|
|
|
import { VideoConstant } from './video-constant.model'
|
2017-10-31 06:52:52 -04:00
|
|
|
import { VideoPrivacy } from './video-privacy.enum'
|
2018-06-15 10:52:15 -04:00
|
|
|
import { VideoScheduleUpdate } from './video-schedule-update.model'
|
2020-06-26 02:37:26 -04:00
|
|
|
import { VideoState } from './video-state.enum'
|
2019-01-29 02:37:25 -05:00
|
|
|
import { VideoStreamingPlaylist } from './video-streaming-playlist.model'
|
2017-08-25 05:36:23 -04:00
|
|
|
|
2017-06-10 16:15:25 -04:00
|
|
|
export interface Video {
|
2017-07-11 10:01:56 -04:00
|
|
|
id: number
|
|
|
|
uuid: string
|
2021-06-28 11:30:59 -04:00
|
|
|
shortUUID: string
|
|
|
|
|
2017-09-14 05:57:49 -04:00
|
|
|
createdAt: Date | string
|
|
|
|
updatedAt: Date | string
|
2018-03-28 17:38:52 -04:00
|
|
|
publishedAt: Date | string
|
2019-01-12 08:41:45 -05:00
|
|
|
originallyPublishedAt: Date | string
|
2018-03-19 05:24:12 -04:00
|
|
|
category: VideoConstant<number>
|
|
|
|
licence: VideoConstant<number>
|
2018-04-23 08:39:52 -04:00
|
|
|
language: VideoConstant<string>
|
2018-04-19 08:52:10 -04:00
|
|
|
privacy: VideoConstant<VideoPrivacy>
|
2022-11-14 06:06:31 -05:00
|
|
|
|
|
|
|
// Deprecated in 5.0 in favour of truncatedDescription
|
2017-06-11 05:02:35 -04:00
|
|
|
description: string
|
2022-11-14 06:06:31 -05:00
|
|
|
truncatedDescription: string
|
|
|
|
|
2017-06-11 05:02:35 -04:00
|
|
|
duration: number
|
|
|
|
isLocal: boolean
|
|
|
|
name: string
|
2020-05-29 10:16:24 -04:00
|
|
|
|
2020-09-17 03:20:52 -04:00
|
|
|
isLive: boolean
|
|
|
|
|
2017-06-11 05:02:35 -04:00
|
|
|
thumbnailPath: string
|
2020-05-29 10:16:24 -04:00
|
|
|
thumbnailUrl?: string
|
|
|
|
|
2017-07-12 05:56:02 -04:00
|
|
|
previewPath: string
|
2020-05-29 10:16:24 -04:00
|
|
|
previewUrl?: string
|
|
|
|
|
2017-10-16 04:05:49 -04:00
|
|
|
embedPath: string
|
2020-05-29 10:16:24 -04:00
|
|
|
embedUrl?: string
|
|
|
|
|
2021-10-22 08:11:58 -04:00
|
|
|
url: string
|
2020-05-29 10:16:24 -04:00
|
|
|
|
2017-06-11 05:02:35 -04:00
|
|
|
views: number
|
2022-03-24 08:36:47 -04:00
|
|
|
viewers: number
|
2021-11-09 04:11:20 -05:00
|
|
|
|
2017-06-11 05:02:35 -04:00
|
|
|
likes: number
|
|
|
|
dislikes: number
|
|
|
|
nsfw: boolean
|
2018-03-12 06:06:15 -04:00
|
|
|
|
2019-02-26 04:55:40 -05:00
|
|
|
account: AccountSummary
|
|
|
|
channel: VideoChannelSummary
|
2018-10-05 05:15:06 -04:00
|
|
|
|
|
|
|
userHistory?: {
|
|
|
|
currentTime: number
|
|
|
|
}
|
2020-08-20 10:18:16 -04:00
|
|
|
|
|
|
|
pluginData?: any
|
2021-10-27 08:37:04 -04:00
|
|
|
|
|
|
|
// Additional attributes dependending on the query
|
|
|
|
waitTranscoding?: boolean
|
|
|
|
state?: VideoConstant<VideoState>
|
|
|
|
scheduledUpdate?: VideoScheduleUpdate
|
|
|
|
|
|
|
|
blacklisted?: boolean
|
|
|
|
blacklistedReason?: string
|
|
|
|
|
|
|
|
blockedOwner?: boolean
|
|
|
|
blockedServer?: boolean
|
2021-10-29 04:54:27 -04:00
|
|
|
|
|
|
|
files?: VideoFile[]
|
|
|
|
streamingPlaylists?: VideoStreamingPlaylist[]
|
2017-10-24 13:41:09 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
export interface VideoDetails extends Video {
|
2022-11-14 06:06:31 -05:00
|
|
|
// Deprecated in 5.0
|
2017-10-31 06:52:52 -04:00
|
|
|
descriptionPath: string
|
2022-11-14 06:06:31 -05:00
|
|
|
|
2018-02-15 08:46:26 -05:00
|
|
|
support: string
|
2017-10-24 13:41:09 -04:00
|
|
|
channel: VideoChannel
|
2019-06-11 04:01:13 -04:00
|
|
|
account: Account
|
2017-12-14 04:07:57 -05:00
|
|
|
tags: string[]
|
2018-01-03 04:12:36 -05:00
|
|
|
commentsEnabled: boolean
|
2018-10-08 08:45:22 -04:00
|
|
|
downloadEnabled: boolean
|
2018-06-12 14:04:58 -04:00
|
|
|
|
2021-10-27 08:37:04 -04:00
|
|
|
// Not optional in details (unlike in parent Video)
|
2018-06-12 14:04:58 -04:00
|
|
|
waitTranscoding: boolean
|
|
|
|
state: VideoConstant<VideoState>
|
2019-01-29 02:37:25 -05:00
|
|
|
|
|
|
|
trackerUrls: string[]
|
|
|
|
|
2021-10-29 04:54:27 -04:00
|
|
|
files: VideoFile[]
|
2019-01-29 02:37:25 -05:00
|
|
|
streamingPlaylists: VideoStreamingPlaylist[]
|
2017-06-10 16:15:25 -04:00
|
|
|
}
|