2014-08-12 10:10:52 -04:00
|
|
|
# -*- coding: utf-8 -*-
|
2016-01-06 23:26:29 -05:00
|
|
|
# Copyright 2014-2016 OpenMarket Ltd
|
2014-08-12 10:10:52 -04:00
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
2014-08-12 22:14:34 -04:00
|
|
|
|
2018-07-09 02:09:20 -04:00
|
|
|
from collections import namedtuple
|
|
|
|
|
2016-02-15 12:10:40 -05:00
|
|
|
from synapse.api.constants import PresenceState
|
2015-05-22 11:11:17 -04:00
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2019-04-03 05:07:29 -04:00
|
|
|
class UserPresenceState(
|
|
|
|
namedtuple(
|
|
|
|
"UserPresenceState",
|
|
|
|
(
|
|
|
|
"user_id",
|
|
|
|
"state",
|
|
|
|
"last_active_ts",
|
|
|
|
"last_federation_update_ts",
|
|
|
|
"last_user_sync_ts",
|
|
|
|
"status_msg",
|
|
|
|
"currently_active",
|
|
|
|
),
|
|
|
|
)
|
|
|
|
):
|
2016-02-15 12:10:40 -05:00
|
|
|
"""Represents the current presence state of the user.
|
|
|
|
|
|
|
|
user_id (str)
|
|
|
|
last_active (int): Time in msec that the user last interacted with server.
|
|
|
|
last_federation_update (int): Time in msec since either a) we sent a presence
|
|
|
|
update to other servers or b) we received a presence update, depending
|
|
|
|
on if is a local user or not.
|
|
|
|
last_user_sync (int): Time in msec that the user last *completed* a sync
|
|
|
|
(or event stream).
|
|
|
|
status_msg (str): User set status message.
|
|
|
|
"""
|
|
|
|
|
2016-11-16 12:34:44 -05:00
|
|
|
def as_dict(self):
|
|
|
|
return dict(self._asdict())
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def from_dict(d):
|
|
|
|
return UserPresenceState(**d)
|
|
|
|
|
2016-02-15 12:10:40 -05:00
|
|
|
def copy_and_replace(self, **kwargs):
|
|
|
|
return self._replace(**kwargs)
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def default(cls, user_id):
|
|
|
|
"""Returns a default presence state.
|
|
|
|
"""
|
|
|
|
return cls(
|
|
|
|
user_id=user_id,
|
|
|
|
state=PresenceState.OFFLINE,
|
2016-02-18 05:11:43 -05:00
|
|
|
last_active_ts=0,
|
|
|
|
last_federation_update_ts=0,
|
|
|
|
last_user_sync_ts=0,
|
2016-02-15 12:10:40 -05:00
|
|
|
status_msg=None,
|
|
|
|
currently_active=False,
|
2014-08-12 10:10:52 -04:00
|
|
|
)
|