Matrix-Discord bridge with modern features.
Go to file
Cadence Ember 5f0e765934 Bridge forums as spaces 2024-03-26 01:11:13 +13:00
.vscode changing spaces to tabs 2023-08-21 21:04:41 +12:00
d2m Bridge forums as spaces 2024-03-26 01:11:13 +13:00
db Move bridge bot to its real ID in the database 2024-03-23 18:39:37 +13:00
discord Add tests for somePermissions/allPermissions check 2024-03-07 10:22:49 +13:00
docs Implement the speedbump 2024-01-20 01:02:51 +13:00
m2d Put < > around ALL the matrix.to links 2024-03-23 21:26:42 +13:00
matrix Enumerate child rooms with hierarchy endpoint 2024-03-26 01:10:38 +13:00
scripts Move bridge bot to its real ID in the database 2024-03-23 18:39:37 +13:00
test Exclude generated embeds for discord.com 2024-03-25 18:05:19 +13:00
.c8rc.json Rearrange code (self-review) 2024-03-04 17:02:38 +13:00
.gitignore Rearrange testing emoji sheet images 2024-03-04 13:19:50 +13:00
COPYING license nicense 2023-10-02 23:12:03 +13:00
addbot.js Add "addbot" feature 2023-10-02 21:48:06 +13:00
addbot.sh Add "addbot" feature 2023-10-02 21:48:06 +13:00
config.example.js initial with Discord 2022-12-06 17:10:31 -07:00
package-lock.json Update dependencies 2024-03-08 12:56:51 +13:00
package.json Update dependencies 2024-03-08 12:56:51 +13:00
passthrough.js Start moving from SQL to New Funny ORM 2023-09-18 17:46:45 +12:00
readme.md Remove deep-equal dependency 2024-03-07 12:19:07 +13:00
registration.example.yaml Explain how to get in the rooms 2024-01-20 23:13:39 +13:00
start.js Add database migrations 2023-10-01 01:26:42 +13:00
stdin.js Implement the speedbump 2024-01-20 01:02:51 +13:00
types.d.ts Enumerate child rooms with hierarchy endpoint 2024-03-26 01:10:38 +13:00
types.js m2d reactions (untested) 2023-07-04 17:19:17 +12:00

readme.md

Out Of Your Element

Modern Matrix-to-Discord appservice bridge, created by @cadence:cadence.moe

Releases Discuss on Matrix

Docs

This readme has the most important info. The rest is in the docs folder.

