X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=shared%2Fmodels%2Fvideos%2Fvideo.model.ts;h=d9765dbd64e3b636c1c244b37ecc5fc62180faa7;hb=26e3e98ff0e222a9fb9226938ac6902af77921bd;hp=75070bfd6892ba9e81a2722c135cbdaab0209fe2;hpb=d592e0a9b2931c7c9cbedb27fb8efc9aaacad9bb;p=github%2FChocobozzz%2FPeerTube.git diff --git a/shared/models/videos/video.model.ts b/shared/models/videos/video.model.ts index 75070bfd6..d9765dbd6 100644 --- a/shared/models/videos/video.model.ts +++ b/shared/models/videos/video.model.ts @@ -1,33 +1,89 @@ -export interface VideoFile { - magnetUri: string - resolution: number - resolutionLabel: string - size: number // Bytes -} +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 { VideoState } from './video-state.enum' +import { VideoStreamingPlaylist } from './video-streaming-playlist.model' export interface Video { id: number uuid: string - author: string + shortUUID: string + createdAt: Date | string updatedAt: Date | string - categoryLabel: string - category: number - licenceLabel: string - licence: number - languageLabel: string - language: number + publishedAt: Date | string + originallyPublishedAt: Date | string + category: VideoConstant + licence: VideoConstant + language: VideoConstant + privacy: VideoConstant description: string duration: number isLocal: boolean name: string - podHost: string - tags: string[] + + isLive: boolean + thumbnailPath: string + thumbnailUrl?: string + previewPath: string + previewUrl?: string + + embedPath: string + embedUrl?: string + + url: string + views: number + 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 + + blacklisted?: boolean + blacklistedReason?: string + + blockedOwner?: boolean + blockedServer?: boolean + + files?: VideoFile[] + streamingPlaylists?: VideoStreamingPlaylist[] +} + +export interface VideoDetails extends Video { + descriptionPath: string + support: string + channel: VideoChannel + 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[] }