123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- """
- Copyright 2018 Alex Taber ("astronautlevel")
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- """
-
- from matrix_client.client import MatrixClient
- import requests
- import json
- import discord
- import re
- from config import *
-
- matrix_client = MatrixClient(matrix_homeserver)
- token = matrix_client.login(matrix_username, matrix_password)
- discord_client = discord.Client()
-
- matrix_room = matrix_client.join_room(matrix_room_id)
-
- matrix_file_types = ('m.file', 'm.image', 'm.video', 'm.audio')
-
- @discord_client.event
- async def on_message(message):
- if message.author.discriminator == "0000" or message.channel.id != discord_channel: return
- username = message.author.display_name[:1] + "\u200B" + message.author.display_name[1:]
- attachments = "\n".join([x.url for x in message.attachments])
- matrix_room.send_text("<{}> {}".format(username, message.clean_content + ("\n" + attachments if attachments != "" else "")))
-
- def send_webhook(username, avatar_url, content):
- data = {'username': username, 'content': content}
- if avatar_url: data['avatar_url'] = avatar_url
- headers = {'Content-type': 'application/json'}
- r = requests.post(webhook_url, data = json.dumps(data), headers=headers)
-
- def prepare_discord_content(content):
- content = content.replace("@everyone", "@\u200Beveryone")
- content = content.replace("@here", "@\u200Bhere")
- mentions = re.findall("(^|\s)(@(\w*))", content)
- guild = discord_client.get_channel(discord_channel).guild
- for mention in mentions:
- member = guild.get_member_named(mention[2])
- if not member: continue
- content = content.replace(mention[1], member.mention)
- return content
-
- def on_matrix_message(room, event):
- user = matrix_client.get_user(event['sender'])
- if event['type'] == "m.room.message" and not user.user_id == matrix_user_id:
- if event['content']['msgtype'] == "m.text":
- username = "{}{}".format(discord_prefix, user.get_display_name())
- avatar = user.get_avatar_url()
- content = prepare_discord_content(event['content']['body'])
- send_webhook(username, avatar, content)
- if event['content']['msgtype'] in matrix_file_types:
- username = "[Matrix] {}".format(user.get_display_name())
- avatar = user.get_avatar_url()
- content = matrix_homeserver + "/_matrix/media/v1/download/" + event['content']['url'][6:]
- send_webhook(username, avatar, content)
-
- matrix_room.add_listener(on_matrix_message)
- matrix_client.start_listener_thread()
- discord_client.run(discord_token)
|