]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - shared/models/videos/video.model.ts
Fix plugin settings manager definition
[github/Chocobozzz/PeerTube.git] / shared / models / videos / video.model.ts
index dc12a05d916e3fd8655e8ff82d5d8c9db4dcc800..f98eed012f2b3c22146e977beda7d80114e24f38 100644 (file)
@@ -1,48 +1,90 @@
-import { Account } from '../accounts'
-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 VideoFile {
-  magnetUri: string
-  resolution: number
-  resolutionLabel: string
-  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
-  accountName: 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<number>
+  licence: VideoConstant<number>
+  language: VideoConstant<string>
+  privacy: VideoConstant<VideoPrivacy>
   description: string
   duration: number
   isLocal: boolean
   name: string
-  serverHost: string
-  tags: 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<VideoState>
+  scheduledUpdate?: VideoScheduleUpdate
+
+  blacklisted?: boolean
+  blacklistedReason?: string
+
+  blockedOwner?: boolean
+  blockedServer?: boolean
+
+  files?: VideoFile[]
+  streamingPlaylists?: VideoStreamingPlaylist[]
 }
 
 export interface VideoDetails extends Video {
-  privacy: VideoPrivacy
-  privacyLabel: string
   descriptionPath: string
+  support: string
   channel: VideoChannel
-  files: VideoFile[]
   account: Account
+  tags: string[]
+  commentsEnabled: boolean
+  downloadEnabled: boolean
+
+  // Not optional in details (unlike in parent Video)
+  waitTranscoding: boolean
+  state: VideoConstant<VideoState>
+
+  trackerUrls: string[]
+
+  files: VideoFile[]
+  streamingPlaylists: VideoStreamingPlaylist[]
 }