From fae81f2f680242bcabbff12fa9c1eb72ba017b6f Mon Sep 17 00:00:00 2001 From: Andrew Morgan <1342360+anoadragon453@users.noreply.github.com> Date: Thu, 25 Mar 2021 10:34:23 +0000 Subject: Add a storage method for returning all current presence from all users (#9650) Split off from https://github.com/matrix-org/synapse/pull/9491 Adds a storage method for getting the current presence of all local users, optionally excluding those that are offline. This will be used by the code in #9491 when a PresenceRouter module informs Synapse that a given user should have `"ALL"` user presence updates routed to them. Specifically, it is used here: https://github.com/matrix-org/synapse/blob/b588f16e391d664b11f43257eabf70663f0c6d59/synapse/handlers/presence.py#L1131-L1133 Note that there is a `get_all_presence_updates` function just above. That function is intended to walk up the table through stream IDs, and is primarily used by the presence replication stream. I could possibly make use of it in the PresenceRouter-related code, but it would be a bit of a bodge. --- changelog.d/9650.misc | 1 + 1 file changed, 1 insertion(+) create mode 100644 changelog.d/9650.misc (limited to 'changelog.d/9650.misc') diff --git a/changelog.d/9650.misc b/changelog.d/9650.misc new file mode 100644 index 0000000000..d830ead70e --- /dev/null +++ b/changelog.d/9650.misc @@ -0,0 +1 @@ +Add a storage method for pulling all current user presence state from the database. \ No newline at end of file -- cgit 1.4.1