1 import { Video, VideoDetails } from '../../../shared/models/videos'
2 import { VideoModel } from './video'
3 import { ActivityTagObject, ActivityUrlObject, VideoObject } from '../../../shared/models/activitypub/objects'
4 import { MIMETYPES, WEBSERVER } from '../../initializers/constants'
5 import { VideoCaptionModel } from './video-caption'
7 getVideoCommentsActivityPubUrl,
8 getVideoDislikesActivityPubUrl,
9 getVideoLikesActivityPubUrl,
10 getVideoSharesActivityPubUrl
11 } from '../../lib/activitypub/url'
12 import { isArray } from '../../helpers/custom-validators/misc'
13 import { VideoStreamingPlaylist } from '../../../shared/models/videos/video-streaming-playlist.model'
15 MStreamingPlaylistRedundanciesOpt,
16 MStreamingPlaylistVideo,
21 MVideoFormattableDetails
22 } from '../../types/models'
23 import { MVideoFileRedundanciesOpt } from '../../types/models/video/video-file'
24 import { VideoFile } from '@shared/models/videos/video-file.model'
25 import { generateMagnetUri } from '@server/helpers/webtorrent'
26 import { extractVideo } from '@server/helpers/video'
28 export type VideoFormattingJSONOptions = {
29 completeDescription?: boolean
30 additionalAttributes: {
32 waitTranscoding?: boolean
33 scheduledUpdate?: boolean
34 blacklistInfo?: boolean
38 function videoModelToFormattedJSON (video: MVideoFormattable, options?: VideoFormattingJSONOptions): Video {
39 const userHistory = isArray(video.UserVideoHistories) ? video.UserVideoHistories[0] : undefined
41 const videoObject: Video = {
47 label: VideoModel.getCategoryLabel(video.category)
51 label: VideoModel.getLicenceLabel(video.licence)
55 label: VideoModel.getLanguageLabel(video.language)
59 label: VideoModel.getPrivacyLabel(video.privacy)
63 description: options && options.completeDescription === true
65 : video.getTruncatedDescription(),
67 isLocal: video.isOwned(),
68 duration: video.duration,
71 dislikes: video.dislikes,
72 thumbnailPath: video.getMiniatureStaticPath(),
73 previewPath: video.getPreviewStaticPath(),
74 embedPath: video.getEmbedStaticPath(),
75 createdAt: video.createdAt,
76 updatedAt: video.updatedAt,
77 publishedAt: video.publishedAt,
78 originallyPublishedAt: video.originallyPublishedAt,
82 account: video.VideoChannel.Account.toFormattedSummaryJSON(),
83 channel: video.VideoChannel.toFormattedSummaryJSON(),
85 userHistory: userHistory ? {
86 currentTime: userHistory.currentTime
89 // Can be added by external plugins
90 pluginData: (video as any).pluginData
94 if (options.additionalAttributes.state === true) {
97 label: VideoModel.getStateLabel(video.state)
101 if (options.additionalAttributes.waitTranscoding === true) {
102 videoObject.waitTranscoding = video.waitTranscoding
105 if (options.additionalAttributes.scheduledUpdate === true && video.ScheduleVideoUpdate) {
106 videoObject.scheduledUpdate = {
107 updateAt: video.ScheduleVideoUpdate.updateAt,
108 privacy: video.ScheduleVideoUpdate.privacy || undefined
112 if (options.additionalAttributes.blacklistInfo === true) {
113 videoObject.blacklisted = !!video.VideoBlacklist
114 videoObject.blacklistedReason = video.VideoBlacklist ? video.VideoBlacklist.reason : null
121 function videoModelToFormattedDetailsJSON (video: MVideoFormattableDetails): VideoDetails {
122 const formattedJson = video.toFormattedJSON({
123 additionalAttributes: {
124 scheduledUpdate: true,
129 const { baseUrlHttp, baseUrlWs } = video.getBaseUrls()
131 const tags = video.Tags ? video.Tags.map(t => t.name) : []
133 const streamingPlaylists = streamingPlaylistsModelToFormattedJSON(video, video.VideoStreamingPlaylists)
135 const detailsJson = {
136 support: video.support,
137 descriptionPath: video.getDescriptionAPIPath(),
138 channel: video.VideoChannel.toFormattedJSON(),
139 account: video.VideoChannel.Account.toFormattedJSON(),
141 commentsEnabled: video.commentsEnabled,
142 downloadEnabled: video.downloadEnabled,
143 waitTranscoding: video.waitTranscoding,
146 label: VideoModel.getStateLabel(video.state)
149 trackerUrls: video.getTrackerUrls(baseUrlHttp, baseUrlWs),
155 // Format and sort video files
156 detailsJson.files = videoFilesModelToFormattedJSON(video, baseUrlHttp, baseUrlWs, video.VideoFiles)
158 return Object.assign(formattedJson, detailsJson)
161 function streamingPlaylistsModelToFormattedJSON (video: MVideo, playlists: MStreamingPlaylistRedundanciesOpt[]): VideoStreamingPlaylist[] {
162 if (isArray(playlists) === false) return []
164 const { baseUrlHttp, baseUrlWs } = video.getBaseUrls()
168 const playlistWithVideo = Object.assign(playlist, { Video: video })
170 const redundancies = isArray(playlist.RedundancyVideos)
171 ? playlist.RedundancyVideos.map(r => ({ baseUrl: r.fileUrl }))
174 const files = videoFilesModelToFormattedJSON(playlistWithVideo, baseUrlHttp, baseUrlWs, playlist.VideoFiles)
179 playlistUrl: playlist.playlistUrl,
180 segmentsSha256Url: playlist.segmentsSha256Url,
187 function sortByResolutionDesc (fileA: MVideoFile, fileB: MVideoFile) {
188 if (fileA.resolution < fileB.resolution) return 1
189 if (fileA.resolution === fileB.resolution) return 0
193 function videoFilesModelToFormattedJSON (
194 model: MVideo | MStreamingPlaylistVideo,
197 videoFiles: MVideoFileRedundanciesOpt[]
199 const video = extractVideo(model)
201 return [ ...videoFiles ]
202 .sort(sortByResolutionDesc)
206 id: videoFile.resolution,
207 label: videoFile.resolution + 'p'
209 magnetUri: generateMagnetUri(model, videoFile, baseUrlHttp, baseUrlWs),
210 size: videoFile.size,
212 torrentUrl: model.getTorrentUrl(videoFile, baseUrlHttp),
213 torrentDownloadUrl: model.getTorrentDownloadUrl(videoFile, baseUrlHttp),
214 fileUrl: model.getVideoFileUrl(videoFile, baseUrlHttp),
215 fileDownloadUrl: model.getVideoFileDownloadUrl(videoFile, baseUrlHttp),
216 metadataUrl: video.getVideoFileMetadataUrl(videoFile, baseUrlHttp)
221 function addVideoFilesInAPAcc (
222 acc: ActivityUrlObject[] | ActivityTagObject[],
223 model: MVideoAP | MStreamingPlaylistVideo,
228 const sortedFiles = [ ...files ].sort(sortByResolutionDesc)
230 for (const file of sortedFiles) {
233 mediaType: MIMETYPES.VIDEO.EXT_MIMETYPE[file.extname] as any,
234 href: model.getVideoFileUrl(file, baseUrlHttp),
235 height: file.resolution,
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,
251 mediaType: 'application/x-bittorrent' as 'application/x-bittorrent',
252 href: model.getTorrentUrl(file, baseUrlHttp),
253 height: file.resolution
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
265 function videoModelToActivityPubObject (video: MVideoAP): VideoObject {
266 const { baseUrlHttp, baseUrlWs } = video.getBaseUrls()
267 if (!video.Tags) video.Tags = []
269 const tag = video.Tags.map(t => ({
270 type: 'Hashtag' as 'Hashtag',
275 if (video.language) {
277 identifier: video.language,
278 name: VideoModel.getLanguageLabel(video.language)
283 if (video.category) {
285 identifier: video.category + '',
286 name: VideoModel.getCategoryLabel(video.category)
293 identifier: video.licence + '',
294 name: VideoModel.getLicenceLabel(video.licence)
298 const url: ActivityUrlObject[] = [
299 // HTML url should be the first element in the array so Mastodon correctly displays the embed
302 mediaType: 'text/html',
303 href: WEBSERVER.URL + '/videos/watch/' + video.uuid
307 addVideoFilesInAPAcc(url, video, baseUrlHttp, baseUrlWs, video.VideoFiles || [])
309 for (const playlist of (video.VideoStreamingPlaylists || [])) {
310 const tag = playlist.p2pMediaLoaderInfohashes
311 .map(i => ({ type: 'Infohash' as 'Infohash', name: i })) as ActivityTagObject[]
315 mediaType: 'application/json' as 'application/json',
316 href: playlist.segmentsSha256Url
319 const playlistWithVideo = Object.assign(playlist, { Video: video })
320 addVideoFilesInAPAcc(tag, playlistWithVideo, baseUrlHttp, baseUrlWs, playlist.VideoFiles || [])
324 mediaType: 'application/x-mpegURL' as 'application/x-mpegURL',
325 href: playlist.playlistUrl,
330 const subtitleLanguage = []
331 for (const caption of video.VideoCaptions) {
332 subtitleLanguage.push({
333 identifier: caption.language,
334 name: VideoCaptionModel.getLanguageLabel(caption.language),
335 url: caption.getFileUrl(video)
339 const icons = [ video.getMiniature(), video.getPreview() ]
342 type: 'Video' as 'Video',
345 duration: getActivityStreamDuration(video.duration),
352 sensitive: video.nsfw,
353 waitTranscoding: video.waitTranscoding,
354 isLiveBroadcast: video.isLive,
356 commentsEnabled: video.commentsEnabled,
357 downloadEnabled: video.downloadEnabled,
358 published: video.publishedAt.toISOString(),
359 originallyPublishedAt: video.originallyPublishedAt ? video.originallyPublishedAt.toISOString() : null,
360 updated: video.updatedAt.toISOString(),
361 mediaType: 'text/markdown',
362 content: video.description,
363 support: video.support,
365 icon: icons.map(i => ({
367 url: i.getFileUrl(video),
368 mediaType: 'image/jpeg',
373 likes: getVideoLikesActivityPubUrl(video),
374 dislikes: getVideoDislikesActivityPubUrl(video),
375 shares: getVideoSharesActivityPubUrl(video),
376 comments: getVideoCommentsActivityPubUrl(video),
380 id: video.VideoChannel.Account.Actor.url
384 id: video.VideoChannel.Actor.url
390 function getActivityStreamDuration (duration: number) {
391 // https://www.w3.org/TR/activitystreams-vocabulary/#dfn-duration
392 return 'PT' + duration + 'S'
396 videoModelToFormattedJSON,
397 videoModelToFormattedDetailsJSON,
398 videoFilesModelToFormattedJSON,
399 videoModelToActivityPubObject,
400 getActivityStreamDuration