PeerTube/server/lib/activitypub/process/process-follow.ts

111 lines
4.0 KiB
TypeScript
Raw Normal View History

2021-05-11 11:15:29 +02:00
import { getServerActor } from '@server/models/application/application'
2017-12-12 17:53:50 +01:00
import { ActivityFollow } from '../../../../shared/models/activitypub'
2021-05-11 11:15:29 +02:00
import { getAPId } from '../../../helpers/activitypub'
2017-12-28 11:16:08 +01:00
import { retryTransactionWrapper } from '../../../helpers/database-utils'
import { logger } from '../../../helpers/logger'
2019-04-11 11:33:44 +02:00
import { CONFIG } from '../../../initializers/config'
2021-05-11 11:15:29 +02:00
import { sequelizeTypescript } from '../../../initializers/database'
import { ActorModel } from '../../../models/actor/actor'
import { ActorFollowModel } from '../../../models/actor/actor-follow'
2020-06-18 10:45:25 +02:00
import { APProcessorOptions } from '../../../types/activitypub-processor.model'
import { MActorFollowActors, MActorSignature } from '../../../types/models'
2021-05-11 11:15:29 +02:00
import { Notifier } from '../../notifier'
import { autoFollowBackIfNeeded } from '../follow'
2021-05-11 11:15:29 +02:00
import { sendAccept, sendReject } from '../send'
2017-11-13 17:39:41 +01:00
2019-08-02 10:53:36 +02:00
async function processFollowActivity (options: APProcessorOptions<ActivityFollow>) {
const { activity, byActor } = options
2017-11-13 17:39:41 +01:00
2020-11-20 11:21:08 +01:00
const activityId = activity.id
const objectId = getAPId(activity.object)
return retryTransactionWrapper(processFollow, byActor, activityId, objectId)
2017-11-13 17:39:41 +01:00
}
// ---------------------------------------------------------------------------
export {
processFollowActivity
}
// ---------------------------------------------------------------------------
2020-11-20 11:21:08 +01:00
async function processFollow (byActor: MActorSignature, activityId: string, targetActorURL: string) {
const { actorFollow, created, isFollowingInstance, targetActor } = await sequelizeTypescript.transaction(async t => {
const targetActor = await ActorModel.loadByUrlAndPopulateAccountAndChannel(targetActorURL, t)
2017-11-13 18:48:28 +01:00
2017-12-14 17:38:41 +01:00
if (!targetActor) throw new Error('Unknown actor')
if (targetActor.isOwned() === false) throw new Error('This is not a local actor.')
2017-11-13 17:39:41 +01:00
2019-04-08 14:04:57 +02:00
const serverActor = await getServerActor()
const isFollowingInstance = targetActor.id === serverActor.id
if (isFollowingInstance && CONFIG.FOLLOWERS.INSTANCE.ENABLED === false) {
logger.info('Rejecting %s because instance followers are disabled.', targetActor.url)
2021-06-15 09:17:19 +02:00
sendReject(activityId, byActor, targetActor)
2019-04-18 11:28:17 +02:00
2019-08-15 11:53:26 +02:00
return { actorFollow: undefined as MActorFollowActors }
2019-04-08 14:04:57 +02:00
}
2019-08-15 11:53:26 +02:00
const [ actorFollow, created ] = await ActorFollowModel.findOrCreate<MActorFollowActors>({
2017-11-14 17:31:26 +01:00
where: {
actorId: byActor.id,
2017-12-14 17:38:41 +01:00
targetActorId: targetActor.id
2017-11-14 17:31:26 +01:00
},
defaults: {
actorId: byActor.id,
2017-12-14 17:38:41 +01:00
targetActorId: targetActor.id,
2020-11-20 11:21:08 +01:00
url: activityId,
state: CONFIG.FOLLOWERS.INSTANCE.MANUAL_APPROVAL
? 'pending'
: 'accepted'
2017-11-14 17:31:26 +01:00
},
2017-11-13 18:48:28 +01:00
transaction: t
2019-08-15 11:53:26 +02:00
})
2017-11-22 16:25:03 +01:00
2020-02-17 15:44:06 +01:00
// Set the follow as accepted if the remote actor follows a channel or account
// Or if the instance automatically accepts followers
if (actorFollow.state !== 'accepted' && (isFollowingInstance === false || CONFIG.FOLLOWERS.INSTANCE.MANUAL_APPROVAL === false)) {
2017-12-14 17:38:41 +01:00
actorFollow.state = 'accepted'
2021-02-19 13:55:00 +01:00
await actorFollow.save({ transaction: t })
}
// Before PeerTube V3 we did not save the follow ID. Try to fix these old follows
if (!actorFollow.url) {
actorFollow.url = activityId
2017-12-14 17:38:41 +01:00
await actorFollow.save({ transaction: t })
2017-11-22 16:25:03 +01:00
}
actorFollow.ActorFollower = byActor
2017-12-14 17:38:41 +01:00
actorFollow.ActorFollowing = targetActor
2017-11-13 18:48:28 +01:00
2017-12-14 17:38:41 +01:00
// Target sends to actor he accepted the follow request
if (actorFollow.state === 'accepted') {
2021-06-15 09:17:19 +02:00
sendAccept(actorFollow)
await autoFollowBackIfNeeded(actorFollow, t)
}
return { actorFollow, created, isFollowingInstance, targetActor }
2017-11-13 17:39:41 +01:00
})
2017-11-13 18:48:28 +01:00
// Rejected
if (!actorFollow) return
if (created) {
const follower = await ActorModel.loadFull(byActor.id)
const actorFollowFull = Object.assign(actorFollow, { ActorFollowing: targetActor, ActorFollower: follower })
2019-08-15 11:53:26 +02:00
if (isFollowingInstance) {
Notifier.Instance.notifyOfNewInstanceFollow(actorFollowFull)
2019-08-15 11:53:26 +02:00
} else {
Notifier.Instance.notifyOfNewUserFollow(actorFollowFull)
}
}
logger.info('Actor %s is followed by actor %s.', targetActorURL, byActor.url)
2017-11-13 17:39:41 +01:00
}