2020-11-14 16:34:30 +01:00
|
|
|
import discord
|
2020-11-11 16:46:15 +01:00
|
|
|
import json
|
2020-11-14 16:34:30 +01:00
|
|
|
import logging
|
2020-12-01 07:38:59 +01:00
|
|
|
import nio
|
2020-11-14 16:34:30 +01:00
|
|
|
import os
|
2020-12-01 07:38:59 +01:00
|
|
|
import re
|
2020-11-11 16:46:15 +01:00
|
|
|
|
|
|
|
|
|
|
|
def config_gen(config_file):
|
|
|
|
config_dict = {
|
|
|
|
"homeserver": "https://matrix.org",
|
|
|
|
"room_id": "room:matrix.org",
|
|
|
|
"username": "@name:matrix.org",
|
|
|
|
"password": "my-secret-password",
|
|
|
|
"channel_id": "channel",
|
|
|
|
"token": "my-secret-token"
|
|
|
|
}
|
|
|
|
|
|
|
|
if not os.path.exists(config_file):
|
|
|
|
with open(config_file, "w") as f:
|
|
|
|
json.dump(config_dict, f, indent=4)
|
|
|
|
print(f"Example configuration dumped to {config_file}")
|
|
|
|
exit()
|
|
|
|
|
|
|
|
with open(config_file, "r") as f:
|
|
|
|
config = json.loads(f.read())
|
|
|
|
|
|
|
|
return config
|
|
|
|
|
|
|
|
|
|
|
|
config = config_gen("config.json")
|
|
|
|
|
2020-11-12 15:42:23 +01:00
|
|
|
logging.basicConfig(level=logging.INFO)
|
2020-11-30 13:35:49 +01:00
|
|
|
matrix_logger = logging.getLogger("matrix_logger")
|
2020-11-11 16:46:15 +01:00
|
|
|
|
2020-11-30 13:35:49 +01:00
|
|
|
message_store = {}
|
2020-11-14 16:14:16 +01:00
|
|
|
|
|
|
|
|
2020-12-01 09:27:36 +01:00
|
|
|
class MatrixClient(nio.AsyncClient):
|
2020-11-30 13:35:49 +01:00
|
|
|
async def create(self):
|
|
|
|
password = config["password"]
|
2020-11-30 16:44:34 +01:00
|
|
|
timeout = 30000
|
2020-11-14 16:14:16 +01:00
|
|
|
|
2020-12-01 09:27:36 +01:00
|
|
|
matrix_logger.info(await self.login(password))
|
2020-11-14 17:03:06 +01:00
|
|
|
|
2020-11-30 13:35:49 +01:00
|
|
|
matrix_logger.info("Doing initial sync.")
|
2020-12-01 09:27:36 +01:00
|
|
|
await self.sync(timeout)
|
2020-11-16 11:38:23 +01:00
|
|
|
|
2020-11-30 13:35:49 +01:00
|
|
|
# Set up event callbacks
|
2020-12-01 09:27:36 +01:00
|
|
|
callbacks = Callbacks(self, self.process_message)
|
|
|
|
self.add_event_callback(
|
2020-11-30 13:35:49 +01:00
|
|
|
callbacks.message_callback,
|
2020-12-01 07:38:59 +01:00
|
|
|
(nio.RoomMessageText, nio.RoomMessageMedia))
|
2020-11-16 11:38:23 +01:00
|
|
|
|
2020-12-01 09:27:36 +01:00
|
|
|
self.add_event_callback(
|
2020-12-01 07:38:59 +01:00
|
|
|
callbacks.redaction_callback, nio.RedactionEvent)
|
2020-11-11 16:46:15 +01:00
|
|
|
|
2020-12-01 09:27:36 +01:00
|
|
|
self.add_ephemeral_callback(
|
2020-12-01 07:38:59 +01:00
|
|
|
callbacks.typing_callback, nio.EphemeralEvent)
|
2020-11-13 15:04:31 +01:00
|
|
|
|
2020-11-30 16:44:34 +01:00
|
|
|
matrix_logger.info("Syncing forever.")
|
2020-12-01 09:27:36 +01:00
|
|
|
await self.sync_forever(timeout=timeout)
|
2020-11-30 16:44:34 +01:00
|
|
|
|
2020-12-01 09:27:36 +01:00
|
|
|
await self.close()
|
2020-11-30 16:44:34 +01:00
|
|
|
|
2020-11-30 13:35:49 +01:00
|
|
|
async def message_send(self, message, reply_id=None, edit_id=None):
|
|
|
|
content = {
|
|
|
|
"msgtype": "m.text",
|
|
|
|
"body": message,
|
|
|
|
}
|
2020-11-16 11:38:23 +01:00
|
|
|
|
2020-11-30 13:35:49 +01:00
|
|
|
if reply_id:
|
2020-12-01 09:27:36 +01:00
|
|
|
reply_event = await self.room_get_event(
|
2020-11-30 16:14:17 +01:00
|
|
|
config["room_id"], reply_id
|
|
|
|
)
|
|
|
|
|
|
|
|
reply_event = reply_event.event.source["content"]["body"]
|
|
|
|
|
2020-11-30 13:35:49 +01:00
|
|
|
content["m.relates_to"] = {
|
|
|
|
"m.in_reply_to": {"event_id": reply_id},
|
|
|
|
}
|
2020-11-25 07:35:07 +01:00
|
|
|
|
2020-11-30 16:14:17 +01:00
|
|
|
content["format"] = "org.matrix.custom.html"
|
|
|
|
|
2020-12-02 09:21:58 +01:00
|
|
|
content["formatted_body"] = f"""<mx-reply><blockquote>
|
2020-11-30 16:14:17 +01:00
|
|
|
<a href="https://matrix.to/#/{config["room_id"]}/{reply_id}">In reply to</a>
|
|
|
|
<a href="https://matrix.to/#/{config["username"]}">{config["username"]}</a><br>
|
2020-12-02 09:21:58 +01:00
|
|
|
{reply_event}</blockquote></mx-reply>{message}"""
|
2020-11-30 16:14:17 +01:00
|
|
|
|
2020-11-30 13:35:49 +01:00
|
|
|
if edit_id:
|
|
|
|
content["body"] = f" * {message}"
|
2020-11-14 17:03:06 +01:00
|
|
|
|
2020-11-30 13:35:49 +01:00
|
|
|
content["m.new_content"] = {
|
|
|
|
"body": message,
|
|
|
|
"msgtype": "m.text"
|
|
|
|
}
|
2020-11-14 17:03:06 +01:00
|
|
|
|
2020-11-30 13:35:49 +01:00
|
|
|
content["m.relates_to"] = {
|
|
|
|
"event_id": edit_id,
|
|
|
|
"rel_type": "m.replace",
|
|
|
|
}
|
2020-11-12 14:22:48 +01:00
|
|
|
|
2020-12-01 09:27:36 +01:00
|
|
|
message = await self.room_send(
|
2020-11-30 13:35:49 +01:00
|
|
|
room_id=config["room_id"],
|
|
|
|
message_type="m.room.message",
|
|
|
|
content=content
|
|
|
|
)
|
2020-11-12 14:22:48 +01:00
|
|
|
|
2020-11-30 13:35:49 +01:00
|
|
|
return message.event_id
|
2020-11-12 14:22:48 +01:00
|
|
|
|
2020-11-30 13:35:49 +01:00
|
|
|
async def message_redact(self, message):
|
2020-12-01 09:27:36 +01:00
|
|
|
await self.room_redact(
|
2020-11-30 13:35:49 +01:00
|
|
|
room_id=config["room_id"],
|
|
|
|
event_id=message
|
|
|
|
)
|
2020-11-14 16:14:16 +01:00
|
|
|
|
2020-12-01 05:58:06 +01:00
|
|
|
async def webhook_send(self, author, avatar, message, event_id):
|
|
|
|
# Create webhook if it doesn't exist
|
|
|
|
hook_name = "matrix_bridge"
|
|
|
|
hooks = await channel.webhooks()
|
|
|
|
hook = discord.utils.get(hooks, name=hook_name)
|
|
|
|
if not hook:
|
|
|
|
hook = await channel.create_webhook(name=hook_name)
|
|
|
|
|
2020-12-02 15:33:12 +01:00
|
|
|
# Username must be between 1 and 80 characters in length
|
2020-12-01 05:58:06 +01:00
|
|
|
# 'wait=True' allows us to store the sent message
|
|
|
|
try:
|
2020-12-02 15:33:12 +01:00
|
|
|
hook = await hook.send(username=author[:80], avatar_url=avatar,
|
2020-12-01 05:58:06 +01:00
|
|
|
content=message, wait=True)
|
|
|
|
message_store[event_id] = hook
|
|
|
|
except discord.errors.HTTPException as e:
|
|
|
|
matrix_logger.warning(f"Failed to send message {event_id}: {e}")
|
|
|
|
|
2020-12-01 09:27:36 +01:00
|
|
|
async def process_message(self, message):
|
|
|
|
mentions = re.findall(r"(^|\s)(@(\w*))", message)
|
|
|
|
emotes = re.findall(r":(.*?):", message)
|
|
|
|
|
|
|
|
guild = channel.guild
|
|
|
|
|
|
|
|
for emote in emotes:
|
|
|
|
emote_ = discord.utils.get(guild.emojis, name=emote)
|
|
|
|
if emote_:
|
|
|
|
message = message.replace(f":{emote}:", str(emote_))
|
|
|
|
|
|
|
|
for mention in mentions:
|
2020-12-02 09:21:58 +01:00
|
|
|
if mention[2] != "":
|
|
|
|
member = await guild.query_members(query=mention[2])
|
|
|
|
if member:
|
|
|
|
message = message.replace(mention[1], member[0].mention)
|
2020-12-01 09:27:36 +01:00
|
|
|
|
|
|
|
message = message.replace("@everyone", "@\u200Beveryone")
|
|
|
|
message = message.replace("@here", "@\u200Bhere")
|
|
|
|
|
|
|
|
return message
|
|
|
|
|
2020-11-11 16:46:15 +01:00
|
|
|
|
2020-11-30 13:35:49 +01:00
|
|
|
class DiscordClient(discord.Client):
|
2020-11-30 16:27:21 +01:00
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
super().__init__(*args, **kwargs)
|
|
|
|
|
2020-12-01 09:27:36 +01:00
|
|
|
self.matrix_client = MatrixClient(
|
|
|
|
config["homeserver"], config["username"])
|
|
|
|
|
|
|
|
self.bg_task = self.loop.create_task(self.matrix_client.create())
|
2020-11-30 16:27:21 +01:00
|
|
|
|
2020-11-30 13:35:49 +01:00
|
|
|
async def on_ready(self):
|
|
|
|
print(f"Logged in as {self.user}")
|
2020-11-11 16:46:15 +01:00
|
|
|
|
2020-11-30 13:35:49 +01:00
|
|
|
global channel
|
|
|
|
channel = int(config["channel_id"])
|
|
|
|
channel = self.get_channel(channel)
|
2020-11-11 16:46:15 +01:00
|
|
|
|
2020-11-30 13:35:49 +01:00
|
|
|
async def on_message(self, message):
|
|
|
|
if message.author.bot or str(message.channel.id) != \
|
|
|
|
config["channel_id"]:
|
|
|
|
return
|
2020-11-11 16:46:15 +01:00
|
|
|
|
2020-12-01 09:27:36 +01:00
|
|
|
content = await self.process_message(message)
|
2020-11-12 15:42:23 +01:00
|
|
|
|
2020-12-01 09:27:36 +01:00
|
|
|
matrix_message = await self.matrix_client.message_send(
|
2020-11-30 13:35:49 +01:00
|
|
|
content[0], content[1])
|
2020-11-12 14:22:48 +01:00
|
|
|
|
2020-11-30 13:35:49 +01:00
|
|
|
message_store[message.id] = matrix_message
|
2020-11-12 15:42:23 +01:00
|
|
|
|
2020-11-30 13:35:49 +01:00
|
|
|
async def on_message_edit(self, before, after):
|
|
|
|
if after.author.bot or str(after.channel.id) != \
|
|
|
|
config["channel_id"]:
|
|
|
|
return
|
2020-11-12 15:42:23 +01:00
|
|
|
|
2020-12-01 09:27:36 +01:00
|
|
|
content = await self.process_message(after)
|
2020-11-12 14:22:48 +01:00
|
|
|
|
2020-12-02 09:21:58 +01:00
|
|
|
await self.matrix_client.message_send(
|
2020-11-30 13:35:49 +01:00
|
|
|
content[0], edit_id=message_store[before.id])
|
2020-11-15 15:08:25 +01:00
|
|
|
|
2020-11-30 13:35:49 +01:00
|
|
|
async def on_message_delete(self, message):
|
|
|
|
if message.id in message_store:
|
2020-12-01 09:27:36 +01:00
|
|
|
await self.matrix_client.message_redact(message_store[message.id])
|
2020-11-14 14:43:25 +01:00
|
|
|
|
2020-11-30 13:35:49 +01:00
|
|
|
async def on_typing(self, channel, user, when):
|
|
|
|
if user.bot or str(channel.id) != config["channel_id"]:
|
|
|
|
return
|
2020-11-12 14:22:48 +01:00
|
|
|
|
2020-11-30 13:35:49 +01:00
|
|
|
# Send typing event
|
2020-12-01 09:27:36 +01:00
|
|
|
await self.matrix_client.room_typing(config["room_id"], timeout=0)
|
|
|
|
|
|
|
|
async def process_message(self, message):
|
|
|
|
content = message.clean_content
|
|
|
|
|
|
|
|
replied_event = None
|
|
|
|
if message.reference:
|
|
|
|
replied_message = await message.channel.fetch_message(
|
|
|
|
message.reference.message_id)
|
|
|
|
try:
|
|
|
|
replied_event = message_store[replied_message.id]
|
|
|
|
except KeyError:
|
|
|
|
pass
|
|
|
|
|
|
|
|
# Replace emote IDs with names
|
|
|
|
content = re.sub(r"<a?(:\w+:)\d*>", r"\g<1>", content)
|
|
|
|
|
|
|
|
# Append attachments to message
|
|
|
|
for attachment in message.attachments:
|
|
|
|
content += f"\n{attachment.url}"
|
|
|
|
|
2020-12-02 09:21:58 +01:00
|
|
|
content = f"[{message.author.name}] {content}"
|
2020-12-01 09:27:36 +01:00
|
|
|
|
|
|
|
return content, replied_event
|
2020-11-11 16:46:15 +01:00
|
|
|
|
2020-11-29 16:33:49 +01:00
|
|
|
|
2020-11-30 13:35:49 +01:00
|
|
|
class Callbacks(object):
|
2020-12-01 09:27:36 +01:00
|
|
|
def __init__(self, client, process_message):
|
|
|
|
self.client = client
|
|
|
|
self.process_message = process_message
|
|
|
|
|
2020-11-30 13:35:49 +01:00
|
|
|
async def message_callback(self, room, event):
|
2020-12-01 09:27:36 +01:00
|
|
|
# Ignore messages from ourselves or other rooms
|
|
|
|
if room.room_id != config["room_id"] or \
|
|
|
|
event.sender == self.client.user:
|
2020-11-30 13:35:49 +01:00
|
|
|
return
|
2020-11-30 07:42:05 +01:00
|
|
|
|
2020-11-30 13:35:49 +01:00
|
|
|
message = event.body
|
|
|
|
|
|
|
|
if not message:
|
|
|
|
return
|
2020-11-30 07:42:05 +01:00
|
|
|
|
2020-12-07 14:18:45 +01:00
|
|
|
content_dict = event.source.get("content")
|
|
|
|
|
|
|
|
try:
|
|
|
|
if content_dict["m.relates_to"]["m.in_reply_to"]["event_id"] in \
|
|
|
|
message_store.values():
|
|
|
|
message = message.replace(f"<{config['username']}>", "", 1)
|
|
|
|
except KeyError:
|
|
|
|
pass
|
|
|
|
|
2020-11-30 13:35:49 +01:00
|
|
|
author = event.sender[1:]
|
|
|
|
avatar = None
|
2020-11-12 14:22:48 +01:00
|
|
|
|
2020-11-30 13:35:49 +01:00
|
|
|
homeserver = author.split(":")[-1]
|
|
|
|
url = "https://matrix.org/_matrix/media/r0/download"
|
2020-11-15 16:32:55 +01:00
|
|
|
|
2020-12-01 09:27:36 +01:00
|
|
|
message = await self.process_message(message)
|
2020-11-15 16:32:55 +01:00
|
|
|
|
2020-11-30 13:35:49 +01:00
|
|
|
# Get attachments
|
|
|
|
try:
|
|
|
|
attachment = event.url.split("/")[-1]
|
2020-11-15 16:32:55 +01:00
|
|
|
|
2020-11-30 13:35:49 +01:00
|
|
|
# Highlight attachment name
|
|
|
|
message = f"`{message}`"
|
2020-11-12 14:22:48 +01:00
|
|
|
|
2020-11-30 13:35:49 +01:00
|
|
|
message += f"\n{url}/{homeserver}/{attachment}"
|
|
|
|
except AttributeError:
|
|
|
|
pass
|
2020-11-14 14:43:25 +01:00
|
|
|
|
2020-11-30 13:35:49 +01:00
|
|
|
# Get avatar
|
|
|
|
for user in room.users.values():
|
|
|
|
if user.user_id == event.sender:
|
|
|
|
if user.avatar_url:
|
|
|
|
avatar = user.avatar_url.split("/")[-1]
|
|
|
|
avatar = f"{url}/{homeserver}/{avatar}"
|
|
|
|
break
|
2020-11-30 07:42:05 +01:00
|
|
|
|
2020-12-01 09:27:36 +01:00
|
|
|
await self.client.webhook_send(
|
2020-11-30 13:35:49 +01:00
|
|
|
author, avatar, message, event.event_id)
|
2020-11-13 15:04:31 +01:00
|
|
|
|
2020-11-30 13:35:49 +01:00
|
|
|
async def redaction_callback(self, room, event):
|
2020-12-01 09:27:36 +01:00
|
|
|
# Ignore messages from ourselves or other rooms
|
|
|
|
if room.room_id != config["room_id"] or \
|
|
|
|
event.sender == self.client.user:
|
2020-11-30 13:35:49 +01:00
|
|
|
return
|
2020-11-11 16:46:15 +01:00
|
|
|
|
2020-11-30 13:35:49 +01:00
|
|
|
# Redact webhook message
|
|
|
|
try:
|
|
|
|
message = message_store[event.redacts]
|
|
|
|
await message.delete()
|
|
|
|
except KeyError:
|
|
|
|
pass
|
2020-11-13 11:08:28 +01:00
|
|
|
|
2020-11-30 13:35:49 +01:00
|
|
|
async def typing_callback(self, room, event):
|
2020-12-01 09:27:36 +01:00
|
|
|
# Ignore events from other rooms
|
2020-11-30 13:35:49 +01:00
|
|
|
if room.room_id != config["room_id"]:
|
|
|
|
return
|
2020-11-13 17:31:04 +01:00
|
|
|
|
2020-11-30 13:35:49 +01:00
|
|
|
if room.typing_users:
|
2020-12-01 09:27:36 +01:00
|
|
|
# Ignore events from ourselves
|
2020-11-30 13:35:49 +01:00
|
|
|
if len(room.typing_users) == 1 \
|
2020-12-01 09:27:36 +01:00
|
|
|
and room.typing_users[0] == self.client.user:
|
2020-11-30 13:35:49 +01:00
|
|
|
return
|
2020-11-14 06:03:15 +01:00
|
|
|
|
2020-11-30 13:35:49 +01:00
|
|
|
# Send typing event
|
|
|
|
async with channel.typing():
|
|
|
|
pass
|
2020-11-14 16:34:30 +01:00
|
|
|
|
2020-11-14 16:25:37 +01:00
|
|
|
|
2020-11-30 16:44:34 +01:00
|
|
|
def main():
|
2020-11-30 13:35:49 +01:00
|
|
|
intents = discord.Intents.default()
|
|
|
|
intents.members = True
|
2020-11-11 16:46:15 +01:00
|
|
|
|
2020-11-30 16:44:34 +01:00
|
|
|
DiscordClient(intents=intents).run(config["token"])
|
|
|
|
|
2020-11-11 16:46:15 +01:00
|
|
|
|
2020-11-12 15:42:23 +01:00
|
|
|
if __name__ == "__main__":
|
2020-11-30 16:44:34 +01:00
|
|
|
main()
|