2021-02-16 16:25:53 +01:00
|
|
|
import { generateMagnetUri } from '@server/helpers/webtorrent'
|
2022-03-24 13:36:47 +01:00
|
|
|
import { getActivityStreamDuration } from '@server/lib/activitypub/activity'
|
2022-07-28 10:56:05 +02:00
|
|
|
import { tracer } from '@server/lib/opentelemetry/tracing'
|
2021-08-17 08:26:20 +02:00
|
|
|
import { getLocalVideoFileMetadataUrl } from '@server/lib/video-urls'
|
2022-03-24 13:36:47 +01:00
|
|
|
import { VideoViewsManager } from '@server/lib/views/video-views-manager'
|
2021-12-29 14:44:58 +01:00
|
|
|
import { uuidToShort } from '@shared/extra-utils'
|
2022-03-24 13:36:47 +01:00
|
|
|
import {
|
|
|
|
ActivityTagObject,
|
|
|
|
ActivityUrlObject,
|
|
|
|
Video,
|
|
|
|
VideoDetails,
|
|
|
|
VideoFile,
|
|
|
|
VideoInclude,
|
|
|
|
VideoObject,
|
|
|
|
VideosCommonQueryAfterSanitize,
|
|
|
|
VideoStreamingPlaylist
|
|
|
|
} from '@shared/models'
|
2021-06-10 08:53:32 +02:00
|
|
|
import { isArray } from '../../../helpers/custom-validators/misc'
|
2021-06-11 14:36:07 +02:00
|
|
|
import {
|
|
|
|
MIMETYPES,
|
|
|
|
VIDEO_CATEGORIES,
|
|
|
|
VIDEO_LANGUAGES,
|
|
|
|
VIDEO_LICENCES,
|
|
|
|
VIDEO_PRIVACIES,
|
|
|
|
VIDEO_STATES,
|
|
|
|
WEBSERVER
|
|
|
|
} from '../../../initializers/constants'
|
2018-09-18 11:02:51 +02:00
|
|
|
import {
|
2020-11-20 11:21:08 +01:00
|
|
|
getLocalVideoCommentsActivityPubUrl,
|
|
|
|
getLocalVideoDislikesActivityPubUrl,
|
|
|
|
getLocalVideoLikesActivityPubUrl,
|
|
|
|
getLocalVideoSharesActivityPubUrl
|
2021-06-10 08:53:32 +02:00
|
|
|
} from '../../../lib/activitypub/url'
|
2019-11-15 15:06:03 +01:00
|
|
|
import {
|
2021-10-27 14:37:04 +02:00
|
|
|
MServer,
|
2019-11-15 15:06:03 +01:00
|
|
|
MStreamingPlaylistRedundanciesOpt,
|
2022-10-12 16:09:02 +02:00
|
|
|
MUserId,
|
2021-02-18 11:28:00 +01:00
|
|
|
MVideo,
|
2019-11-15 15:06:03 +01:00
|
|
|
MVideoAP,
|
|
|
|
MVideoFile,
|
|
|
|
MVideoFormattable,
|
2021-02-18 11:28:00 +01:00
|
|
|
MVideoFormattableDetails
|
2021-06-10 08:53:32 +02:00
|
|
|
} from '../../../types/models'
|
|
|
|
import { MVideoFileRedundanciesOpt } from '../../../types/models/video/video-file'
|
|
|
|
import { VideoCaptionModel } from '../video-caption'
|
2018-09-18 11:02:51 +02:00
|
|
|
|
|
|
|
export type VideoFormattingJSONOptions = {
|
2018-09-28 10:18:37 +02:00
|
|
|
completeDescription?: boolean
|
2021-10-27 14:37:04 +02:00
|
|
|
|
|
|
|
additionalAttributes?: {
|
2020-01-31 16:56:52 +01:00
|
|
|
state?: boolean
|
|
|
|
waitTranscoding?: boolean
|
|
|
|
scheduledUpdate?: boolean
|
2018-09-18 11:02:51 +02:00
|
|
|
blacklistInfo?: boolean
|
2021-10-29 10:54:27 +02:00
|
|
|
files?: boolean
|
2021-10-27 14:37:04 +02:00
|
|
|
blockedOwner?: boolean
|
2018-09-18 11:02:51 +02:00
|
|
|
}
|
|
|
|
}
|
2020-01-31 16:56:52 +01:00
|
|
|
|
2021-10-27 14:37:04 +02:00
|
|
|
function guessAdditionalAttributesFromQuery (query: VideosCommonQueryAfterSanitize): VideoFormattingJSONOptions {
|
2022-11-15 15:00:19 +01:00
|
|
|
if (!query?.include) return {}
|
2021-10-27 14:37:04 +02:00
|
|
|
|
|
|
|
return {
|
|
|
|
additionalAttributes: {
|
|
|
|
state: !!(query.include & VideoInclude.NOT_PUBLISHED_STATE),
|
|
|
|
waitTranscoding: !!(query.include & VideoInclude.NOT_PUBLISHED_STATE),
|
|
|
|
scheduledUpdate: !!(query.include & VideoInclude.NOT_PUBLISHED_STATE),
|
|
|
|
blacklistInfo: !!(query.include & VideoInclude.BLACKLISTED),
|
2021-10-29 10:54:27 +02:00
|
|
|
files: !!(query.include & VideoInclude.FILES),
|
2021-10-27 14:37:04 +02:00
|
|
|
blockedOwner: !!(query.include & VideoInclude.BLOCKED_OWNER)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function videoModelToFormattedJSON (video: MVideoFormattable, options: VideoFormattingJSONOptions = {}): Video {
|
2022-07-28 10:56:05 +02:00
|
|
|
const span = tracer.startSpan('peertube.VideoModel.toFormattedJSON')
|
|
|
|
|
2018-10-05 11:15:06 +02:00
|
|
|
const userHistory = isArray(video.UserVideoHistories) ? video.UserVideoHistories[0] : undefined
|
|
|
|
|
2018-09-18 11:02:51 +02:00
|
|
|
const videoObject: Video = {
|
|
|
|
id: video.id,
|
|
|
|
uuid: video.uuid,
|
2021-06-28 17:30:59 +02:00
|
|
|
shortUUID: uuidToShort(video.uuid),
|
|
|
|
|
2021-10-22 14:11:58 +02:00
|
|
|
url: video.url,
|
|
|
|
|
2018-09-18 11:02:51 +02:00
|
|
|
name: video.name,
|
|
|
|
category: {
|
|
|
|
id: video.category,
|
2021-06-11 14:36:07 +02:00
|
|
|
label: getCategoryLabel(video.category)
|
2018-09-18 11:02:51 +02:00
|
|
|
},
|
|
|
|
licence: {
|
|
|
|
id: video.licence,
|
2021-06-11 14:36:07 +02:00
|
|
|
label: getLicenceLabel(video.licence)
|
2018-09-18 11:02:51 +02:00
|
|
|
},
|
|
|
|
language: {
|
|
|
|
id: video.language,
|
2021-06-11 14:36:07 +02:00
|
|
|
label: getLanguageLabel(video.language)
|
2018-09-18 11:02:51 +02:00
|
|
|
},
|
|
|
|
privacy: {
|
|
|
|
id: video.privacy,
|
2021-06-11 14:36:07 +02:00
|
|
|
label: getPrivacyLabel(video.privacy)
|
2018-09-18 11:02:51 +02:00
|
|
|
},
|
|
|
|
nsfw: video.nsfw,
|
2020-08-24 16:11:37 +02:00
|
|
|
|
2022-11-14 12:06:31 +01:00
|
|
|
truncatedDescription: video.getTruncatedDescription(),
|
2020-08-24 16:11:37 +02:00
|
|
|
description: options && options.completeDescription === true
|
|
|
|
? video.description
|
|
|
|
: video.getTruncatedDescription(),
|
|
|
|
|
2018-09-18 11:02:51 +02:00
|
|
|
isLocal: video.isOwned(),
|
|
|
|
duration: video.duration,
|
2022-03-24 13:36:47 +01:00
|
|
|
|
2018-09-18 11:02:51 +02:00
|
|
|
views: video.views,
|
2022-03-24 13:36:47 +01:00
|
|
|
viewers: VideoViewsManager.Instance.getViewers(video),
|
|
|
|
|
2018-09-18 11:02:51 +02:00
|
|
|
likes: video.likes,
|
|
|
|
dislikes: video.dislikes,
|
2019-04-23 09:50:57 +02:00
|
|
|
thumbnailPath: video.getMiniatureStaticPath(),
|
2018-09-18 11:02:51 +02:00
|
|
|
previewPath: video.getPreviewStaticPath(),
|
|
|
|
embedPath: video.getEmbedStaticPath(),
|
|
|
|
createdAt: video.createdAt,
|
|
|
|
updatedAt: video.updatedAt,
|
|
|
|
publishedAt: video.publishedAt,
|
2019-01-12 14:41:45 +01:00
|
|
|
originallyPublishedAt: video.originallyPublishedAt,
|
2019-02-26 10:55:40 +01:00
|
|
|
|
2020-09-17 09:20:52 +02:00
|
|
|
isLive: video.isLive,
|
|
|
|
|
2019-02-26 10:55:40 +01:00
|
|
|
account: video.VideoChannel.Account.toFormattedSummaryJSON(),
|
|
|
|
channel: video.VideoChannel.toFormattedSummaryJSON(),
|
2018-10-05 11:15:06 +02:00
|
|
|
|
2021-02-03 09:33:05 +01:00
|
|
|
userHistory: userHistory
|
|
|
|
? { currentTime: userHistory.currentTime }
|
|
|
|
: undefined,
|
2020-08-20 16:18:16 +02:00
|
|
|
|
|
|
|
// Can be added by external plugins
|
|
|
|
pluginData: (video as any).pluginData
|
2018-09-18 11:02:51 +02:00
|
|
|
}
|
|
|
|
|
2021-10-27 14:37:04 +02:00
|
|
|
const add = options.additionalAttributes
|
|
|
|
if (add?.state === true) {
|
|
|
|
videoObject.state = {
|
|
|
|
id: video.state,
|
|
|
|
label: getStateLabel(video.state)
|
2018-09-18 11:02:51 +02:00
|
|
|
}
|
2021-10-27 14:37:04 +02:00
|
|
|
}
|
2018-09-18 11:02:51 +02:00
|
|
|
|
2021-10-27 14:37:04 +02:00
|
|
|
if (add?.waitTranscoding === true) {
|
|
|
|
videoObject.waitTranscoding = video.waitTranscoding
|
|
|
|
}
|
2018-09-18 11:02:51 +02:00
|
|
|
|
2021-10-27 14:37:04 +02:00
|
|
|
if (add?.scheduledUpdate === true && video.ScheduleVideoUpdate) {
|
|
|
|
videoObject.scheduledUpdate = {
|
|
|
|
updateAt: video.ScheduleVideoUpdate.updateAt,
|
|
|
|
privacy: video.ScheduleVideoUpdate.privacy || undefined
|
2018-09-18 11:02:51 +02:00
|
|
|
}
|
2021-10-27 14:37:04 +02:00
|
|
|
}
|
2018-09-18 11:02:51 +02:00
|
|
|
|
2021-10-27 14:37:04 +02:00
|
|
|
if (add?.blacklistInfo === true) {
|
|
|
|
videoObject.blacklisted = !!video.VideoBlacklist
|
|
|
|
videoObject.blacklistedReason = video.VideoBlacklist ? video.VideoBlacklist.reason : null
|
|
|
|
}
|
|
|
|
|
|
|
|
if (add?.blockedOwner === true) {
|
|
|
|
videoObject.blockedOwner = video.VideoChannel.Account.isBlocked()
|
|
|
|
|
|
|
|
const server = video.VideoChannel.Account.Actor.Server as MServer
|
|
|
|
videoObject.blockedServer = !!(server?.isBlocked())
|
2018-09-18 11:02:51 +02:00
|
|
|
}
|
|
|
|
|
2021-10-29 10:54:27 +02:00
|
|
|
if (add?.files === true) {
|
|
|
|
videoObject.streamingPlaylists = streamingPlaylistsModelToFormattedJSON(video, video.VideoStreamingPlaylists)
|
|
|
|
videoObject.files = videoFilesModelToFormattedJSON(video, video.VideoFiles)
|
|
|
|
}
|
|
|
|
|
2022-07-28 10:56:05 +02:00
|
|
|
span.end()
|
|
|
|
|
2018-09-18 11:02:51 +02:00
|
|
|
return videoObject
|
|
|
|
}
|
|
|
|
|
2019-08-20 19:05:31 +02:00
|
|
|
function videoModelToFormattedDetailsJSON (video: MVideoFormattableDetails): VideoDetails {
|
2022-07-28 10:56:05 +02:00
|
|
|
const span = tracer.startSpan('peertube.VideoModel.toFormattedDetailsJSON')
|
|
|
|
|
2021-10-29 10:54:27 +02:00
|
|
|
const videoJSON = video.toFormattedJSON({
|
2022-11-14 12:06:31 +01:00
|
|
|
completeDescription: true,
|
2018-09-18 11:02:51 +02:00
|
|
|
additionalAttributes: {
|
|
|
|
scheduledUpdate: true,
|
2021-10-29 10:54:27 +02:00
|
|
|
blacklistInfo: true,
|
|
|
|
files: true
|
2018-09-18 11:02:51 +02:00
|
|
|
}
|
2021-10-29 10:54:27 +02:00
|
|
|
}) as Video & Required<Pick<Video, 'files' | 'streamingPlaylists'>>
|
2018-09-18 11:02:51 +02:00
|
|
|
|
2018-09-19 10:16:44 +02:00
|
|
|
const tags = video.Tags ? video.Tags.map(t => t.name) : []
|
2019-01-29 08:37:25 +01:00
|
|
|
|
2021-10-29 10:54:27 +02:00
|
|
|
const detailsJSON = {
|
2018-09-18 11:02:51 +02:00
|
|
|
support: video.support,
|
2018-09-19 10:16:44 +02:00
|
|
|
descriptionPath: video.getDescriptionAPIPath(),
|
2018-09-18 11:02:51 +02:00
|
|
|
channel: video.VideoChannel.toFormattedJSON(),
|
|
|
|
account: video.VideoChannel.Account.toFormattedJSON(),
|
2018-09-19 10:16:44 +02:00
|
|
|
tags,
|
2018-09-18 11:02:51 +02:00
|
|
|
commentsEnabled: video.commentsEnabled,
|
2018-10-08 14:45:22 +02:00
|
|
|
downloadEnabled: video.downloadEnabled,
|
2018-09-18 11:02:51 +02:00
|
|
|
waitTranscoding: video.waitTranscoding,
|
|
|
|
state: {
|
|
|
|
id: video.state,
|
2021-06-11 14:36:07 +02:00
|
|
|
label: getStateLabel(video.state)
|
2018-09-18 11:02:51 +02:00
|
|
|
},
|
2019-01-29 08:37:25 +01:00
|
|
|
|
2021-10-29 10:54:27 +02:00
|
|
|
trackerUrls: video.getTrackerUrls()
|
2018-09-18 11:02:51 +02:00
|
|
|
}
|
|
|
|
|
2022-07-28 10:56:05 +02:00
|
|
|
span.end()
|
|
|
|
|
2021-10-29 10:54:27 +02:00
|
|
|
return Object.assign(videoJSON, detailsJSON)
|
2018-09-18 11:02:51 +02:00
|
|
|
}
|
|
|
|
|
2021-02-16 16:25:53 +01:00
|
|
|
function streamingPlaylistsModelToFormattedJSON (
|
2021-10-29 10:54:27 +02:00
|
|
|
video: MVideoFormattable,
|
2021-02-16 16:25:53 +01:00
|
|
|
playlists: MStreamingPlaylistRedundanciesOpt[]
|
|
|
|
): VideoStreamingPlaylist[] {
|
2019-01-29 08:37:25 +01:00
|
|
|
if (isArray(playlists) === false) return []
|
|
|
|
|
|
|
|
return playlists
|
|
|
|
.map(playlist => {
|
|
|
|
const redundancies = isArray(playlist.RedundancyVideos)
|
|
|
|
? playlist.RedundancyVideos.map(r => ({ baseUrl: r.fileUrl }))
|
|
|
|
: []
|
|
|
|
|
2021-02-18 10:15:11 +01:00
|
|
|
const files = videoFilesModelToFormattedJSON(video, playlist.VideoFiles)
|
2019-11-15 15:06:03 +01:00
|
|
|
|
2019-01-29 08:37:25 +01:00
|
|
|
return {
|
|
|
|
id: playlist.id,
|
|
|
|
type: playlist.type,
|
2021-07-23 11:20:00 +02:00
|
|
|
playlistUrl: playlist.getMasterPlaylistUrl(video),
|
|
|
|
segmentsSha256Url: playlist.getSha256SegmentsUrl(video),
|
2019-11-15 15:06:03 +01:00
|
|
|
redundancies,
|
|
|
|
files
|
|
|
|
}
|
2019-01-29 08:37:25 +01:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2020-06-04 15:03:30 +02:00
|
|
|
function sortByResolutionDesc (fileA: MVideoFile, fileB: MVideoFile) {
|
|
|
|
if (fileA.resolution < fileB.resolution) return 1
|
|
|
|
if (fileA.resolution === fileB.resolution) return 0
|
|
|
|
return -1
|
|
|
|
}
|
|
|
|
|
2019-11-15 15:06:03 +01:00
|
|
|
function videoFilesModelToFormattedJSON (
|
2021-10-29 10:54:27 +02:00
|
|
|
video: MVideoFormattable,
|
2021-02-18 11:22:35 +01:00
|
|
|
videoFiles: MVideoFileRedundanciesOpt[],
|
2022-10-12 16:09:02 +02:00
|
|
|
options: {
|
|
|
|
includeMagnet?: boolean // default true
|
|
|
|
} = {}
|
2019-11-15 15:06:03 +01:00
|
|
|
): VideoFile[] {
|
2022-10-12 16:09:02 +02:00
|
|
|
const { includeMagnet = true } = options
|
|
|
|
|
2021-02-18 11:22:35 +01:00
|
|
|
const trackerUrls = includeMagnet
|
|
|
|
? video.getTrackerUrls()
|
|
|
|
: []
|
2021-02-18 10:15:11 +01:00
|
|
|
|
2021-07-29 17:18:09 +02:00
|
|
|
return (videoFiles || [])
|
2020-11-04 15:31:32 +01:00
|
|
|
.filter(f => !f.isLive())
|
2020-06-04 15:03:30 +02:00
|
|
|
.sort(sortByResolutionDesc)
|
2018-09-18 11:02:51 +02:00
|
|
|
.map(videoFile => {
|
|
|
|
return {
|
2022-07-29 11:32:46 +02:00
|
|
|
id: videoFile.id,
|
|
|
|
|
2018-09-18 11:02:51 +02:00
|
|
|
resolution: {
|
|
|
|
id: videoFile.resolution,
|
2021-07-09 12:56:41 +02:00
|
|
|
label: videoFile.resolution === 0 ? 'Audio' : `${videoFile.resolution}p`
|
2018-09-18 11:02:51 +02:00
|
|
|
},
|
2021-02-16 16:25:53 +01:00
|
|
|
|
2021-05-25 11:30:00 +02:00
|
|
|
magnetUri: includeMagnet && videoFile.hasTorrent()
|
2021-02-18 11:22:35 +01:00
|
|
|
? generateMagnetUri(video, videoFile, trackerUrls)
|
|
|
|
: undefined,
|
2021-02-16 16:25:53 +01:00
|
|
|
|
2018-09-18 11:02:51 +02:00
|
|
|
size: videoFile.size,
|
|
|
|
fps: videoFile.fps,
|
2021-02-16 16:25:53 +01:00
|
|
|
|
|
|
|
torrentUrl: videoFile.getTorrentUrl(),
|
|
|
|
torrentDownloadUrl: videoFile.getTorrentDownloadUrl(),
|
|
|
|
|
|
|
|
fileUrl: videoFile.getFileUrl(video),
|
|
|
|
fileDownloadUrl: videoFile.getFileDownloadUrl(video),
|
|
|
|
|
|
|
|
metadataUrl: videoFile.metadataUrl ?? getLocalVideoFileMetadataUrl(video, videoFile)
|
2018-09-18 11:02:51 +02:00
|
|
|
} as VideoFile
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2022-10-12 16:09:02 +02:00
|
|
|
function addVideoFilesInAPAcc (options: {
|
|
|
|
acc: ActivityUrlObject[] | ActivityTagObject[]
|
|
|
|
video: MVideo
|
2019-11-15 15:06:03 +01:00
|
|
|
files: MVideoFile[]
|
2022-10-12 16:09:02 +02:00
|
|
|
user?: MUserId
|
|
|
|
}) {
|
|
|
|
const { acc, video, files } = options
|
|
|
|
|
2021-02-18 10:15:11 +01:00
|
|
|
const trackerUrls = video.getTrackerUrls()
|
|
|
|
|
2021-07-29 17:18:09 +02:00
|
|
|
const sortedFiles = (files || [])
|
2020-11-04 15:31:32 +01:00
|
|
|
.filter(f => !f.isLive())
|
|
|
|
.sort(sortByResolutionDesc)
|
2020-06-04 15:03:30 +02:00
|
|
|
|
|
|
|
for (const file of sortedFiles) {
|
2019-11-15 15:06:03 +01:00
|
|
|
acc.push({
|
|
|
|
type: 'Link',
|
2020-01-31 16:56:52 +01:00
|
|
|
mediaType: MIMETYPES.VIDEO.EXT_MIMETYPE[file.extname] as any,
|
2021-02-16 16:25:53 +01:00
|
|
|
href: file.getFileUrl(video),
|
2019-11-15 15:06:03 +01:00
|
|
|
height: file.resolution,
|
|
|
|
size: file.size,
|
|
|
|
fps: file.fps
|
|
|
|
})
|
|
|
|
|
2020-03-10 14:39:40 +01:00
|
|
|
acc.push({
|
|
|
|
type: 'Link',
|
|
|
|
rel: [ 'metadata', MIMETYPES.VIDEO.EXT_MIMETYPE[file.extname] ],
|
|
|
|
mediaType: 'application/json' as 'application/json',
|
2021-02-16 16:25:53 +01:00
|
|
|
href: getLocalVideoFileMetadataUrl(video, file),
|
2020-03-10 14:39:40 +01:00
|
|
|
height: file.resolution,
|
|
|
|
fps: file.fps
|
|
|
|
})
|
|
|
|
|
2021-05-25 11:30:00 +02:00
|
|
|
if (file.hasTorrent()) {
|
|
|
|
acc.push({
|
|
|
|
type: 'Link',
|
|
|
|
mediaType: 'application/x-bittorrent' as 'application/x-bittorrent',
|
|
|
|
href: file.getTorrentUrl(),
|
|
|
|
height: file.resolution
|
|
|
|
})
|
|
|
|
|
|
|
|
acc.push({
|
|
|
|
type: 'Link',
|
|
|
|
mediaType: 'application/x-bittorrent;x-scheme-handler/magnet' as 'application/x-bittorrent;x-scheme-handler/magnet',
|
|
|
|
href: generateMagnetUri(video, file, trackerUrls),
|
|
|
|
height: file.resolution
|
|
|
|
})
|
|
|
|
}
|
2019-11-15 15:06:03 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-17 13:59:02 +02:00
|
|
|
function videoModelToActivityPubObject (video: MVideoAP): VideoObject {
|
2018-09-18 11:02:51 +02:00
|
|
|
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,
|
2021-06-11 14:36:07 +02:00
|
|
|
name: getLanguageLabel(video.language)
|
2018-09-18 11:02:51 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let category
|
|
|
|
if (video.category) {
|
|
|
|
category = {
|
|
|
|
identifier: video.category + '',
|
2021-06-11 14:36:07 +02:00
|
|
|
name: getCategoryLabel(video.category)
|
2018-09-18 11:02:51 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let licence
|
|
|
|
if (video.licence) {
|
|
|
|
licence = {
|
|
|
|
identifier: video.licence + '',
|
2021-06-11 14:36:07 +02:00
|
|
|
name: getLicenceLabel(video.licence)
|
2018-09-18 11:02:51 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-04 09:19:56 +01:00
|
|
|
const url: ActivityUrlObject[] = [
|
|
|
|
// HTML url should be the first element in the array so Mastodon correctly displays the embed
|
|
|
|
{
|
|
|
|
type: 'Link',
|
|
|
|
mediaType: 'text/html',
|
|
|
|
href: WEBSERVER.URL + '/videos/watch/' + video.uuid
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
2022-10-12 16:09:02 +02:00
|
|
|
addVideoFilesInAPAcc({ acc: url, video, files: video.VideoFiles || [] })
|
2018-09-18 11:02:51 +02:00
|
|
|
|
2019-01-29 08:37:25 +01:00
|
|
|
for (const playlist of (video.VideoStreamingPlaylists || [])) {
|
2020-01-31 16:56:52 +01:00
|
|
|
const tag = playlist.p2pMediaLoaderInfohashes
|
|
|
|
.map(i => ({ type: 'Infohash' as 'Infohash', name: i })) as ActivityTagObject[]
|
2019-01-29 08:37:25 +01:00
|
|
|
tag.push({
|
|
|
|
type: 'Link',
|
|
|
|
name: 'sha256',
|
|
|
|
mediaType: 'application/json' as 'application/json',
|
2021-07-23 11:20:00 +02:00
|
|
|
href: playlist.getSha256SegmentsUrl(video)
|
2019-01-29 08:37:25 +01:00
|
|
|
})
|
|
|
|
|
2022-10-12 16:09:02 +02:00
|
|
|
addVideoFilesInAPAcc({ acc: tag, video, files: playlist.VideoFiles || [] })
|
2019-11-15 15:06:03 +01:00
|
|
|
|
2019-01-29 08:37:25 +01:00
|
|
|
url.push({
|
|
|
|
type: 'Link',
|
|
|
|
mediaType: 'application/x-mpegURL' as 'application/x-mpegURL',
|
2021-07-23 11:20:00 +02:00
|
|
|
href: playlist.getMasterPlaylistUrl(video),
|
2019-01-29 08:37:25 +01:00
|
|
|
tag
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2021-02-18 10:15:11 +01:00
|
|
|
for (const trackerUrl of video.getTrackerUrls()) {
|
|
|
|
const rel2 = trackerUrl.startsWith('http')
|
|
|
|
? 'http'
|
|
|
|
: 'websocket'
|
|
|
|
|
|
|
|
url.push({
|
|
|
|
type: 'Link',
|
|
|
|
name: `tracker-${rel2}`,
|
|
|
|
rel: [ 'tracker', rel2 ],
|
|
|
|
href: trackerUrl
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2018-09-18 11:02:51 +02:00
|
|
|
const subtitleLanguage = []
|
|
|
|
for (const caption of video.VideoCaptions) {
|
|
|
|
subtitleLanguage.push({
|
|
|
|
identifier: caption.language,
|
2020-01-30 11:53:38 +01:00
|
|
|
name: VideoCaptionModel.getLanguageLabel(caption.language),
|
|
|
|
url: caption.getFileUrl(video)
|
2018-09-18 11:02:51 +02:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2020-06-04 15:22:08 +02:00
|
|
|
const icons = [ video.getMiniature(), video.getPreview() ]
|
2019-04-23 09:50:57 +02:00
|
|
|
|
2018-09-18 11:02:51 +02: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,
|
2020-12-03 14:10:54 +01:00
|
|
|
|
2018-09-18 11:02:51 +02:00
|
|
|
state: video.state,
|
|
|
|
commentsEnabled: video.commentsEnabled,
|
2018-10-08 14:45:22 +02:00
|
|
|
downloadEnabled: video.downloadEnabled,
|
2018-09-18 11:02:51 +02:00
|
|
|
published: video.publishedAt.toISOString(),
|
2020-11-02 15:43:44 +01:00
|
|
|
|
|
|
|
originallyPublishedAt: video.originallyPublishedAt
|
|
|
|
? video.originallyPublishedAt.toISOString()
|
|
|
|
: null,
|
|
|
|
|
2018-09-18 11:02:51 +02:00
|
|
|
updated: video.updatedAt.toISOString(),
|
2022-03-04 13:40:02 +01:00
|
|
|
|
2018-09-18 11:02:51 +02:00
|
|
|
mediaType: 'text/markdown',
|
2020-06-04 15:17:20 +02:00
|
|
|
content: video.description,
|
2018-09-18 11:02:51 +02:00
|
|
|
support: video.support,
|
2022-03-04 13:40:02 +01:00
|
|
|
|
2018-09-18 11:02:51 +02:00
|
|
|
subtitleLanguage,
|
2022-03-04 13:40:02 +01:00
|
|
|
|
2020-06-04 15:22:08 +02:00
|
|
|
icon: icons.map(i => ({
|
2018-09-18 11:02:51 +02:00
|
|
|
type: 'Image',
|
2020-06-04 15:22:08 +02:00
|
|
|
url: i.getFileUrl(video),
|
2018-09-18 11:02:51 +02:00
|
|
|
mediaType: 'image/jpeg',
|
2020-06-04 15:22:08 +02:00
|
|
|
width: i.width,
|
|
|
|
height: i.height
|
|
|
|
})),
|
2022-03-04 13:40:02 +01:00
|
|
|
|
2018-09-18 11:02:51 +02:00
|
|
|
url,
|
2022-03-04 13:40:02 +01:00
|
|
|
|
2020-11-20 11:21:08 +01:00
|
|
|
likes: getLocalVideoLikesActivityPubUrl(video),
|
|
|
|
dislikes: getLocalVideoDislikesActivityPubUrl(video),
|
|
|
|
shares: getLocalVideoSharesActivityPubUrl(video),
|
|
|
|
comments: getLocalVideoCommentsActivityPubUrl(video),
|
2022-03-04 13:40:02 +01:00
|
|
|
|
2018-09-18 11:02:51 +02:00
|
|
|
attributedTo: [
|
|
|
|
{
|
|
|
|
type: 'Person',
|
|
|
|
id: video.VideoChannel.Account.Actor.url
|
|
|
|
},
|
|
|
|
{
|
|
|
|
type: 'Group',
|
|
|
|
id: video.VideoChannel.Actor.url
|
|
|
|
}
|
2022-03-04 13:40:02 +01:00
|
|
|
],
|
|
|
|
|
|
|
|
...buildLiveAPAttributes(video)
|
2018-09-18 11:02:51 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-11 14:36:07 +02:00
|
|
|
function getCategoryLabel (id: number) {
|
|
|
|
return VIDEO_CATEGORIES[id] || 'Misc'
|
|
|
|
}
|
|
|
|
|
|
|
|
function getLicenceLabel (id: number) {
|
|
|
|
return VIDEO_LICENCES[id] || 'Unknown'
|
|
|
|
}
|
|
|
|
|
|
|
|
function getLanguageLabel (id: string) {
|
|
|
|
return VIDEO_LANGUAGES[id] || 'Unknown'
|
|
|
|
}
|
|
|
|
|
|
|
|
function getPrivacyLabel (id: number) {
|
|
|
|
return VIDEO_PRIVACIES[id] || 'Unknown'
|
|
|
|
}
|
|
|
|
|
|
|
|
function getStateLabel (id: number) {
|
|
|
|
return VIDEO_STATES[id] || 'Unknown'
|
|
|
|
}
|
|
|
|
|
2018-09-18 11:02:51 +02:00
|
|
|
export {
|
|
|
|
videoModelToFormattedJSON,
|
|
|
|
videoModelToFormattedDetailsJSON,
|
|
|
|
videoFilesModelToFormattedJSON,
|
|
|
|
videoModelToActivityPubObject,
|
2021-06-11 14:36:07 +02:00
|
|
|
|
2021-10-27 14:37:04 +02:00
|
|
|
guessAdditionalAttributesFromQuery,
|
|
|
|
|
2021-06-11 14:36:07 +02:00
|
|
|
getCategoryLabel,
|
|
|
|
getLicenceLabel,
|
|
|
|
getLanguageLabel,
|
|
|
|
getPrivacyLabel,
|
|
|
|
getStateLabel
|
2018-09-18 11:02:51 +02:00
|
|
|
}
|
2022-03-04 13:40:02 +01:00
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
function buildLiveAPAttributes (video: MVideoAP) {
|
|
|
|
if (!video.isLive) {
|
|
|
|
return {
|
|
|
|
isLiveBroadcast: false,
|
|
|
|
liveSaveReplay: null,
|
|
|
|
permanentLive: null,
|
|
|
|
latencyMode: null
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return {
|
|
|
|
isLiveBroadcast: true,
|
|
|
|
liveSaveReplay: video.VideoLive.saveReplay,
|
|
|
|
permanentLive: video.VideoLive.permanentLive,
|
|
|
|
latencyMode: video.VideoLive.latencyMode
|
|
|
|
}
|
|
|
|
}
|