|
@@ -21,7 +21,8 @@ import discord
|
21
|
21
|
import re
|
22
|
22
|
from config import *
|
23
|
23
|
|
24
|
|
-matrix_client = MatrixClient(matrix_homeserver, token=matrix_token, user_id=matrix_user_id)
|
|
24
|
+matrix_client = MatrixClient(matrix_homeserver)
|
|
25
|
+token = matrix_client.login(matrix_username, matrix_password)
|
25
|
26
|
discord_client = discord.Client()
|
26
|
27
|
|
27
|
28
|
matrix_room = matrix_client.join_room(matrix_room_id)
|
|
@@ -30,7 +31,7 @@ matrix_file_types = ('m.file', 'm.image', 'm.video', 'm.audio')
|
30
|
31
|
|
31
|
32
|
@discord_client.event
|
32
|
33
|
async def on_message(message):
|
33
|
|
- if message.author.discriminator == "0000": return
|
|
34
|
+ if message.author.discriminator == "0000" or message.channel.id != discord_channel: return
|
34
|
35
|
username = message.author.display_name[:1] + "\u200B" + message.author.display_name[1:]
|
35
|
36
|
attachments = "\n".join([x.url for x in message.attachments])
|
36
|
37
|
matrix_room.send_text("<{}> {}".format(username, message.clean_content + ("\n" + attachments if attachments != "" else "")))
|
|
@@ -56,7 +57,7 @@ def on_matrix_message(room, event):
|
56
|
57
|
user = matrix_client.get_user(event['sender'])
|
57
|
58
|
if event['type'] == "m.room.message" and not user.user_id == matrix_user_id:
|
58
|
59
|
if event['content']['msgtype'] == "m.text":
|
59
|
|
- username = "[Matrix] {}".format(user.get_display_name())
|
|
60
|
+ username = "{}{}".format(discord_prefix, user.get_display_name())
|
60
|
61
|
avatar = user.get_avatar_url()
|
61
|
62
|
content = prepare_discord_content(event['content']['body'])
|
62
|
63
|
send_webhook(username, avatar, content)
|