Aucune description

app.py 4.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. """
  2. Copyright 2018 Alex Taber ("astronautlevel")
  3. Licensed under the Apache License, Version 2.0 (the "License");
  4. you may not use this file except in compliance with the License.
  5. You may obtain a copy of the License at
  6. http://www.apache.org/licenses/LICENSE-2.0
  7. Unless required by applicable law or agreed to in writing, software
  8. distributed under the License is distributed on an "AS IS" BASIS,
  9. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  10. See the License for the specific language governing permissions and
  11. limitations under the License.
  12. """
  13. from matrix_client.client import MatrixClient
  14. import requests
  15. import json
  16. import discord
  17. from discord import Webhook, RequestsWebhookAdapter
  18. import re
  19. from config import *
  20. matrix_client = MatrixClient(matrix_homeserver)
  21. token = matrix_client.login(matrix_username, matrix_password)
  22. discord_client = discord.Client()
  23. matrix_room = matrix_client.join_room(matrix_room_id)
  24. matrix_file_types = ('m.file', 'm.image', 'm.video', 'm.audio')
  25. message_id_cache = {}
  26. def prepare_matrix_content(message):
  27. attachments = "\n".join([x.url for x in message.attachments])
  28. content = message.clean_content + ("\n" + attachments if attachments != "" else "")
  29. return content
  30. guild = None
  31. emojis = {}
  32. webhook = None
  33. @discord_client.event
  34. async def on_ready():
  35. global guild
  36. global emojis
  37. global webhook
  38. guild = discord_client.get_channel(discord_channel).guild
  39. emojis = {":{}:".format(emoji.name): "<:{}:{}>".format(emoji.name, emoji.id) for emoji in guild.emojis}
  40. webhook = Webhook.from_url(webhook_url, adapter=RequestsWebhookAdapter())
  41. @discord_client.event
  42. async def on_message(message):
  43. if message.author.discriminator == "0000" or message.channel.id != discord_channel: return
  44. username = message.author.name[:1] + "\u200B" + message.author.name[1:] + "#" + message.author.discriminator
  45. content = prepare_matrix_content(message)
  46. matrix_message_id = matrix_room.send_text("<{}> {}".format(username, content))['event_id']
  47. message_id_cache[message.id] = matrix_message_id
  48. @discord_client.event
  49. async def on_message_edit(before, after):
  50. if after.author.discriminator == "0000" or after.channel.id != discord_channel: return
  51. if after.content == before.content: return
  52. after.attachments = []
  53. username = after.author.name[:1] + "\u200B" + after.author.name[1:] + "#" + after.author.discriminator
  54. content = prepare_matrix_content(after)
  55. matrix_room.redact_message(message_id_cache[before.id], reason="Message Edited")
  56. message_id_cache[after.id] = matrix_room.send_text("<{}> {} (edited)".format(username, content))['event_id']
  57. @discord_client.event
  58. async def on_raw_message_delete(paylod):
  59. matrix_room.redact_message(message_id_cache[paylod.message_id], reason="Message Deleted")
  60. def send_webhook(username, avatar_url, content):
  61. webhook.send(content=content, username=username, avatar_url=avatar_url)
  62. def prepare_discord_content(content):
  63. content = content.replace("@everyone", "@\u200Beveryone")
  64. content = content.replace("@here", "@\u200Bhere")
  65. content = re.sub("</?del>", "~~", content)
  66. mentions = re.findall("(^|\s)(@(\w*))", content)
  67. for mention in mentions:
  68. member = guild.get_member_named(mention[2])
  69. if not member: continue
  70. content = content.replace(mention[1], member.mention)
  71. for emoji_name, emoji_id in emojis.items():
  72. if emoji_name in content:
  73. content = content.replace(emoji_name, emoji_id)
  74. return content
  75. def on_matrix_message(room, event):
  76. user = matrix_client.get_user(event['sender'])
  77. if event['type'] == "m.room.message" and not user.user_id == matrix_user_id:
  78. if event['content']['msgtype'] == "m.text":
  79. username = "{}{}".format(discord_prefix, user.get_display_name())
  80. avatar = user.get_avatar_url()
  81. content = prepare_discord_content(event['content']['body'])
  82. message_id_cache[event['event_id']] = send_webhook(username, avatar, content)
  83. if event['content']['msgtype'] in matrix_file_types:
  84. username = "{}{}".format(discord_prefix, user.get_display_name())
  85. avatar = user.get_avatar_url()
  86. content = matrix_homeserver + "/_matrix/media/v1/download/" + event['content']['url'][6:]
  87. message_id_cache[event['event_id']] = send_webhook(username, avatar, content)
  88. matrix_room.add_listener(on_matrix_message)
  89. matrix_client.start_listener_thread()
  90. discord_client.run(discord_token)