2018-09-18 05:02:51 -04:00
|
|
|
import { Video, VideoDetails, VideoFile } from '../../../shared/models/videos'
|
|
|
|
import { VideoModel } from './video'
|
2019-01-29 02:37:25 -05:00
|
|
|
import {
|
|
|
|
ActivityPlaylistInfohashesObject,
|
|
|
|
ActivityPlaylistSegmentHashesObject,
|
|
|
|
ActivityUrlObject,
|
|
|
|
VideoTorrentObject
|
|
|
|
} from '../../../shared/models/activitypub/objects'
|
2019-04-17 04:07:00 -04:00
|
|
|
import { MIMETYPES, WEBSERVER } from '../../initializers/constants'
|
2018-09-18 05:02:51 -04:00
|
|
|
import { VideoCaptionModel } from './video-caption'
|
|
|
|
import {
|
|
|
|
getVideoCommentsActivityPubUrl,
|
|
|
|
getVideoDislikesActivityPubUrl,
|
|
|
|
getVideoLikesActivityPubUrl,
|
|
|
|
getVideoSharesActivityPubUrl
|
|
|
|
} from '../../lib/activitypub'
|
2018-10-05 10:56:14 -04:00
|
|
|
import { isArray } from '../../helpers/custom-validators/misc'
|
2019-01-29 02:37:25 -05:00
|
|
|
import { VideoStreamingPlaylist } from '../../../shared/models/videos/video-streaming-playlist.model'
|
2019-08-20 13:05:31 -04:00
|
|
|
import { MVideo, MVideoAP, MVideoFormattable, MVideoFormattableDetails } from '../../typings/models'
|
2019-08-15 05:53:26 -04:00
|
|
|
import { MStreamingPlaylistRedundancies } from '../../typings/models/video/video-streaming-playlist'
|
|
|
|
import { MVideoFileRedundanciesOpt } from '../../typings/models/video/video-file'
|
2018-09-18 05:02:51 -04:00
|
|
|
|
|
|
|
export type VideoFormattingJSONOptions = {
|
2018-09-28 04:18:37 -04:00
|
|
|
completeDescription?: boolean
|
2018-09-18 05:02:51 -04:00
|
|
|
additionalAttributes: {
|
|
|
|
state?: boolean,
|
|
|
|
waitTranscoding?: boolean,
|
|
|
|
scheduledUpdate?: boolean,
|
|
|
|
blacklistInfo?: boolean
|
|
|
|
}
|
|
|
|
}
|
2019-08-20 13:05:31 -04:00
|
|
|
function videoModelToFormattedJSON (video: MVideoFormattable, options?: VideoFormattingJSONOptions): Video {
|
2018-10-05 05:15:06 -04:00
|
|
|
const userHistory = isArray(video.UserVideoHistories) ? video.UserVideoHistories[0] : undefined
|
|
|
|
|
2018-09-18 05:02:51 -04:00
|
|
|
const videoObject: Video = {
|
|
|
|
id: video.id,
|
|
|
|
uuid: video.uuid,
|
|
|
|
name: video.name,
|
|
|
|
category: {
|
|
|
|
id: video.category,
|
|
|
|
label: VideoModel.getCategoryLabel(video.category)
|
|
|
|
},
|
|
|
|
licence: {
|
|
|
|
id: video.licence,
|
|
|
|
label: VideoModel.getLicenceLabel(video.licence)
|
|
|
|
},
|
|
|
|
language: {
|
|
|
|
id: video.language,
|
|
|
|
label: VideoModel.getLanguageLabel(video.language)
|
|
|
|
},
|
|
|
|
privacy: {
|
|
|
|
id: video.privacy,
|
|
|
|
label: VideoModel.getPrivacyLabel(video.privacy)
|
|
|
|
},
|
|
|
|
nsfw: video.nsfw,
|
2018-09-28 04:36:26 -04:00
|
|
|
description: options && options.completeDescription === true ? video.description : video.getTruncatedDescription(),
|
2018-09-18 05:02:51 -04:00
|
|
|
isLocal: video.isOwned(),
|
|
|
|
duration: video.duration,
|
|
|
|
views: video.views,
|
|
|
|
likes: video.likes,
|
|
|
|
dislikes: video.dislikes,
|
2019-04-23 03:50:57 -04:00
|
|
|
thumbnailPath: video.getMiniatureStaticPath(),
|
2018-09-18 05:02:51 -04:00
|
|
|
previewPath: video.getPreviewStaticPath(),
|
|
|
|
embedPath: video.getEmbedStaticPath(),
|
|
|
|
createdAt: video.createdAt,
|
|
|
|
updatedAt: video.updatedAt,
|
|
|
|
publishedAt: video.publishedAt,
|
2019-01-12 08:41:45 -05:00
|
|
|
originallyPublishedAt: video.originallyPublishedAt,
|
2019-02-26 04:55:40 -05:00
|
|
|
|
|
|
|
account: video.VideoChannel.Account.toFormattedSummaryJSON(),
|
|
|
|
channel: video.VideoChannel.toFormattedSummaryJSON(),
|
2018-10-05 05:15:06 -04:00
|
|
|
|
|
|
|
userHistory: userHistory ? {
|
|
|
|
currentTime: userHistory.currentTime
|
|
|
|
} : undefined
|
2018-09-18 05:02:51 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (options) {
|
|
|
|
if (options.additionalAttributes.state === true) {
|
|
|
|
videoObject.state = {
|
|
|
|
id: video.state,
|
|
|
|
label: VideoModel.getStateLabel(video.state)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (options.additionalAttributes.waitTranscoding === true) {
|
|
|
|
videoObject.waitTranscoding = video.waitTranscoding
|
|
|
|
}
|
|
|
|
|
|
|
|
if (options.additionalAttributes.scheduledUpdate === true && video.ScheduleVideoUpdate) {
|
|
|
|
videoObject.scheduledUpdate = {
|
|
|
|
updateAt: video.ScheduleVideoUpdate.updateAt,
|
|
|
|
privacy: video.ScheduleVideoUpdate.privacy || undefined
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (options.additionalAttributes.blacklistInfo === true) {
|
|
|
|
videoObject.blacklisted = !!video.VideoBlacklist
|
|
|
|
videoObject.blacklistedReason = video.VideoBlacklist ? video.VideoBlacklist.reason : null
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return videoObject
|
|
|
|
}
|
|
|
|
|
2019-08-20 13:05:31 -04:00
|
|
|
function videoModelToFormattedDetailsJSON (video: MVideoFormattableDetails): VideoDetails {
|
2018-09-18 05:02:51 -04:00
|
|
|
const formattedJson = video.toFormattedJSON({
|
|
|
|
additionalAttributes: {
|
|
|
|
scheduledUpdate: true,
|
|
|
|
blacklistInfo: true
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2019-01-29 02:37:25 -05:00
|
|
|
const { baseUrlHttp, baseUrlWs } = video.getBaseUrls()
|
|
|
|
|
2018-09-19 04:16:44 -04:00
|
|
|
const tags = video.Tags ? video.Tags.map(t => t.name) : []
|
2019-01-29 02:37:25 -05:00
|
|
|
|
2019-08-15 05:53:26 -04:00
|
|
|
const streamingPlaylists = streamingPlaylistsModelToFormattedJSON(video.VideoStreamingPlaylists)
|
2019-01-29 02:37:25 -05:00
|
|
|
|
2018-09-18 05:02:51 -04:00
|
|
|
const detailsJson = {
|
|
|
|
support: video.support,
|
2018-09-19 04:16:44 -04:00
|
|
|
descriptionPath: video.getDescriptionAPIPath(),
|
2018-09-18 05:02:51 -04:00
|
|
|
channel: video.VideoChannel.toFormattedJSON(),
|
|
|
|
account: video.VideoChannel.Account.toFormattedJSON(),
|
2018-09-19 04:16:44 -04:00
|
|
|
tags,
|
2018-09-18 05:02:51 -04:00
|
|
|
commentsEnabled: video.commentsEnabled,
|
2018-10-08 08:45:22 -04:00
|
|
|
downloadEnabled: video.downloadEnabled,
|
2018-09-18 05:02:51 -04:00
|
|
|
waitTranscoding: video.waitTranscoding,
|
|
|
|
state: {
|
|
|
|
id: video.state,
|
|
|
|
label: VideoModel.getStateLabel(video.state)
|
|
|
|
},
|
2019-01-29 02:37:25 -05:00
|
|
|
|
|
|
|
trackerUrls: video.getTrackerUrls(baseUrlHttp, baseUrlWs),
|
|
|
|
|
|
|
|
files: [],
|
|
|
|
streamingPlaylists
|
2018-09-18 05:02:51 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Format and sort video files
|
|
|
|
detailsJson.files = videoFilesModelToFormattedJSON(video, video.VideoFiles)
|
|
|
|
|
|
|
|
return Object.assign(formattedJson, detailsJson)
|
|
|
|
}
|
|
|
|
|
2019-08-15 05:53:26 -04:00
|
|
|
function streamingPlaylistsModelToFormattedJSON (playlists: MStreamingPlaylistRedundancies[]): VideoStreamingPlaylist[] {
|
2019-01-29 02:37:25 -05:00
|
|
|
if (isArray(playlists) === false) return []
|
|
|
|
|
|
|
|
return playlists
|
|
|
|
.map(playlist => {
|
|
|
|
const redundancies = isArray(playlist.RedundancyVideos)
|
|
|
|
? playlist.RedundancyVideos.map(r => ({ baseUrl: r.fileUrl }))
|
|
|
|
: []
|
|
|
|
|
|
|
|
return {
|
|
|
|
id: playlist.id,
|
|
|
|
type: playlist.type,
|
|
|
|
playlistUrl: playlist.playlistUrl,
|
|
|
|
segmentsSha256Url: playlist.segmentsSha256Url,
|
|
|
|
redundancies
|
|
|
|
} as VideoStreamingPlaylist
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2019-08-15 05:53:26 -04:00
|
|
|
function videoFilesModelToFormattedJSON (video: MVideo, videoFiles: MVideoFileRedundanciesOpt[]): VideoFile[] {
|
2018-09-18 05:02:51 -04:00
|
|
|
const { baseUrlHttp, baseUrlWs } = video.getBaseUrls()
|
|
|
|
|
|
|
|
return videoFiles
|
|
|
|
.map(videoFile => {
|
|
|
|
let resolutionLabel = videoFile.resolution + 'p'
|
|
|
|
|
|
|
|
return {
|
|
|
|
resolution: {
|
|
|
|
id: videoFile.resolution,
|
|
|
|
label: resolutionLabel
|
|
|
|
},
|
|
|
|
magnetUri: video.generateMagnetUri(videoFile, baseUrlHttp, baseUrlWs),
|
|
|
|
size: videoFile.size,
|
|
|
|
fps: videoFile.fps,
|
|
|
|
torrentUrl: video.getTorrentUrl(videoFile, baseUrlHttp),
|
|
|
|
torrentDownloadUrl: video.getTorrentDownloadUrl(videoFile, baseUrlHttp),
|
|
|
|
fileUrl: video.getVideoFileUrl(videoFile, baseUrlHttp),
|
|
|
|
fileDownloadUrl: video.getVideoFileDownloadUrl(videoFile, baseUrlHttp)
|
|
|
|
} as VideoFile
|
|
|
|
})
|
|
|
|
.sort((a, b) => {
|
|
|
|
if (a.resolution.id < b.resolution.id) return 1
|
|
|
|
if (a.resolution.id === b.resolution.id) return 0
|
|
|
|
return -1
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2019-08-15 05:53:26 -04:00
|
|
|
function videoModelToActivityPubObject (video: MVideoAP): VideoTorrentObject {
|
2018-09-18 05:02:51 -04:00
|
|
|
const { baseUrlHttp, baseUrlWs } = video.getBaseUrls()
|
|
|
|
if (!video.Tags) video.Tags = []
|
|
|
|
|
|
|
|
const tag = video.Tags.map(t => ({
|
|
|
|
type: 'Hashtag' as 'Hashtag',
|
|
|
|
name: t.name
|
|
|
|
}))
|
|
|
|
|
|
|
|
let language
|
|
|
|
if (video.language) {
|
|
|
|
language = {
|
|
|
|
identifier: video.language,
|
|
|
|
name: VideoModel.getLanguageLabel(video.language)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let category
|
|
|
|
if (video.category) {
|
|
|
|
category = {
|
|
|
|
identifier: video.category + '',
|
|
|
|
name: VideoModel.getCategoryLabel(video.category)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let licence
|
|
|
|
if (video.licence) {
|
|
|
|
licence = {
|
|
|
|
identifier: video.licence + '',
|
|
|
|
name: VideoModel.getLicenceLabel(video.licence)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const url: ActivityUrlObject[] = []
|
|
|
|
for (const file of video.VideoFiles) {
|
|
|
|
url.push({
|
|
|
|
type: 'Link',
|
2018-12-11 08:52:50 -05:00
|
|
|
mimeType: MIMETYPES.VIDEO.EXT_MIMETYPE[ file.extname ] as any,
|
|
|
|
mediaType: MIMETYPES.VIDEO.EXT_MIMETYPE[ file.extname ] as any,
|
2018-09-18 05:02:51 -04:00
|
|
|
href: video.getVideoFileUrl(file, baseUrlHttp),
|
|
|
|
height: file.resolution,
|
|
|
|
size: file.size,
|
|
|
|
fps: file.fps
|
|
|
|
})
|
|
|
|
|
|
|
|
url.push({
|
|
|
|
type: 'Link',
|
|
|
|
mimeType: 'application/x-bittorrent' as 'application/x-bittorrent',
|
2018-10-18 02:48:24 -04:00
|
|
|
mediaType: 'application/x-bittorrent' as 'application/x-bittorrent',
|
2018-09-18 05:02:51 -04:00
|
|
|
href: video.getTorrentUrl(file, baseUrlHttp),
|
|
|
|
height: file.resolution
|
|
|
|
})
|
|
|
|
|
|
|
|
url.push({
|
|
|
|
type: 'Link',
|
|
|
|
mimeType: 'application/x-bittorrent;x-scheme-handler/magnet' as 'application/x-bittorrent;x-scheme-handler/magnet',
|
2018-10-18 02:48:24 -04:00
|
|
|
mediaType: 'application/x-bittorrent;x-scheme-handler/magnet' as 'application/x-bittorrent;x-scheme-handler/magnet',
|
2018-09-18 05:02:51 -04:00
|
|
|
href: video.generateMagnetUri(file, baseUrlHttp, baseUrlWs),
|
|
|
|
height: file.resolution
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2019-01-29 02:37:25 -05:00
|
|
|
for (const playlist of (video.VideoStreamingPlaylists || [])) {
|
|
|
|
let tag: (ActivityPlaylistSegmentHashesObject | ActivityPlaylistInfohashesObject)[]
|
|
|
|
|
|
|
|
tag = playlist.p2pMediaLoaderInfohashes
|
|
|
|
.map(i => ({ type: 'Infohash' as 'Infohash', name: i }))
|
|
|
|
tag.push({
|
|
|
|
type: 'Link',
|
|
|
|
name: 'sha256',
|
|
|
|
mimeType: 'application/json' as 'application/json',
|
|
|
|
mediaType: 'application/json' as 'application/json',
|
|
|
|
href: playlist.segmentsSha256Url
|
|
|
|
})
|
|
|
|
|
|
|
|
url.push({
|
|
|
|
type: 'Link',
|
|
|
|
mimeType: 'application/x-mpegURL' as 'application/x-mpegURL',
|
|
|
|
mediaType: 'application/x-mpegURL' as 'application/x-mpegURL',
|
|
|
|
href: playlist.playlistUrl,
|
|
|
|
tag
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2018-09-18 05:02:51 -04:00
|
|
|
// Add video url too
|
|
|
|
url.push({
|
|
|
|
type: 'Link',
|
|
|
|
mimeType: 'text/html',
|
2018-10-18 02:48:24 -04:00
|
|
|
mediaType: 'text/html',
|
2019-04-11 05:33:44 -04:00
|
|
|
href: WEBSERVER.URL + '/videos/watch/' + video.uuid
|
2018-09-18 05:02:51 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
const subtitleLanguage = []
|
|
|
|
for (const caption of video.VideoCaptions) {
|
|
|
|
subtitleLanguage.push({
|
|
|
|
identifier: caption.language,
|
|
|
|
name: VideoCaptionModel.getLanguageLabel(caption.language)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2019-04-23 03:50:57 -04:00
|
|
|
const miniature = video.getMiniature()
|
|
|
|
|
2018-09-18 05:02:51 -04:00
|
|
|
return {
|
|
|
|
type: 'Video' as 'Video',
|
|
|
|
id: video.url,
|
|
|
|
name: video.name,
|
|
|
|
duration: getActivityStreamDuration(video.duration),
|
|
|
|
uuid: video.uuid,
|
|
|
|
tag,
|
|
|
|
category,
|
|
|
|
licence,
|
|
|
|
language,
|
|
|
|
views: video.views,
|
|
|
|
sensitive: video.nsfw,
|
|
|
|
waitTranscoding: video.waitTranscoding,
|
|
|
|
state: video.state,
|
|
|
|
commentsEnabled: video.commentsEnabled,
|
2018-10-08 08:45:22 -04:00
|
|
|
downloadEnabled: video.downloadEnabled,
|
2018-09-18 05:02:51 -04:00
|
|
|
published: video.publishedAt.toISOString(),
|
2019-02-11 08:41:55 -05:00
|
|
|
originallyPublishedAt: video.originallyPublishedAt ? video.originallyPublishedAt.toISOString() : null,
|
2018-09-18 05:02:51 -04:00
|
|
|
updated: video.updatedAt.toISOString(),
|
|
|
|
mediaType: 'text/markdown',
|
|
|
|
content: video.getTruncatedDescription(),
|
|
|
|
support: video.support,
|
|
|
|
subtitleLanguage,
|
|
|
|
icon: {
|
|
|
|
type: 'Image',
|
2019-04-24 04:28:57 -04:00
|
|
|
url: miniature.getFileUrl(),
|
2018-09-18 05:02:51 -04:00
|
|
|
mediaType: 'image/jpeg',
|
2019-04-23 03:50:57 -04:00
|
|
|
width: miniature.width,
|
|
|
|
height: miniature.height
|
2018-09-18 05:02:51 -04:00
|
|
|
},
|
|
|
|
url,
|
|
|
|
likes: getVideoLikesActivityPubUrl(video),
|
|
|
|
dislikes: getVideoDislikesActivityPubUrl(video),
|
|
|
|
shares: getVideoSharesActivityPubUrl(video),
|
|
|
|
comments: getVideoCommentsActivityPubUrl(video),
|
|
|
|
attributedTo: [
|
|
|
|
{
|
|
|
|
type: 'Person',
|
|
|
|
id: video.VideoChannel.Account.Actor.url
|
|
|
|
},
|
|
|
|
{
|
|
|
|
type: 'Group',
|
|
|
|
id: video.VideoChannel.Actor.url
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function getActivityStreamDuration (duration: number) {
|
|
|
|
// https://www.w3.org/TR/activitystreams-vocabulary/#dfn-duration
|
|
|
|
return 'PT' + duration + 'S'
|
|
|
|
}
|
|
|
|
|
|
|
|
export {
|
|
|
|
videoModelToFormattedJSON,
|
|
|
|
videoModelToFormattedDetailsJSON,
|
|
|
|
videoFilesModelToFormattedJSON,
|
|
|
|
videoModelToActivityPubObject,
|
|
|
|
getActivityStreamDuration
|
|
|
|
}
|