X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=shared%2Fmodels%2Fvideos%2Fvideo.model.ts;h=26cb595e73ab0acf305ca41f7c04e72d3d3fcac3;hb=3c10840fa90fc88fc98e8169faf4745ff6c80893;hp=8aa8ee448b953faa0b58fa32369fa4454deed651;hpb=f981dae8617271a2dc713bb683951730b306e0c5;p=github%2FChocobozzz%2FPeerTube.git diff --git a/shared/models/videos/video.model.ts b/shared/models/videos/video.model.ts index 8aa8ee448..26cb595e7 100644 --- a/shared/models/videos/video.model.ts +++ b/shared/models/videos/video.model.ts @@ -1,25 +1,87 @@ +import { Account, AccountSummary } from '../actors' +import { VideoChannel, VideoChannelSummary } from './channel/video-channel.model' +import { VideoConstant } from './video-constant.model' +import { VideoFile } from './video-file.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 - createdAt: Date - categoryLabel: string - category: number - licenceLabel: string - licence: number - languageLabel: string - language: number + shortUUID: string + + createdAt: Date | string + updatedAt: Date | string + publishedAt: Date | string + originallyPublishedAt: Date | string + category: VideoConstant + licence: VideoConstant + language: VideoConstant + privacy: VideoConstant description: string duration: number isLocal: boolean - magnetUri: string name: string - podHost: string - tags: string[] + + isLive: boolean + thumbnailPath: string + thumbnailUrl?: string + previewPath: string + previewUrl?: string + + embedPath: string + embedUrl?: string + + url: string + views: 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[] }