2022-12-27 10:41:41 +00:00
|
|
|
# Muchrooms
|
2022-09-12 20:17:03 +00:00
|
|
|
|
2022-12-27 10:41:41 +00:00
|
|
|
This is a MUC component implementation in Rust.
|
|
|
|
|
|
|
|
The primary goal was to be able to write gaming chat rooms for the online
|
|
|
|
(board) games, but it is growing into a more complete implementation.
|
|
|
|
|
|
|
|
The name is pronounced “mushrooms”.
|
2022-09-12 20:17:03 +00:00
|
|
|
|
|
|
|
## License
|
|
|
|
|
|
|
|
This project is available under the AGPL-3.0-or-later license. See the LICENSE
|
|
|
|
file.
|
|
|
|
|
|
|
|
## Checklist
|
|
|
|
|
|
|
|
### XMPP
|
|
|
|
|
2022-09-19 13:12:41 +00:00
|
|
|
- [x] Join
|
2022-12-28 09:32:33 +00:00
|
|
|
* [x] Normal sessions
|
|
|
|
* [x] MSN
|
2022-12-17 13:51:01 +00:00
|
|
|
- [-] Presence
|
2022-12-28 09:32:33 +00:00
|
|
|
* [x] Resync
|
|
|
|
* [ ] Updates
|
|
|
|
* [-] Probes (storing updates to answer probes)
|
|
|
|
- Storing presences but not answering when they're being queried, yet.
|
|
|
|
* [ ] Nick changes
|
2022-12-17 13:51:01 +00:00
|
|
|
- [-] Iq
|
2022-12-28 09:32:33 +00:00
|
|
|
* [-] Ping answers
|
|
|
|
- [x] Ping component (always succeeds)
|
|
|
|
- [-] Ping room (always fails. Awaiting affiliation support)
|
|
|
|
- [x] Ping participant (0410)
|
|
|
|
* [ ] Ping probes?
|
|
|
|
* [ ] Routing Public PEP?
|
|
|
|
* [x] Default "service-unavailable"
|
2022-09-12 20:17:03 +00:00
|
|
|
- [ ] Messages
|
2022-12-28 09:32:33 +00:00
|
|
|
* [ ] Broadcast
|
|
|
|
* [ ] History?
|
|
|
|
* [ ] MAM?
|
2022-09-12 20:17:03 +00:00
|
|
|
- [?] Leave
|
|
|
|
- [ ] Affiliations / roles
|
|
|
|
- [ ] Configuration
|
2022-12-28 09:32:33 +00:00
|
|
|
* [ ] Modes
|
|
|
|
- [ ] Non-anon
|
|
|
|
- [ ] Semi-anon
|
|
|
|
- [ ] Full-anon? (with some kind of occupant-id (0421)?)
|
2022-09-12 20:17:03 +00:00
|
|
|
- [ ] Mediated invites
|
|
|
|
- [ ] Room state
|
2022-12-28 09:32:33 +00:00
|
|
|
* [ ] Locked
|
|
|
|
* [ ] Destroyed / Tombstoned?
|
2022-09-12 20:17:03 +00:00
|
|
|
- [ ] Private Messages?
|
|
|
|
- [ ] Possible optimisations
|
2022-12-28 09:32:33 +00:00
|
|
|
* [ ] Presence versioning (0436)
|
|
|
|
* [ ] Room Activity Indicator (0437)
|
|
|
|
* [ ] Affiliation versioning (0463)
|
|
|
|
* [ ] Caching participant caps
|
2022-09-12 20:17:03 +00:00
|
|
|
|
|
|
|
### Storage
|
|
|
|
|
|
|
|
- [ ] Persistent storage of room data
|
|
|
|
|
|
|
|
### Component Configuration
|
|
|
|
|
|
|
|
- [ ] Interface
|
2022-12-28 09:32:33 +00:00
|
|
|
* [ ] File?
|
|
|
|
* [ ] Adhoc?
|
2022-09-12 20:17:03 +00:00
|
|
|
- [ ] Options?
|
2022-12-28 09:32:33 +00:00
|
|
|
* [ ] Host
|
|
|
|
* [ ] Secret
|
|
|
|
* [ ] Admins?
|
|
|
|
* [ ] ...?
|