]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/types/models/video/video-file.ts
Add banners support
[github/Chocobozzz/PeerTube.git] / server / types / models / video / video-file.ts
CommitLineData
453e83ea 1import { VideoFileModel } from '../../../models/video/video-file'
67ed6552 2import { PickWith, PickWithOpt } from '@shared/core-utils'
453e83ea 3import { MVideo, MVideoUUID } from './video'
b764380a 4import { MVideoRedundancy, MVideoRedundancyFileUrl } from './video-redundancy'
d7a25329 5import { MStreamingPlaylistVideo, MStreamingPlaylist } from './video-streaming-playlist'
453e83ea 6
0283eaac
C
7type Use<K extends keyof VideoFileModel, M> = PickWith<VideoFileModel, K, M>
8
9// ############################################################################
10
d7a25329 11export type MVideoFile = Omit<VideoFileModel, 'Video' | 'RedundancyVideos' | 'VideoStreamingPlaylist'>
453e83ea 12
a1587156
C
13export type MVideoFileVideo =
14 MVideoFile &
0283eaac 15 Use<'Video', MVideo>
453e83ea 16
a1587156
C
17export type MVideoFileStreamingPlaylist =
18 MVideoFile &
d7a25329
C
19 Use<'VideoStreamingPlaylist', MStreamingPlaylist>
20
a1587156
C
21export type MVideoFileStreamingPlaylistVideo =
22 MVideoFile &
d7a25329
C
23 Use<'VideoStreamingPlaylist', MStreamingPlaylistVideo>
24
a1587156
C
25export type MVideoFileVideoUUID =
26 MVideoFile &
0283eaac 27 Use<'Video', MVideoUUID>
453e83ea 28
a1587156
C
29export type MVideoFileRedundanciesAll =
30 MVideoFile &
b764380a
C
31 PickWithOpt<VideoFileModel, 'RedundancyVideos', MVideoRedundancy[]>
32
a1587156
C
33export type MVideoFileRedundanciesOpt =
34 MVideoFile &
453e83ea 35 PickWithOpt<VideoFileModel, 'RedundancyVideos', MVideoRedundancyFileUrl[]>
d7a25329
C
36
37export function isStreamingPlaylistFile (file: any): file is MVideoFileStreamingPlaylist {
38 return !!file.videoStreamingPlaylistId
39}
40
41export function isWebtorrentFile (file: any): file is MVideoFileVideo {
42 return !!file.videoId
43}