]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/models/video/formatter/video-format-utils.ts
Refactor video query builder
[github/Chocobozzz/PeerTube.git] / server / models / video / formatter / video-format-utils.ts
CommitLineData
90a8bd30
C
1import { generateMagnetUri } from '@server/helpers/webtorrent'
2import { getLocalVideoFileMetadataUrl } from '@server/lib/video-paths'
3import { VideoFile } from '@shared/models/videos/video-file.model'
e5dbd508
C
4import { ActivityTagObject, ActivityUrlObject, VideoObject } from '../../../../shared/models/activitypub/objects'
5import { Video, VideoDetails } from '../../../../shared/models/videos'
6import { VideoStreamingPlaylist } from '../../../../shared/models/videos/video-streaming-playlist.model'
7import { isArray } from '../../../helpers/custom-validators/misc'
8import { MIMETYPES, WEBSERVER } from '../../../initializers/constants'
098eb377 9import {
de94ac86
C
10 getLocalVideoCommentsActivityPubUrl,
11 getLocalVideoDislikesActivityPubUrl,
12 getLocalVideoLikesActivityPubUrl,
13 getLocalVideoSharesActivityPubUrl
e5dbd508 14} from '../../../lib/activitypub/url'
d7a25329
C
15import {
16 MStreamingPlaylistRedundanciesOpt,
8efc27bf 17 MVideo,
d7a25329
C
18 MVideoAP,
19 MVideoFile,
20 MVideoFormattable,
8efc27bf 21 MVideoFormattableDetails
e5dbd508
C
22} from '../../../types/models'
23import { MVideoFileRedundanciesOpt } from '../../../types/models/video/video-file'
24import { VideoModel } from '../video'
25import { VideoCaptionModel } from '../video-caption'
098eb377
C
26
27export type VideoFormattingJSONOptions = {
c39e86b8 28 completeDescription?: boolean
098eb377 29 additionalAttributes: {
a1587156
C
30 state?: boolean
31 waitTranscoding?: boolean
32 scheduledUpdate?: boolean
098eb377
C
33 blacklistInfo?: boolean
34 }
35}
a1587156 36
1ca9f7c3 37function videoModelToFormattedJSON (video: MVideoFormattable, options?: VideoFormattingJSONOptions): Video {
6e46de09
C
38 const userHistory = isArray(video.UserVideoHistories) ? video.UserVideoHistories[0] : undefined
39
098eb377
C
40 const videoObject: Video = {
41 id: video.id,
42 uuid: video.uuid,
43 name: video.name,
44 category: {
45 id: video.category,
46 label: VideoModel.getCategoryLabel(video.category)
47 },
48 licence: {
49 id: video.licence,
50 label: VideoModel.getLicenceLabel(video.licence)
51 },
52 language: {
53 id: video.language,
54 label: VideoModel.getLanguageLabel(video.language)
55 },
56 privacy: {
57 id: video.privacy,
58 label: VideoModel.getPrivacyLabel(video.privacy)
59 },
60 nsfw: video.nsfw,
97816649
C
61
62 description: options && options.completeDescription === true
63 ? video.description
64 : video.getTruncatedDescription(),
65
098eb377
C
66 isLocal: video.isOwned(),
67 duration: video.duration,
68 views: video.views,
69 likes: video.likes,
70 dislikes: video.dislikes,
3acc5084 71 thumbnailPath: video.getMiniatureStaticPath(),
098eb377
C
72 previewPath: video.getPreviewStaticPath(),
73 embedPath: video.getEmbedStaticPath(),
74 createdAt: video.createdAt,
75 updatedAt: video.updatedAt,
76 publishedAt: video.publishedAt,
c8034165 77 originallyPublishedAt: video.originallyPublishedAt,
418d092a 78
c6c0fa6c
C
79 isLive: video.isLive,
80
418d092a
C
81 account: video.VideoChannel.Account.toFormattedSummaryJSON(),
82 channel: video.VideoChannel.toFormattedSummaryJSON(),
6e46de09 83
ba5a8d89
C
84 userHistory: userHistory
85 ? { currentTime: userHistory.currentTime }
86 : undefined,
7294aab0
C
87
88 // Can be added by external plugins
89 pluginData: (video as any).pluginData
098eb377
C
90 }
91
92 if (options) {
93 if (options.additionalAttributes.state === true) {
94 videoObject.state = {
95 id: video.state,
96 label: VideoModel.getStateLabel(video.state)
97 }
98 }
99
100 if (options.additionalAttributes.waitTranscoding === true) {
101 videoObject.waitTranscoding = video.waitTranscoding
102 }
103
104 if (options.additionalAttributes.scheduledUpdate === true && video.ScheduleVideoUpdate) {
105 videoObject.scheduledUpdate = {
106 updateAt: video.ScheduleVideoUpdate.updateAt,
107 privacy: video.ScheduleVideoUpdate.privacy || undefined
108 }
109 }
110
111 if (options.additionalAttributes.blacklistInfo === true) {
112 videoObject.blacklisted = !!video.VideoBlacklist
113 videoObject.blacklistedReason = video.VideoBlacklist ? video.VideoBlacklist.reason : null
114 }
115 }
116
117 return videoObject
118}
119
1ca9f7c3 120function videoModelToFormattedDetailsJSON (video: MVideoFormattableDetails): VideoDetails {
098eb377
C
121 const formattedJson = video.toFormattedJSON({
122 additionalAttributes: {
123 scheduledUpdate: true,
124 blacklistInfo: true
125 }
126 })
127
96f29c0f 128 const tags = video.Tags ? video.Tags.map(t => t.name) : []
09209296 129
d7a25329 130 const streamingPlaylists = streamingPlaylistsModelToFormattedJSON(video, video.VideoStreamingPlaylists)
09209296 131
098eb377
C
132 const detailsJson = {
133 support: video.support,
96f29c0f 134 descriptionPath: video.getDescriptionAPIPath(),
098eb377
C
135 channel: video.VideoChannel.toFormattedJSON(),
136 account: video.VideoChannel.Account.toFormattedJSON(),
96f29c0f 137 tags,
098eb377 138 commentsEnabled: video.commentsEnabled,
7f2cfe3a 139 downloadEnabled: video.downloadEnabled,
098eb377
C
140 waitTranscoding: video.waitTranscoding,
141 state: {
142 id: video.state,
143 label: VideoModel.getStateLabel(video.state)
144 },
09209296 145
d9a2a031 146 trackerUrls: video.getTrackerUrls(),
09209296
C
147
148 files: [],
149 streamingPlaylists
098eb377
C
150 }
151
152 // Format and sort video files
d9a2a031 153 detailsJson.files = videoFilesModelToFormattedJSON(video, video.VideoFiles)
098eb377
C
154
155 return Object.assign(formattedJson, detailsJson)
156}
157
90a8bd30
C
158function streamingPlaylistsModelToFormattedJSON (
159 video: MVideoFormattableDetails,
160 playlists: MStreamingPlaylistRedundanciesOpt[]
161): VideoStreamingPlaylist[] {
09209296
C
162 if (isArray(playlists) === false) return []
163
164 return playlists
165 .map(playlist => {
166 const redundancies = isArray(playlist.RedundancyVideos)
167 ? playlist.RedundancyVideos.map(r => ({ baseUrl: r.fileUrl }))
168 : []
169
d9a2a031 170 const files = videoFilesModelToFormattedJSON(video, playlist.VideoFiles)
d7a25329 171
09209296
C
172 return {
173 id: playlist.id,
174 type: playlist.type,
175 playlistUrl: playlist.playlistUrl,
176 segmentsSha256Url: playlist.segmentsSha256Url,
d7a25329
C
177 redundancies,
178 files
179 }
09209296
C
180 })
181}
182
5072b909
C
183function sortByResolutionDesc (fileA: MVideoFile, fileB: MVideoFile) {
184 if (fileA.resolution < fileB.resolution) return 1
185 if (fileA.resolution === fileB.resolution) return 0
186 return -1
187}
188
d7a25329 189function videoFilesModelToFormattedJSON (
90a8bd30 190 video: MVideoFormattableDetails,
f66db4d5
C
191 videoFiles: MVideoFileRedundanciesOpt[],
192 includeMagnet = true
d7a25329 193): VideoFile[] {
f66db4d5
C
194 const trackerUrls = includeMagnet
195 ? video.getTrackerUrls()
196 : []
d9a2a031 197
5072b909 198 return [ ...videoFiles ]
bd54ad19 199 .filter(f => !f.isLive())
5072b909 200 .sort(sortByResolutionDesc)
098eb377 201 .map(videoFile => {
098eb377
C
202 return {
203 resolution: {
204 id: videoFile.resolution,
a1587156 205 label: videoFile.resolution + 'p'
098eb377 206 },
90a8bd30 207
c4d12552 208 magnetUri: includeMagnet && videoFile.hasTorrent()
f66db4d5
C
209 ? generateMagnetUri(video, videoFile, trackerUrls)
210 : undefined,
90a8bd30 211
098eb377
C
212 size: videoFile.size,
213 fps: videoFile.fps,
90a8bd30
C
214
215 torrentUrl: videoFile.getTorrentUrl(),
216 torrentDownloadUrl: videoFile.getTorrentDownloadUrl(),
217
218 fileUrl: videoFile.getFileUrl(video),
219 fileDownloadUrl: videoFile.getFileDownloadUrl(video),
220
221 metadataUrl: videoFile.metadataUrl ?? getLocalVideoFileMetadataUrl(video, videoFile)
098eb377
C
222 } as VideoFile
223 })
098eb377
C
224}
225
d7a25329
C
226function addVideoFilesInAPAcc (
227 acc: ActivityUrlObject[] | ActivityTagObject[],
8efc27bf 228 video: MVideo,
d7a25329
C
229 files: MVideoFile[]
230) {
d9a2a031
C
231 const trackerUrls = video.getTrackerUrls()
232
bd54ad19
C
233 const sortedFiles = [ ...files ]
234 .filter(f => !f.isLive())
235 .sort(sortByResolutionDesc)
5072b909
C
236
237 for (const file of sortedFiles) {
d7a25329
C
238 acc.push({
239 type: 'Link',
a1587156 240 mediaType: MIMETYPES.VIDEO.EXT_MIMETYPE[file.extname] as any,
90a8bd30 241 href: file.getFileUrl(video),
d7a25329
C
242 height: file.resolution,
243 size: file.size,
244 fps: file.fps
245 })
246
8319d6ae
RK
247 acc.push({
248 type: 'Link',
249 rel: [ 'metadata', MIMETYPES.VIDEO.EXT_MIMETYPE[file.extname] ],
250 mediaType: 'application/json' as 'application/json',
90a8bd30 251 href: getLocalVideoFileMetadataUrl(video, file),
8319d6ae
RK
252 height: file.resolution,
253 fps: file.fps
254 })
255
c4d12552
C
256 if (file.hasTorrent()) {
257 acc.push({
258 type: 'Link',
259 mediaType: 'application/x-bittorrent' as 'application/x-bittorrent',
260 href: file.getTorrentUrl(),
261 height: file.resolution
262 })
263
264 acc.push({
265 type: 'Link',
266 mediaType: 'application/x-bittorrent;x-scheme-handler/magnet' as 'application/x-bittorrent;x-scheme-handler/magnet',
267 href: generateMagnetUri(video, file, trackerUrls),
268 height: file.resolution
269 })
270 }
d7a25329
C
271 }
272}
273
de6310b2 274function videoModelToActivityPubObject (video: MVideoAP): VideoObject {
098eb377
C
275 if (!video.Tags) video.Tags = []
276
277 const tag = video.Tags.map(t => ({
278 type: 'Hashtag' as 'Hashtag',
279 name: t.name
280 }))
281
282 let language
283 if (video.language) {
284 language = {
285 identifier: video.language,
286 name: VideoModel.getLanguageLabel(video.language)
287 }
288 }
289
290 let category
291 if (video.category) {
292 category = {
293 identifier: video.category + '',
294 name: VideoModel.getCategoryLabel(video.category)
295 }
296 }
297
298 let licence
299 if (video.licence) {
300 licence = {
301 identifier: video.licence + '',
302 name: VideoModel.getLicenceLabel(video.licence)
303 }
304 }
305
22f18a4a
C
306 const url: ActivityUrlObject[] = [
307 // HTML url should be the first element in the array so Mastodon correctly displays the embed
308 {
309 type: 'Link',
310 mediaType: 'text/html',
311 href: WEBSERVER.URL + '/videos/watch/' + video.uuid
312 }
313 ]
314
d9a2a031 315 addVideoFilesInAPAcc(url, video, video.VideoFiles || [])
098eb377 316
09209296 317 for (const playlist of (video.VideoStreamingPlaylists || [])) {
a1587156
C
318 const tag = playlist.p2pMediaLoaderInfohashes
319 .map(i => ({ type: 'Infohash' as 'Infohash', name: i })) as ActivityTagObject[]
09209296
C
320 tag.push({
321 type: 'Link',
322 name: 'sha256',
09209296
C
323 mediaType: 'application/json' as 'application/json',
324 href: playlist.segmentsSha256Url
325 })
326
d9a2a031 327 addVideoFilesInAPAcc(tag, video, playlist.VideoFiles || [])
d7a25329 328
09209296
C
329 url.push({
330 type: 'Link',
09209296
C
331 mediaType: 'application/x-mpegURL' as 'application/x-mpegURL',
332 href: playlist.playlistUrl,
333 tag
334 })
335 }
336
d9a2a031
C
337 for (const trackerUrl of video.getTrackerUrls()) {
338 const rel2 = trackerUrl.startsWith('http')
339 ? 'http'
340 : 'websocket'
341
342 url.push({
343 type: 'Link',
344 name: `tracker-${rel2}`,
345 rel: [ 'tracker', rel2 ],
346 href: trackerUrl
347 })
348 }
349
098eb377
C
350 const subtitleLanguage = []
351 for (const caption of video.VideoCaptions) {
352 subtitleLanguage.push({
353 identifier: caption.language,
ca6d3622
C
354 name: VideoCaptionModel.getLanguageLabel(caption.language),
355 url: caption.getFileUrl(video)
098eb377
C
356 })
357 }
358
4282dafc 359 const icons = [ video.getMiniature(), video.getPreview() ]
3acc5084 360
098eb377
C
361 return {
362 type: 'Video' as 'Video',
363 id: video.url,
364 name: video.name,
365 duration: getActivityStreamDuration(video.duration),
366 uuid: video.uuid,
367 tag,
368 category,
369 licence,
370 language,
371 views: video.views,
372 sensitive: video.nsfw,
373 waitTranscoding: video.waitTranscoding,
de6310b2 374 isLiveBroadcast: video.isLive,
af4ae64f
C
375
376 liveSaveReplay: video.isLive
377 ? video.VideoLive.saveReplay
378 : null,
379
bb4ba6d9
C
380 permanentLive: video.isLive
381 ? video.VideoLive.permanentLive
382 : null,
383
098eb377
C
384 state: video.state,
385 commentsEnabled: video.commentsEnabled,
7f2cfe3a 386 downloadEnabled: video.downloadEnabled,
098eb377 387 published: video.publishedAt.toISOString(),
af4ae64f
C
388
389 originallyPublishedAt: video.originallyPublishedAt
390 ? video.originallyPublishedAt.toISOString()
391 : null,
392
098eb377
C
393 updated: video.updatedAt.toISOString(),
394 mediaType: 'text/markdown',
5cb9f0f4 395 content: video.description,
098eb377
C
396 support: video.support,
397 subtitleLanguage,
4282dafc 398 icon: icons.map(i => ({
098eb377 399 type: 'Image',
4282dafc 400 url: i.getFileUrl(video),
098eb377 401 mediaType: 'image/jpeg',
4282dafc
C
402 width: i.width,
403 height: i.height
404 })),
098eb377 405 url,
de94ac86
C
406 likes: getLocalVideoLikesActivityPubUrl(video),
407 dislikes: getLocalVideoDislikesActivityPubUrl(video),
408 shares: getLocalVideoSharesActivityPubUrl(video),
409 comments: getLocalVideoCommentsActivityPubUrl(video),
098eb377
C
410 attributedTo: [
411 {
412 type: 'Person',
413 id: video.VideoChannel.Account.Actor.url
414 },
415 {
416 type: 'Group',
417 id: video.VideoChannel.Actor.url
418 }
419 ]
420 }
421}
422
423function getActivityStreamDuration (duration: number) {
424 // https://www.w3.org/TR/activitystreams-vocabulary/#dfn-duration
425 return 'PT' + duration + 'S'
426}
427
428export {
429 videoModelToFormattedJSON,
430 videoModelToFormattedDetailsJSON,
431 videoFilesModelToFormattedJSON,
432 videoModelToActivityPubObject,
433 getActivityStreamDuration
434}