2014-08-12 10:10:52 -04:00
|
|
|
#
|
2023-11-21 15:29:58 -05:00
|
|
|
# This file is licensed under the Affero General Public License (AGPL) version 3.
|
|
|
|
#
|
2024-01-23 06:26:48 -05:00
|
|
|
# Copyright 2014-2016 OpenMarket Ltd
|
2023-11-21 15:29:58 -05:00
|
|
|
# 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]
|
2014-08-12 10:10:52 -04:00
|
|
|
#
|
|
|
|
#
|
2014-08-12 22:14:34 -04:00
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
""" This module contains REST servlets to do with presence: /presence/<paths>
|
|
|
|
"""
|
2018-07-09 02:09:20 -04:00
|
|
|
import logging
|
2021-08-26 07:53:52 -04:00
|
|
|
from typing import TYPE_CHECKING, Tuple
|
2018-07-09 02:09:20 -04:00
|
|
|
|
|
|
|
from synapse.api.errors import AuthError, SynapseError
|
2017-03-15 10:27:34 -04:00
|
|
|
from synapse.handlers.presence import format_user_presence_state
|
2021-08-26 07:53:52 -04:00
|
|
|
from synapse.http.server import HttpServer
|
2019-06-03 07:28:59 -04:00
|
|
|
from synapse.http.servlet import RestServlet, parse_json_object_from_request
|
2021-08-26 07:53:52 -04:00
|
|
|
from synapse.http.site import SynapseRequest
|
2021-08-17 07:57:58 -04:00
|
|
|
from synapse.rest.client._base import client_patterns
|
2021-08-26 07:53:52 -04:00
|
|
|
from synapse.types import JsonDict, UserID
|
|
|
|
|
|
|
|
if TYPE_CHECKING:
|
|
|
|
from synapse.server import HomeServer
|
2018-04-15 15:43:35 -04:00
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
2019-06-03 07:28:59 -04:00
|
|
|
class PresenceStatusRestServlet(RestServlet):
|
|
|
|
PATTERNS = client_patterns("/presence/(?P<user_id>[^/]*)/status", v1=True)
|
2023-03-23 08:11:14 -04:00
|
|
|
CATEGORY = "Presence requests"
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2021-08-26 07:53:52 -04:00
|
|
|
def __init__(self, hs: "HomeServer"):
|
2020-09-18 09:56:44 -04:00
|
|
|
super().__init__()
|
2019-06-03 07:28:59 -04:00
|
|
|
self.hs = hs
|
2016-05-16 13:56:37 -04:00
|
|
|
self.presence_handler = hs.get_presence_handler()
|
2017-03-15 10:27:34 -04:00
|
|
|
self.clock = hs.get_clock()
|
2019-06-03 07:28:59 -04:00
|
|
|
self.auth = hs.get_auth()
|
2016-05-16 13:56:37 -04:00
|
|
|
|
2021-08-26 07:53:52 -04:00
|
|
|
async def on_GET(
|
|
|
|
self, request: SynapseRequest, user_id: str
|
|
|
|
) -> Tuple[int, JsonDict]:
|
2019-12-05 10:53:06 -05:00
|
|
|
requester = await self.auth.get_user_by_req(request)
|
2015-01-23 06:47:15 -05:00
|
|
|
user = UserID.from_string(user_id)
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2023-10-26 15:11:24 -04:00
|
|
|
if not self.hs.config.server.presence_enabled:
|
2021-04-23 07:21:55 -04:00
|
|
|
return 200, {"presence": "offline"}
|
|
|
|
|
2016-02-15 12:10:40 -05:00
|
|
|
if requester.user != user:
|
2019-12-05 10:53:06 -05:00
|
|
|
allowed = await self.presence_handler.is_visible(
|
2016-02-15 12:10:40 -05:00
|
|
|
observed_user=user, observer_user=requester.user
|
|
|
|
)
|
|
|
|
|
|
|
|
if not allowed:
|
2016-02-18 12:01:53 -05:00
|
|
|
raise AuthError(403, "You are not allowed to see their presence.")
|
2016-02-15 12:10:40 -05:00
|
|
|
|
2019-12-05 10:53:06 -05:00
|
|
|
state = await self.presence_handler.get_state(target_user=user)
|
2021-08-26 07:53:52 -04:00
|
|
|
result = format_user_presence_state(
|
2020-06-11 14:13:53 -04:00
|
|
|
state, self.clock.time_msec(), include_user_id=False
|
|
|
|
)
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2021-08-26 07:53:52 -04:00
|
|
|
return 200, result
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2021-08-26 07:53:52 -04:00
|
|
|
async def on_PUT(
|
|
|
|
self, request: SynapseRequest, user_id: str
|
|
|
|
) -> Tuple[int, JsonDict]:
|
2019-12-05 10:53:06 -05:00
|
|
|
requester = await self.auth.get_user_by_req(request)
|
2015-01-23 06:47:15 -05:00
|
|
|
user = UserID.from_string(user_id)
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2016-02-15 12:10:40 -05:00
|
|
|
if requester.user != user:
|
|
|
|
raise AuthError(403, "Can only set your own presence state")
|
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
state = {}
|
|
|
|
|
2016-03-11 11:41:03 -05:00
|
|
|
content = parse_json_object_from_request(request)
|
|
|
|
|
|
|
|
try:
|
2014-09-03 10:37:10 -04:00
|
|
|
state["presence"] = content.pop("presence")
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
if "status_msg" in content:
|
|
|
|
state["status_msg"] = content.pop("status_msg")
|
2020-06-16 08:51:47 -04:00
|
|
|
if not isinstance(state["status_msg"], str):
|
2014-09-03 06:56:47 -04:00
|
|
|
raise SynapseError(400, "status_msg must be a string.")
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
if content:
|
|
|
|
raise KeyError()
|
2014-09-03 06:56:47 -04:00
|
|
|
except SynapseError as e:
|
|
|
|
raise e
|
2017-10-23 10:52:32 -04:00
|
|
|
except Exception:
|
2014-09-03 06:56:47 -04:00
|
|
|
raise SynapseError(400, "Unable to parse state")
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2023-10-26 15:11:24 -04:00
|
|
|
if self.hs.config.server.track_presence:
|
2023-08-28 13:08:49 -04:00
|
|
|
await self.presence_handler.set_state(user, requester.device_id, state)
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2019-08-30 11:28:26 -04:00
|
|
|
return 200, {}
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
|
2021-08-26 07:53:52 -04:00
|
|
|
def register_servlets(hs: "HomeServer", http_server: HttpServer) -> None:
|
2014-08-12 10:10:52 -04:00
|
|
|
PresenceStatusRestServlet(hs).register(http_server)
|