X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=shared%2Fmodels%2Fvideos%2Fvideo.model.ts;h=f98eed012f2b3c22146e977beda7d80114e24f38;hb=d2d4a5a999746ae0f01a2ce89b844252346bab27;hp=6a096195f1865a3ec07f0818494afdad8dfbdae1;hpb=ae5a3dd6642c8d5abc87b874496026dc9ed37d2d;p=github%2FChocobozzz%2FPeerTube.git diff --git a/shared/models/videos/video.model.ts b/shared/models/videos/video.model.ts index 6a096195f..f98eed012 100644 --- a/shared/models/videos/video.model.ts +++ b/shared/models/videos/video.model.ts @@ -1,57 +1,90 @@ -import { Account } from '../actors' -import { Avatar } from '../avatars/avatar.model' -import { VideoChannel } from './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' - -export interface VideoConstant { - id: number - label: string -} - -export interface VideoFile { - magnetUri: string - resolution: VideoConstant - size: number // Bytes - torrentUrl: string - fileUrl: string -} +import { VideoScheduleUpdate } from './video-schedule-update.model' +import { VideoState } from './video-state.enum' +import { VideoStreamingPlaylist } from './video-streaming-playlist.model' export interface Video { id: number uuid: string + shortUUID: string + createdAt: Date | string updatedAt: Date | string + publishedAt: Date | string + originallyPublishedAt: Date | string category: VideoConstant licence: VideoConstant - language: VideoConstant + language: VideoConstant + privacy: VideoConstant description: string 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: { - name: string - displayName: string - url: string - host: string - avatar: Avatar + account: AccountSummary + channel: VideoChannelSummary + + userHistory?: { + currentTime: number } + + pluginData?: any + + // Additional attributes dependending on the query + waitTranscoding?: boolean + state?: VideoConstant + scheduledUpdate?: VideoScheduleUpdate + + blacklisted?: boolean + blacklistedReason?: string + + blockedOwner?: boolean + blockedServer?: boolean + + files?: VideoFile[] + streamingPlaylists?: VideoStreamingPlaylist[] } export interface VideoDetails extends Video { - privacy: VideoConstant descriptionPath: string support: string channel: VideoChannel - tags: string[] - files: VideoFile[] account: Account + tags: string[] commentsEnabled: boolean + downloadEnabled: boolean + + // Not optional in details (unlike in parent Video) + waitTranscoding: boolean + state: VideoConstant + + trackerUrls: string[] + + files: VideoFile[] + streamingPlaylists: VideoStreamingPlaylist[] }