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
|
|
|
|
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)
|
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-04-23 07:21:55 -04:00
|
|
|
self._use_presence = hs.config.server.use_presence
|
|
|
|
|
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
|
|
|
|
2021-04-23 07:21:55 -04:00
|
|
|
if not self._use_presence:
|
|
|
|
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
|
|
|
|
2021-04-23 07:21:55 -04:00
|
|
|
if self._use_presence:
|
2019-12-05 10:53:06 -05:00
|
|
|
await self.presence_handler.set_state(user, 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)
|