1
0
Fork 0
peertube/server/lib/activitypub/process/process-follow.ts

110 lines
4.0 KiB
TypeScript
Raw Normal View History

2017-12-12 16:53:50 +00:00
import { ActivityFollow } from '../../../../shared/models/activitypub'
2017-12-28 10:16:08 +00:00
import { retryTransactionWrapper } from '../../../helpers/database-utils'
import { logger } from '../../../helpers/logger'
2020-05-07 12:58:24 +00:00
import { sequelizeTypescript } from '../../../initializers/database'
2017-12-14 16:38:41 +00:00
import { ActorModel } from '../../../models/activitypub/actor'
import { ActorFollowModel } from '../../../models/activitypub/actor-follow'
2019-04-08 12:04:57 +00:00
import { sendAccept, sendReject } from '../send'
import { Notifier } from '../../notifier'
import { getAPId } from '../../../helpers/activitypub'
2019-04-11 09:33:44 +00:00
import { CONFIG } from '../../../initializers/config'
2020-06-18 08:45:25 +00:00
import { APProcessorOptions } from '../../../types/activitypub-processor.model'
import { MActorFollowActors, MActorSignature } from '../../../types/models'
import { autoFollowBackIfNeeded } from '../follow'
2020-04-23 07:32:53 +00:00
import { getServerActor } from '@server/models/application/application'
2017-11-13 16:39:41 +00:00
2019-08-02 08:53:36 +00:00
async function processFollowActivity (options: APProcessorOptions<ActivityFollow>) {
const { activity, byActor } = options
2017-11-13 16:39:41 +00:00
2020-11-20 10:21:08 +00:00
const activityId = activity.id
const objectId = getAPId(activity.object)
return retryTransactionWrapper(processFollow, byActor, activityId, objectId)
2017-11-13 16:39:41 +00:00
}
// ---------------------------------------------------------------------------
export {
processFollowActivity
}
// ---------------------------------------------------------------------------
2020-11-20 10:21:08 +00: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 17:48:28 +00:00
2017-12-14 16:38:41 +00:00
if (!targetActor) throw new Error('Unknown actor')
if (targetActor.isOwned() === false) throw new Error('This is not a local actor.')
2017-11-13 16:39:41 +00:00
2019-04-08 12:04:57 +00: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)
2020-11-20 10:21:08 +00:00
await sendReject(activityId, byActor, targetActor)
2019-04-18 09:28:17 +00:00
2019-08-15 09:53:26 +00:00
return { actorFollow: undefined as MActorFollowActors }
2019-04-08 12:04:57 +00:00
}
2019-08-15 09:53:26 +00:00
const [ actorFollow, created ] = await ActorFollowModel.findOrCreate<MActorFollowActors>({
2017-11-14 16:31:26 +00:00
where: {
actorId: byActor.id,
2017-12-14 16:38:41 +00:00
targetActorId: targetActor.id
2017-11-14 16:31:26 +00:00
},
defaults: {
actorId: byActor.id,
2017-12-14 16:38:41 +00:00
targetActorId: targetActor.id,
2020-11-20 10:21:08 +00:00
url: activityId,
state: CONFIG.FOLLOWERS.INSTANCE.MANUAL_APPROVAL
? 'pending'
: 'accepted'
2017-11-14 16:31:26 +00:00
},
2017-11-13 17:48:28 +00:00
transaction: t
2019-08-15 09:53:26 +00:00
})
2017-11-22 15:25:03 +00:00
2020-02-17 14:44:06 +00: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 16:38:41 +00:00
actorFollow.state = 'accepted'
2021-02-19 12:55:00 +00: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 16:38:41 +00:00
await actorFollow.save({ transaction: t })
2017-11-22 15:25:03 +00:00
}
actorFollow.ActorFollower = byActor
2017-12-14 16:38:41 +00:00
actorFollow.ActorFollowing = targetActor
2017-11-13 17:48:28 +00:00
2017-12-14 16:38:41 +00:00
// Target sends to actor he accepted the follow request
if (actorFollow.state === 'accepted') {
await sendAccept(actorFollow)
await autoFollowBackIfNeeded(actorFollow)
}
return { actorFollow, created, isFollowingInstance, targetActor }
2017-11-13 16:39:41 +00:00
})
2017-11-13 17:48:28 +00: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 09:53:26 +00:00
if (isFollowingInstance) {
Notifier.Instance.notifyOfNewInstanceFollow(actorFollowFull)
2019-08-15 09:53:26 +00:00
} else {
Notifier.Instance.notifyOfNewUserFollow(actorFollowFull)
}
}
logger.info('Actor %s is followed by actor %s.', targetActorURL, byActor.url)
2017-11-13 16:39:41 +00:00
}