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




                            

                    

 
                        

              
                     

                          








                       
              
                    

                       
                     
                   



                  


                                             


                         
                       
                    
                  
 
import { Account } from '../accounts'
import { VideoChannel } from './video-channel.model'
import { VideoPrivacy } from './video-privacy.enum'

export interface VideoFile {
  magnetUri: string
  resolution: number
  resolutionLabel: string
  size: number // Bytes
  torrentUrl: string
  fileUrl: string
}

export interface Video {
  id: number
  uuid: string
  accountName: string
  createdAt: Date | string
  updatedAt: Date | string
  categoryLabel: string
  category: number
  licenceLabel: string
  licence: number
  languageLabel: string
  language: number
  description: string
  duration: number
  isLocal: boolean
  name: string
  serverHost: string
  tags: string[]
  thumbnailPath: string
  previewPath: string
  embedPath: string
  views: number
  likes: number
  dislikes: number
  nsfw: boolean
}

export interface VideoDetails extends Video {
  privacy: VideoPrivacy
  privacyLabel: string
  descriptionPath: string
  channel: VideoChannel
  files: VideoFile[]
  account: Account
}