dendrite/clientapi
2023-08-29 10:40:53 -06:00
..
api
auth
httputil
producers
routing Properly handle prev_sender based on /sync event_format 2023-08-29 10:40:53 -06:00
threepid Use *spec.SenderID for QuerySenderIDForUser (#3164) 2023-08-02 11:12:14 +01:00
userutil
admin_test.go
clientapi.go
clientapi_test.go Add config key for default room version (#3171) 2023-08-08 14:20:05 +01:00
README.md

This component roughly corresponds to "Client Room Send" and "Client Sync" on the WIRING diagram. This component produces multiple binaries.

Internals

  • HTTP routing is done using gorilla/mux and the routing paths are in the routing package.

Writers

  • Each HTTP "write operation" (/createRoom, /rooms/$room_id/send/$type, etc) is contained entirely to a single file in the writers package.
  • This file contains the request and response struct definitions, as well as a Validate() bool function to validate incoming requests.
  • The entry point for each write operation is a stand-alone function as this makes testing easier. All dependencies should be injected into this function, including server keys/name, etc.