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

85 lines
1.7 KiB
TypeScript
Raw Normal View History

import { VideoResolution, VideoState } from '../../index'
2017-12-14 16:38:41 +00:00
import { Account } from '../actors'
2018-03-12 10:06:15 +00:00
import { Avatar } from '../avatars/avatar.model'
2017-10-24 17:41:09 +00:00
import { VideoChannel } from './video-channel.model'
2017-10-31 10:52:52 +00:00
import { VideoPrivacy } from './video-privacy.enum'
2017-10-24 17:41:09 +00:00
2018-03-19 09:24:12 +00:00
export interface VideoConstant <T> {
2018-04-23 12:39:52 +00:00
id: T
2018-03-19 09:24:12 +00:00
label: string
}
export interface VideoFile {
magnetUri: string
resolution: VideoConstant<VideoResolution>
size: number // Bytes
torrentUrl: string
2018-05-29 16:30:11 +00:00
torrentDownloadUrl: string
fileUrl: string
2018-05-29 16:30:11 +00:00
fileDownloadUrl: string
}
2017-06-10 20:15:25 +00:00
export interface Video {
id: number
uuid: string
createdAt: Date | string
updatedAt: Date | string
publishedAt: Date | string
2018-03-19 09:24:12 +00:00
category: VideoConstant<number>
licence: VideoConstant<number>
2018-04-23 12:39:52 +00:00
language: VideoConstant<string>
privacy: VideoConstant<VideoPrivacy>
2017-06-11 09:02:35 +00:00
description: string
duration: number
isLocal: boolean
name: string
thumbnailPath: string
2017-07-12 09:56:02 +00:00
previewPath: string
2017-10-16 08:05:49 +00:00
embedPath: string
2017-06-11 09:02:35 +00:00
views: number
likes: number
dislikes: number
nsfw: boolean
2018-03-12 10:06:15 +00:00
waitTranscoding?: boolean
state?: VideoConstant<VideoState>
scheduledUpdate?: {
updateAt: Date | string
privacy?: VideoPrivacy
}
2018-03-12 10:06:15 +00:00
account: {
2018-04-25 12:32:19 +00:00
id: number
uuid: string
2018-03-12 10:06:15 +00:00
name: string
displayName: string
url: string
host: string
avatar: Avatar
}
2018-05-11 13:10:13 +00:00
channel: {
id: number
uuid: string
name: string
displayName: string
url: string
host: string
avatar: Avatar
}
2017-10-24 17:41:09 +00:00
}
export interface VideoDetails extends Video {
2017-10-31 10:52:52 +00:00
descriptionPath: string
support: string
2017-10-24 17:41:09 +00:00
channel: VideoChannel
2017-12-14 09:07:57 +00:00
tags: string[]
files: VideoFile[]
2017-12-06 16:15:59 +00:00
account: Account
2018-01-03 09:12:36 +00:00
commentsEnabled: boolean
// Not optional in details (unlike in Video)
waitTranscoding: boolean
state: VideoConstant<VideoState>
2017-06-10 20:15:25 +00:00
}