]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - server/helpers/video.ts
Remove unnecessary NPM_RUN_BUILD_OPTS docker arg
[github/Chocobozzz/PeerTube.git] / server / helpers / video.ts
index b1577a6b0911f14614cf063d964a8fafadcfdb70..f5f645d3eac1997614c177f00c5a64c215f38ef0 100644 (file)
@@ -1,25 +1,50 @@
-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'
 
-type VideoFetchType = 'all' | 'only-video' | 'id' | 'none'
+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
+}
+
+function isPrivacyForFederation (privacy: VideoPrivacy) {
+  const castedPrivacy = parseInt(privacy + '', 10)
 
-function fetchVideo (id: number | string, fetchType: VideoFetchType) {
-  if (fetchType === 'all') return VideoModel.loadAndPopulateAccountAndServerAndTags(id)
+  return castedPrivacy === VideoPrivacy.PUBLIC ||
+    (CONFIG.FEDERATION.VIDEOS.FEDERATE_UNLISTED === true && castedPrivacy === VideoPrivacy.UNLISTED)
+}
+
+function isStateForFederation (state: VideoState) {
+  const castedState = parseInt(state + '', 10)
 
-  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
 }