1
0
Fork 0
peertube/server/lib/activitypub/follow.ts

52 lines
1.5 KiB
TypeScript

import { Transaction } from 'sequelize'
import { getServerActor } from '@server/models/application/application'
import { logger } from '../../helpers/logger'
import { CONFIG } from '../../initializers/config'
import { SERVER_ACTOR_NAME } from '../../initializers/constants'
import { ServerModel } from '../../models/server/server'
import { MActorFollowActors } from '../../types/models'
import { JobQueue } from '../job-queue'
async function autoFollowBackIfNeeded (actorFollow: MActorFollowActors, transaction?: Transaction) {
if (!CONFIG.FOLLOWINGS.INSTANCE.AUTO_FOLLOW_BACK.ENABLED) return
const follower = actorFollow.ActorFollower
if (follower.type === 'Application' && follower.preferredUsername === SERVER_ACTOR_NAME) {
logger.info('Auto follow back %s.', follower.url)
const me = await getServerActor()
const server = await ServerModel.load(follower.serverId, transaction)
const host = server.host
const payload = {
host,
name: SERVER_ACTOR_NAME,
followerActorId: me.id,
isAutoFollow: true
}
JobQueue.Instance.createJobAsync({ type: 'activitypub-follow', payload })
}
}
// If we only have an host, use a default account handle
function getRemoteNameAndHost (handleOrHost: string) {
let name = SERVER_ACTOR_NAME
let host = handleOrHost
const splitted = handleOrHost.split('@')
if (splitted.length === 2) {
name = splitted[0]
host = splitted[1]
}
return { name, host }
}
export {
autoFollowBackIfNeeded,
getRemoteNameAndHost
}