Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a configuration option to open a channel for metadata #67

Merged
merged 7 commits into from
Oct 16, 2020

Conversation

diogob
Copy link
Owner

@diogob diogob commented Sep 16, 2020

This is an attempt to create a feature that can be used to implement both #41 and #52.

The feature behaviour can be summarized as:

  1. A configuration option may define a channel used for sending metadata
  2. Once this configuration is enabled that channel allow only read sessions to be open.
  3. Once this configuration is enabled all meta-data is sent to that channel on internal state changes through a PostgreSQL notification. Initial implementation would send messages on new websocket sessions. The metadata for the initial implementation is the JWT claims and the Multiplexer state.

This would allow executing custom functions in the database provided you have a process listening on the postgres-websockets listen channel that can call custom functions (see pg-recorder for an example).

It can also be used to detect state changes in web clients that have a proper token to read the meta-data channel.

The number of connections in applications like a chat can be inferred just by the number of listeners in the Multiplexer.

To get the number of connections in more complex scenarios (with write-only sessions) we would need to track websockets connections closing (which won't be a part of this PR).

…ith a function to create a Context out of the application config. This makes it simpler to extend the context when new elements are required.
… to send events (since those messages don't originate from the websockets connection).
…between messages coming from WS clients and messages generated by the server
@diogob diogob marked this pull request as ready for review October 8, 2020 02:42
@diogob diogob merged commit 995683e into master Oct 16, 2020
@diogob diogob deleted the metadata-channel branch March 27, 2021 01:12
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant