Transformation to Compliance-bot

This commit is contained in:
2024-04-26 13:41:32 +02:00
parent a6d3e6cbea
commit 08226566eb
4 changed files with 15 additions and 16 deletions

View File

@@ -9,17 +9,14 @@ from mautrix.util.config import BaseProxyConfig, ConfigUpdateHelper
from maubot import Plugin, MessageEvent
from maubot.handlers import command, event
class Config(BaseProxyConfig):
def do_update(self, helper: ConfigUpdateHelper) -> None:
helper.copy("rooms")
helper.copy("excluded_rooms") # Changed "rooms" to "excluded_rooms"
helper.copy("message")
helper.copy("notification_room")
helper.copy("notification_message")
class Greeter(Plugin):
async def start(self) -> None:
await super().start()
self.config.load_and_update()
@@ -27,23 +24,23 @@ class Greeter(Plugin):
@event.on(InternalEventType.JOIN)
async def greet(self, evt: StateEvent) -> None:
if evt.room_id in self.config["rooms"]:
# Exclude rooms listed in "excluded_rooms"
if evt.room_id not in self.config["excluded_rooms"]:
if evt.source & SyncStream.STATE:
return
else:
nick = self.client.parse_user_id(evt.sender)[0]
pill = '<a href="https://matrix.to/#/{mxid}">{nick}</a>'.format(mxid=evt.sender, nick=nick)
msg = self.config["message"].format(user=pill)
await self.client.send_notice(evt.room_id, html=msg)
msg = self.config["message"].format(user=pill)
await self.client.send_notice(evt.room_id, html=msg)
if self.config["notification_room"]:
roomnamestate = await self.client.get_state_event(evt.room_id, 'm.room.name')
roomname = roomnamestate['name']
roomname = roomnamestate['name'] if 'name' in roomnamestate else 'Unnamed Room'
notification_message = self.config['notification_message'].format(user=evt.sender,
room=roomname)
await self.client.send_notice(self.config["notification_room"], html=notification_message)
@classmethod
def get_config_class(cls) -> Type[BaseProxyConfig]:
return Config