X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Flib%2Factivitypub%2Fprocess%2Fprocess-follow.ts;h=24c9085f7ac77520a537e713e8c09a336518341c;hb=e587e0ecee5bec43a225995948faaa4bc97f080a;hp=ccaee43a66c7317bbc8997309b975c516d3091d5;hpb=3fd3ab2d34d512b160a5e6084d7609be7b4f4452;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/lib/activitypub/process/process-follow.ts b/server/lib/activitypub/process/process-follow.ts index ccaee43a6..24c9085f7 100644 --- a/server/lib/activitypub/process/process-follow.ts +++ b/server/lib/activitypub/process/process-follow.ts @@ -1,16 +1,15 @@ 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' -async function processFollowActivity (activity: ActivityFollow) { +async function processFollowActivity (activity: ActivityFollow, byActor: ActorModel) { const activityObject = activity.object - const account = await getOrCreateAccountAndServer(activity.actor) - return processFollow(account, activityObject) + return retryTransactionWrapper(processFollow, byActor, activityObject) } // --------------------------------------------------------------------------- @@ -21,46 +20,40 @@ export { // --------------------------------------------------------------------------- -function processFollow (account: AccountModel, targetAccountURL: string) { - const options = { - arguments: [ account, targetAccountURL ], - errorMessage: 'Cannot follow with many retries.' - } - - return retryTransactionWrapper(follow, options) -} - -async function follow (account: AccountModel, targetAccountURL: string) { +async function processFollow (actor: ActorModel, targetActorURL: string) { await sequelizeTypescript.transaction(async t => { - const targetAccount = await AccountModel.loadByUrl(targetAccountURL, t) + const targetActor = await ActorModel.loadByUrlAndPopulateAccountAndChannel(targetActorURL, 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 ] = 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 account he accepted the follow request - return sendAccept(accountFollow, t) + // Target sends to actor he accepted the follow request + return sendAccept(actorFollow) }) - logger.info('Account uuid %s is followed by account %s.', account.url, targetAccountURL) + logger.info('Actor %s is followed by actor %s.', targetActorURL, actor.url) }