]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - shared/models/videos/video.model.ts
Always redirect on homepage on '/'
[github/Chocobozzz/PeerTube.git] / shared / models / videos / video.model.ts
index 8aa8ee448b953faa0b58fa32369fa4454deed651..eb40e82deb3b97f95434202aeb0d68354c41c4c6 100644 (file)
@@ -1,25 +1,71 @@
+import { VideoResolution } from '../../index'
+import { Account } from '../actors'
+import { Avatar } from '../avatars/avatar.model'
+import { VideoChannel } from './video-channel.model'
+import { VideoPrivacy } from './video-privacy.enum'
+
+export interface VideoConstant <T> {
+  id: T
+  label: string
+}
+
+export interface VideoFile {
+  magnetUri: string
+  resolution: VideoConstant<VideoResolution>
+  size: number // Bytes
+  torrentUrl: string
+  fileUrl: string
+}
+
 export interface Video {
   id: number
   uuid: string
-  author: string
-  createdAt: Date
-  categoryLabel: string
-  category: number
-  licenceLabel: string
-  licence: number
-  languageLabel: string
-  language: number
+  createdAt: Date | string
+  updatedAt: Date | string
+  publishedAt: Date | string
+  category: VideoConstant<number>
+  licence: VideoConstant<number>
+  language: VideoConstant<string>
+  privacy: VideoConstant<VideoPrivacy>
   description: string
   duration: number
   isLocal: boolean
-  magnetUri: string
   name: string
-  podHost: string
-  tags: string[]
   thumbnailPath: string
   previewPath: string
+  embedPath: string
   views: number
   likes: number
   dislikes: number
   nsfw: boolean
+
+  account: {
+    id: number
+    uuid: string
+    name: string
+    displayName: string
+    url: string
+    host: string
+    avatar: Avatar
+  }
+
+  channel: {
+    id: number
+    uuid: string
+    name: string
+    displayName: string
+    url: string
+    host: string
+    avatar: Avatar
+  }
+}
+
+export interface VideoDetails extends Video {
+  descriptionPath: string
+  support: string
+  channel: VideoChannel
+  tags: string[]
+  files: VideoFile[]
+  account: Account
+  commentsEnabled: boolean
 }