forked-synapse/synapse/rest/client/v1/presence.py

97 lines
3.2 KiB
Python
Raw Normal View History

2014-08-12 14:10:52 +00:00
# -*- coding: utf-8 -*-
2016-01-07 04:26:29 +00:00
# Copyright 2014-2016 OpenMarket Ltd
2014-08-12 14:10:52 +00: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 14:10:52 +00:00
""" This module contains REST servlets to do with presence: /presence/<paths>
"""
2018-07-09 06:09:20 +00:00
import logging
from six import string_types
from synapse.api.errors import AuthError, SynapseError
from synapse.handlers.presence import format_user_presence_state
from synapse.http.servlet import RestServlet, parse_json_object_from_request
from synapse.rest.client.v2_alpha._base import client_patterns
2018-07-09 06:09:20 +00:00
from synapse.types import UserID
2014-08-12 14:10:52 +00:00
logger = logging.getLogger(__name__)
class PresenceStatusRestServlet(RestServlet):
PATTERNS = client_patterns("/presence/(?P<user_id>[^/]*)/status", v1=True)
2014-08-12 14:10:52 +00:00
def __init__(self, hs):
super(PresenceStatusRestServlet, self).__init__()
self.hs = hs
self.presence_handler = hs.get_presence_handler()
self.clock = hs.get_clock()
self.auth = hs.get_auth()
2019-12-05 15:53:06 +00:00
async def on_GET(self, request, user_id):
requester = await self.auth.get_user_by_req(request)
user = UserID.from_string(user_id)
2014-08-12 14:10:52 +00:00
2016-02-15 17:10:40 +00:00
if requester.user != user:
2019-12-05 15:53:06 +00:00
allowed = await self.presence_handler.is_visible(
2019-06-20 09:32:02 +00:00
observed_user=user, observer_user=requester.user
2016-02-15 17:10:40 +00:00
)
if not allowed:
2016-02-18 17:01:53 +00:00
raise AuthError(403, "You are not allowed to see their presence.")
2016-02-15 17:10:40 +00:00
2019-12-05 15:53:06 +00:00
state = await self.presence_handler.get_state(target_user=user)
state = format_user_presence_state(
state, self.clock.time_msec(), include_user_id=False
)
2014-08-12 14:10:52 +00:00
return 200, state
2014-08-12 14:10:52 +00:00
2019-12-05 15:53:06 +00:00
async def on_PUT(self, request, user_id):
requester = await self.auth.get_user_by_req(request)
user = UserID.from_string(user_id)
2014-08-12 14:10:52 +00:00
2016-02-15 17:10:40 +00:00
if requester.user != user:
raise AuthError(403, "Can only set your own presence state")
2014-08-12 14:10:52 +00:00
state = {}
content = parse_json_object_from_request(request)
try:
state["presence"] = content.pop("presence")
2014-08-12 14:10:52 +00:00
if "status_msg" in content:
state["status_msg"] = content.pop("status_msg")
if not isinstance(state["status_msg"], string_types):
raise SynapseError(400, "status_msg must be a string.")
2014-08-12 14:10:52 +00:00
if content:
raise KeyError()
except SynapseError as e:
raise e
except Exception:
raise SynapseError(400, "Unable to parse state")
2014-08-12 14:10:52 +00:00
if self.hs.config.use_presence:
2019-12-05 15:53:06 +00:00
await self.presence_handler.set_state(user, state)
2014-08-12 14:10:52 +00:00
return 200, {}
2014-08-12 14:10:52 +00:00
def on_OPTIONS(self, request):
return 200, {}
2014-08-12 14:10:52 +00:00
def register_servlets(hs, http_server):
PresenceStatusRestServlet(hs).register(http_server)