Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
Don't set currently_active for remote presence
Browse files Browse the repository at this point in the history
  • Loading branch information
erikjohnston committed Feb 19, 2016
1 parent 5f4eca3 commit 929cb0e
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 10 deletions.
18 changes: 12 additions & 6 deletions synapse/handlers/presence.py
Original file line number Diff line number Diff line change
Expand Up @@ -995,6 +995,18 @@ def handle_update(prev_state, new_state, is_mine, wheel_timer, now):
then=new_state.last_active_ts + IDLE_TIMER
)

active = now - new_state.last_active_ts < LAST_ACTIVE_GRANULARITY
new_state = new_state.copy_and_replace(
currently_active=active,
)

if active:
wheel_timer.insert(
now=now,
obj=user_id,
then=new_state.last_active_ts + LAST_ACTIVE_GRANULARITY
)

if new_state.state != PresenceState.OFFLINE:
# User has stopped syncing
wheel_timer.insert(
Expand All @@ -1018,12 +1030,6 @@ def handle_update(prev_state, new_state, is_mine, wheel_timer, now):
then=new_state.last_federation_update_ts + FEDERATION_TIMEOUT
)

if new_state.state == PresenceState.ONLINE:
active = now - new_state.last_active_ts < LAST_ACTIVE_GRANULARITY
new_state = new_state.copy_and_replace(
currently_active=active,
)

# Check whether the change was something worth notifying about
if should_notify(prev_state, new_state):
new_state = new_state.copy_and_replace(
Expand Down
19 changes: 15 additions & 4 deletions tests/handlers/test_presence.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def test_offline_to_online(self):
self.assertEquals(new_state.status_msg, state.status_msg)
self.assertEquals(state.last_federation_update_ts, now)

self.assertEquals(wheel_timer.insert.call_count, 2)
self.assertEquals(wheel_timer.insert.call_count, 3)
wheel_timer.insert.assert_has_calls([
call(
now=now,
Expand All @@ -60,7 +60,12 @@ def test_offline_to_online(self):
now=now,
obj=user_id,
then=new_state.last_user_sync_ts + SYNC_ONLINE_TIMEOUT
)
),
call(
now=now,
obj=user_id,
then=new_state.last_active_ts + LAST_ACTIVE_GRANULARITY
),
], any_order=True)

def test_online_to_online(self):
Expand Down Expand Up @@ -91,7 +96,7 @@ def test_online_to_online(self):
self.assertEquals(new_state.status_msg, state.status_msg)
self.assertEquals(state.last_federation_update_ts, now)

self.assertEquals(wheel_timer.insert.call_count, 2)
self.assertEquals(wheel_timer.insert.call_count, 3)
wheel_timer.insert.assert_has_calls([
call(
now=now,
Expand All @@ -102,7 +107,12 @@ def test_online_to_online(self):
now=now,
obj=user_id,
then=new_state.last_user_sync_ts + SYNC_ONLINE_TIMEOUT
)
),
call(
now=now,
obj=user_id,
then=new_state.last_active_ts + LAST_ACTIVE_GRANULARITY
),
], any_order=True)

def test_online_to_online_last_active(self):
Expand Down Expand Up @@ -153,6 +163,7 @@ def test_remote_ping_timer(self):
prev_state = UserPresenceState.default(user_id)
prev_state = prev_state.copy_and_replace(
state=PresenceState.ONLINE,
last_active_ts=now,
)

new_state = prev_state.copy_and_replace(
Expand Down

0 comments on commit 929cb0e

Please sign in to comment.