') + ')', 'gi'); if (regex.test(text)) { found = true; var frag = document.createDocumentFragment(); var parts = text.split(regex); parts.forEach(function(part, i) { if (i % 2 === 0) { frag.appendChild(document.createTextNode(part)); } else { var span = document.createElement('span'); span.className = 'userscript-highlight'; span.textContent = part; frag.appendChild(span); } }); node.parentNode.replaceChild(frag, node); } }); } else if (node.nodeType === 1 && node.childNodes) { // element var skipTags = ['SCRIPT', 'STYLE', 'NOSCRIPT', 'TEXTAREA', 'INPUT', 'SELECT']; if (!skipTags.includes(node.tagName)) { Array.from(node.childNodes).forEach(highlight); } } } highlight(document.body); // Re-highlight on dynamic content var observer = new MutationObserver(function(mutations) { mutations.forEach(function(m) { m.addedNodes.forEach(function(node) { if (node.nodeType === 1 || node.nodeType === 3) highlight(node); }); }); }); observer.observe(document.body, { childList: true, subtree: true }); })(); } } catch(__e) { console.warn('[Userscript:Highlight Search Terms]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + ', 'i'); if (__m === '*' || __re.test(location.href)) { // Strip utm_, fbclid, gclid, etc. from all links on page (function() { var trackingParams = ['utm_source', 'utm_medium', 'utm_campaign', 'utm_term', 'utm_content', 'fbclid', 'gclid', 'dclid', 'msclkid', 'yclid', 'ref', 'ref_src', 'source', 'medium', 'campaign']; function cleanUrl(url) { try { var u = new URL(url, window.location.origin); var changed = false; trackingParams.forEach(function(p) { if (u.searchParams.has(p)) { u.searchParams.delete(p); changed = true; } }); return changed ? u.toString() : url; } catch (e) { return url; } } function cleanLinks() { document.querySelectorAll('a[href]').forEach(function(a) { var clean = cleanUrl(a.href); if (clean !== a.href) a.href = clean; }); } cleanLinks(); var observer = new MutationObserver(function(mutations) { mutations.forEach(function(m) { m.addedNodes.forEach(function(node) { if (node.nodeType === 1) { if (node.tagName === 'A') cleanLinks(); node.querySelectorAll('a[href]').forEach(function(a) { var clean = cleanUrl(a.href); if (clean !== a.href) a.href = clean; }); } }); }); }); observer.observe(document.body, { childList: true, subtree: true }); })(); } } catch(__e) { console.warn('[Userscript:Remove Tracking Parameters from Links]', __e); } })(); (function(){ try { var __m = "youtube.com"; var __re = new RegExp('^' + "youtube\\.com" + ', 'i'); if (__m === '*' || __re.test(location.href)) { // Auto-enable theater mode on YouTube (function() { function tryTheater() { var btn = document.querySelector('button[aria-label="Theater mode"], ytd-player #player button[title="Theater mode"]'); if (btn && !btn.classList.contains('activated')) { btn.click(); } } // Try immediately tryTheater(); // Try after navigation (SPA) var lastUrl = location.href; setInterval(function() { if (location.href !== lastUrl) { lastUrl = location.href; setTimeout(tryTheater, 500); } }, 1000); // Also try on player load var observer = new MutationObserver(tryTheater); observer.observe(document.body, { childList: true, subtree: true }); })(); } } catch(__e) { console.warn('[Userscript:YouTube Theater Mode Default]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + ', 'i'); if (__m === '*' || __re.test(location.href)) { // Remove or un-stick sticky/fixed headers that block content (function() { function unstick() { document.querySelectorAll('header, nav, [role="banner"], .header, .navbar, .sticky, .fixed-top, [style*="position: fixed"], [style*="position:sticky"]').forEach(function(el) { if (el.style.position === 'fixed' || el.style.position === 'sticky' || getComputedStyle(el).position === 'fixed' || getComputedStyle(el).position === 'sticky') { el.style.position = 'static'; el.style.top = 'auto'; el.style.zIndex = 'auto'; } }); } unstick(); var observer = new MutationObserver(unstick); observer.observe(document.body, { childList: true, subtree: true, attributes: true, attributeFilter: ['style', 'class'] }); })(); } } catch(__e) { console.warn('[Userscript:Kill Sticky Headers]', __e); } })(); })(); GitHub - JerryImMouse/mantle: Discord identity linking service for external apps - link, cache, and query Discord data by your own user IDs. · GitHub
Skip to content

Repository files navigation

Mantle

Mantle is an identity/authorization service that links a user's account on your service to their Discord account, and gives you cached access to their Discord data afterward.

You bring your own user IDs (from your game server, backend, whatever) - Mantle doesn't need to know anything about your service beforehand. It just needs an ID to link against.

How it works

  1. Check - send your user's ID to /api/auth/check. If they haven't linked Discord yet, Mantle responds with discord_required and creates a Mantle identity for that ID under the hood.
  2. Link - call /api/auth/link with the same ID to get an OAuth authorization URL. Hand that URL to the user.
  3. Callback - the user authorizes with Discord and is redirected to /api/auth/callback, where Mantle links the Discord identity to the identity from your service.
  4. Use - from then on, query endpoints like /api/discord/user with your service's user ID to get their Discord data.
Your service Mantle Discord
| | |
|--- POST /api/auth/check -------->| |
|<-- discord_required -------------| |
| | |
|--- POST /api/auth/link --------->| |
|<-- authorization URL ------------| |
| | |
| (user opens URL) -------------------------------------------->|
| |<--- OAuth callback ------------|
| | (identities linked) |
| | |
|--- GET /api/discord/user ------->| |
|<-- cached Discord data ----------| |

Identity providers

Identities are keyed by a provider + external ID pair. Out of the box this includes External and Discord. Any service with its own user IDs works the same way.

Per-user metadata

Each identity can hold arbitrary metadata as key -> value (JSON) pairs, for whatever your service needs to attach to a user (roles, flags, preferences, etc.).

Caching

Discord API responses (@me, guilds, guild_member, etc.) are cached to avoid hitting Discord's rate limits. Access and refresh tokens are refreshed automatically — you never need to handle the OAuth token lifecycle yourself.

API

Routes are documented via utoipa. Generate an openapi.json spec with:

cargo run --feature openapi --bin generate-openapi

Open the resulting file in any OpenAPI viewer (Swagger UI, Redoc, etc.) to browse the full API.

Setup

Mantle is configured via a required config.toml in the project root — every field(except redirect_uri) must be present. Any field can be overridden via environment variables (e.g. for secrets you don't want committed).

[database]
url = "postgres://user:password@localhost/mantle"
[server]
host = "127.0.0.1"port = 5050api_secret = "..."
[discord]
client_id = "..."client_secret = "..."redirect_uri = "https://your-domain/api/auth/callback"state_secret = "..." [app]
redirect_uri = "https://example.com"# the only optional field in the config
Env varOverrides
APP_DATABASE_URLdatabase.url
APP_HOSTserver.host
APP_PORTserver.port
APP_API_SECRETserver.api_secret
APP_DISCORD_CLIENT_IDdiscord.client_id
APP_DISCORD_CLIENT_SECRETdiscord.client_secret
APP_DISCORD_REDIRECT_URIdiscord.redirect_uri
APP_DISCORD_STATE_SECRETdiscord.state_secret
APP_CALLBACK_REDIRECT_URIapp.redirect_uri

Once config.toml is in place, it's a regular Rust project:

cargo run --bin mantle

Build, deploy, and release builds work the same as any other Cargo project — no extra steps beyond the usual --release, aside from the other --bin targets in the workspace (e.g. generate-openapi, mentioned above)

License

MIT 2026 JerryImMouse - see LICENSE.TXT

About

Discord identity linking service for external apps - link, cache, and query Discord data by your own user IDs.

Topics

Resources

Stars

1 star

Watchers

0 watching

Forks

Releases

Used by

Contributors

Languages