2020-11-11 16:46:15 +01:00
|
|
|
# matrix-discord-bridge
|
2020-11-12 15:59:10 +01:00
|
|
|
|
2021-03-25 06:18:04 +01:00
|
|
|
A simple bridge between Matrix and Discord written in Python.
|
2020-11-12 15:59:10 +01:00
|
|
|
|
2021-03-25 06:18:04 +01:00
|
|
|
This repository contains two bridges:
|
2021-12-09 09:13:13 +01:00
|
|
|
|
|
|
|
* A [puppeting appservice](appservice): The puppeting bridge written with minimal dependencies. Running this requires a self-hosted homeserver.
|
2020-11-12 15:59:10 +01:00
|
|
|
|
2021-03-25 06:18:04 +01:00
|
|
|
* A [non-puppeting bridge](bridge): The non-puppeting bridge written with `matrix-nio` and `discord.py`, most people would want to use this one.
|
2020-11-12 15:59:10 +01:00
|
|
|
|
2021-03-25 06:18:04 +01:00
|
|
|
Check their READMEs for specific information.
|
2021-01-21 08:58:40 +01:00
|
|
|
|
2020-11-12 15:59:10 +01:00
|
|
|
## What Works
|
|
|
|
|
2021-03-25 06:18:04 +01:00
|
|
|
- [x] Puppeting (Appservice only, regular bridge only uses webhooks on Discord.)
|
|
|
|
- [x] Attachments (Converted to URLs.)
|
|
|
|
- [x] Typing Indicators (Per-user indicators on Appservice, otherwise sent as bot user.)
|
|
|
|
- [x] Message redaction
|
2020-11-29 16:33:49 +01:00
|
|
|
- [x] Replies
|
2021-03-25 06:18:04 +01:00
|
|
|
- [x] Bridging multiple channels
|
|
|
|
- [x] Discord emojis displayed as inline images
|
|
|
|
- [x] Sending Discord emotes from Matrix (`:emote_name:`)
|
|
|
|
- [x] Mentioning Discord users via partial username (`@partialname`)
|
2021-07-25 09:26:52 +02:00
|
|
|
|
|
|
|
## TODO
|
|
|
|
|
|
|
|
- [ ] Handle cases where the webhook is messed with on the Discord side (Deleted/Edited by someone other than the bot).
|
|
|
|
- [ ] Use embeds on Discord side for replies.
|
|
|
|
- [ ] Unbridging.
|