]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - server/lib/activitypub/process/process-follow.ts
Fix HLS federation
[github/Chocobozzz/PeerTube.git] / server / lib / activitypub / process / process-follow.ts
index ccaee43a66c7317bbc8997309b975c516d3091d5..0cd537187a93ccacc939d85f0258ef473f68a28b 100644 (file)
@@ -1,16 +1,17 @@
 import { ActivityFollow } from '../../../../shared/models/activitypub'
-import { logger, retryTransactionWrapper } from '../../../helpers'
+import { retryTransactionWrapper } from '../../../helpers/database-utils'
+import { logger } from '../../../helpers/logger'
 import { sequelizeTypescript } from '../../../initializers'
-import { AccountModel } from '../../../models/account/account'
-import { AccountFollowModel } from '../../../models/account/account-follow'
-import { getOrCreateAccountAndServer } from '../account'
+import { ActorModel } from '../../../models/activitypub/actor'
+import { ActorFollowModel } from '../../../models/activitypub/actor-follow'
 import { sendAccept } from '../send'
+import { Notifier } from '../../notifier'
+import { getAPId } from '../../../helpers/activitypub'
 
-async function processFollowActivity (activity: ActivityFollow) {
-  const activityObject = activity.object
-  const account = await getOrCreateAccountAndServer(activity.actor)
+async function processFollowActivity (activity: ActivityFollow, byActor: ActorModel) {
+  const activityObject = getAPId(activity.object)
 
-  return processFollow(account, activityObject)
+  return retryTransactionWrapper(processFollow, byActor, activityObject)
 }
 
 // ---------------------------------------------------------------------------
@@ -21,46 +22,44 @@ export {
 
 // ---------------------------------------------------------------------------
 
-function processFollow (account: AccountModel, targetAccountURL: string) {
-  const options = {
-    arguments: [ account, targetAccountURL ],
-    errorMessage: 'Cannot follow with many retries.'
-  }
+async function processFollow (actor: ActorModel, targetActorURL: string) {
+  const { actorFollow, created } = await sequelizeTypescript.transaction(async t => {
+    const targetActor = await ActorModel.loadByUrlAndPopulateAccountAndChannel(targetActorURL, t)
 
-  return retryTransactionWrapper(follow, options)
-}
-
-async function follow (account: AccountModel, targetAccountURL: string) {
-  await sequelizeTypescript.transaction(async t => {
-    const targetAccount = await AccountModel.loadByUrl(targetAccountURL, t)
-
-    if (!targetAccount) throw new Error('Unknown account')
-    if (targetAccount.isOwned() === false) throw new Error('This is not a local account.')
+    if (!targetActor) throw new Error('Unknown actor')
+    if (targetActor.isOwned() === false) throw new Error('This is not a local actor.')
 
-    const [ accountFollow ] = await AccountFollowModel.findOrCreate({
+    const [ actorFollow, created ] = await ActorFollowModel.findOrCreate({
       where: {
-        accountId: account.id,
-        targetAccountId: targetAccount.id
+        actorId: actor.id,
+        targetActorId: targetActor.id
       },
       defaults: {
-        accountId: account.id,
-        targetAccountId: targetAccount.id,
+        actorId: actor.id,
+        targetActorId: targetActor.id,
         state: 'accepted'
       },
       transaction: t
     })
 
-    if (accountFollow.state !== 'accepted') {
-      accountFollow.state = 'accepted'
-      await accountFollow.save({ transaction: t })
+    actorFollow.ActorFollower = actor
+    actorFollow.ActorFollowing = targetActor
+
+    if (actorFollow.state !== 'accepted') {
+      actorFollow.state = 'accepted'
+      await actorFollow.save({ transaction: t })
     }
 
-    accountFollow.AccountFollower = account
-    accountFollow.AccountFollowing = targetAccount
+    actorFollow.ActorFollower = actor
+    actorFollow.ActorFollowing = targetActor
+
+    // Target sends to actor he accepted the follow request
+    await sendAccept(actorFollow)
 
-    // Target sends to account he accepted the follow request
-    return sendAccept(accountFollow, t)
+    return { actorFollow, created }
   })
 
-  logger.info('Account uuid %s is followed by account %s.', account.url, targetAccountURL)
+  if (created) Notifier.Instance.notifyOfNewFollow(actorFollow)
+
+  logger.info('Actor %s is followed by actor %s.', targetActorURL, actor.url)
 }