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

183 lines
6.2 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 { VideoAbuseModel } from '../../../models/video/video-abuse'
import { VideoCommentModel } from '../../../models/video/video-comment'
2017-11-23 14:19:55 +01:00
import { getVideoAbuseActivityPubUrl, getVideoDislikeActivityPubUrl, getVideoViewActivityPubUrl } from '../url'
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
}
2018-09-11 16:27:07 +02:00
async function sendVideoAbuse (byActor: ActorModel, videoAbuse: VideoAbuseModel, video: VideoModel) {
if (!video.VideoChannel.Account.Actor.serverId) return // Local
2017-11-20 09:43:39 +01:00
const url = getVideoAbuseActivityPubUrl(videoAbuse)
2017-11-22 16:25:03 +01:00
2018-07-30 17:02:40 +02:00
logger.info('Creating job to send video abuse %s.', url)
2018-09-14 16:51:35 +02:00
// Custom audience, we only send the abuse to the origin instance
2017-12-14 17:38:41 +01:00
const audience = { to: [ video.VideoChannel.Account.Actor.url ], cc: [] }
2018-09-11 16:27:07 +02:00
const createActivity = buildCreateActivity(url, byActor, videoAbuse.toActivityPubObject(), audience)
2017-11-22 16:25:03 +01:00
2018-09-11 16:27:07 +02:00
return unicastTo(createActivity, byActor, video.VideoChannel.Account.Actor.sharedInboxUrl)
}
async function sendCreateCacheFile (byActor: ActorModel, fileRedundancy: VideoRedundancyModel) {
logger.info('Creating job to send file cache of %s.', fileRedundancy.url)
const video = await VideoModel.loadAndPopulateAccountAndServerAndTags(fileRedundancy.VideoFile.Video.id)
2018-09-14 16:51:35 +02:00
const redundancyObject = fileRedundancy.toActivityPubObject()
2018-09-11 16:27:07 +02:00
2018-09-14 16:51:35 +02:00
return sendVideoRelatedCreateActivity({
byActor,
video,
url: fileRedundancy.url,
object: redundancyObject
})
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)
}
async function sendCreateView (byActor: ActorModel, video: VideoModel, t: Transaction) {
2018-07-30 17:02:40 +02:00
logger.info('Creating job to send view of %s.', video.url)
2017-12-14 17:38:41 +01:00
const url = getVideoViewActivityPubUrl(byActor, video)
2018-09-11 16:27:07 +02:00
const viewActivity = buildViewActivity(byActor, video)
2017-11-22 16:25:03 +01:00
2018-09-14 16:51:35 +02:00
return sendVideoRelatedCreateActivity({
// Use the server actor to send the view
byActor,
video,
url,
object: viewActivity,
transaction: t
})
2017-11-23 14:19:55 +01:00
}
async function sendCreateDislike (byActor: ActorModel, video: VideoModel, t: Transaction) {
2018-07-30 17:02:40 +02:00
logger.info('Creating job to dislike %s.', video.url)
2017-12-14 17:38:41 +01:00
const url = getVideoDislikeActivityPubUrl(byActor, video)
2018-09-11 16:27:07 +02:00
const dislikeActivity = buildDislikeActivity(byActor, video)
2017-11-23 14:19:55 +01:00
2018-09-14 16:51:35 +02:00
return sendVideoRelatedCreateActivity({
byActor,
video,
url,
object: dislikeActivity,
transaction: t
})
2017-11-22 16:25:03 +01:00
}
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
}
2018-09-11 16:27:07 +02:00
function buildDislikeActivity (byActor: ActorModel, video: VideoModel) {
2017-12-12 17:53:50 +01:00
return {
2017-11-23 14:19:55 +01:00
type: 'Dislike',
2017-12-14 17:38:41 +01:00
actor: byActor.url,
2017-11-23 14:19:55 +01:00
object: video.url
}
}
2018-09-11 16:27:07 +02:00
function buildViewActivity (byActor: ActorModel, video: VideoModel) {
return {
type: 'View',
actor: byActor.url,
object: video.url
}
}
2017-11-20 09:43:39 +01:00
// ---------------------------------------------------------------------------
export {
2017-12-14 17:38:41 +01:00
sendCreateVideo,
2017-11-20 09:43:39 +01:00
sendVideoAbuse,
2018-09-11 16:27:07 +02:00
buildCreateActivity,
sendCreateView,
sendCreateDislike,
2018-09-11 16:27:07 +02:00
buildDislikeActivity,
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)
}