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

53 lines
1.8 KiB
TypeScript
Raw Normal View History

2017-11-23 14:19:55 +01:00
import { Transaction } from 'sequelize'
2017-12-12 17:53:50 +01:00
import { ActivityAudience, ActivityLike } from '../../../../shared/models/activitypub'
2017-12-14 17:38:41 +01:00
import { ActorModel } from '../../../models/activitypub/actor'
2017-12-12 17:53:50 +01:00
import { VideoModel } from '../../../models/video/video'
2017-11-23 14:19:55 +01:00
import { getVideoLikeActivityPubUrl } from '../url'
2018-05-25 11:32:36 +02:00
import { broadcastToFollowers, unicastTo } from './utils'
import { audiencify, getActorsInvolvedInVideo, getAudience, getObjectFollowersAudience, getVideoAudience } from '../audience'
2018-07-30 17:02:40 +02:00
import { logger } from '../../../helpers/logger'
2017-11-23 14:19:55 +01:00
async function sendLike (byActor: ActorModel, video: VideoModel, t: Transaction) {
2018-07-30 17:02:40 +02:00
logger.info('Creating job to like %s.', video.url)
2017-12-14 17:38:41 +01:00
const url = getVideoLikeActivityPubUrl(byActor, video)
2017-11-23 14:19:55 +01:00
2017-12-14 17:38:41 +01:00
const accountsInvolvedInVideo = await getActorsInvolvedInVideo(video, t)
2017-11-23 14:19:55 +01:00
// Send to origin
if (video.isOwned() === false) {
2018-05-25 11:32:36 +02:00
const audience = getVideoAudience(video, accountsInvolvedInVideo)
const data = likeActivityData(url, byActor, video, audience)
2017-11-23 14:19:55 +01:00
return unicastTo(data, byActor, video.VideoChannel.Account.Actor.sharedInboxUrl)
}
2017-11-23 14:19:55 +01:00
// Send to followers
const audience = getObjectFollowersAudience(accountsInvolvedInVideo)
const data = likeActivityData(url, byActor, video, audience)
2017-11-23 14:19:55 +01:00
2017-12-14 17:38:41 +01:00
const followersException = [ byActor ]
return broadcastToFollowers(data, byActor, accountsInvolvedInVideo, t, followersException)
2017-11-23 14:19:55 +01:00
}
function likeActivityData (url: string, byActor: ActorModel, video: VideoModel, audience?: ActivityAudience): ActivityLike {
if (!audience) audience = getAudience(byActor)
return audiencify(
{
type: 'Like' as 'Like',
id: url,
actor: byActor.url,
object: video.url
},
audience
)
2017-11-23 14:19:55 +01:00
}
// ---------------------------------------------------------------------------
export {
sendLike,
2017-11-23 14:19:55 +01:00
likeActivityData
}