sedi-relay/relay/processors.py

161 lines
3.9 KiB
Python
Raw Normal View History

2022-05-06 07:04:51 +00:00
import asyncio
import logging
from cachetools import LRUCache
2022-05-06 07:04:51 +00:00
from uuid import uuid4
2022-11-29 22:41:04 +00:00
from .misc import Message
cache = LRUCache(1024)
2022-05-06 07:04:51 +00:00
def person_check(actor, software):
## pleroma and akkoma may use Person for the actor type for some reason
if software in {'akkoma', 'pleroma'} and actor.id == f'https://{actor.domain}/relay':
return False
## make sure the actor is an application
if actor.type != 'Application':
return True
async def handle_relay(request):
if request.message.objectid in cache:
logging.verbose(f'already relayed {request.message.objectid}')
2022-05-06 07:04:51 +00:00
return
message = Message.new_announce(
host = request.config.host,
object = request.message.objectid
2022-11-07 10:30:13 +00:00
)
2022-05-06 07:04:51 +00:00
cache[request.message.objectid] = message.id
2022-05-06 07:04:51 +00:00
logging.debug(f'>> relay: {message}')
2022-12-02 05:11:22 +00:00
inboxes = request.database.distill_inboxes(request.message)
2022-11-20 10:50:14 +00:00
for inbox in inboxes:
request.app.push_message(inbox, message)
2022-05-06 07:04:51 +00:00
async def handle_forward(request):
if request.message.id in cache:
logging.verbose(f'already forwarded {request.message.id}')
2022-05-06 07:04:51 +00:00
return
message = Message.new_announce(
host = request.config.host,
object = request.message
2022-11-07 10:30:13 +00:00
)
2022-11-06 06:11:36 +00:00
cache[request.message.id] = message.id
logging.debug(f'>> forward: {message}')
2022-05-06 07:04:51 +00:00
2022-11-29 22:41:04 +00:00
inboxes = request.database.distill_inboxes(request.message)
2022-05-06 07:04:51 +00:00
for inbox in inboxes:
request.app.push_message(inbox, message)
2022-05-06 07:04:51 +00:00
async def handle_follow(request):
nodeinfo = await request.app.client.fetch_nodeinfo(request.actor.domain)
software = nodeinfo.sw_name if nodeinfo else None
2022-05-06 07:04:51 +00:00
## reject if software used by actor is banned
if request.config.is_banned_software(software):
request.app.push_message(
request.actor.shared_inbox,
Message.new_response(
host = request.config.host,
actor = request.actor.id,
followid = request.message.id,
accept = False
)
)
return logging.verbose(f'Rejected follow from actor for using specific software: actor={request.actor.id}, software={software}')
## reject if the actor is not an instance actor
if person_check(request.actor, software):
request.app.push_message(
request.actor.shared_inbox,
Message.new_response(
host = request.config.host,
actor = request.actor.id,
followid = request.message.id,
accept = False
)
)
return logging.verbose(f'Non-application actor tried to follow: {request.actor.id}')
request.database.add_inbox(request.actor.shared_inbox, request.message.id, software)
request.database.save()
2022-05-06 07:04:51 +00:00
request.app.push_message(
request.actor.shared_inbox,
Message.new_response(
host = request.config.host,
actor = request.actor.id,
followid = request.message.id,
2022-11-07 10:30:13 +00:00
accept = True
)
)
# Are Akkoma and Pleroma the only two that expect a follow back?
# Ignoring only Mastodon for now
if software != 'mastodon':
request.app.push_message(
request.actor.shared_inbox,
Message.new_follow(
host = request.config.host,
actor = request.actor.id
2022-11-07 10:30:13 +00:00
)
)
async def handle_undo(request):
2022-11-06 00:15:40 +00:00
## If the object is not a Follow, forward it
if request.message.object.type != 'Follow':
return await handle_forward(request)
2022-05-06 07:04:51 +00:00
if not request.database.del_inbox(request.actor.domain, request.message.id):
2022-05-06 07:04:51 +00:00
return
request.database.save()
2022-05-06 07:04:51 +00:00
request.app.push_message(
request.actor.shared_inbox,
Message.new_unfollow(
host = request.config.host,
actor = request.actor.id,
follow = request.message
)
2022-11-07 10:30:13 +00:00
)
2022-05-06 07:04:51 +00:00
processors = {
'Announce': handle_relay,
'Create': handle_relay,
'Delete': handle_forward,
'Follow': handle_follow,
'Undo': handle_undo,
'Update': handle_forward,
}
async def run_processor(request):
if request.message.type not in processors:
return
if request.instance and not request.instance.get('software'):
nodeinfo = await request.app.client.fetch_nodeinfo(request.instance['domain'])
if nodeinfo:
request.instance['software'] = nodeinfo.sw_name
request.database.save()
logging.verbose(f'New "{request.message.type}" from actor: {request.actor.id}')
return await processors[request.message.type](request)