Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
synapse
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Monitor
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Maunium
synapse
Commits
40e56997
Commit
40e56997
authored
6 years ago
by
Erik Johnston
Browse files
Options
Downloads
Patches
Plain Diff
Review comments
parent
d5a5d1c6
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
synapse/handlers/presence.py
+62
-44
62 additions, 44 deletions
synapse/handlers/presence.py
tests/handlers/test_presence.py
+9
-5
9 additions, 5 deletions
tests/handlers/test_presence.py
with
71 additions
and
49 deletions
synapse/handlers/presence.py
+
62
−
44
View file @
40e56997
...
@@ -934,6 +934,9 @@ class PresenceHandler(object):
...
@@ -934,6 +934,9 @@ class PresenceHandler(object):
joining rooms and require being sent presence.
joining rooms and require being sent presence.
"""
"""
if
self
.
_event_processing
:
return
@defer.inlineCallbacks
@defer.inlineCallbacks
def
_process_presence
():
def
_process_presence
():
if
self
.
_event_processing
:
if
self
.
_event_processing
:
...
@@ -993,58 +996,73 @@ class PresenceHandler(object):
...
@@ -993,58 +996,73 @@ class PresenceHandler(object):
# Ignore changes to join events.
# Ignore changes to join events.
continue
continue
if
self
.
is_mine_id
(
state_key
):
yield
self
.
_on_user_joined_room
(
room_id
,
state_key
)
# If this is a local user then we need to send their presence
# out to hosts in the room (who don't already have it)
# TODO: We should be able to filter the hosts down to those that
# haven't previously seen the user
state
=
yield
self
.
current_state_for_user
(
state_key
)
@defer.inlineCallbacks
hosts
=
yield
self
.
state
.
get_current_hosts_in_room
(
room_id
)
def
_on_user_joined_room
(
self
,
room_id
,
user_id
):
"""
Called when we detect a user joining the room via the current state
# Filter out ourselves.
delta stream.
hosts
=
set
(
host
for
host
in
hosts
if
host
!=
self
.
server_name
)
self
.
federation
.
send_presence_to_destinations
(
Args:
states
=
[
state
],
room_id (str)
destinations
=
hosts
,
user_id (str)
)
else
:
# A remote user has joined the room, so we need to:
# 1. Check if this is a new server in the room
# 2. If so send any presence they don't already have for
# local users in the room.
# TODO: We should be able to filter the users down to those that
Returns:
# the server hasn't previously seen
Deferred
"""
# TODO: Check that this is actually a new server joining the
if
self
.
is_mine_id
(
user_id
):
# room.
# If this is a local user then we need to send their presence
# out to hosts in the room (who don't already have it)
user_ids
=
yield
self
.
state
.
get_current_user_in_room
(
room_id
)
# TODO: We should be able to filter the hosts down to those that
user_ids
=
list
(
filter
(
self
.
is_mine_id
,
user_ids
))
# haven't previously seen the user
states
=
yield
self
.
current_state_for_users
(
user_ids
)
state
=
yield
self
.
current_state_for_user
(
user_id
)
hosts
=
yield
self
.
state
.
get_current_hosts_in_room
(
room_id
)
# Filter out old presence, i.e. offline presence states where
# Filter out ourselves.
# the user hasn't been active for a week. We can change this
hosts
=
set
(
host
for
host
in
hosts
if
host
!=
self
.
server_name
)
# depending on what we want the UX to be, but at the least we
# should filter out offline presence where the state is just the
# default state.
now
=
self
.
clock
.
time_msec
()
states
=
[
state
for
state
in
states
.
values
()
if
state
.
state
!=
PresenceState
.
OFFLINE
or
now
-
state
.
last_active_ts
<
7
*
24
*
60
*
60
*
1000
or
state
.
status_msg
is
not
None
]
if
states
:
self
.
federation
.
send_presence_to_destinations
(
self
.
federation
.
send_presence_to_destinations
(
states
=
[
state
],
states
=
states
,
destinations
=
hosts
,
destinations
=
[
get_domain_from_id
(
state_key
)],
)
)
else
:
# A remote user has joined the room, so we need to:
# 1. Check if this is a new server in the room
# 2. If so send any presence they don't already have for
# local users in the room.
# TODO: We should be able to filter the users down to those that
# the server hasn't previously seen
# TODO: Check that this is actually a new server joining the
# room.
user_ids
=
yield
self
.
state
.
get_current_user_in_room
(
room_id
)
user_ids
=
list
(
filter
(
self
.
is_mine_id
,
user_ids
))
states
=
yield
self
.
current_state_for_users
(
user_ids
)
# Filter out old presence, i.e. offline presence states where
# the user hasn't been active for a week. We can change this
# depending on what we want the UX to be, but at the least we
# should filter out offline presence where the state is just the
# default state.
now
=
self
.
clock
.
time_msec
()
states
=
[
state
for
state
in
states
.
values
()
if
state
.
state
!=
PresenceState
.
OFFLINE
or
now
-
state
.
last_active_ts
<
7
*
24
*
60
*
60
*
1000
or
state
.
status_msg
is
not
None
]
if
states
:
self
.
federation
.
send_presence_to_destinations
(
states
=
states
,
destinations
=
[
get_domain_from_id
(
user_id
)],
)
def
should_notify
(
old_state
,
new_state
):
def
should_notify
(
old_state
,
new_state
):
...
...
This diff is collapsed.
Click to expand it.
tests/handlers/test_presence.py
+
9
−
5
View file @
40e56997
...
@@ -461,7 +461,9 @@ class PresenceJoinTestCase(unittest.HomeserverTestCase):
...
@@ -461,7 +461,9 @@ class PresenceJoinTestCase(unittest.HomeserverTestCase):
)
)
self
.
reactor
.
pump
([
0
])
# Wait for presence updates to be handled
self
.
reactor
.
pump
([
0
])
# Wait for presence updates to be handled
# Test that a new server gets told about existing presence #
#
# Test that a new server gets told about existing presence
#
self
.
federation_sender
.
reset_mock
()
self
.
federation_sender
.
reset_mock
()
...
@@ -482,7 +484,9 @@ class PresenceJoinTestCase(unittest.HomeserverTestCase):
...
@@ -482,7 +484,9 @@ class PresenceJoinTestCase(unittest.HomeserverTestCase):
destinations
=
[
"
server2
"
],
states
=
[
expected_state
]
destinations
=
[
"
server2
"
],
states
=
[
expected_state
]
)
)
# Test that only the new server gets sent presence and not existing servers #
#
# Test that only the new server gets sent presence and not existing servers
#
self
.
federation_sender
.
reset_mock
()
self
.
federation_sender
.
reset_mock
()
self
.
_add_new_user
(
room_id
,
"
@bob:server3
"
)
self
.
_add_new_user
(
room_id
,
"
@bob:server3
"
)
...
@@ -517,7 +521,9 @@ class PresenceJoinTestCase(unittest.HomeserverTestCase):
...
@@ -517,7 +521,9 @@ class PresenceJoinTestCase(unittest.HomeserverTestCase):
self
.
reactor
.
pump
([
0
])
# Wait for presence updates to be handled
self
.
reactor
.
pump
([
0
])
# Wait for presence updates to be handled
# Test that when a local join happens remote servers get told about it #
#
# Test that when a local join happens remote servers get told about it
#
self
.
federation_sender
.
reset_mock
()
self
.
federation_sender
.
reset_mock
()
...
@@ -547,7 +553,6 @@ class PresenceJoinTestCase(unittest.HomeserverTestCase):
...
@@ -547,7 +553,6 @@ class PresenceJoinTestCase(unittest.HomeserverTestCase):
room_version
=
self
.
get_success
(
self
.
store
.
get_room_version
(
room_id
))
room_version
=
self
.
get_success
(
self
.
store
.
get_room_version
(
room_id
))
# No we want to have other servers "join"
builder
=
EventBuilder
(
builder
=
EventBuilder
(
state
=
self
.
state
,
state
=
self
.
state
,
auth
=
self
.
auth
,
auth
=
self
.
auth
,
...
@@ -555,7 +560,6 @@ class PresenceJoinTestCase(unittest.HomeserverTestCase):
...
@@ -555,7 +560,6 @@ class PresenceJoinTestCase(unittest.HomeserverTestCase):
clock
=
self
.
clock
,
clock
=
self
.
clock
,
hostname
=
hostname
,
hostname
=
hostname
,
signing_key
=
self
.
random_signing_key
,
signing_key
=
self
.
random_signing_key
,
format_version
=
room_version_to_event_format
(
room_version
),
format_version
=
room_version_to_event_format
(
room_version
),
room_id
=
room_id
,
room_id
=
room_id
,
type
=
EventTypes
.
Member
,
type
=
EventTypes
.
Member
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment