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'
|
2019-04-11 05:33:44 -04:00
|
|
|
import { sequelizeTypescript } from '../../../initializers'
|
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-08 08:04:57 -04:00
|
|
|
import { getServerActor } from '../../../helpers/utils'
|
2019-04-11 05:33:44 -04:00
|
|
|
import { CONFIG } from '../../../initializers/config'
|
2017-11-13 11:39:41 -05:00
|
|
|
|
2018-09-19 08:44:20 -04:00
|
|
|
async function processFollowActivity (activity: ActivityFollow, byActor: ActorModel) {
|
2019-01-15 05:14:12 -05:00
|
|
|
const activityObject = getAPId(activity.object)
|
2017-11-13 11:39:41 -05:00
|
|
|
|
2018-09-19 08:44:20 -04:00
|
|
|
return retryTransactionWrapper(processFollow, byActor, activityObject)
|
2017-11-13 11:39:41 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
|
|
|
processFollowActivity
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2018-06-13 08:27:40 -04:00
|
|
|
async function processFollow (actor: ActorModel, targetActorURL: string) {
|
2019-04-08 11:26:01 -04:00
|
|
|
const { actorFollow, created, isFollowingInstance } = 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)
|
|
|
|
|
2019-04-18 05:28:17 -04:00
|
|
|
await sendReject(actor, targetActor)
|
|
|
|
|
|
|
|
return { actorFollow: undefined }
|
2019-04-08 08:04:57 -04:00
|
|
|
}
|
|
|
|
|
2019-01-04 02:56:20 -05:00
|
|
|
const [ actorFollow, created ] = await ActorFollowModel.findOrCreate({
|
2017-11-14 11:31:26 -05:00
|
|
|
where: {
|
2017-12-14 11:38:41 -05:00
|
|
|
actorId: actor.id,
|
|
|
|
targetActorId: targetActor.id
|
2017-11-14 11:31:26 -05:00
|
|
|
},
|
|
|
|
defaults: {
|
2017-12-14 11:38:41 -05:00
|
|
|
actorId: actor.id,
|
|
|
|
targetActorId: targetActor.id,
|
2019-04-08 09:18:04 -04:00
|
|
|
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
|
2017-11-14 11:31:26 -05:00
|
|
|
})
|
2017-11-22 10:25:03 -05:00
|
|
|
|
2019-04-08 09:18:04 -04:00
|
|
|
if (actorFollow.state !== 'accepted' && CONFIG.FOLLOWERS.INSTANCE.MANUAL_APPROVAL === false) {
|
2017-12-14 11:38:41 -05:00
|
|
|
actorFollow.state = 'accepted'
|
|
|
|
await actorFollow.save({ transaction: t })
|
2017-11-22 10:25:03 -05:00
|
|
|
}
|
|
|
|
|
2017-12-14 11:38:41 -05:00
|
|
|
actorFollow.ActorFollower = actor
|
|
|
|
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-04-08 09:18:04 -04:00
|
|
|
if (actorFollow.state === 'accepted') await sendAccept(actorFollow)
|
2019-01-04 02:56:20 -05:00
|
|
|
|
2019-04-08 11:26:01 -04:00
|
|
|
return { actorFollow, created, isFollowingInstance }
|
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) {
|
|
|
|
if (isFollowingInstance) Notifier.Instance.notifyOfNewInstanceFollow(actorFollow)
|
|
|
|
else Notifier.Instance.notifyOfNewUserFollow(actorFollow)
|
|
|
|
}
|
2019-01-04 02:56:20 -05:00
|
|
|
|
2017-12-19 09:17:43 -05:00
|
|
|
logger.info('Actor %s is followed by actor %s.', targetActorURL, actor.url)
|
2017-11-13 11:39:41 -05:00
|
|
|
}
|