Bladeren bron

Various improvements

Switch to username/password auth for matrix
Only bridge specified channel
Add ability to customize prefix for discord username
Alex Taber 6 jaren geleden
bovenliggende
commit
caec8cd0a1
2 gewijzigde bestanden met toevoegingen van 9 en 5 verwijderingen
  1. 4
    3
      app.py
  2. 5
    2
      config.py.example

+ 4
- 3
app.py Bestand weergeven

21
 import re
21
 import re
22
 from config import *
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
 discord_client = discord.Client()
26
 discord_client = discord.Client()
26
 
27
 
27
 matrix_room = matrix_client.join_room(matrix_room_id)
28
 matrix_room = matrix_client.join_room(matrix_room_id)
30
 
31
 
31
 @discord_client.event
32
 @discord_client.event
32
 async def on_message(message):
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
 	username = message.author.display_name[:1] + "\u200B" + message.author.display_name[1:]
35
 	username = message.author.display_name[:1] + "\u200B" + message.author.display_name[1:]
35
 	attachments = "\n".join([x.url for x in message.attachments])
36
 	attachments = "\n".join([x.url for x in message.attachments])
36
 	matrix_room.send_text("<{}> {}".format(username, message.clean_content + ("\n" + attachments if attachments != "" else "")))
37
 	matrix_room.send_text("<{}> {}".format(username, message.clean_content + ("\n" + attachments if attachments != "" else "")))
56
 	user = matrix_client.get_user(event['sender'])
57
 	user = matrix_client.get_user(event['sender'])
57
 	if event['type'] == "m.room.message" and not user.user_id == matrix_user_id:
58
 	if event['type'] == "m.room.message" and not user.user_id == matrix_user_id:
58
 		if event['content']['msgtype'] == "m.text":
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
 			avatar = user.get_avatar_url()
61
 			avatar = user.get_avatar_url()
61
 			content = prepare_discord_content(event['content']['body'])
62
 			content = prepare_discord_content(event['content']['body'])
62
 			send_webhook(username, avatar, content)
63
 			send_webhook(username, avatar, content)

+ 5
- 2
config.py.example Bestand weergeven

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
 discord_channel = # should be a snowflake int
5
 discord_channel = # should be a snowflake int
5
 matrix_room_id = # should be a string in the format !ID:homeserver
6
 matrix_room_id = # should be a string in the format !ID:homeserver
8
 matrix_user_id = # should be a string in the format @ID:homeserver
9
 matrix_user_id = # should be a string in the format @ID:homeserver
9
 
10
 
10
 webhook_url = # should be a discord webhook
11
 webhook_url = # should be a discord webhook
12
+
13
+discord_prefix = # string representing the prefix before the username