Why a new bridge?

  • Modern: Supports new Discord features like replies, threads and stickers, and new Matrix features like edits, spaces and space membership.
  • Efficient: Special attention has been given to memory usage, database indexes, disk footprint, runtime algorithms, and queries to the homeserver.
  • Reliable: Any errors on either side are notified on Matrix and can be retried.
  • Tested: A test suite and code coverage make sure all the logic and special cases work.
  • Simple development: No build step (it's JavaScript, not TypeScript), minimal/lightweight dependencies, and abstraction only where necessary so that less background knowledge is required. No need to learn about Intents or library functions.
  • No locking algorithm: Other bridges use a locking algorithm which is a source of frequent bugs. This bridge avoids the need for one.
  • Latest API: Being on the latest Discord API version lets it access all features, without the risk of deprecated API versions being removed.

What works?

Most features you'd expect in both directions, plus a little extra spice:

  • Messages
  • Edits
  • Deletions
  • Text formatting, including spoilers
  • Reactions
  • Mentions
  • Replies
  • Threads
  • Stickers (all formats: PNG, APNG, GIF, and Lottie)
  • Attachments
  • Spoiler attachments
  • Embeds
  • Guild-Space details syncing
  • Channel-Room details syncing
  • Custom emoji list syncing
  • Custom emojis in messages
  • Custom room names/avatars can be applied on Matrix-side
  • Larger files from Discord are linked instead of reuploaded to Matrix
  • Simulated user accounts are named @the_persons_username rather than @112233445566778899

For more information about features, see the user guide.

Caveats

  • This bridge is not designed for puppetting.
  • Direct Messaging is not supported until I figure out a good way of doing it.

Efficiency details

Using WeatherStack as a thin layer between the bridge application and the Discord API lets us control exactly what data is cached in memory. Only necessary information is cached. For example, member data, user data, message content, and past edits are never stored in memory. This keeps the memory usage low and also prevents it ballooning in size over the bridge's runtime.

The bridge uses a small SQLite database to store relationships like which Discord messages correspond to which Matrix messages. This is so the bridge knows what to edit when some message is edited on Discord. Using without rowid on the database tables stores the index and the data in the same B-tree. Since Matrix and Discord's internal IDs are quite long, this vastly reduces storage space because those IDs do not have to be stored twice separately. Some event IDs are actually stored as xxhash integers to reduce storage requirements even more. On my personal instance of OOYE, every 100,000 messages require 16.1 MB of storage space in the SQLite database.

Only necessary data and columns are queried from the database. We only contact the homeserver API if the database doesn't contain what we need.

File uploads (like avatars from bridged members) are checked locally and deduplicated. Only brand new files are uploaded to the homeserver. This saves loads of space in the homeserver's media repo, especially for Synapse.

Switching to WAL mode could improve your database access speed even more. Run node scripts/wal.js if you want to switch to WAL mode. This will also enable synchronous = NORMAL.

Setup

If you get stuck, you're welcome to message #out-of-your-element:cadence.moe or @cadence:cadence.moe to ask for help setting up OOYE!

You'll need:

  • Administrative access to a homeserver
  • Discord bot

Follow these steps:

  1. Get Node.js version 18 or later (the version is required by the better-sqlite3 and matrix-appservice dependencies)

  2. Clone this repo and checkout a specific tag. (Development happens on main. Stable versions are tagged.)

    • The latest release tag is .
  3. Install dependencies: npm install --save-dev (omit --save-dev if you will not run the automated tests)

  4. Copy config.example.js to config.js and fill in Discord token.

  5. Copy registration.example.yaml to registration.yaml and fill in bracketed values. You could generate each hex string with dd if=/dev/urandom bs=32 count=1 2> /dev/null | basenc --base16 | dd conv=lcase 2> /dev/null. Register the registration in Synapse's homeserver.yaml through the usual appservice installation process, then restart Synapse.

  6. Run node scripts/seed.js to check your setup and set the bot's initial state. You only need to run this once ever.

  7. Make sure the tests work by running npm t

  8. Start the bridge: node start.js

  9. Add the bot to a server - use any one of the following commands for an invite link:

    • (in the REPL) addbot
    • (in a chat) //addbot
    • $ node addbot.js
    • $ npm run addbot
    • $ ./addbot.sh

Now any message on Discord will create the corresponding rooms on Matrix-side. After the rooms have been created, Matrix and Discord users can chat back and forth.

To get into the rooms on your Matrix account, either add yourself to invite in registration.yaml, or use the //invite [your mxid here] command on Discord.

Development setup

  • Be sure to install dependencies with --save-dev so you can run the tests.
  • Any files you change will automatically be reloaded, except for stdin.js and d2m/discord-*.js.
  • If developing on a different computer to the one running the homeserver, use SSH port forwarding so that Synapse can connect on its localhost:6693 to reach the running bridge on your computer. Example: ssh -T -v -R 6693:localhost:6693 me@matrix.cadence.moe
  • I recommend developing in Visual Studio Code so that the JSDoc x TypeScript annotation comments work. I don't know which other editors or language servers support annotations and type inference.

Repository structure

.
* Run this to start the bridge:
├── start.js
* Runtime configuration, like tokens and user info:
├── config.js
├── registration.yaml
* The bridge's SQLite database is stored here:
├── db
│   ├── *.sql, *.db
│   * Migrations change the database schema when you update to a newer version of OOYE:
│   └── migrations
│       └── *.sql, *.js
* Discord-to-Matrix bridging:
├── d2m
│   * Execute actions through the whole flow, like sending a Discord message to Matrix:
│   ├── actions
│   │   └── *.js
│   * Convert data from one form to another without depending on bridge state. Called by actions:
│   ├── converters
│   │   └── *.js
│   * Making Discord work:
│   ├── discord-*.js
│   * Listening to events from Discord and dispatching them to the correct `action`:
│   └── event-dispatcher.js
├── discord
│   └── discord-command-handler.js
* Matrix-to-Discord bridging:
├── m2d
│   * Execute actions through the whole flow, like sending a Matrix message to Discord:
│   ├── actions
│   │   └── *.js
│   * Convert data from one form to another without depending on bridge state. Called by actions:
│   ├── converters
│   │   └── *.js
│   * Listening to events from Matrix and dispatching them to the correct `action`:
│   └── event-dispatcher.js
* We aren't using the matrix-js-sdk, so here are all the functions for the Matrix C-S and Appservice APIs:
├── matrix
│   └── *.js
* Various files you can run once if you need them.
├── scripts
│   * First time running a new bridge? Run this file to plant a seed, which will flourish into state for the bridge:
│   ├── seed.js
│   * Hopefully you won't need the rest of these. Code quality varies wildly.
│   └── *.js
* You are here! :)
└── readme.md

Dependency justification

(deduped transitive dependency count) dependency name: explanation

  • (0) @chriscdn/promise-semaphore: It does what I want! I like it!
  • (42) better-sqlite3: SQLite3 is the best database, and this is the best library for it. Really! I love it.
  • (1) chunk-text: It does what I want.
  • (0) cloudstorm: Discord gateway library with bring-your-own-caching that I trust.
  • (8) snowtransfer: Discord API library with bring-your-own-caching that I trust.
  • (1) discord-markdown: This is my fork!
  • (0) get-stream: Only needed if content_length_workaround is true.
  • (0) giframe: This is my fork!
  • (1) heatsync: Module hot-reloader that I trust.
  • (0) entities: Looks fine. No dependencies.
  • (1) html-template-tag: This is my fork!
  • (1) js-yaml: It seems to do what I want, and it's already pulled in by matrix-appservice.
  • (70) matrix-appservice: I wish it didn't pull in express :(
  • (0) minimist: It's already pulled in by better-sqlite3->prebuild-install.
  • (0) mixin-deep: This is my fork! (It fixes a bug in regular mixin-deep.)
  • (3) node-fetch@2: I like it and it does what I want.
  • (0) pngjs: Lottie stickers are converted to bitmaps with the vendored Rlottie WASM build, then the bitmaps are converted to PNG with pngjs.
  • (0) prettier-bytes: It does what I want and has no dependencies.
  • (51) sharp: Jimp has fewer dependencies, but sharp is faster.
  • (0) try-to-catch: Not strictly necessary, but it does what I want and has no dependencies.
  • (1) turndown: I need an HTML-to-Markdown converter and this one looked suitable enough. It has some bugs that I've worked around, so I might switch away from it later.