X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Fhelpers%2Fvideo.ts;h=c688ef1e3b108aa1d7f6b90f949b558870700f33;hb=d3fcf1c57ab898e18654910e880875a911fbd128;hp=c90fe06c78e2729174f58f5dee75741d9f194cd5;hpb=ae9bbed46dbc8d9870c9feb66bbada484c1c7582;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/helpers/video.ts b/server/helpers/video.ts index c90fe06c7..c688ef1e3 100644 --- a/server/helpers/video.ts +++ b/server/helpers/video.ts @@ -1,27 +1,51 @@ -import { VideoModel } from '../models/video/video' +import { Response } from 'express' +import { CONFIG } from '@server/initializers/config' +import { isStreamingPlaylist, MStreamingPlaylistVideo, MVideo } from '@server/types/models' +import { VideoPrivacy, VideoState } from '@shared/models' +import { forceNumber } from '@shared/core-utils' + +function getVideoWithAttributes (res: Response) { + return res.locals.videoAPI || res.locals.videoAll || res.locals.onlyVideo +} + +function extractVideo (videoOrPlaylist: MVideo | MStreamingPlaylistVideo) { + return isStreamingPlaylist(videoOrPlaylist) + ? videoOrPlaylist.Video + : videoOrPlaylist +} -type VideoFetchType = 'all' | 'only-video' | 'only-video-with-rights' | 'id' | 'none' +function isPrivacyForFederation (privacy: VideoPrivacy) { + const castedPrivacy = forceNumber(privacy) -function fetchVideo (id: number | string, fetchType: VideoFetchType, userId?: number) { - if (fetchType === 'all') return VideoModel.loadAndPopulateAccountAndServerAndTags(id, undefined, userId) + return castedPrivacy === VideoPrivacy.PUBLIC || + (CONFIG.FEDERATION.VIDEOS.FEDERATE_UNLISTED === true && castedPrivacy === VideoPrivacy.UNLISTED) +} - if (fetchType === 'only-video-with-rights') return VideoModel.loadWithRights(id) +function isStateForFederation (state: VideoState) { + const castedState = forceNumber(state) - if (fetchType === 'only-video') return VideoModel.load(id) + return castedState === VideoState.PUBLISHED || castedState === VideoState.WAITING_FOR_LIVE || castedState === VideoState.LIVE_ENDED +} - if (fetchType === 'id' || fetchType === 'none') return VideoModel.loadOnlyId(id) +function getPrivaciesForFederation () { + return (CONFIG.FEDERATION.VIDEOS.FEDERATE_UNLISTED === true) + ? [ { privacy: VideoPrivacy.PUBLIC }, { privacy: VideoPrivacy.UNLISTED } ] + : [ { privacy: VideoPrivacy.PUBLIC } ] } -type VideoFetchByUrlType = 'all' | 'only-video' -function fetchVideoByUrl (url: string, fetchType: VideoFetchByUrlType) { - if (fetchType === 'all') return VideoModel.loadByUrlAndPopulateAccount(url) +function getExtFromMimetype (mimeTypes: { [id: string]: string | string[] }, mimeType: string) { + const value = mimeTypes[mimeType] + + if (Array.isArray(value)) return value[0] - if (fetchType === 'only-video') return VideoModel.loadByUrl(url) + return value } export { - VideoFetchType, - VideoFetchByUrlType, - fetchVideo, - fetchVideoByUrl + getVideoWithAttributes, + extractVideo, + getExtFromMimetype, + isStateForFederation, + isPrivacyForFederation, + getPrivaciesForFederation }