Browse Source

Initial commit

Alex Taber 6 years ago
commit
577c4cae5b
4 changed files with 81 additions and 0 deletions
  1. 9
    0
      .gitignore
  2. 47
    0
      app.py
  3. 10
    0
      config.py.example
  4. 15
    0
      requirements.txt

+ 9
- 0
.gitignore View File

@@ -0,0 +1,9 @@
1
+__pycache__/
2
+bin/
3
+config.py
4
+lib/
5
+lib64
6
+share/
7
+pyvenv.cfg
8
+pip-selfcheck.json
9
+

+ 47
- 0
app.py View File

@@ -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)

+ 10
- 0
config.py.example View File

@@ -0,0 +1,10 @@
1
+matrix token = # should be a string
2
+discord_token = #should be a string
3
+
4
+discord_channel = # should be a snowflake int
5
+matrix_room_id = # should be a string in the format !ID:homeserver
6
+matrix_homeserver = # should be a string
7
+
8
+matrix_user_id = # should be a string in the format @ID:homeserver
9
+
10
+webhook_url = # should be a discord webhook

+ 15
- 0
requirements.txt View File

@@ -0,0 +1,15 @@
1
+aiohttp==3.3.2
2
+async-timeout==3.0.0
3
+attrs==18.2.0
4
+certifi==2018.8.24
5
+chardet==3.0.4
6
+discord.py==1.0.0a1477+g184c430
7
+idna==2.7
8
+idna-ssl==1.1.0
9
+matrix-client==0.3.2
10
+multidict==4.4.0
11
+pkg-resources==0.0.0
12
+requests==2.19.1
13
+urllib3==1.23
14
+websockets==5.0.1
15
+yarl==1.2.6