2014-08-12 10:10:52 -04:00
|
|
|
# -*- coding: utf-8 -*-
|
2015-01-06 08:21:39 -05:00
|
|
|
# Copyright 2014, 2015 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
|
|
|
|
2015-03-09 13:01:19 -04:00
|
|
|
from synapse.appservice.scheduler import AppServiceScheduler
|
2015-02-05 12:04:59 -05:00
|
|
|
from synapse.appservice.api import ApplicationServiceApi
|
2014-08-12 10:10:52 -04:00
|
|
|
from .register import RegistrationHandler
|
|
|
|
from .room import (
|
2014-08-27 12:59:36 -04:00
|
|
|
RoomCreationHandler, RoomMemberHandler, RoomListHandler
|
2014-08-12 10:10:52 -04:00
|
|
|
)
|
2014-08-27 12:59:36 -04:00
|
|
|
from .message import MessageHandler
|
2014-08-27 05:33:01 -04:00
|
|
|
from .events import EventStreamHandler, EventHandler
|
2014-08-12 10:10:52 -04:00
|
|
|
from .federation import FederationHandler
|
|
|
|
from .login import LoginHandler
|
|
|
|
from .profile import ProfileHandler
|
|
|
|
from .presence import PresenceHandler
|
|
|
|
from .directory import DirectoryHandler
|
2014-08-20 14:15:47 -04:00
|
|
|
from .typing import TypingNotificationHandler
|
2014-09-29 09:59:52 -04:00
|
|
|
from .admin import AdminHandler
|
2015-01-27 10:50:28 -05:00
|
|
|
from .appservice import ApplicationServicesHandler
|
2015-01-26 13:53:31 -05:00
|
|
|
from .sync import SyncHandler
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
|
|
|
|
class Handlers(object):
|
|
|
|
|
|
|
|
""" A collection of all the event handlers.
|
|
|
|
|
|
|
|
There's no need to lazily create these; we'll just make them all eagerly
|
|
|
|
at construction time.
|
|
|
|
"""
|
|
|
|
|
|
|
|
def __init__(self, hs):
|
|
|
|
self.registration_handler = RegistrationHandler(hs)
|
|
|
|
self.message_handler = MessageHandler(hs)
|
|
|
|
self.room_creation_handler = RoomCreationHandler(hs)
|
|
|
|
self.room_member_handler = RoomMemberHandler(hs)
|
|
|
|
self.event_stream_handler = EventStreamHandler(hs)
|
2014-08-27 05:33:01 -04:00
|
|
|
self.event_handler = EventHandler(hs)
|
2014-08-12 10:10:52 -04:00
|
|
|
self.federation_handler = FederationHandler(hs)
|
|
|
|
self.profile_handler = ProfileHandler(hs)
|
|
|
|
self.presence_handler = PresenceHandler(hs)
|
|
|
|
self.room_list_handler = RoomListHandler(hs)
|
|
|
|
self.login_handler = LoginHandler(hs)
|
|
|
|
self.directory_handler = DirectoryHandler(hs)
|
2014-08-20 14:15:47 -04:00
|
|
|
self.typing_notification_handler = TypingNotificationHandler(hs)
|
2014-09-29 09:59:52 -04:00
|
|
|
self.admin_handler = AdminHandler(hs)
|
2015-03-09 13:01:19 -04:00
|
|
|
asapi = ApplicationServiceApi(hs)
|
2015-02-05 12:04:59 -05:00
|
|
|
self.appservice_handler = ApplicationServicesHandler(
|
2015-03-09 13:01:19 -04:00
|
|
|
hs, asapi, AppServiceScheduler(
|
|
|
|
clock=hs.get_clock(),
|
|
|
|
store=hs.get_datastore(),
|
|
|
|
as_api=asapi
|
|
|
|
)
|
2015-02-05 12:04:59 -05:00
|
|
|
)
|
2015-01-26 13:53:31 -05:00
|
|
|
self.sync_handler = SyncHandler(hs)
|