2014-08-27 12:59:36 -04:00
|
|
|
# -*- coding: utf-8 -*-
|
2014-09-03 12:29:13 -04:00
|
|
|
# Copyright 2014 OpenMarket Ltd
|
2014-08-27 12:59:36 -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.
|
|
|
|
|
|
|
|
from twisted.internet import defer
|
|
|
|
|
|
|
|
from synapse.api.constants import Membership
|
|
|
|
from synapse.api.errors import RoomError
|
|
|
|
from synapse.streams.config import PaginationConfig
|
2014-09-05 16:35:56 -04:00
|
|
|
from ._base import BaseHandler
|
2014-08-27 12:59:36 -04:00
|
|
|
|
|
|
|
import logging
|
|
|
|
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
2014-09-05 16:35:56 -04:00
|
|
|
class MessageHandler(BaseHandler):
|
2014-08-27 12:59:36 -04:00
|
|
|
|
|
|
|
def __init__(self, hs):
|
|
|
|
super(MessageHandler, self).__init__(hs)
|
|
|
|
self.hs = hs
|
|
|
|
self.clock = hs.get_clock()
|
|
|
|
self.event_factory = hs.get_event_factory()
|
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
|
|
|
def get_message(self, msg_id=None, room_id=None, sender_id=None,
|
|
|
|
user_id=None):
|
|
|
|
""" Retrieve a message.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
msg_id (str): The message ID to obtain.
|
|
|
|
room_id (str): The room where the message resides.
|
|
|
|
sender_id (str): The user ID of the user who sent the message.
|
|
|
|
user_id (str): The user ID of the user making this request.
|
|
|
|
Returns:
|
|
|
|
The message, or None if no message exists.
|
|
|
|
Raises:
|
|
|
|
SynapseError if something went wrong.
|
|
|
|
"""
|
|
|
|
yield self.auth.check_joined_room(room_id, user_id)
|
|
|
|
|
|
|
|
# Pull out the message from the db
|
|
|
|
# msg = yield self.store.get_message(
|
|
|
|
# room_id=room_id,
|
|
|
|
# msg_id=msg_id,
|
|
|
|
# user_id=sender_id
|
|
|
|
# )
|
|
|
|
|
2014-11-11 13:00:13 -05:00
|
|
|
# TODO (erikj): Once we work out the correct c-s api we need to think
|
|
|
|
# on how to do this.
|
2014-08-27 12:59:36 -04:00
|
|
|
|
|
|
|
defer.returnValue(None)
|
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
2014-10-17 11:55:05 -04:00
|
|
|
def send_message(self, event=None, suppress_auth=False):
|
2014-08-27 12:59:36 -04:00
|
|
|
""" Send a message.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
event : The message event to store.
|
|
|
|
suppress_auth (bool) : True to suppress auth for this message. This
|
|
|
|
is primarily so the home server can inject messages into rooms at
|
|
|
|
will.
|
|
|
|
Raises:
|
|
|
|
SynapseError if something went wrong.
|
|
|
|
"""
|
2014-09-02 13:22:15 -04:00
|
|
|
|
|
|
|
self.ratelimit(event.user_id)
|
2014-09-01 10:58:16 -04:00
|
|
|
# TODO(paul): Why does 'event' not have a 'user' object?
|
|
|
|
user = self.hs.parse_userid(event.user_id)
|
2014-09-02 05:52:39 -04:00
|
|
|
assert user.is_mine, "User must be our own: %s" % (user,)
|
2014-09-01 10:58:16 -04:00
|
|
|
|
2014-11-06 10:10:55 -05:00
|
|
|
snapshot = yield self.store.snapshot_room(event)
|
2014-08-27 12:59:36 -04:00
|
|
|
|
2014-10-15 11:06:59 -04:00
|
|
|
yield self._on_new_room_event(
|
|
|
|
event, snapshot, suppress_auth=suppress_auth
|
|
|
|
)
|
2014-08-27 12:59:36 -04:00
|
|
|
|
2014-09-01 11:16:35 -04:00
|
|
|
self.hs.get_handlers().presence_handler.bump_presence_active_time(
|
|
|
|
user
|
|
|
|
)
|
|
|
|
|
2014-08-27 12:59:36 -04:00
|
|
|
@defer.inlineCallbacks
|
|
|
|
def get_messages(self, user_id=None, room_id=None, pagin_config=None,
|
|
|
|
feedback=False):
|
|
|
|
"""Get messages in a room.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
user_id (str): The user requesting messages.
|
|
|
|
room_id (str): The room they want messages from.
|
|
|
|
pagin_config (synapse.api.streams.PaginationConfig): The pagination
|
|
|
|
config rules to apply, if any.
|
|
|
|
feedback (bool): True to get compressed feedback with the messages
|
|
|
|
Returns:
|
|
|
|
dict: Pagination API results
|
|
|
|
"""
|
|
|
|
yield self.auth.check_joined_room(room_id, user_id)
|
|
|
|
|
|
|
|
data_source = self.hs.get_event_sources().sources["room"]
|
|
|
|
|
|
|
|
if not pagin_config.from_token:
|
2014-11-11 13:00:13 -05:00
|
|
|
pagin_config.from_token = (
|
|
|
|
yield self.hs.get_event_sources().get_current_token()
|
|
|
|
)
|
2014-08-27 12:59:36 -04:00
|
|
|
|
|
|
|
user = self.hs.parse_userid(user_id)
|
|
|
|
|
2014-10-29 11:57:23 -04:00
|
|
|
events, next_key = yield data_source.get_pagination_rows(
|
|
|
|
user, pagin_config.get_source_config("room"), room_id
|
|
|
|
)
|
|
|
|
|
|
|
|
next_token = pagin_config.from_token.copy_and_replace(
|
|
|
|
"room_key", next_key
|
2014-08-27 12:59:36 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
chunk = {
|
2014-09-15 08:26:05 -04:00
|
|
|
"chunk": [self.hs.serialize_event(e) for e in events],
|
2014-08-27 12:59:36 -04:00
|
|
|
"start": pagin_config.from_token.to_string(),
|
|
|
|
"end": next_token.to_string(),
|
|
|
|
}
|
|
|
|
|
|
|
|
defer.returnValue(chunk)
|
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
2014-10-17 11:55:05 -04:00
|
|
|
def store_room_data(self, event=None):
|
2014-08-27 12:59:36 -04:00
|
|
|
""" Stores data for a room.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
event : The room path event
|
|
|
|
stamp_event (bool) : True to stamp event content with server keys.
|
|
|
|
Raises:
|
|
|
|
SynapseError if something went wrong.
|
|
|
|
"""
|
|
|
|
|
2014-11-06 10:10:55 -05:00
|
|
|
snapshot = yield self.store.snapshot_room(event)
|
2014-08-27 12:59:36 -04:00
|
|
|
|
|
|
|
yield self._on_new_room_event(event, snapshot)
|
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
|
|
|
def get_room_data(self, user_id=None, room_id=None,
|
2014-11-11 12:55:32 -05:00
|
|
|
event_type=None, state_key=""):
|
2014-08-27 12:59:36 -04:00
|
|
|
""" Get data from a room.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
event : The room path event
|
|
|
|
Returns:
|
|
|
|
The path data content.
|
|
|
|
Raises:
|
|
|
|
SynapseError if something went wrong.
|
|
|
|
"""
|
2014-11-11 12:55:32 -05:00
|
|
|
have_joined = yield self.auth.check_joined_room(room_id, user_id)
|
|
|
|
if not have_joined:
|
|
|
|
raise RoomError(403, "User not in room.")
|
2014-08-27 12:59:36 -04:00
|
|
|
|
2014-10-17 13:56:42 -04:00
|
|
|
data = yield self.state_handler.get_current_state(
|
2014-08-27 12:59:36 -04:00
|
|
|
room_id, event_type, state_key
|
|
|
|
)
|
|
|
|
defer.returnValue(data)
|
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
|
|
|
def get_feedback(self, event_id):
|
|
|
|
# yield self.auth.check_joined_room(room_id, user_id)
|
|
|
|
|
|
|
|
# Pull out the feedback from the db
|
|
|
|
fb = yield self.store.get_feedback(event_id)
|
|
|
|
|
|
|
|
if fb:
|
|
|
|
defer.returnValue(fb)
|
|
|
|
defer.returnValue(None)
|
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
2014-10-17 11:55:05 -04:00
|
|
|
def send_feedback(self, event):
|
2014-11-06 10:10:55 -05:00
|
|
|
snapshot = yield self.store.snapshot_room(event)
|
2014-08-27 12:59:36 -04:00
|
|
|
|
|
|
|
# store message in db
|
|
|
|
yield self._on_new_room_event(event, snapshot)
|
|
|
|
|
2014-09-23 10:35:58 -04:00
|
|
|
@defer.inlineCallbacks
|
|
|
|
def get_state_events(self, user_id, room_id):
|
|
|
|
"""Retrieve all state events for a given room.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
user_id(str): The user requesting state events.
|
|
|
|
room_id(str): The room ID to get all state events from.
|
|
|
|
Returns:
|
|
|
|
A list of dicts representing state events. [{}, {}, {}]
|
|
|
|
"""
|
|
|
|
yield self.auth.check_joined_room(room_id, user_id)
|
|
|
|
|
|
|
|
# TODO: This is duplicating logic from snapshot_all_rooms
|
2014-10-17 13:56:42 -04:00
|
|
|
current_state = yield self.state_handler.get_current_state(room_id)
|
2014-09-23 10:35:58 -04:00
|
|
|
defer.returnValue([self.hs.serialize_event(c) for c in current_state])
|
|
|
|
|
2014-08-27 12:59:36 -04:00
|
|
|
@defer.inlineCallbacks
|
|
|
|
def snapshot_all_rooms(self, user_id=None, pagin_config=None,
|
|
|
|
feedback=False):
|
|
|
|
"""Retrieve a snapshot of all rooms the user is invited or has joined.
|
|
|
|
|
|
|
|
This snapshot may include messages for all rooms where the user is
|
|
|
|
joined, depending on the pagination config.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
user_id (str): The ID of the user making the request.
|
|
|
|
pagin_config (synapse.api.streams.PaginationConfig): The pagination
|
|
|
|
config used to determine how many messages *PER ROOM* to return.
|
|
|
|
feedback (bool): True to get feedback along with these messages.
|
|
|
|
Returns:
|
|
|
|
A list of dicts with "room_id" and "membership" keys for all rooms
|
|
|
|
the user is currently invited or joined in on. Rooms where the user
|
|
|
|
is joined on, may return a "messages" key with messages, depending
|
|
|
|
on the specified PaginationConfig.
|
|
|
|
"""
|
|
|
|
room_list = yield self.store.get_rooms_for_user_where_membership_is(
|
|
|
|
user_id=user_id,
|
|
|
|
membership_list=[Membership.INVITE, Membership.JOIN]
|
|
|
|
)
|
|
|
|
|
|
|
|
user = self.hs.parse_userid(user_id)
|
|
|
|
|
|
|
|
rooms_ret = []
|
|
|
|
|
|
|
|
now_token = yield self.hs.get_event_sources().get_current_token()
|
|
|
|
|
|
|
|
presence_stream = self.hs.get_event_sources().sources["presence"]
|
|
|
|
pagination_config = PaginationConfig(from_token=now_token)
|
|
|
|
presence, _ = yield presence_stream.get_pagination_rows(
|
2014-10-29 11:57:23 -04:00
|
|
|
user, pagination_config.get_source_config("presence"), None
|
2014-08-27 12:59:36 -04:00
|
|
|
)
|
|
|
|
|
2014-09-17 11:05:30 -04:00
|
|
|
public_rooms = yield self.store.get_rooms(is_public=True)
|
|
|
|
public_room_ids = [r["room_id"] for r in public_rooms]
|
|
|
|
|
2014-08-27 12:59:36 -04:00
|
|
|
limit = pagin_config.limit
|
|
|
|
if not limit:
|
|
|
|
limit = 10
|
|
|
|
|
|
|
|
for event in room_list:
|
|
|
|
d = {
|
|
|
|
"room_id": event.room_id,
|
|
|
|
"membership": event.membership,
|
2014-11-11 13:00:13 -05:00
|
|
|
"visibility": (
|
|
|
|
"public" if event.room_id in public_room_ids
|
|
|
|
else "private"
|
|
|
|
),
|
2014-08-27 12:59:36 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if event.membership == Membership.INVITE:
|
|
|
|
d["inviter"] = event.user_id
|
|
|
|
|
|
|
|
rooms_ret.append(d)
|
|
|
|
|
|
|
|
if event.membership != Membership.JOIN:
|
|
|
|
continue
|
|
|
|
try:
|
|
|
|
messages, token = yield self.store.get_recent_events_for_room(
|
|
|
|
event.room_id,
|
|
|
|
limit=limit,
|
2014-08-29 13:39:09 -04:00
|
|
|
end_token=now_token.room_key,
|
2014-08-27 12:59:36 -04:00
|
|
|
)
|
|
|
|
|
2014-08-29 13:39:09 -04:00
|
|
|
start_token = now_token.copy_and_replace("room_key", token[0])
|
|
|
|
end_token = now_token.copy_and_replace("room_key", token[1])
|
2014-08-29 08:28:02 -04:00
|
|
|
|
2014-08-27 12:59:36 -04:00
|
|
|
d["messages"] = {
|
2014-09-15 08:26:05 -04:00
|
|
|
"chunk": [self.hs.serialize_event(m) for m in messages],
|
2014-08-29 08:28:02 -04:00
|
|
|
"start": start_token.to_string(),
|
|
|
|
"end": end_token.to_string(),
|
2014-08-27 12:59:36 -04:00
|
|
|
}
|
|
|
|
|
2014-10-17 13:56:42 -04:00
|
|
|
current_state = yield self.state_handler.get_current_state(
|
2014-08-27 12:59:36 -04:00
|
|
|
event.room_id
|
|
|
|
)
|
2014-11-11 13:00:13 -05:00
|
|
|
d["state"] = [
|
|
|
|
self.hs.serialize_event(c) for c in current_state
|
|
|
|
]
|
2014-08-27 12:59:36 -04:00
|
|
|
except:
|
|
|
|
logger.exception("Failed to get snapshot")
|
|
|
|
|
|
|
|
ret = {
|
|
|
|
"rooms": rooms_ret,
|
|
|
|
"presence": presence,
|
|
|
|
"end": now_token.to_string()
|
|
|
|
}
|
|
|
|
|
|
|
|
defer.returnValue(ret)
|
|
|
|
|
2014-11-10 14:02:19 -05:00
|
|
|
@defer.inlineCallbacks
|
2014-11-18 11:02:44 -05:00
|
|
|
def room_initial_sync(self, user_id, room_id, pagin_config=None,
|
2014-11-10 14:02:19 -05:00
|
|
|
feedback=False):
|
|
|
|
yield self.auth.check_joined_room(room_id, user_id)
|
2014-08-27 12:59:36 -04:00
|
|
|
|
2014-11-18 10:28:58 -05:00
|
|
|
# TODO(paul): I wish I was called with user objects not user_id
|
|
|
|
# strings...
|
|
|
|
auth_user = self.hs.parse_userid(user_id)
|
|
|
|
|
2014-11-10 14:34:47 -05:00
|
|
|
# TODO: These concurrently
|
2014-11-10 14:29:58 -05:00
|
|
|
state_tuples = yield self.store.get_current_state(room_id)
|
|
|
|
state = [self.hs.serialize_event(x) for x in state_tuples]
|
|
|
|
|
2014-11-10 14:34:47 -05:00
|
|
|
member_event = (yield self.store.get_room_member(
|
|
|
|
user_id=user_id,
|
|
|
|
room_id=room_id
|
|
|
|
))
|
|
|
|
|
2014-11-18 09:07:51 -05:00
|
|
|
now_token = yield self.hs.get_event_sources().get_current_token()
|
|
|
|
|
|
|
|
limit = pagin_config.limit if pagin_config else None
|
|
|
|
if limit is None:
|
|
|
|
limit = 10
|
|
|
|
|
|
|
|
messages, token = yield self.store.get_recent_events_for_room(
|
|
|
|
room_id,
|
|
|
|
limit=limit,
|
|
|
|
end_token=now_token.room_key,
|
|
|
|
)
|
|
|
|
|
|
|
|
start_token = now_token.copy_and_replace("room_key", token[0])
|
|
|
|
end_token = now_token.copy_and_replace("room_key", token[1])
|
|
|
|
|
2014-11-18 10:28:58 -05:00
|
|
|
room_members = yield self.store.get_room_members(room_id)
|
|
|
|
|
|
|
|
presence_handler = self.hs.get_handlers().presence_handler
|
|
|
|
presence = []
|
|
|
|
for m in room_members:
|
|
|
|
try:
|
|
|
|
member_presence = yield presence_handler.get_state(
|
|
|
|
target_user=self.hs.parse_userid(m.user_id),
|
|
|
|
auth_user=auth_user,
|
|
|
|
as_event=True,
|
|
|
|
)
|
|
|
|
presence.append(member_presence)
|
2014-11-18 11:46:12 -05:00
|
|
|
except Exception:
|
2014-11-18 10:28:58 -05:00
|
|
|
logger.exception("Failed to get member presence of %r",
|
|
|
|
m.user_id
|
|
|
|
)
|
|
|
|
|
2014-11-10 14:02:19 -05:00
|
|
|
defer.returnValue({
|
2014-11-10 14:34:47 -05:00
|
|
|
"membership": member_event.membership,
|
2014-11-10 14:02:19 -05:00
|
|
|
"room_id": room_id,
|
2014-11-18 09:07:51 -05:00
|
|
|
"messages": {
|
|
|
|
"chunk": [self.hs.serialize_event(m) for m in messages],
|
|
|
|
"start": start_token.to_string(),
|
|
|
|
"end": end_token.to_string(),
|
|
|
|
},
|
2014-11-10 14:29:58 -05:00
|
|
|
"state": state,
|
2014-11-18 10:28:58 -05:00
|
|
|
"presence": presence
|
2014-11-10 14:02:19 -05:00
|
|
|
})
|