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

157 lines
5.7 KiB
TypeScript
Raw Normal View History

import { Transaction } from 'sequelize/types'
import { isBlockedByServerOrAccount } from '@server/lib/blocklist'
import { AccountModel } from '@server/models/account/account'
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'
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 { getAPId } from '../../../lib/activitypub/activity'
2021-05-11 11:15:29 +02:00
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 { MActorFollow, MActorFull, MActorId, 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, 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
2022-07-27 15:45:04 +02:00
if (await rejectIfInstanceFollowDisabled(byActor, activityId, targetActor)) return { actorFollow: undefined }
if (await rejectIfMuted(byActor, activityId, targetActor)) return { actorFollow: undefined }
2019-04-08 14:04:57 +02:00
2021-10-14 10:52:15 +02:00
const [ actorFollow, created ] = await ActorFollowModel.findOrCreateCustom({
byActor,
targetActor,
activityId,
state: await isFollowingInstance(targetActor) && CONFIG.FOLLOWERS.INSTANCE.MANUAL_APPROVAL
2021-10-14 10:52:15 +02:00
? 'pending'
: 'accepted',
transaction: t
})
2017-11-22 16:25:03 +01:00
if (rejectIfAlreadyRejected(actorFollow, byActor, activityId, targetActor)) return { actorFollow: undefined }
2021-02-19 13:55:00 +01:00
await acceptIfNeeded(actorFollow, targetActor, t)
2021-02-19 13:55:00 +01:00
await fixFollowURLIfNeeded(actorFollow, activityId, 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, 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 })
2022-07-27 15:45:04 +02:00
if (await isFollowingInstance(targetActor)) {
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
}
2022-07-27 15:45:04 +02:00
async function rejectIfInstanceFollowDisabled (byActor: MActorSignature, activityId: string, targetActor: MActorFull) {
if (await isFollowingInstance(targetActor) && CONFIG.FOLLOWERS.INSTANCE.ENABLED === false) {
logger.info('Rejecting %s because instance followers are disabled.', targetActor.url)
sendReject(activityId, byActor, targetActor)
return true
}
return false
}
async function rejectIfMuted (byActor: MActorSignature, activityId: string, targetActor: MActorFull) {
const followerAccount = await AccountModel.load(byActor.Account.id)
const followingAccountId = targetActor.Account
if (followerAccount && await isBlockedByServerOrAccount(followerAccount, followingAccountId)) {
logger.info('Rejecting %s because follower is muted.', byActor.url)
sendReject(activityId, byActor, targetActor)
return true
}
return false
}
function rejectIfAlreadyRejected (actorFollow: MActorFollow, byActor: MActorSignature, activityId: string, targetActor: MActorFull) {
// Already rejected
if (actorFollow.state === 'rejected') {
logger.info('Rejecting %s because follow is already rejected.', byActor.url)
sendReject(activityId, byActor, targetActor)
return true
}
return false
}
async function acceptIfNeeded (actorFollow: MActorFollow, targetActor: MActorFull, transaction: Transaction) {
// 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') return
2022-07-27 15:45:04 +02:00
if (!await isFollowingInstance(targetActor)) return
if (CONFIG.FOLLOWERS.INSTANCE.MANUAL_APPROVAL === true && await isFollowingInstance(targetActor)) return
actorFollow.state = 'accepted'
await actorFollow.save({ transaction })
}
async function fixFollowURLIfNeeded (actorFollow: MActorFollow, activityId: string, transaction: Transaction) {
// Before PeerTube V3 we did not save the follow ID. Try to fix these old follows
if (!actorFollow.url) {
actorFollow.url = activityId
await actorFollow.save({ transaction })
}
}
async function isFollowingInstance (targetActor: MActorId) {
const serverActor = await getServerActor()
return targetActor.id === serverActor.id
}