Parcourir la source

Add emoji support (thanks primarily to LiquidFenrir

Alex Taber il y a 6 ans
Parent
révision
d79b43e5a3
1 fichiers modifiés avec 13 ajouts et 1 suppressions
  1. 13
    1
      app.py

+ 13
- 1
app.py Voir le fichier

@@ -34,6 +34,16 @@ def prepare_matrix_content(message):
34 34
 	content = message.clean_content + ("\n" + attachments if attachments != "" else "")
35 35
 	return content
36 36
 
37
+guild = None
38
+emojis = {}
39
+
40
+@discord_client.event
41
+async def on_ready():
42
+	global guild
43
+	global emojis
44
+	guild = discord_client.get_channel(discord_channel).guild
45
+	emojis = {":{}:".format(emoji.name): "<:{}:{}>".format(emoji.name, emoji.id) for emoji in guild.emojis}
46
+
37 47
 @discord_client.event
38 48
 async def on_message(message):
39 49
 	if message.author.discriminator == "0000" or message.channel.id != discord_channel: return
@@ -52,11 +62,13 @@ def prepare_discord_content(content):
52 62
 	content = content.replace("@here", "@\u200Bhere")
53 63
 	content = re.sub("</?del>", "~~", content)
54 64
 	mentions = re.findall("(^|\s)(@(\w*))", content)
55
-	guild = discord_client.get_channel(discord_channel).guild
56 65
 	for mention in mentions:
57 66
 		member = guild.get_member_named(mention[2])
58 67
 		if not member: continue
59 68
 		content = content.replace(mention[1], member.mention)
69
+	for emoji_name, emoji_id in emojis.items():
70
+		if emoji_name in content:
71
+			content = content.replace(emoji_name, emoji_id)
60 72
 	return content
61 73
 
62 74
 def on_matrix_message(room, event):