mirror of
https://github.com/element-hq/synapse.git
synced 2026-01-11 19:56:31 +00:00
Some checks are pending
Build docker images / Build and push image for linux/amd64 (push) Waiting to run
Build docker images / Build and push image for linux/arm64 (push) Waiting to run
Build docker images / Push merged images to docker.io/matrixdotorg/synapse (push) Blocked by required conditions
Build docker images / Push merged images to ghcr.io/element-hq/synapse (push) Blocked by required conditions
Deploy the documentation / Calculate variables for GitHub Pages deployment (push) Waiting to run
Deploy the documentation / GitHub Pages (push) Blocked by required conditions
Build release artifacts / Calculate list of debian distros (push) Waiting to run
Build release artifacts / Build .deb packages (push) Blocked by required conditions
Build release artifacts / Build wheels on macos-14 (push) Waiting to run
Build release artifacts / Build wheels on macos-15-intel (push) Waiting to run
Build release artifacts / Build wheels on ubuntu-24.04 (push) Waiting to run
Build release artifacts / Build wheels on ubuntu-24.04-arm (push) Waiting to run
Build release artifacts / Build sdist (push) Waiting to run
Build release artifacts / Attach assets to release (push) Blocked by required conditions
Schema / Ensure Synapse config schema is valid (push) Waiting to run
Schema / Ensure generated documentation is up-to-date (push) Waiting to run
Tests / lint (push) Blocked by required conditions
Tests / lint-readme (push) Blocked by required conditions
Tests / linting-done (push) Blocked by required conditions
Tests / calculate-test-jobs (push) Blocked by required conditions
Tests / changes (push) Waiting to run
Tests / check-sampleconfig (push) Blocked by required conditions
Tests / check-schema-delta (push) Blocked by required conditions
Tests / check-lockfile (push) Waiting to run
Tests / Typechecking (push) Blocked by required conditions
Tests / lint-crlf (push) Waiting to run
Tests / lint-newsfile (push) Waiting to run
Tests / lint-clippy (push) Blocked by required conditions
Tests / lint-clippy-nightly (push) Blocked by required conditions
Tests / lint-rust (push) Blocked by required conditions
Tests / lint-rustfmt (push) Blocked by required conditions
Tests / trial (push) Blocked by required conditions
Tests / trial-olddeps (push) Blocked by required conditions
Tests / trial-pypy (all, pypy-3.10) (push) Blocked by required conditions
Tests / sytest (push) Blocked by required conditions
Tests / export-data (push) Blocked by required conditions
Tests / portdb (13, 3.10) (push) Blocked by required conditions
Tests / portdb (17, 3.14) (push) Blocked by required conditions
Tests / complement (monolith, Postgres) (push) Blocked by required conditions
Tests / complement (monolith, SQLite) (push) Blocked by required conditions
Tests / complement (workers, Postgres) (push) Blocked by required conditions
Tests / cargo-test (push) Blocked by required conditions
Tests / cargo-bench (push) Blocked by required conditions
Tests / tests-done (push) Blocked by required conditions
aka PEP 604, added in Python 3.10
102 lines
3.1 KiB
Python
102 lines
3.1 KiB
Python
#
|
|
# This file is licensed under the Affero General Public License (AGPL) version 3.
|
|
#
|
|
# Copyright 2014-2016 OpenMarket Ltd
|
|
# Copyright (C) 2023 New Vector, Ltd
|
|
#
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU Affero General Public License as
|
|
# published by the Free Software Foundation, either version 3 of the
|
|
# License, or (at your option) any later version.
|
|
#
|
|
# See the GNU Affero General Public License for more details:
|
|
# <https://www.gnu.org/licenses/agpl-3.0.html>.
|
|
#
|
|
# Originally licensed under the Apache License, Version 2.0:
|
|
# <http://www.apache.org/licenses/LICENSE-2.0>.
|
|
#
|
|
# [This file includes modifications made by New Vector Limited]
|
|
#
|
|
#
|
|
|
|
from typing import Any
|
|
|
|
import attr
|
|
|
|
from synapse.api.constants import PresenceState
|
|
from synapse.types import JsonDict
|
|
|
|
|
|
@attr.s(slots=True, auto_attribs=True)
|
|
class UserDevicePresenceState:
|
|
"""
|
|
Represents the current presence state of a user's device.
|
|
|
|
user_id: The user ID.
|
|
device_id: The user's device ID.
|
|
state: The presence state, see PresenceState.
|
|
last_active_ts: Time in msec that the device last interacted with server.
|
|
last_sync_ts: Time in msec that the device last *completed* a sync
|
|
(or event stream).
|
|
"""
|
|
|
|
user_id: str
|
|
device_id: str | None
|
|
state: str
|
|
last_active_ts: int
|
|
last_sync_ts: int
|
|
|
|
@classmethod
|
|
def default(cls, user_id: str, device_id: str | None) -> "UserDevicePresenceState":
|
|
"""Returns a default presence state."""
|
|
return cls(
|
|
user_id=user_id,
|
|
device_id=device_id,
|
|
state=PresenceState.OFFLINE,
|
|
last_active_ts=0,
|
|
last_sync_ts=0,
|
|
)
|
|
|
|
|
|
@attr.s(slots=True, frozen=True, auto_attribs=True)
|
|
class UserPresenceState:
|
|
"""Represents the current presence state of the user.
|
|
|
|
user_id: The user ID.
|
|
state: The presence state, see PresenceState.
|
|
last_active_ts: Time in msec that the user last interacted with server.
|
|
last_federation_update_ts: 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_ts: Time in msec that the user last *completed* a sync
|
|
(or event stream).
|
|
status_msg: User set status message.
|
|
currently_active: True if the user is currently syncing.
|
|
"""
|
|
|
|
user_id: str
|
|
state: str
|
|
last_active_ts: int
|
|
last_federation_update_ts: int
|
|
last_user_sync_ts: int
|
|
status_msg: str | None
|
|
currently_active: bool
|
|
|
|
def as_dict(self) -> JsonDict:
|
|
return attr.asdict(self)
|
|
|
|
def copy_and_replace(self, **kwargs: Any) -> "UserPresenceState":
|
|
return attr.evolve(self, **kwargs)
|
|
|
|
@classmethod
|
|
def default(cls, user_id: str) -> "UserPresenceState":
|
|
"""Returns a default presence state."""
|
|
return cls(
|
|
user_id=user_id,
|
|
state=PresenceState.OFFLINE,
|
|
last_active_ts=0,
|
|
last_federation_update_ts=0,
|
|
last_user_sync_ts=0,
|
|
status_msg=None,
|
|
currently_active=False,
|
|
)
|