Hook up the event stream to typing notifications

This commit is contained in:
Paul "LeoNerd" Evans 2014-12-10 21:01:49 +00:00
parent 4006d58335
commit 1a75ff5c23
2 changed files with 82 additions and 2 deletions

View file

@ -183,12 +183,32 @@ class TypingNotificationHandler(BaseHandler):
class TypingNotificationEventSource(object):
def __init__(self, hs):
self.hs = hs
self.handler = hs.get_handlers().typing_notification_handler
def _make_event_for(self, room_id):
typing = self.handler._room_typing[room_id]
return {
"type": "m.typing",
"room_id": room_id,
"typing": [u.to_string() for u in typing],
}
def get_new_events_for_user(self, user, from_key, limit):
return ([], from_key)
from_key = int(from_key)
handler = self.handler
events = []
for room_id in handler._room_serials:
if handler._room_serials[room_id] <= from_key:
continue
# TODO: check if user is in room
events.append(self._make_event_for(room_id))
return (events, handler._latest_room_serial)
def get_current_key(self):
return 0
return self.handler._latest_room_serial
def get_pagination_rows(self, user, pagination_config, key):
return ([], pagination_config.from_key)