PeerTube/server/lib/activitypub/process-follow.ts

54 lines
1.8 KiB
TypeScript
Raw Normal View History

2017-11-13 16:39:41 +00:00
import { ActivityFollow } from '../../../shared/models/activitypub/activity'
2017-11-13 17:48:28 +00:00
import { getOrCreateAccount, retryTransactionWrapper } from '../../helpers'
2017-11-13 16:39:41 +00:00
import { database as db } from '../../initializers'
import { AccountInstance } from '../../models/account/account-interface'
2017-11-13 17:48:28 +00:00
import { sendAccept } from './send-request'
import { logger } from '../../helpers/logger'
2017-11-13 16:39:41 +00:00
async function processFollowActivity (activity: ActivityFollow) {
const activityObject = activity.object
const account = await getOrCreateAccount(activity.actor)
return processFollow(account, activityObject)
}
// ---------------------------------------------------------------------------
export {
processFollowActivity
}
// ---------------------------------------------------------------------------
2017-11-13 17:48:28 +00:00
function processFollow (account: AccountInstance, targetAccountURL: string) {
const options = {
arguments: [ account, targetAccountURL ],
errorMessage: 'Cannot follow with many retries.'
}
2017-11-13 16:39:41 +00:00
2017-11-13 17:48:28 +00:00
return retryTransactionWrapper(follow, options)
}
async function follow (account: AccountInstance, targetAccountURL: string) {
await db.sequelize.transaction(async t => {
const targetAccount = await db.Account.loadByUrl(targetAccountURL, t)
if (targetAccount === undefined) throw new Error('Unknown account')
if (targetAccount.isOwned() === false) throw new Error('This is not a local account.')
2017-11-13 16:39:41 +00:00
2017-11-13 17:48:28 +00:00
const sequelizeOptions = {
transaction: t
}
await db.AccountFollow.create({
accountId: account.id,
targetAccountId: targetAccount.id,
state: 'accepted'
}, sequelizeOptions)
// Target sends to account he accepted the follow request
return sendAccept(targetAccount, account, t)
2017-11-13 16:39:41 +00:00
})
2017-11-13 17:48:28 +00:00
logger.info('Account uuid %s is followed by account %s.', account.url, targetAccountURL)
2017-11-13 16:39:41 +00:00
}