1
0
Fork 0
mirror of https://github.com/Chocobozzz/PeerTube.git synced 2025-10-05 02:39:33 +02:00
Peertube/server/lib/activitypub/send/send-follow.ts
Chocobozzz 57e4e1c1a9
Don't store remote rates of remote videos
In the future we'll stop to expose all available rates to improve users
privacy
2022-03-18 11:21:50 +01:00

35 lines
1,011 B
TypeScript

import { Transaction } from 'sequelize'
import { ActivityFollow } from '@shared/models'
import { logger } from '../../../helpers/logger'
import { MActor, MActorFollowActors } from '../../../types/models'
import { unicastTo } from './shared/send-utils'
function sendFollow (actorFollow: MActorFollowActors, t: Transaction) {
const me = actorFollow.ActorFollower
const following = actorFollow.ActorFollowing
// Same server as ours
if (!following.serverId) return
logger.info('Creating job to send follow request to %s.', following.url)
const data = buildFollowActivity(actorFollow.url, me, following)
t.afterCommit(() => unicastTo(data, me, following.inboxUrl))
}
function buildFollowActivity (url: string, byActor: MActor, targetActor: MActor): ActivityFollow {
return {
type: 'Follow',
id: url,
actor: byActor.url,
object: targetActor.url
}
}
// ---------------------------------------------------------------------------
export {
sendFollow,
buildFollowActivity
}