1
0
Fork 0
peertube/shared/models/videos/video.model.ts

97 lines
2.1 KiB
TypeScript
Raw Normal View History

import { VideoResolution, VideoState } from '../../index'
2017-12-14 11:38:41 -05:00
import { Account } from '../actors'
2018-03-12 06:06:15 -04:00
import { Avatar } from '../avatars/avatar.model'
2018-08-14 08:59:53 -04:00
import { VideoChannel } from './channel/video-channel.model'
2017-10-31 06:52:52 -04:00
import { VideoPrivacy } from './video-privacy.enum'
import { VideoScheduleUpdate } from './video-schedule-update.model'
2018-07-12 13:02:00 -04:00
import { VideoConstant } from './video-constant.model'
2019-01-29 02:37:25 -05:00
import { VideoStreamingPlaylist } from './video-streaming-playlist.model'
2018-03-19 05:24:12 -04:00
export interface VideoFile {
magnetUri: string
resolution: VideoConstant<VideoResolution>
size: number // Bytes
torrentUrl: string
2018-05-29 12:30:11 -04:00
torrentDownloadUrl: string
fileUrl: string
2018-05-29 12:30:11 -04:00
fileDownloadUrl: string
fps: number
}
2018-08-30 08:58:00 -04:00
export interface VideoChannelAttribute {
id: number
uuid: string
name: string
displayName: string
url: string
host: string
avatar?: Avatar
2018-08-30 08:58:00 -04:00
}
export interface AccountAttribute {
id: number
uuid: string
name: string
displayName: string
url: string
host: string
avatar?: Avatar
2018-08-30 08:58:00 -04:00
}
2017-06-10 16:15:25 -04:00
export interface Video {
id: number
uuid: string
createdAt: Date | string
updatedAt: Date | string
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>
privacy: VideoConstant<VideoPrivacy>
2017-06-11 05:02:35 -04:00
description: string
duration: number
isLocal: boolean
name: string
thumbnailPath: string
2017-07-12 05:56:02 -04:00
previewPath: string
2017-10-16 04:05:49 -04:00
embedPath: string
2017-06-11 05:02:35 -04:00
views: number
likes: number
dislikes: number
nsfw: boolean
2018-03-12 06:06:15 -04:00
waitTranscoding?: boolean
state?: VideoConstant<VideoState>
scheduledUpdate?: VideoScheduleUpdate
2018-08-13 10:57:13 -04:00
blacklisted?: boolean
blacklistedReason?: string
2018-08-30 08:58:00 -04:00
account: AccountAttribute
channel: VideoChannelAttribute
2018-10-05 05:15:06 -04:00
userHistory?: {
currentTime: number
}
2017-10-24 13:41:09 -04:00
}
export interface VideoDetails extends Video {
2017-10-31 06:52:52 -04:00
descriptionPath: string
support: string
2017-10-24 13:41:09 -04:00
channel: VideoChannel
2017-12-14 04:07:57 -05:00
tags: string[]
files: VideoFile[]
2017-12-06 11:15:59 -05:00
account: Account
2018-01-03 04:12:36 -05:00
commentsEnabled: boolean
downloadEnabled: boolean
// Not optional in details (unlike in Video)
waitTranscoding: boolean
state: VideoConstant<VideoState>
2019-01-29 02:37:25 -05:00
trackerUrls: string[]
streamingPlaylists: VideoStreamingPlaylist[]
2017-06-10 16:15:25 -04:00
}