Sin descripción

app.py 3.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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. import re
  18. from config import *
  19. matrix_client = MatrixClient(matrix_homeserver)
  20. token = matrix_client.login(matrix_username, matrix_password)
  21. discord_client = discord.Client()
  22. matrix_room = matrix_client.join_room(matrix_room_id)
  23. matrix_file_types = ('m.file', 'm.image', 'm.video', 'm.audio')
  24. def prepare_matrix_client(message):
  25. attachments = "\n".join([x.url for x in message.attachments])
  26. content = message.clean_content + ("\n" + attachments if attachments != "" else "")
  27. return content
  28. @discord_client.event
  29. async def on_message(message):
  30. if message.author.discriminator == "0000" or message.channel.id != discord_channel: return
  31. username = message.author.name[:1] + "\u200B" + message.author.name[1:] + "#" + message.author.discriminator
  32. content = prepare_matrix_client(message)
  33. matrix_room.send_text("<{}> {}".format(username, content))
  34. def send_webhook(username, avatar_url, content):
  35. data = {'username': username, 'content': content}
  36. if avatar_url: data['avatar_url'] = avatar_url
  37. headers = {'Content-type': 'application/json'}
  38. r = requests.post(webhook_url, data = json.dumps(data), headers=headers)
  39. def prepare_discord_content(content):
  40. content = content.replace("@everyone", "@\u200Beveryone")
  41. content = content.replace("@here", "@\u200Bhere")
  42. content = re.sub("</?del>", "~~", content)
  43. mentions = re.findall("(^|\s)(@(\w*))", content)
  44. guild = discord_client.get_channel(discord_channel).guild
  45. for mention in mentions:
  46. member = guild.get_member_named(mention[2])
  47. if not member: continue
  48. content = content.replace(mention[1], member.mention)
  49. return content
  50. def on_matrix_message(room, event):
  51. user = matrix_client.get_user(event['sender'])
  52. if event['type'] == "m.room.message" and not user.user_id == matrix_user_id:
  53. if event['content']['msgtype'] == "m.text":
  54. username = "{}{}".format(discord_prefix, user.get_display_name())
  55. avatar = user.get_avatar_url()
  56. content = prepare_discord_content(event['content']['body'])
  57. send_webhook(username, avatar, content)
  58. if event['content']['msgtype'] in matrix_file_types:
  59. username = "{}{}".format(discord_prefix, user.get_display_name())
  60. avatar = user.get_avatar_url()
  61. content = matrix_homeserver + "/_matrix/media/v1/download/" + event['content']['url'][6:]
  62. send_webhook(username, avatar, content)
  63. matrix_room.add_listener(on_matrix_message)
  64. matrix_client.start_listener_thread()
  65. discord_client.run(discord_token)