]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/lib/thumbnail.ts
Update data in DB when regenerate thumbnails
[github/Chocobozzz/PeerTube.git] / server / lib / thumbnail.ts
CommitLineData
a35a2279 1import { join } from 'path'
a0eeb45f 2import { ActorImageModel } from '@server/models/account/actor-image'
a35a2279 3import { ThumbnailType } from '../../shared/models/videos/thumbnail.type'
e8bafea3 4import { generateImageFromVideoFile } from '../helpers/ffmpeg-utils'
a35a2279
C
5import { processImage } from '../helpers/image-utils'
6import { downloadImage } from '../helpers/requests'
e8bafea3 7import { CONFIG } from '../initializers/config'
453e83ea 8import { ASSETS_PATH, PREVIEWS_SIZE, THUMBNAILS_SIZE } from '../initializers/constants'
e8bafea3 9import { ThumbnailModel } from '../models/video/thumbnail'
1ef447bd 10import { MVideoFile, MVideoThumbnail, MVideoUUID } from '../types/models'
26d6bf65 11import { MThumbnail } from '../types/models/video/thumbnail'
a35a2279 12import { MVideoPlaylistThumbnail } from '../types/models/video/video-playlist'
d7a25329 13import { getVideoFilePath } from './video-paths'
e8bafea3
C
14
15type ImageSize = { height: number, width: number }
16
a35a2279
C
17function createPlaylistMiniatureFromExisting (options: {
18 inputPath: string
19 playlist: MVideoPlaylistThumbnail
20 automaticallyGenerated: boolean
21 keepOriginal?: boolean // default to false
65af03a2 22 size?: ImageSize
a35a2279
C
23}) {
24 const { inputPath, playlist, automaticallyGenerated, keepOriginal = false, size } = options
e8bafea3 25 const { filename, outputPath, height, width, existingThumbnail } = buildMetadataFromPlaylist(playlist, size)
3acc5084 26 const type = ThumbnailType.MINIATURE
e8bafea3 27
2fb5b3a5 28 const thumbnailCreator = () => processImage(inputPath, outputPath, { width, height }, keepOriginal)
a35a2279
C
29 return createThumbnailFromFunction({
30 thumbnailCreator,
31 filename,
32 height,
33 width,
34 type,
35 automaticallyGenerated,
36 existingThumbnail
37 })
e8bafea3
C
38}
39
a35a2279
C
40function createPlaylistMiniatureFromUrl (options: {
41 downloadUrl: string
42 playlist: MVideoPlaylistThumbnail
43 size?: ImageSize
44}) {
45 const { downloadUrl, playlist, size } = options
e8bafea3 46 const { filename, basePath, height, width, existingThumbnail } = buildMetadataFromPlaylist(playlist, size)
3acc5084 47 const type = ThumbnailType.MINIATURE
e8bafea3 48
a8b1b404
C
49 // Only save the file URL if it is a remote playlist
50 const fileUrl = playlist.isOwned()
51 ? null
52 : downloadUrl
53
54 const thumbnailCreator = () => downloadImage(downloadUrl, basePath, filename, { width, height })
9cc8d43e 55 return createThumbnailFromFunction({ thumbnailCreator, filename, height, width, type, existingThumbnail, fileUrl })
e8bafea3
C
56}
57
a35a2279
C
58function createVideoMiniatureFromUrl (options: {
59 downloadUrl: string
60 video: MVideoThumbnail
61 type: ThumbnailType
62 size?: ImageSize
63}) {
64 const { downloadUrl, video, type, size } = options
d9a2a031 65 const { filename: updatedFilename, basePath, height, width, existingThumbnail } = buildMetadataFromVideo(video, type, size)
e8bafea3 66
a8b1b404
C
67 // Only save the file URL if it is a remote video
68 const fileUrl = video.isOwned()
69 ? null
70 : downloadUrl
71
1ef447bd 72 const thumbnailUrlChanged = hasThumbnailUrlChanged(existingThumbnail, downloadUrl, video)
d9a2a031
C
73
74 // Do not change the thumbnail filename if the file did not change
75 const filename = thumbnailUrlChanged
76 ? updatedFilename
77 : existingThumbnail.filename
78
374b725d
C
79 const thumbnailCreator = () => {
80 if (thumbnailUrlChanged) return downloadImage(downloadUrl, basePath, filename, { width, height })
81
d9a2a031 82 return Promise.resolve()
374b725d
C
83 }
84
9cc8d43e 85 return createThumbnailFromFunction({ thumbnailCreator, filename, height, width, type, existingThumbnail, fileUrl })
e8bafea3
C
86}
87
1ef65f4c
C
88function createVideoMiniatureFromExisting (options: {
89 inputPath: string
90 video: MVideoThumbnail
91 type: ThumbnailType
92 automaticallyGenerated: boolean
65af03a2 93 size?: ImageSize
a35a2279 94 keepOriginal?: boolean // default to false
1ef65f4c 95}) {
a35a2279 96 const { inputPath, video, type, automaticallyGenerated, size, keepOriginal = false } = options
1ef65f4c 97
e8bafea3 98 const { filename, outputPath, height, width, existingThumbnail } = buildMetadataFromVideo(video, type, size)
1ef65f4c 99 const thumbnailCreator = () => processImage(inputPath, outputPath, { width, height }, keepOriginal)
e8bafea3 100
a35a2279
C
101 return createThumbnailFromFunction({
102 thumbnailCreator,
103 filename,
104 height,
105 width,
106 type,
107 automaticallyGenerated,
108 existingThumbnail
109 })
e8bafea3
C
110}
111
a35a2279
C
112function generateVideoMiniature (options: {
113 video: MVideoThumbnail
114 videoFile: MVideoFile
115 type: ThumbnailType
116}) {
117 const { video, videoFile, type } = options
118
d7a25329 119 const input = getVideoFilePath(video, videoFile)
e8bafea3 120
536598cf
C
121 const { filename, basePath, height, width, existingThumbnail, outputPath } = buildMetadataFromVideo(video, type)
122 const thumbnailCreator = videoFile.isAudio()
123 ? () => processImage(ASSETS_PATH.DEFAULT_AUDIO_BACKGROUND, outputPath, { width, height }, true)
124 : () => generateImageFromVideoFile(input, basePath, filename, { height, width })
e8bafea3 125
a35a2279
C
126 return createThumbnailFromFunction({
127 thumbnailCreator,
128 filename,
129 height,
130 width,
131 type,
132 automaticallyGenerated: true,
133 existingThumbnail
134 })
e8bafea3
C
135}
136
a35a2279
C
137function createPlaceholderThumbnail (options: {
138 fileUrl: string
139 video: MVideoThumbnail
140 type: ThumbnailType
141 size: ImageSize
142}) {
143 const { fileUrl, video, type, size } = options
1ef447bd
C
144 const { filename: updatedFilename, height, width, existingThumbnail } = buildMetadataFromVideo(video, type, size)
145
146 const thumbnailUrlChanged = hasThumbnailUrlChanged(existingThumbnail, fileUrl, video)
e8bafea3 147
a1587156 148 const thumbnail = existingThumbnail || new ThumbnailModel()
e8bafea3 149
1ef447bd
C
150 // Do not change the thumbnail filename if the file did not change
151 const filename = thumbnailUrlChanged
152 ? updatedFilename
153 : existingThumbnail.filename
154
e8bafea3
C
155 thumbnail.filename = filename
156 thumbnail.height = height
157 thumbnail.width = width
158 thumbnail.type = type
9cc8d43e 159 thumbnail.fileUrl = fileUrl
e8bafea3
C
160
161 return thumbnail
162}
163
164// ---------------------------------------------------------------------------
165
166export {
3acc5084
C
167 generateVideoMiniature,
168 createVideoMiniatureFromUrl,
169 createVideoMiniatureFromExisting,
e8bafea3 170 createPlaceholderThumbnail,
3acc5084
C
171 createPlaylistMiniatureFromUrl,
172 createPlaylistMiniatureFromExisting
e8bafea3
C
173}
174
1ef447bd
C
175function hasThumbnailUrlChanged (existingThumbnail: MThumbnail, downloadUrl: string, video: MVideoUUID) {
176 const existingUrl = existingThumbnail
177 ? existingThumbnail.fileUrl
178 : null
179
180 // If the thumbnail URL did not change and has a unique filename (introduced in 3.1), avoid thumbnail processing
181 return !existingUrl || existingUrl !== downloadUrl || downloadUrl.endsWith(`${video.uuid}.jpg`)
182}
183
453e83ea 184function buildMetadataFromPlaylist (playlist: MVideoPlaylistThumbnail, size: ImageSize) {
e8bafea3
C
185 const filename = playlist.generateThumbnailName()
186 const basePath = CONFIG.STORAGE.THUMBNAILS_DIR
187
188 return {
189 filename,
190 basePath,
191 existingThumbnail: playlist.Thumbnail,
192 outputPath: join(basePath, filename),
193 height: size ? size.height : THUMBNAILS_SIZE.height,
194 width: size ? size.width : THUMBNAILS_SIZE.width
195 }
196}
197
453e83ea 198function buildMetadataFromVideo (video: MVideoThumbnail, type: ThumbnailType, size?: ImageSize) {
e8bafea3
C
199 const existingThumbnail = Array.isArray(video.Thumbnails)
200 ? video.Thumbnails.find(t => t.type === type)
201 : undefined
202
3acc5084 203 if (type === ThumbnailType.MINIATURE) {
a0eeb45f 204 const filename = ActorImageModel.generateFilename()
e8bafea3
C
205 const basePath = CONFIG.STORAGE.THUMBNAILS_DIR
206
207 return {
208 filename,
209 basePath,
210 existingThumbnail,
211 outputPath: join(basePath, filename),
212 height: size ? size.height : THUMBNAILS_SIZE.height,
213 width: size ? size.width : THUMBNAILS_SIZE.width
214 }
215 }
216
217 if (type === ThumbnailType.PREVIEW) {
a0eeb45f 218 const filename = ActorImageModel.generateFilename()
e8bafea3
C
219 const basePath = CONFIG.STORAGE.PREVIEWS_DIR
220
221 return {
222 filename,
223 basePath,
224 existingThumbnail,
225 outputPath: join(basePath, filename),
226 height: size ? size.height : PREVIEWS_SIZE.height,
227 width: size ? size.width : PREVIEWS_SIZE.width
228 }
229 }
230
231 return undefined
232}
233
234async function createThumbnailFromFunction (parameters: {
a1587156
C
235 thumbnailCreator: () => Promise<any>
236 filename: string
237 height: number
238 width: number
239 type: ThumbnailType
240 automaticallyGenerated?: boolean
241 fileUrl?: string
453e83ea 242 existingThumbnail?: MThumbnail
e8bafea3 243}) {
a35a2279
C
244 const {
245 thumbnailCreator,
246 filename,
247 width,
248 height,
249 type,
250 existingThumbnail,
251 automaticallyGenerated = null,
252 fileUrl = null
253 } = parameters
254
d9a2a031 255 const oldFilename = existingThumbnail && existingThumbnail.filename !== filename
a35a2279
C
256 ? existingThumbnail.filename
257 : undefined
6302d599 258
a35a2279 259 const thumbnail: MThumbnail = existingThumbnail || new ThumbnailModel()
e8bafea3
C
260
261 thumbnail.filename = filename
262 thumbnail.height = height
263 thumbnail.width = width
264 thumbnail.type = type
9cc8d43e 265 thumbnail.fileUrl = fileUrl
65af03a2 266 thumbnail.automaticallyGenerated = automaticallyGenerated
d9a2a031
C
267
268 if (oldFilename) thumbnail.previousThumbnailFilename = oldFilename
e8bafea3
C
269
270 await thumbnailCreator()
271
272 return thumbnail
273}