X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Fhelpers%2Fvideo.ts;h=89c85accb26fb461f138dfd036433c62a9b3699e;hb=c24aac6bc73033195c37d81cf2b7449c9b54712c;hp=4fe2a60f0d57ca925bbee339c373cc063919f0a4;hpb=a30a136c9896c656cab98d2c92cde32c534dc098;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/helpers/video.ts b/server/helpers/video.ts index 4fe2a60f0..89c85accb 100644 --- a/server/helpers/video.ts +++ b/server/helpers/video.ts @@ -1,14 +1,22 @@ import { VideoModel } from '../models/video/video' import * as Bluebird from 'bluebird' import { + isStreamingPlaylist, + MStreamingPlaylistVideo, + MVideo, MVideoAccountLightBlacklistAllFiles, + MVideoFile, MVideoFullLight, MVideoIdThumbnail, + MVideoImmutable, MVideoThumbnail, - MVideoWithRights, - MVideoImmutable -} from '@server/typings/models' + MVideoWithRights +} from '@server/types/models' import { Response } from 'express' +import { DEFAULT_AUDIO_RESOLUTION } from '@server/initializers/constants' +import { JobQueue } from '@server/lib/job-queue' +import { VideoPrivacy, VideoTranscodingPayload } from '@shared/models' +import { CONFIG } from "@server/initializers/config" type VideoFetchType = 'all' | 'only-video' | 'only-video-with-rights' | 'id' | 'none' | 'only-immutable-attributes' @@ -62,10 +70,54 @@ function getVideoWithAttributes (res: Response) { return res.locals.videoAll || res.locals.onlyVideo || res.locals.onlyVideoWithRights } +function addOptimizeOrMergeAudioJob (video: MVideo, videoFile: MVideoFile) { + let dataInput: VideoTranscodingPayload + + if (videoFile.isAudio()) { + dataInput = { + type: 'merge-audio' as 'merge-audio', + resolution: DEFAULT_AUDIO_RESOLUTION, + videoUUID: video.uuid, + isNewVideo: true + } + } else { + dataInput = { + type: 'optimize' as 'optimize', + videoUUID: video.uuid, + isNewVideo: true + } + } + + return JobQueue.Instance.createJobWithPromise({ type: 'video-transcoding', payload: dataInput }) +} + +function extractVideo (videoOrPlaylist: MVideo | MStreamingPlaylistVideo) { + return isStreamingPlaylist(videoOrPlaylist) + ? videoOrPlaylist.Video + : videoOrPlaylist +} + +function isPrivacyForFederation (privacy: VideoPrivacy) { + const castedPrivacy = parseInt(privacy + '', 10) + + return castedPrivacy === VideoPrivacy.PUBLIC || + (CONFIG.FEDERATION.VIDEOS.FEDERATE_UNLISTED === true && castedPrivacy === VideoPrivacy.UNLISTED) +} + +function getPrivaciesForFederation () { + return (CONFIG.FEDERATION.VIDEOS.FEDERATE_UNLISTED === true) + ? [ { privacy: VideoPrivacy.PUBLIC }, { privacy: VideoPrivacy.UNLISTED } ] + : [ { privacy: VideoPrivacy.PUBLIC } ] +} + export { VideoFetchType, VideoFetchByUrlType, fetchVideo, getVideoWithAttributes, - fetchVideoByUrl + fetchVideoByUrl, + addOptimizeOrMergeAudioJob, + extractVideo, + isPrivacyForFederation, + getPrivaciesForFederation }