]>
Commit | Line | Data |
---|---|---|
f6d6e7f8 | 1 | import { UploadFiles } from 'express' |
bd911b54 | 2 | import memoizee from 'memoizee' |
1ef65f4c | 3 | import { Transaction } from 'sequelize/types' |
bd911b54 | 4 | import { CONFIG } from '@server/initializers/config' |
0c9668f7 | 5 | import { MEMOIZE_LENGTH, MEMOIZE_TTL } from '@server/initializers/constants' |
1ef65f4c | 6 | import { TagModel } from '@server/models/video/tag' |
c6c0fa6c | 7 | import { VideoModel } from '@server/models/video/video' |
0305db28 | 8 | import { VideoJobInfoModel } from '@server/models/video/video-job-info' |
c6c0fa6c | 9 | import { FilteredModelAttributes } from '@server/types' |
0c9668f7 C |
10 | import { MThumbnail, MVideoFullLight, MVideoTag, MVideoThumbnail, MVideoUUID } from '@server/types/models' |
11 | import { ManageVideoTorrentPayload, ThumbnailType, VideoCreate, VideoPrivacy, VideoState } from '@shared/models' | |
12 | import { CreateJobArgument, JobQueue } from './job-queue/job-queue' | |
91f8f8db | 13 | import { updateVideoMiniatureFromExisting } from './thumbnail' |
3545e72c | 14 | import { moveFilesIfPrivacyChanged } from './video-privacy' |
c6c0fa6c | 15 | |
1ef65f4c | 16 | function buildLocalVideoFromReq (videoInfo: VideoCreate, channelId: number): FilteredModelAttributes<VideoModel> { |
c6c0fa6c C |
17 | return { |
18 | name: videoInfo.name, | |
19 | remote: false, | |
20 | category: videoInfo.category, | |
3cf68b86 | 21 | licence: videoInfo.licence ?? CONFIG.DEFAULTS.PUBLISH.LICENCE, |
c6c0fa6c | 22 | language: videoInfo.language, |
3cf68b86 C |
23 | commentsEnabled: videoInfo.commentsEnabled ?? CONFIG.DEFAULTS.PUBLISH.COMMENTS_ENABLED, |
24 | downloadEnabled: videoInfo.downloadEnabled ?? CONFIG.DEFAULTS.PUBLISH.DOWNLOAD_ENABLED, | |
c6c0fa6c | 25 | waitTranscoding: videoInfo.waitTranscoding || false, |
c6c0fa6c C |
26 | nsfw: videoInfo.nsfw || false, |
27 | description: videoInfo.description, | |
28 | support: videoInfo.support, | |
29 | privacy: videoInfo.privacy || VideoPrivacy.PRIVATE, | |
ba2684ce | 30 | channelId, |
c6c0fa6c | 31 | originallyPublishedAt: videoInfo.originallyPublishedAt |
16c016e8 C |
32 | ? new Date(videoInfo.originallyPublishedAt) |
33 | : null | |
c6c0fa6c C |
34 | } |
35 | } | |
36 | ||
1ef65f4c C |
37 | async function buildVideoThumbnailsFromReq (options: { |
38 | video: MVideoThumbnail | |
f6d6e7f8 | 39 | files: UploadFiles |
1ef65f4c C |
40 | fallback: (type: ThumbnailType) => Promise<MThumbnail> |
41 | automaticallyGenerated?: boolean | |
42 | }) { | |
43 | const { video, files, fallback, automaticallyGenerated } = options | |
44 | ||
45 | const promises = [ | |
46 | { | |
47 | type: ThumbnailType.MINIATURE, | |
48 | fieldName: 'thumbnailfile' | |
49 | }, | |
50 | { | |
51 | type: ThumbnailType.PREVIEW, | |
52 | fieldName: 'previewfile' | |
53 | } | |
54 | ].map(p => { | |
55 | const fields = files?.[p.fieldName] | |
56 | ||
57 | if (fields) { | |
91f8f8db | 58 | return updateVideoMiniatureFromExisting({ |
1ef65f4c C |
59 | inputPath: fields[0].path, |
60 | video, | |
61 | type: p.type, | |
62 | automaticallyGenerated: automaticallyGenerated || false | |
63 | }) | |
64 | } | |
65 | ||
66 | return fallback(p.type) | |
67 | }) | |
68 | ||
69 | return Promise.all(promises) | |
70 | } | |
71 | ||
1808a1f8 C |
72 | // --------------------------------------------------------------------------- |
73 | ||
1ef65f4c C |
74 | async function setVideoTags (options: { |
75 | video: MVideoTag | |
76 | tags: string[] | |
77 | transaction?: Transaction | |
1ef65f4c | 78 | }) { |
6c9c3b7b | 79 | const { video, tags, transaction } = options |
1ef65f4c | 80 | |
6c9c3b7b C |
81 | const internalTags = tags || [] |
82 | const tagInstances = await TagModel.findOrCreateTags(internalTags, transaction) | |
83 | ||
84 | await video.$set('Tags', tagInstances, { transaction }) | |
85 | video.Tags = tagInstances | |
1ef65f4c C |
86 | } |
87 | ||
1808a1f8 C |
88 | // --------------------------------------------------------------------------- |
89 | ||
bd911b54 | 90 | async function buildMoveToObjectStorageJob (options: { |
1808a1f8 C |
91 | video: MVideoUUID |
92 | previousVideoState: VideoState | |
93 | isNewVideo?: boolean // Default true | |
94 | }) { | |
95 | const { video, previousVideoState, isNewVideo = true } = options | |
96 | ||
97 | await VideoJobInfoModel.increaseOrCreate(video.uuid, 'pendingMove') | |
98 | ||
bd911b54 C |
99 | return { |
100 | type: 'move-to-object-storage' as 'move-to-object-storage', | |
101 | payload: { | |
102 | videoUUID: video.uuid, | |
103 | isNewVideo, | |
104 | previousVideoState | |
105 | } | |
106 | } | |
1808a1f8 C |
107 | } |
108 | ||
109 | // --------------------------------------------------------------------------- | |
110 | ||
aa2ce188 C |
111 | async function getVideoDuration (videoId: number | string) { |
112 | const video = await VideoModel.load(videoId) | |
113 | ||
114 | const duration = video.isLive | |
115 | ? undefined | |
116 | : video.duration | |
117 | ||
118 | return { duration, isLive: video.isLive } | |
119 | } | |
120 | ||
121 | const getCachedVideoDuration = memoizee(getVideoDuration, { | |
122 | promise: true, | |
123 | max: MEMOIZE_LENGTH.VIDEO_DURATION, | |
124 | maxAge: MEMOIZE_TTL.VIDEO_DURATION | |
125 | }) | |
126 | ||
127 | // --------------------------------------------------------------------------- | |
128 | ||
3545e72c C |
129 | async function addVideoJobsAfterUpdate (options: { |
130 | video: MVideoFullLight | |
131 | isNewVideo: boolean | |
132 | ||
133 | nameChanged: boolean | |
134 | oldPrivacy: VideoPrivacy | |
135 | }) { | |
136 | const { video, nameChanged, oldPrivacy, isNewVideo } = options | |
137 | const jobs: CreateJobArgument[] = [] | |
138 | ||
139 | const filePathChanged = await moveFilesIfPrivacyChanged(video, oldPrivacy) | |
140 | ||
141 | if (!video.isLive && (nameChanged || filePathChanged)) { | |
142 | for (const file of (video.VideoFiles || [])) { | |
143 | const payload: ManageVideoTorrentPayload = { action: 'update-metadata', videoId: video.id, videoFileId: file.id } | |
144 | ||
145 | jobs.push({ type: 'manage-video-torrent', payload }) | |
146 | } | |
147 | ||
148 | const hls = video.getHLSPlaylist() | |
149 | ||
150 | for (const file of (hls?.VideoFiles || [])) { | |
151 | const payload: ManageVideoTorrentPayload = { action: 'update-metadata', streamingPlaylistId: hls.id, videoFileId: file.id } | |
152 | ||
153 | jobs.push({ type: 'manage-video-torrent', payload }) | |
154 | } | |
155 | } | |
156 | ||
157 | jobs.push({ | |
158 | type: 'federate-video', | |
159 | payload: { | |
160 | videoUUID: video.uuid, | |
161 | isNewVideo | |
162 | } | |
163 | }) | |
164 | ||
165 | const wasConfidentialVideo = new Set([ VideoPrivacy.PRIVATE, VideoPrivacy.UNLISTED, VideoPrivacy.INTERNAL ]).has(oldPrivacy) | |
166 | ||
167 | if (wasConfidentialVideo) { | |
168 | jobs.push({ | |
169 | type: 'notify', | |
170 | payload: { | |
171 | action: 'new-video', | |
172 | videoUUID: video.uuid | |
173 | } | |
174 | }) | |
175 | } | |
176 | ||
177 | return JobQueue.Instance.createSequentialJobFlow(...jobs) | |
178 | } | |
179 | ||
180 | // --------------------------------------------------------------------------- | |
181 | ||
c6c0fa6c | 182 | export { |
1ef65f4c C |
183 | buildLocalVideoFromReq, |
184 | buildVideoThumbnailsFromReq, | |
77d7e851 | 185 | setVideoTags, |
bd911b54 | 186 | buildMoveToObjectStorageJob, |
3545e72c | 187 | addVideoJobsAfterUpdate, |
aa2ce188 | 188 | getCachedVideoDuration |
c6c0fa6c | 189 | } |