X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=shared%2Fmodels%2Fvideos%2Fvideo.model.ts;h=f98eed012f2b3c22146e977beda7d80114e24f38;hb=d2d4a5a999746ae0f01a2ce89b844252346bab27;hp=a69152759aa0e77d43de607bf0a81ed02b2f1d48;hpb=7cd1b12c19d0589d1d692ed0571ca0800f028aea;p=github%2FChocobozzz%2FPeerTube.git diff --git a/shared/models/videos/video.model.ts b/shared/models/videos/video.model.ts index a69152759..f98eed012 100644 --- a/shared/models/videos/video.model.ts +++ b/shared/models/videos/video.model.ts @@ -1,15 +1,17 @@ -import { AccountSummary, VideoChannelSummary, VideoState } from '../../index' -import { Account } from '../actors' -import { VideoChannel } from './channel/video-channel.model' +import { Account, AccountSummary } from '../actors' +import { VideoChannel, VideoChannelSummary } from './channel/video-channel.model' +import { VideoFile } from './file' +import { VideoConstant } from './video-constant.model' import { VideoPrivacy } from './video-privacy.enum' import { VideoScheduleUpdate } from './video-schedule-update.model' -import { VideoConstant } from './video-constant.model' +import { VideoState } from './video-state.enum' import { VideoStreamingPlaylist } from './video-streaming-playlist.model' -import { VideoFile } from './video-file.model' export interface Video { id: number uuid: string + shortUUID: string + createdAt: Date | string updatedAt: Date | string publishedAt: Date | string @@ -22,14 +24,38 @@ export interface Video { duration: number isLocal: boolean name: string + + isLive: boolean + thumbnailPath: string + thumbnailUrl?: string + previewPath: string + previewUrl?: string + embedPath: string + embedUrl?: string + + url: string + views: number + // If live + viewers?: number + likes: number dislikes: number nsfw: boolean + account: AccountSummary + channel: VideoChannelSummary + + userHistory?: { + currentTime: number + } + + pluginData?: any + + // Additional attributes dependending on the query waitTranscoding?: boolean state?: VideoConstant scheduledUpdate?: VideoScheduleUpdate @@ -37,12 +63,11 @@ export interface Video { blacklisted?: boolean blacklistedReason?: string - account: AccountSummary - channel: VideoChannelSummary + blockedOwner?: boolean + blockedServer?: boolean - userHistory?: { - currentTime: number - } + files?: VideoFile[] + streamingPlaylists?: VideoStreamingPlaylist[] } export interface VideoDetails extends Video { @@ -51,15 +76,15 @@ export interface VideoDetails extends Video { channel: VideoChannel account: Account tags: string[] - files: VideoFile[] commentsEnabled: boolean downloadEnabled: boolean - // Not optional in details (unlike in Video) + // Not optional in details (unlike in parent Video) waitTranscoding: boolean state: VideoConstant trackerUrls: string[] + files: VideoFile[] streamingPlaylists: VideoStreamingPlaylist[] }