diff options
author | Chocobozzz <me@florianbigard.com> | 2022-03-22 14:35:04 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2022-03-22 16:25:14 +0100 |
commit | 1808a1f8e4b7b102823492a2007a46929aebf189 (patch) | |
tree | a345140ec9a7a20c222ace3cda18ac999277c8c3 /server/lib/video.ts | |
parent | 348c2ce3ff3fe2f25a31f08bfb36c88723a0ce46 (diff) | |
download | PeerTube-1808a1f8e4b7b102823492a2007a46929aebf189.tar.gz PeerTube-1808a1f8e4b7b102823492a2007a46929aebf189.tar.zst PeerTube-1808a1f8e4b7b102823492a2007a46929aebf189.zip |
Add video edition finished notification
Diffstat (limited to 'server/lib/video.ts')
-rw-r--r-- | server/lib/video.ts | 37 |
1 files changed, 28 insertions, 9 deletions
diff --git a/server/lib/video.ts b/server/lib/video.ts index ec4256c1a..a98e45c60 100644 --- a/server/lib/video.ts +++ b/server/lib/video.ts | |||
@@ -6,7 +6,7 @@ import { VideoModel } from '@server/models/video/video' | |||
6 | import { VideoJobInfoModel } from '@server/models/video/video-job-info' | 6 | import { VideoJobInfoModel } from '@server/models/video/video-job-info' |
7 | import { FilteredModelAttributes } from '@server/types' | 7 | import { FilteredModelAttributes } from '@server/types' |
8 | import { MThumbnail, MUserId, MVideoFile, MVideoTag, MVideoThumbnail, MVideoUUID } from '@server/types/models' | 8 | import { MThumbnail, MUserId, MVideoFile, MVideoTag, MVideoThumbnail, MVideoUUID } from '@server/types/models' |
9 | import { ThumbnailType, VideoCreate, VideoPrivacy, VideoTranscodingPayload } from '@shared/models' | 9 | import { ThumbnailType, VideoCreate, VideoPrivacy, VideoState, VideoTranscodingPayload } from '@shared/models' |
10 | import { CreateJobOptions, JobQueue } from './job-queue/job-queue' | 10 | import { CreateJobOptions, JobQueue } from './job-queue/job-queue' |
11 | import { updateVideoMiniatureFromExisting } from './thumbnail' | 11 | import { updateVideoMiniatureFromExisting } from './thumbnail' |
12 | import { CONFIG } from '@server/initializers/config' | 12 | import { CONFIG } from '@server/initializers/config' |
@@ -67,6 +67,8 @@ async function buildVideoThumbnailsFromReq (options: { | |||
67 | return Promise.all(promises) | 67 | return Promise.all(promises) |
68 | } | 68 | } |
69 | 69 | ||
70 | // --------------------------------------------------------------------------- | ||
71 | |||
70 | async function setVideoTags (options: { | 72 | async function setVideoTags (options: { |
71 | video: MVideoTag | 73 | video: MVideoTag |
72 | tags: string[] | 74 | tags: string[] |
@@ -81,7 +83,16 @@ async function setVideoTags (options: { | |||
81 | video.Tags = tagInstances | 83 | video.Tags = tagInstances |
82 | } | 84 | } |
83 | 85 | ||
84 | async function addOptimizeOrMergeAudioJob (video: MVideoUUID, videoFile: MVideoFile, user: MUserId, isNewVideo = true) { | 86 | // --------------------------------------------------------------------------- |
87 | |||
88 | async function addOptimizeOrMergeAudioJob (options: { | ||
89 | video: MVideoUUID | ||
90 | videoFile: MVideoFile | ||
91 | user: MUserId | ||
92 | isNewVideo?: boolean // Default true | ||
93 | }) { | ||
94 | const { video, videoFile, user, isNewVideo } = options | ||
95 | |||
85 | let dataInput: VideoTranscodingPayload | 96 | let dataInput: VideoTranscodingPayload |
86 | 97 | ||
87 | if (videoFile.isAudio()) { | 98 | if (videoFile.isAudio()) { |
@@ -113,13 +124,6 @@ async function addTranscodingJob (payload: VideoTranscodingPayload, options: Cre | |||
113 | return JobQueue.Instance.createJobWithPromise({ type: 'video-transcoding', payload: payload }, options) | 124 | return JobQueue.Instance.createJobWithPromise({ type: 'video-transcoding', payload: payload }, options) |
114 | } | 125 | } |
115 | 126 | ||
116 | async function addMoveToObjectStorageJob (video: MVideoUUID, isNewVideo = true) { | ||
117 | await VideoJobInfoModel.increaseOrCreate(video.uuid, 'pendingMove') | ||
118 | |||
119 | const dataInput = { videoUUID: video.uuid, isNewVideo } | ||
120 | return JobQueue.Instance.createJobWithPromise({ type: 'move-to-object-storage', payload: dataInput }) | ||
121 | } | ||
122 | |||
123 | async function getTranscodingJobPriority (user: MUserId) { | 127 | async function getTranscodingJobPriority (user: MUserId) { |
124 | const now = new Date() | 128 | const now = new Date() |
125 | const lastWeek = new Date(now.getFullYear(), now.getMonth(), now.getDate() - 7) | 129 | const lastWeek = new Date(now.getFullYear(), now.getMonth(), now.getDate() - 7) |
@@ -131,6 +135,21 @@ async function getTranscodingJobPriority (user: MUserId) { | |||
131 | 135 | ||
132 | // --------------------------------------------------------------------------- | 136 | // --------------------------------------------------------------------------- |
133 | 137 | ||
138 | async function addMoveToObjectStorageJob (options: { | ||
139 | video: MVideoUUID | ||
140 | previousVideoState: VideoState | ||
141 | isNewVideo?: boolean // Default true | ||
142 | }) { | ||
143 | const { video, previousVideoState, isNewVideo = true } = options | ||
144 | |||
145 | await VideoJobInfoModel.increaseOrCreate(video.uuid, 'pendingMove') | ||
146 | |||
147 | const dataInput = { videoUUID: video.uuid, isNewVideo, previousVideoState } | ||
148 | return JobQueue.Instance.createJobWithPromise({ type: 'move-to-object-storage', payload: dataInput }) | ||
149 | } | ||
150 | |||
151 | // --------------------------------------------------------------------------- | ||
152 | |||
134 | export { | 153 | export { |
135 | buildLocalVideoFromReq, | 154 | buildLocalVideoFromReq, |
136 | buildVideoThumbnailsFromReq, | 155 | buildVideoThumbnailsFromReq, |