aboutsummaryrefslogblamecommitdiffhomepage
path: root/server/types/models/video/video-streaming-playlist.ts
blob: 1c2f834892dc926a13d86639b95d18bed6df33ac (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                                                                
                                                                                            

                                         
                                                                              
 



                                                                                                      

                                                                                                               

                                     
                                 
 

                                     
                      
 

                                          


                                   

                                               


                                             

                                            
                                   
                                                    
 

                                               
                                   
                                                                                         

                                                                                                                 
                                                
 
import { PickWith, PickWithOpt } from '@shared/typescript-utils'
import { VideoStreamingPlaylistModel } from '../../../models/video/video-streaming-playlist'
import { MVideo } from './video'
import { MVideoFile } from './video-file'
import { MVideoRedundancy, MVideoRedundancyFileUrl } from './video-redundancy'

type Use<K extends keyof VideoStreamingPlaylistModel, M> = PickWith<VideoStreamingPlaylistModel, K, M>

// ############################################################################

export type MStreamingPlaylist = Omit<VideoStreamingPlaylistModel, 'Video' | 'RedundancyVideos' | 'VideoFiles'>

export type MStreamingPlaylistFiles =
  MStreamingPlaylist &
  Use<'VideoFiles', MVideoFile[]>

export type MStreamingPlaylistVideo =
  MStreamingPlaylist &
  Use<'Video', MVideo>

export type MStreamingPlaylistFilesVideo =
  MStreamingPlaylist &
  Use<'VideoFiles', MVideoFile[]> &
  Use<'Video', MVideo>

export type MStreamingPlaylistRedundanciesAll =
  MStreamingPlaylist &
  Use<'VideoFiles', MVideoFile[]> &
  Use<'RedundancyVideos', MVideoRedundancy[]>

export type MStreamingPlaylistRedundancies =
  MStreamingPlaylist &
  Use<'VideoFiles', MVideoFile[]> &
  Use<'RedundancyVideos', MVideoRedundancyFileUrl[]>

export type MStreamingPlaylistRedundanciesOpt =
  MStreamingPlaylist &
  Use<'VideoFiles', MVideoFile[]> &
  PickWithOpt<VideoStreamingPlaylistModel, 'RedundancyVideos', MVideoRedundancyFileUrl[]>

export function isStreamingPlaylist (value: MVideo | MStreamingPlaylistVideo): value is MStreamingPlaylistVideo {
  return !!(value as MStreamingPlaylist).videoId
}