|
@@ -0,0 +1,47 @@
|
|
1
|
+from matrix_client.client import MatrixClient
|
|
2
|
+import requests
|
|
3
|
+import json
|
|
4
|
+import discord
|
|
5
|
+import re
|
|
6
|
+from config import *
|
|
7
|
+
|
|
8
|
+matrix_client = MatrixClient(matrix_homeserver, token=matrix_token, user_id=matrix_user_id)
|
|
9
|
+discord_client = discord.Client()
|
|
10
|
+
|
|
11
|
+matrix_room = matrix_client.join_room(matrix_room_id)
|
|
12
|
+
|
|
13
|
+@discord_client.event
|
|
14
|
+async def on_message(message):
|
|
15
|
+ if message.author.discriminator == "0000": return
|
|
16
|
+ username = message.author.display_name[:1] + "\u200B" + message.author.display_name[1:]
|
|
17
|
+ matrix_room.send_text("<{}> {}".format(username, message.clean_content))
|
|
18
|
+
|
|
19
|
+def send_webhook(username, avatar_url, content):
|
|
20
|
+ data = {'username': username, 'content': content}
|
|
21
|
+ if avatar_url: data['avatar_url'] = avatar_url
|
|
22
|
+ headers = {'Content-type': 'application/json'}
|
|
23
|
+ r = requests.post(webhook_url, data = json.dumps(data), headers=headers)
|
|
24
|
+
|
|
25
|
+def prepare_discord_content(content):
|
|
26
|
+ content = content.replace("@everyone", "@\u200Beveryone")
|
|
27
|
+ content = content.replace("@here", "@\u200Bhere")
|
|
28
|
+ mentions = re.findall("(^|\s)(@(\w*))", content)
|
|
29
|
+ guild = discord_client.get_channel(discord_channel).guild
|
|
30
|
+ for mention in mentions:
|
|
31
|
+ member = guild.get_member_named(mention[2])
|
|
32
|
+ if not member: continue
|
|
33
|
+ content = content.replace(mention[1], member.mention)
|
|
34
|
+ return content
|
|
35
|
+
|
|
36
|
+def on_matrix_message(room, event):
|
|
37
|
+ if event['type'] == "m.room.message":
|
|
38
|
+ user = matrix_client.get_user(event['sender'])
|
|
39
|
+ if event['content']['msgtype'] == "m.text" and not user.user_id == matrix_user_id:
|
|
40
|
+ username = "[Matrix] {}".format(user.get_display_name())
|
|
41
|
+ avatar = user.get_avatar_url()
|
|
42
|
+ content = prepare_discord_content(event['content']['body'])
|
|
43
|
+ send_webhook(username, avatar, content)
|
|
44
|
+
|
|
45
|
+matrix_room.add_listener(on_matrix_message)
|
|
46
|
+matrix_client.start_listener_thread()
|
|
47
|
+discord_client.run(discord_token)
|