simple http api to query mumble servers
Find a file
2024-05-27 19:40:05 +02:00
proto chore: moved proto out 2024-02-21 20:05:04 +01:00
src feat: add ntfy optional feature 2024-05-27 19:02:35 +02:00
web chore: updated example widget with userlist 2024-02-19 02:02:39 +01:00
.editorconfig chore: initial commit 2024-02-16 00:40:42 +01:00
.gitignore chore: initial commit 2024-02-16 00:40:42 +01:00
.rustfmt.toml chore: initial commit 2024-02-16 00:40:42 +01:00
.tci ci: build with all features 2024-05-27 19:40:05 +02:00
build.rs chore: moved proto out 2024-02-21 20:05:04 +01:00
Cargo.lock feat: add ntfy optional feature 2024-05-27 19:02:35 +02:00
Cargo.toml feat: add ntfy optional feature 2024-05-27 19:02:35 +02:00
README.md docs: add readme 2024-02-28 18:03:47 +01:00

mumble-stats-api

REST API to check who hopped on mumble before hopping yourself

if you, like me, are trying to get off discord's claws, you're probably using mumble

mumble is open source, low-latency, encrypted and cool, but you need to download the native client to check who's up

mumble-web is an awesome project which allows you to join from a web browser (like discord!), but you still need to join to check who's currently on

api to the rescue

introducing mumble-stats-api: a persistent mumble bot which will expose current users on a public API endpoint:

$ curl https://example/net/mumble/api/ping?host=your.mumble.server

{
	"version":"1.5.255",
	"users": 1,
	"max_users": 50,
	"bandwidth": 128000,
	"latency": 42
}

$ curl https://example.net/mumble/api/users

[
	{
		"session": 33,
		"actor": 33,
		"name": "your_username",
		"user_id": 1,
		"channel_id": 16,
		"comment": "optional user comment",
		"properties": {
			"mute": false,
			"deaf": false,
			"suppress": false,
			"self_mute": true,
			"self_deaf": false,
			"priority_speaker": false,
			"recording": false
		}
	}
]

live updates

mumble-stats-api also exposes a websocket endpoint on /ws, to receive realtime events about users:

  • every time an user is updated, the whole entity is sent as an event
  • every time an user leaves the server, an object with {"remove": <id>} is sent

how it works

basically it connects to your server (as bot so it doesn't increase the user count) and sits in any channel (move it freely). it only uses the control channel, no voice is sent or parsed ever.