diff options
Diffstat (limited to 'server/lib/job-queue/handlers/activitypub-follow.ts')
-rw-r--r-- | server/lib/job-queue/handlers/activitypub-follow.ts | 82 |
1 files changed, 0 insertions, 82 deletions
diff --git a/server/lib/job-queue/handlers/activitypub-follow.ts b/server/lib/job-queue/handlers/activitypub-follow.ts deleted file mode 100644 index a68c32ba0..000000000 --- a/server/lib/job-queue/handlers/activitypub-follow.ts +++ /dev/null | |||
@@ -1,82 +0,0 @@ | |||
1 | import { Job } from 'bullmq' | ||
2 | import { getLocalActorFollowActivityPubUrl } from '@server/lib/activitypub/url' | ||
3 | import { ActivitypubFollowPayload } from '@shared/models' | ||
4 | import { sanitizeHost } from '../../../helpers/core-utils' | ||
5 | import { retryTransactionWrapper } from '../../../helpers/database-utils' | ||
6 | import { logger } from '../../../helpers/logger' | ||
7 | import { REMOTE_SCHEME, WEBSERVER } from '../../../initializers/constants' | ||
8 | import { sequelizeTypescript } from '../../../initializers/database' | ||
9 | import { ActorModel } from '../../../models/actor/actor' | ||
10 | import { ActorFollowModel } from '../../../models/actor/actor-follow' | ||
11 | import { MActor, MActorFull } from '../../../types/models' | ||
12 | import { getOrCreateAPActor, loadActorUrlOrGetFromWebfinger } from '../../activitypub/actors' | ||
13 | import { sendFollow } from '../../activitypub/send' | ||
14 | import { Notifier } from '../../notifier' | ||
15 | |||
16 | async function processActivityPubFollow (job: Job) { | ||
17 | const payload = job.data as ActivitypubFollowPayload | ||
18 | const host = payload.host | ||
19 | |||
20 | logger.info('Processing ActivityPub follow in job %s.', job.id) | ||
21 | |||
22 | let targetActor: MActorFull | ||
23 | if (!host || host === WEBSERVER.HOST) { | ||
24 | targetActor = await ActorModel.loadLocalByName(payload.name) | ||
25 | } else { | ||
26 | const sanitizedHost = sanitizeHost(host, REMOTE_SCHEME.HTTP) | ||
27 | const actorUrl = await loadActorUrlOrGetFromWebfinger(payload.name + '@' + sanitizedHost) | ||
28 | targetActor = await getOrCreateAPActor(actorUrl, 'all') | ||
29 | } | ||
30 | |||
31 | if (payload.assertIsChannel && !targetActor.VideoChannel) { | ||
32 | logger.warn('Do not follow %s@%s because it is not a channel.', payload.name, host) | ||
33 | return | ||
34 | } | ||
35 | |||
36 | const fromActor = await ActorModel.load(payload.followerActorId) | ||
37 | |||
38 | return retryTransactionWrapper(follow, fromActor, targetActor, payload.isAutoFollow) | ||
39 | } | ||
40 | // --------------------------------------------------------------------------- | ||
41 | |||
42 | export { | ||
43 | processActivityPubFollow | ||
44 | } | ||
45 | |||
46 | // --------------------------------------------------------------------------- | ||
47 | |||
48 | async function follow (fromActor: MActor, targetActor: MActorFull, isAutoFollow = false) { | ||
49 | if (fromActor.id === targetActor.id) { | ||
50 | throw new Error('Follower is the same as target actor.') | ||
51 | } | ||
52 | |||
53 | // Same server, direct accept | ||
54 | const state = !fromActor.serverId && !targetActor.serverId ? 'accepted' : 'pending' | ||
55 | |||
56 | const actorFollow = await sequelizeTypescript.transaction(async t => { | ||
57 | const [ actorFollow ] = await ActorFollowModel.findOrCreateCustom({ | ||
58 | byActor: fromActor, | ||
59 | state, | ||
60 | targetActor, | ||
61 | activityId: getLocalActorFollowActivityPubUrl(fromActor, targetActor), | ||
62 | transaction: t | ||
63 | }) | ||
64 | |||
65 | // Send a notification to remote server if our follow is not already accepted | ||
66 | if (actorFollow.state !== 'accepted') sendFollow(actorFollow, t) | ||
67 | |||
68 | return actorFollow | ||
69 | }) | ||
70 | |||
71 | const followerFull = await ActorModel.loadFull(fromActor.id) | ||
72 | |||
73 | const actorFollowFull = Object.assign(actorFollow, { | ||
74 | ActorFollowing: targetActor, | ||
75 | ActorFollower: followerFull | ||
76 | }) | ||
77 | |||
78 | if (actorFollow.state === 'accepted') Notifier.Instance.notifyOfNewUserFollow(actorFollowFull) | ||
79 | if (isAutoFollow === true) Notifier.Instance.notifyOfAutoInstanceFollowing(actorFollowFull) | ||
80 | |||
81 | return actorFollow | ||
82 | } | ||