Working project name, not final.

Trey Del Bonis 1bc2d783a9 test: remove incorrect/redundant doc comments hai 1 semana
client bd714717be client, db, user: cleanup registering device, more logging hai 1 mes
common 712dd0e3af added client and user modules, defined user RPCs, general reorganization hai 1 mes
contrib 856f5f3682 sqldb, contrib: generate sqldb crate with `--lib` flag hai 2 meses
core e25abbe823 db: added device-oriented message queue interface hai 4 semanas
db e25abbe823 db: added device-oriented message queue interface hai 4 semanas
docs 5962a6060a docs: added terms.md hai 2 meses
homeserver 7ce86d9daf added improved logging and other changes around device key management hai 1 mes
proto e25abbe823 db: added device-oriented message queue interface hai 4 semanas
rpc 11e0562cb5 added impls for user RPCs for querying devices hai 1 mes
sqldb e8b2ae5d2b sqldb: added message queue migrations and entities hai 1 mes
test 1bc2d783a9 test: remove incorrect/redundant doc comments hai 1 semana
tools 5c7ba788d9 core, tools/cli: refactored datadir and cli tool to use new user-centric identity model hai 3 meses
transport2 53325ff714 transport2, xport-rpc: added more logging, fixed warning when handling p2p calls hai 1 mes
user bd714717be client, db, user: cleanup registering device, more logging hai 1 mes
util 47251dce4d core, homeserver, proto, util: added protocol defs and server logic for user registration, added personal message signing hai 4 meses
xport-rpc 7ce86d9daf added improved logging and other changes around device key management hai 1 mes
.gitignore 8237d39ff4 test: mostly finished test harness hai 1 mes
Cargo.lock 11e0562cb5 added impls for user RPCs for querying devices hai 1 mes
Cargo.toml 712dd0e3af added client and user modules, defined user RPCs, general reorganization hai 1 mes
README.md acd6ec6c08 meta: updated README again hai 4 semanas

README.md

aspect

A better messaging and chat protocol. Building it the right way.

rough design doc

Rough roadmap

These are handwavy milestones that I expect to change.

Phase 1

  • Prototype device identity system
  • Basic MLS group setup/teardown
  • Support adding/removing devices
  • ZMQ or AMQP channel message streams

Phase 2

  • Protocol cleanup
  • Properly authenticate user device identity graph
  • Proper device attestation for homeservers
  • Experiment with roaming identities?
  • Replace transport auth with better system
  • Homeserver push events to change group membership (use OpenMLS support for this)
  • More sophisticated message structure and local channel state
  • Prototype spaces?
  • More homeserver administrative actions

Phase 3

  • More thorough spaces impl
  • Invites
  • Persistent channel data store (for custom emotes, stickers, etc.)

Known issues

Keeping this list here so that I remember what I'm doing.

  • No transport encryption, homeserver user creds are in plaintext.
  • User authentication is shaky, should add some kind of session authentication to avoid resending creds and stuff.
  • No connection pooling or automatic reconnect to homeservers.
  • Password hashing round count is way too high for debug builds, takes 5+ seconds.
  • Lots of ORM queries have // TODOs on them because we query more columns than we need to, that could be reduced.
  • Lots of queries could be made into JOINs but I don't know how to express that to SeaORM correctly.
  • Lots of Codec serialization is "self-documenting" in the bad way (the source code is the only documentation), switch to using Stencil when it's mature enough.