aboutsummaryrefslogblamecommitdiffhomepage
path: root/shared/models/videos/video.model.ts
blob: 1c86545d39982c07f8717c48db0ce980aa1a5037 (plain) (tree)
1
2
3
4
5
6
7
8
                                             
                                   
                                                
                                                    
                                                   
 
                                    
       


               

                            
                                            
                       
                    
                            
                 
                         

 
                        

              

                          
                            

                                 
                                 
                                      


                     
              
                       
                     
                   



                  

            

                





                       









                       


                                             
                         
                 
                       
                
                    
                  
                          
 
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
  torrentDownloadUrl: string
  fileUrl: string
  fileDownloadUrl: string
}

export interface Video {
  id: number
  uuid: string
  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
  name: 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
}