PeerTube/server/lib/activitypub/send/send-create.ts

151 lines
5.5 KiB
TypeScript
Raw Normal View History

2017-11-20 09:43:39 +01:00
import { Transaction } from 'sequelize'
2017-12-12 17:53:50 +01:00
import { ActivityAudience, ActivityCreate } from '../../../../shared/models/activitypub'
2017-12-14 17:38:41 +01:00
import { VideoPrivacy } from '../../../../shared/models/videos'
import { VideoCommentModel } from '../../../models/video/video-comment'
2018-09-14 16:51:35 +02:00
import { broadcastToActors, broadcastToFollowers, sendVideoRelatedActivity, unicastTo } from './utils'
import { audiencify, getActorsInvolvedInVideo, getAudience, getAudienceFromFollowersOf, getVideoCommentAudience } from '../audience'
import { logger, loggerTagsFactory } from '../../../helpers/logger'
2019-02-26 10:55:40 +01:00
import { VideoPlaylistPrivacy } from '../../../../shared/models/videos/playlist/video-playlist-privacy.model'
2019-08-15 11:53:26 +02:00
import {
MActorLight,
MCommentOwnerVideo,
MVideoAccountLight,
MVideoAP,
MVideoPlaylistFull,
MVideoRedundancyFileVideo,
MVideoRedundancyStreamingPlaylistVideo
2020-06-18 10:45:25 +02:00
} from '../../../types/models'
2020-04-23 09:32:53 +02:00
import { getServerActor } from '@server/models/application/application'
import { ContextType } from '@shared/models/activitypub/context'
2019-08-15 11:53:26 +02:00
const lTags = loggerTagsFactory('ap', 'create')
2019-08-15 11:53:26 +02:00
async function sendCreateVideo (video: MVideoAP, t: Transaction) {
2019-12-12 15:47:47 +01:00
if (!video.hasPrivacyForFederation()) return undefined
2017-11-20 09:43:39 +01:00
logger.info('Creating job to send video creation of %s.', video.url, lTags(video.uuid))
2018-07-30 17:02:40 +02:00
2017-12-19 10:34:56 +01:00
const byActor = video.VideoChannel.Account.Actor
2017-12-14 17:38:41 +01:00
const videoObject = video.toActivityPubObject()
2017-12-19 10:34:56 +01:00
const audience = getAudience(byActor, video.privacy === VideoPrivacy.PUBLIC)
2018-09-11 16:27:07 +02:00
const createActivity = buildCreateActivity(video.url, byActor, videoObject, audience)
2017-11-20 09:43:39 +01:00
2018-09-11 16:27:07 +02:00
return broadcastToFollowers(createActivity, byActor, [ byActor ], t)
2017-11-20 09:43:39 +01:00
}
2019-08-15 11:53:26 +02:00
async function sendCreateCacheFile (
byActor: MActorLight,
video: MVideoAccountLight,
fileRedundancy: MVideoRedundancyStreamingPlaylistVideo | MVideoRedundancyFileVideo
) {
logger.info('Creating job to send file cache of %s.', fileRedundancy.url, lTags(video.uuid))
2018-09-11 16:27:07 +02:00
2018-09-14 16:51:35 +02:00
return sendVideoRelatedCreateActivity({
byActor,
video,
url: fileRedundancy.url,
2020-02-04 16:34:46 +01:00
object: fileRedundancy.toActivityPubObject(),
contextType: 'CacheFile'
2018-09-14 16:51:35 +02:00
})
2017-11-22 16:25:03 +01:00
}
2019-08-15 11:53:26 +02:00
async function sendCreateVideoPlaylist (playlist: MVideoPlaylistFull, t: Transaction) {
2019-02-26 10:55:40 +01:00
if (playlist.privacy === VideoPlaylistPrivacy.PRIVATE) return undefined
logger.info('Creating job to send create video playlist of %s.', playlist.url, lTags(playlist.uuid))
2019-02-26 10:55:40 +01:00
const byActor = playlist.OwnerAccount.Actor
const audience = getAudience(byActor, playlist.privacy === VideoPlaylistPrivacy.PUBLIC)
2019-03-05 10:58:44 +01:00
const object = await playlist.toActivityPubObject(null, t)
2019-02-26 10:55:40 +01:00
const createActivity = buildCreateActivity(playlist.url, byActor, object, audience)
const serverActor = await getServerActor()
const toFollowersOf = [ byActor, serverActor ]
if (playlist.VideoChannel) toFollowersOf.push(playlist.VideoChannel.Actor)
return broadcastToFollowers(createActivity, byActor, toFollowersOf, t)
}
2019-08-15 11:53:26 +02:00
async function sendCreateVideoComment (comment: MCommentOwnerVideo, t: Transaction) {
2018-07-30 17:02:40 +02:00
logger.info('Creating job to send comment %s.', comment.url)
const isOrigin = comment.Video.isOwned()
const byActor = comment.Account.Actor
2018-01-05 11:19:25 +01:00
const threadParentComments = await VideoCommentModel.listThreadParentComments(comment, t)
const commentObject = comment.toActivityPubObject(threadParentComments)
2018-01-08 10:00:35 +01:00
const actorsInvolvedInComment = await getActorsInvolvedInVideo(comment.Video, t)
2018-09-14 16:51:35 +02:00
// Add the actor that commented too
2018-01-08 10:00:35 +01:00
actorsInvolvedInComment.push(byActor)
const parentsCommentActors = threadParentComments.filter(c => !c.isDeleted())
.map(c => c.Account.Actor)
let audience: ActivityAudience
if (isOrigin) {
audience = getVideoCommentAudience(comment, threadParentComments, actorsInvolvedInComment, isOrigin)
} else {
2018-09-14 16:51:35 +02:00
audience = getAudienceFromFollowersOf(actorsInvolvedInComment.concat(parentsCommentActors))
}
2018-01-08 10:00:35 +01:00
2018-09-11 16:27:07 +02:00
const createActivity = buildCreateActivity(comment.url, byActor, commentObject, audience)
2018-01-08 10:00:35 +01:00
// This was a reply, send it to the parent actors
const actorsException = [ byActor ]
2019-07-29 11:59:29 +02:00
await broadcastToActors(createActivity, byActor, parentsCommentActors, t, actorsException)
2018-01-08 10:00:35 +01:00
// Broadcast to our followers
2018-09-11 16:27:07 +02:00
await broadcastToFollowers(createActivity, byActor, [ byActor ], t)
2018-01-08 10:00:35 +01:00
// Send to actors involved in the comment
2018-09-11 16:27:07 +02:00
if (isOrigin) return broadcastToFollowers(createActivity, byActor, actorsInvolvedInComment, t, actorsException)
// Send to origin
t.afterCommit(() => unicastTo(createActivity, byActor, comment.Video.VideoChannel.Account.Actor.getSharedInbox()))
}
2019-08-15 11:53:26 +02:00
function buildCreateActivity (url: string, byActor: MActorLight, object: any, audience?: ActivityAudience): ActivityCreate {
if (!audience) audience = getAudience(byActor)
return audiencify(
{
type: 'Create' as 'Create',
id: url + '/activity',
actor: byActor.url,
object: audiencify(object, audience)
},
audience
)
2017-11-20 09:43:39 +01:00
}
// ---------------------------------------------------------------------------
export {
2017-12-14 17:38:41 +01:00
sendCreateVideo,
2018-09-11 16:27:07 +02:00
buildCreateActivity,
sendCreateVideoComment,
2019-02-26 10:55:40 +01:00
sendCreateVideoPlaylist,
2018-09-11 16:27:07 +02:00
sendCreateCacheFile
2017-11-20 09:43:39 +01:00
}
2018-09-14 16:51:35 +02:00
// ---------------------------------------------------------------------------
async function sendVideoRelatedCreateActivity (options: {
2020-01-31 16:56:52 +01:00
byActor: MActorLight
video: MVideoAccountLight
url: string
object: any
2018-09-14 16:51:35 +02:00
transaction?: Transaction
2020-02-04 16:34:46 +01:00
contextType?: ContextType
2018-09-14 16:51:35 +02:00
}) {
const activityBuilder = (audience: ActivityAudience) => {
return buildCreateActivity(options.url, options.byActor, options.object, audience)
}
return sendVideoRelatedActivity(activityBuilder, options)
}