Browse Source

Various improvements

Switch to username/password auth for matrix
Only bridge specified channel
Add ability to customize prefix for discord username
Alex Taber 6 years ago
parent
commit
caec8cd0a1
2 changed files with 9 additions and 5 deletions
  1. 4
    3
      app.py
  2. 5
    2
      config.py.example

+ 4
- 3
app.py View File

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

+ 5
- 2
config.py.example View File

@@ -1,5 +1,6 @@
1
-matrix token = # should be a string
2
-discord_token = #should be a string
1
+matrix_username = # string representing just the user (no homeserver or @)
2
+matrix_password = # password to account
3
+discord_token = # should be a string
3 4
 
4 5
 discord_channel = # should be a snowflake int
5 6
 matrix_room_id = # should be a string in the format !ID:homeserver
@@ -8,3 +9,5 @@ matrix_homeserver = # should be a string
8 9
 matrix_user_id = # should be a string in the format @ID:homeserver
9 10
 
10 11
 webhook_url = # should be a discord webhook
12
+
13
+discord_prefix = # string representing the prefix before the username