Ingen beskrivning

app.py 2.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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. @discord_client.event
  25. async def on_message(message):
  26. if message.author.discriminator == "0000" or message.channel.id != discord_channel: return
  27. username = message.author.display_name[:1] + "\u200B" + message.author.display_name[1:]
  28. attachments = "\n".join([x.url for x in message.attachments])
  29. matrix_room.send_text("<{}> {}".format(username, message.clean_content + ("\n" + attachments if attachments != "" else "")))
  30. def send_webhook(username, avatar_url, content):
  31. data = {'username': username, 'content': content}
  32. if avatar_url: data['avatar_url'] = avatar_url
  33. headers = {'Content-type': 'application/json'}
  34. r = requests.post(webhook_url, data = json.dumps(data), headers=headers)
  35. def prepare_discord_content(content):
  36. content = content.replace("@everyone", "@\u200Beveryone")
  37. content = content.replace("@here", "@\u200Bhere")
  38. mentions = re.findall("(^|\s)(@(\w*))", content)
  39. guild = discord_client.get_channel(discord_channel).guild
  40. for mention in mentions:
  41. member = guild.get_member_named(mention[2])
  42. if not member: continue
  43. content = content.replace(mention[1], member.mention)
  44. return content
  45. def on_matrix_message(room, event):
  46. user = matrix_client.get_user(event['sender'])
  47. if event['type'] == "m.room.message" and not user.user_id == matrix_user_id:
  48. if event['content']['msgtype'] == "m.text":
  49. username = "{}{}".format(discord_prefix, user.get_display_name())
  50. avatar = user.get_avatar_url()
  51. content = prepare_discord_content(event['content']['body'])
  52. send_webhook(username, avatar, content)
  53. if event['content']['msgtype'] in matrix_file_types:
  54. username = "[Matrix] {}".format(user.get_display_name())
  55. avatar = user.get_avatar_url()
  56. content = matrix_homeserver + "/_matrix/media/v1/download/" + event['content']['url'][6:]
  57. send_webhook(username, avatar, content)
  58. matrix_room.add_listener(on_matrix_message)
  59. matrix_client.start_listener_thread()
  60. discord_client.run(discord_token)