Source code for mechanical_bull.actions.accept_follow_request

import logging

from bovine import BovineClient

logger = logging.getLogger(__name__)


[docs]async def handle(client: BovineClient, data: dict): """Automatically accepts follow requests. Include via .. code-block:: toml [username.handlers] "mechanical_bull.actions.accept_follow_request" = true """ if data["type"] != "Follow": return follow_actor = data["actor"] if isinstance(follow_actor, dict): follow_actor = follow_actor["id"] logger.info("Accepting follow request from %s", follow_actor) accept = client.activity_factory.accept(data["id"], to={data["actor"]}).build() await client.send_to_outbox(accept)