diff options
author | David Robertson <davidr@element.io> | 2022-07-13 19:48:24 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-13 19:48:24 +0100 |
commit | 0eb7e697682a8033564df6d602a7098d9a93d03e (patch) | |
tree | 36e69e0168ca0b226d0a0c05045865a7515597b5 /synapse/notifier.py | |
parent | Call the v2 identity service `/3pid/unbind` endpoint, rather than v1. (#13240) (diff) | |
download | synapse-0eb7e697682a8033564df6d602a7098d9a93d03e.tar.xz |
Notifier: accept callbacks to fire on room joins (#13254)
Diffstat (limited to 'synapse/notifier.py')
-rw-r--r-- | synapse/notifier.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/synapse/notifier.py b/synapse/notifier.py index 54b0ec4b97..c42bb8266a 100644 --- a/synapse/notifier.py +++ b/synapse/notifier.py @@ -228,6 +228,7 @@ class Notifier: # Called when there are new things to stream over replication self.replication_callbacks: List[Callable[[], None]] = [] + self._new_join_in_room_callbacks: List[Callable[[str, str], None]] = [] self._federation_client = hs.get_federation_http_client() @@ -280,6 +281,19 @@ class Notifier: """ self.replication_callbacks.append(cb) + def add_new_join_in_room_callback(self, cb: Callable[[str, str], None]) -> None: + """Add a callback that will be called when a user joins a room. + + This only fires on genuine membership changes, e.g. "invite" -> "join". + Membership transitions like "join" -> "join" (for e.g. displayname changes) do + not trigger the callback. + + When called, the callback receives two arguments: the event ID and the room ID. + It should *not* return a Deferred - if it needs to do any asynchronous work, a + background thread should be started and wrapped with run_as_background_process. + """ + self._new_join_in_room_callbacks.append(cb) + async def on_new_room_event( self, event: EventBase, @@ -723,6 +737,10 @@ class Notifier: for cb in self.replication_callbacks: cb() + def notify_user_joined_room(self, event_id: str, room_id: str) -> None: + for cb in self._new_join_in_room_callbacks: + cb(event_id, room_id) + def notify_remote_server_up(self, server: str) -> None: """Notify any replication that a remote server has come back up""" # We call federation_sender directly rather than registering as a |