Transformation to Compliance-bot
This commit is contained in:
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
||||
*.mbp
|
@@ -1,4 +1,4 @@
|
||||
rooms:
|
||||
excluded_rooms:
|
||||
- '!someroom:example.com'
|
||||
- '!otherroom:example.com'
|
||||
|
||||
@@ -17,5 +17,6 @@ notification_message: |
|
||||
# matrix.to link (rendered as a "pill" in element clients)
|
||||
# html formatting is supported
|
||||
message: |
|
||||
Welcome {user}! Please be sure to read the topic for helpful links and information.
|
||||
Use <a href="https://google.com">Google</a> for all other queries ;)
|
||||
Welcome {user}!<br />
|
||||
Please notice that this room is now archived with ArchiBot.<br />
|
||||
If you have any questions about archivation, please contact Compliance department.
|
||||
|
@@ -1,9 +1,9 @@
|
||||
maubot: 0.1.0
|
||||
id: org.jobmachine.welcome
|
||||
version: 0.0.4
|
||||
id: net.cqre.compliance-bot
|
||||
version: 0.0.1
|
||||
license: MIT
|
||||
modules:
|
||||
- welcome
|
||||
- compliance-bot
|
||||
main_class: Greeter
|
||||
extra_files:
|
||||
- base-config.yaml
|
||||
|
13
welcome.py
13
welcome.py
@@ -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,7 +24,8 @@ 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:
|
||||
@@ -35,15 +33,14 @@ class Greeter(Plugin):
|
||||
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)
|
||||
|
||||
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
|
||||
|
Reference in New Issue
Block a user