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