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

113 lines
4.1 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 { ActorModel } from '../../../models/activitypub/actor'
2017-12-12 17:53:50 +01:00
import { VideoModel } from '../../../models/video/video'
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'
2018-07-30 17:02:40 +02:00
import { logger } from '../../../helpers/logger'
2018-09-11 16:27:07 +02:00
import { VideoRedundancyModel } from '../../../models/redundancy/video-redundancy'
2017-11-20 09:43:39 +01:00
2017-12-14 17:38:41 +01:00
async function sendCreateVideo (video: VideoModel, t: Transaction) {
2017-12-19 14:22:38 +01:00
if (video.privacy === VideoPrivacy.PRIVATE) return undefined
2017-11-20 09:43:39 +01:00
2018-07-30 17:02:40 +02:00
logger.info('Creating job to send video creation of %s.', video.url)
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-01-29 08:37:25 +01:00
async function sendCreateCacheFile (byActor: ActorModel, video: VideoModel, fileRedundancy: VideoRedundancyModel) {
2018-09-11 16:27:07 +02:00
logger.info('Creating job to send file cache of %s.', fileRedundancy.url)
2018-09-14 16:51:35 +02:00
return sendVideoRelatedCreateActivity({
byActor,
video,
url: fileRedundancy.url,
2019-01-29 08:37:25 +01:00
object: fileRedundancy.toActivityPubObject()
2018-09-14 16:51:35 +02:00
})
2017-11-22 16:25:03 +01:00
}
async function sendCreateVideoComment (comment: VideoCommentModel, 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.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 ]
2018-09-11 16:27:07 +02:00
await broadcastToActors(createActivity, byActor, parentsCommentActors, 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
2018-09-11 16:27:07 +02:00
return unicastTo(createActivity, byActor, comment.Video.VideoChannel.Account.Actor.sharedInboxUrl)
}
2018-09-11 16:27:07 +02:00
function buildCreateActivity (url: string, byActor: ActorModel, 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,
sendCreateCacheFile
2017-11-20 09:43:39 +01:00
}
2018-09-14 16:51:35 +02:00
// ---------------------------------------------------------------------------
async function sendVideoRelatedCreateActivity (options: {
byActor: ActorModel,
video: VideoModel,
url: string,
object: any,
transaction?: Transaction
}) {
const activityBuilder = (audience: ActivityAudience) => {
return buildCreateActivity(options.url, options.byActor, options.object, audience)
}
return sendVideoRelatedActivity(activityBuilder, options)
}