PeerTube/server/typings/models/video/video-streaming-playlist.ts

34 lines
1.4 KiB
TypeScript
Raw Normal View History

2019-08-15 11:53:26 +02:00
import { VideoStreamingPlaylistModel } from '../../../models/video/video-streaming-playlist'
2019-08-21 14:31:57 +02:00
import { PickWith, PickWithOpt } from '../../utils'
2019-08-15 11:53:26 +02:00
import { MVideoRedundancyFileUrl } from './video-redundancy'
import { MVideo } from './video'
import { MVideoFile } from './video-file'
2019-08-15 11:53:26 +02:00
2019-08-20 13:52:49 +02:00
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[]>
2019-08-15 11:53:26 +02:00
export type MStreamingPlaylistVideo = MStreamingPlaylist &
2019-08-20 13:52:49 +02:00
Use<'Video', MVideo>
2019-08-15 11:53:26 +02:00
export type MStreamingPlaylistFilesVideo = MStreamingPlaylist &
Use<'VideoFiles', MVideoFile[]> &
Use<'Video', MVideo>
2019-08-15 11:53:26 +02:00
export type MStreamingPlaylistRedundancies = MStreamingPlaylist &
Use<'VideoFiles', MVideoFile[]> &
2019-08-20 13:52:49 +02:00
Use<'RedundancyVideos', MVideoRedundancyFileUrl[]>
2019-08-21 14:31:57 +02:00
export type MStreamingPlaylistRedundanciesOpt = MStreamingPlaylist &
Use<'VideoFiles', MVideoFile[]> &
2019-08-21 14:31:57 +02:00
PickWithOpt<VideoStreamingPlaylistModel, 'RedundancyVideos', MVideoRedundancyFileUrl[]>
export function isStreamingPlaylist (value: MVideo | MStreamingPlaylistVideo): value is MStreamingPlaylistVideo {
return !!(value as MStreamingPlaylist).playlistUrl
}