]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/helpers/video.ts
Stronger model typings
[github/Chocobozzz/PeerTube.git] / server / helpers / video.ts
CommitLineData
4157cdb1 1import { VideoModel } from '../models/video/video'
453e83ea
C
2import * as Bluebird from 'bluebird'
3import { MVideoAccountAllFiles, MVideoFullLight, MVideoThumbnail, MVideoWithRights, MVideoIdThumbnail } from '@server/typings/models'
4import { Response } from 'express'
4157cdb1 5
09209296 6type VideoFetchType = 'all' | 'only-video' | 'only-video-with-rights' | 'id' | 'none'
4157cdb1 7
453e83ea
C
8function fetchVideo (id: number | string, fetchType: 'all', userId?: number): Bluebird<MVideoFullLight>
9function fetchVideo (id: number | string, fetchType: 'only-video', userId?: number): Bluebird<MVideoThumbnail>
10function fetchVideo (id: number | string, fetchType: 'only-video-with-rights', userId?: number): Bluebird<MVideoWithRights>
11function fetchVideo (id: number | string, fetchType: 'id' | 'none', userId?: number): Bluebird<MVideoIdThumbnail>
12function fetchVideo (
13 id: number | string,
14 fetchType: VideoFetchType,
15 userId?: number
16): Bluebird<MVideoFullLight | MVideoThumbnail | MVideoWithRights | MVideoIdThumbnail>
17function fetchVideo (
18 id: number | string,
19 fetchType: VideoFetchType,
20 userId?: number
21): Bluebird<MVideoFullLight | MVideoThumbnail | MVideoWithRights | MVideoIdThumbnail> {
6e46de09 22 if (fetchType === 'all') return VideoModel.loadAndPopulateAccountAndServerAndTags(id, undefined, userId)
4157cdb1 23
09209296
C
24 if (fetchType === 'only-video-with-rights') return VideoModel.loadWithRights(id)
25
4157cdb1
C
26 if (fetchType === 'only-video') return VideoModel.load(id)
27
28 if (fetchType === 'id' || fetchType === 'none') return VideoModel.loadOnlyId(id)
29}
30
31type VideoFetchByUrlType = 'all' | 'only-video'
453e83ea
C
32
33function fetchVideoByUrl (url: string, fetchType: 'all'): Bluebird<MVideoAccountAllFiles>
34function fetchVideoByUrl (url: string, fetchType: 'only-video'): Bluebird<MVideoThumbnail>
35function fetchVideoByUrl (url: string, fetchType: VideoFetchByUrlType): Bluebird<MVideoAccountAllFiles> | Bluebird<MVideoThumbnail>
36function fetchVideoByUrl (url: string, fetchType: VideoFetchByUrlType): Bluebird<MVideoAccountAllFiles> | Bluebird<MVideoThumbnail> {
4157cdb1
C
37 if (fetchType === 'all') return VideoModel.loadByUrlAndPopulateAccount(url)
38
39 if (fetchType === 'only-video') return VideoModel.loadByUrl(url)
40}
41
453e83ea
C
42function getVideo (res: Response) {
43 return res.locals.videoAll || res.locals.onlyVideo || res.locals.onlyVideoWithRights || res.locals.videoId
44}
45
4157cdb1
C
46export {
47 VideoFetchType,
48 VideoFetchByUrlType,
49 fetchVideo,
453e83ea 50 getVideo,
4157cdb1
C
51 fetchVideoByUrl
52}