2019-08-15 04:53:26 -05:00
|
|
|
import { VideoStreamingPlaylistModel } from '../../../models/video/video-streaming-playlist'
|
2019-08-21 07:31:57 -05:00
|
|
|
import { PickWith, PickWithOpt } from '../../utils'
|
2019-08-15 04:53:26 -05:00
|
|
|
import { MVideoRedundancyFileUrl } from './video-redundancy'
|
2019-11-15 08:06:03 -06:00
|
|
|
import { MVideo } from './video'
|
|
|
|
import { MVideoFile } from './video-file'
|
2019-08-15 04:53:26 -05:00
|
|
|
|
2019-08-20 06:52:49 -05:00
|
|
|
type Use<K extends keyof VideoStreamingPlaylistModel, M> = PickWith<VideoStreamingPlaylistModel, K, M>
|
|
|
|
|
|
|
|
// ############################################################################
|
|
|
|
|
2019-11-15 08:06:03 -06:00
|
|
|
export type MStreamingPlaylist = Omit<VideoStreamingPlaylistModel, 'Video' | 'RedundancyVideos' | 'VideoFiles'>
|
|
|
|
|
|
|
|
export type MStreamingPlaylistFiles = MStreamingPlaylist &
|
|
|
|
Use<'VideoFiles', MVideoFile[]>
|
2019-08-15 04:53:26 -05:00
|
|
|
|
|
|
|
export type MStreamingPlaylistVideo = MStreamingPlaylist &
|
2019-08-20 06:52:49 -05:00
|
|
|
Use<'Video', MVideo>
|
2019-08-15 04:53:26 -05:00
|
|
|
|
2019-11-15 08:06:03 -06:00
|
|
|
export type MStreamingPlaylistFilesVideo = MStreamingPlaylist &
|
|
|
|
Use<'VideoFiles', MVideoFile[]> &
|
|
|
|
Use<'Video', MVideo>
|
|
|
|
|
2019-08-15 04:53:26 -05:00
|
|
|
export type MStreamingPlaylistRedundancies = MStreamingPlaylist &
|
2019-11-15 08:06:03 -06:00
|
|
|
Use<'VideoFiles', MVideoFile[]> &
|
2019-08-20 06:52:49 -05:00
|
|
|
Use<'RedundancyVideos', MVideoRedundancyFileUrl[]>
|
2019-08-21 07:31:57 -05:00
|
|
|
|
|
|
|
export type MStreamingPlaylistRedundanciesOpt = MStreamingPlaylist &
|
2019-11-15 08:06:03 -06:00
|
|
|
Use<'VideoFiles', MVideoFile[]> &
|
2019-08-21 07:31:57 -05:00
|
|
|
PickWithOpt<VideoStreamingPlaylistModel, 'RedundancyVideos', MVideoRedundancyFileUrl[]>
|
2019-11-15 08:06:03 -06:00
|
|
|
|
|
|
|
export function isStreamingPlaylist (value: MVideo | MStreamingPlaylistVideo): value is MStreamingPlaylistVideo {
|
|
|
|
return !!(value as MStreamingPlaylist).playlistUrl
|
|
|
|
}
|