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