2014-08-26 13:57:46 -04:00
|
|
|
# -*- coding: utf-8 -*-
|
2016-01-06 23:26:29 -05:00
|
|
|
# Copyright 2014-2016 OpenMarket Ltd
|
2014-08-26 13:57:46 -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.types import StreamToken
|
|
|
|
|
2014-08-29 12:09:15 -04:00
|
|
|
from synapse.handlers.presence import PresenceEventSource
|
|
|
|
from synapse.handlers.room import RoomEventSource
|
2014-08-29 12:39:33 -04:00
|
|
|
from synapse.handlers.typing import TypingNotificationEventSource
|
2015-07-07 10:25:30 -04:00
|
|
|
from synapse.handlers.receipts import ReceiptEventSource
|
2015-11-18 10:31:04 -05:00
|
|
|
from synapse.handlers.account_data import AccountDataEventSource
|
2014-08-29 12:09:15 -04:00
|
|
|
|
2014-08-26 13:57:46 -04:00
|
|
|
|
|
|
|
class EventSources(object):
|
2014-08-27 10:33:52 -04:00
|
|
|
SOURCE_TYPES = {
|
|
|
|
"room": RoomEventSource,
|
2014-08-29 12:09:15 -04:00
|
|
|
"presence": PresenceEventSource,
|
2014-08-29 12:39:33 -04:00
|
|
|
"typing": TypingNotificationEventSource,
|
2015-07-07 10:25:30 -04:00
|
|
|
"receipt": ReceiptEventSource,
|
2015-11-18 10:31:04 -05:00
|
|
|
"account_data": AccountDataEventSource,
|
2014-08-27 10:33:52 -04:00
|
|
|
}
|
2014-08-26 13:57:46 -04:00
|
|
|
|
|
|
|
def __init__(self, hs):
|
2014-08-27 10:33:52 -04:00
|
|
|
self.sources = {
|
|
|
|
name: cls(hs)
|
|
|
|
for name, cls in EventSources.SOURCE_TYPES.items()
|
|
|
|
}
|
2016-03-03 09:57:45 -05:00
|
|
|
self.store = hs.get_datastore()
|
2014-08-26 13:57:46 -04:00
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
2016-10-24 08:35:51 -04:00
|
|
|
def get_current_token(self):
|
2016-03-03 09:57:45 -05:00
|
|
|
push_rules_key, _ = self.store.get_push_rules_stream_token()
|
2016-08-25 12:35:37 -04:00
|
|
|
to_device_key = self.store.get_to_device_stream_token()
|
2016-03-03 09:57:45 -05:00
|
|
|
|
2014-08-29 12:39:33 -04:00
|
|
|
token = StreamToken(
|
2014-08-29 13:39:09 -04:00
|
|
|
room_key=(
|
2016-10-24 08:35:51 -04:00
|
|
|
yield self.sources["room"].get_current_key()
|
|
|
|
),
|
|
|
|
presence_key=(
|
|
|
|
yield self.sources["presence"].get_current_key()
|
|
|
|
),
|
|
|
|
typing_key=(
|
|
|
|
yield self.sources["typing"].get_current_key()
|
|
|
|
),
|
|
|
|
receipt_key=(
|
|
|
|
yield self.sources["receipt"].get_current_key()
|
|
|
|
),
|
|
|
|
account_data_key=(
|
|
|
|
yield self.sources["account_data"].get_current_key()
|
|
|
|
),
|
|
|
|
push_rules_key=push_rules_key,
|
|
|
|
to_device_key=to_device_key,
|
|
|
|
)
|
|
|
|
defer.returnValue(token)
|
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
|
|
|
def get_current_token_for_room(self, room_id):
|
|
|
|
push_rules_key, _ = self.store.get_push_rules_stream_token()
|
|
|
|
to_device_key = self.store.get_to_device_stream_token()
|
|
|
|
|
|
|
|
token = StreamToken(
|
|
|
|
room_key=(
|
2016-10-24 08:39:49 -04:00
|
|
|
yield self.sources["room"].get_current_key_for_room(room_id)
|
2014-08-29 12:39:33 -04:00
|
|
|
),
|
|
|
|
presence_key=(
|
2014-08-29 14:15:23 -04:00
|
|
|
yield self.sources["presence"].get_current_key()
|
2014-08-29 12:39:33 -04:00
|
|
|
),
|
|
|
|
typing_key=(
|
2014-08-29 14:15:23 -04:00
|
|
|
yield self.sources["typing"].get_current_key()
|
2015-07-02 06:40:22 -04:00
|
|
|
),
|
2015-07-07 10:25:30 -04:00
|
|
|
receipt_key=(
|
|
|
|
yield self.sources["receipt"].get_current_key()
|
|
|
|
),
|
2015-11-18 10:31:04 -05:00
|
|
|
account_data_key=(
|
|
|
|
yield self.sources["account_data"].get_current_key()
|
2015-10-29 11:20:52 -04:00
|
|
|
),
|
2016-03-03 09:57:45 -05:00
|
|
|
push_rules_key=push_rules_key,
|
2016-08-25 12:35:37 -04:00
|
|
|
to_device_key=to_device_key,
|
2014-08-29 12:39:33 -04:00
|
|
|
)
|
2014-08-26 13:57:46 -04:00
|
|
|
defer.returnValue(token)
|