2014-08-12 10:10:52 -04:00
|
|
|
# -*- coding: utf-8 -*-
|
2016-01-06 23:26:29 -05:00
|
|
|
# Copyright 2014-2016 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
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
from .register import RegistrationHandler
|
|
|
|
from .room import (
|
2016-05-31 06:05:16 -04:00
|
|
|
RoomCreationHandler, RoomContextHandler,
|
2014-08-12 10:10:52 -04:00
|
|
|
)
|
2016-03-31 08:08:45 -04:00
|
|
|
from .room_member import RoomMemberHandler
|
2014-08-27 12:59:36 -04:00
|
|
|
from .message import MessageHandler
|
2014-08-12 10:10:52 -04:00
|
|
|
from .federation import FederationHandler
|
|
|
|
from .profile import ProfileHandler
|
|
|
|
from .directory import DirectoryHandler
|
2014-09-29 09:59:52 -04:00
|
|
|
from .admin import AdminHandler
|
2015-04-15 10:50:38 -04:00
|
|
|
from .identity import IdentityHandler
|
2015-10-09 10:48:31 -04:00
|
|
|
from .search import SearchHandler
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
|
|
|
|
class Handlers(object):
|
|
|
|
|
2016-07-19 05:28:27 -04:00
|
|
|
""" Deprecated. A collection of handlers.
|
2016-07-19 05:18:40 -04:00
|
|
|
|
|
|
|
At some point most of the classes whose name ended "Handler" were
|
|
|
|
accessed through this class.
|
|
|
|
|
|
|
|
However this makes it painful to unit test the handlers and to run cut
|
|
|
|
down versions of synapse that only use specific handlers because using a
|
|
|
|
single handler required creating all of the handlers. So some of the
|
|
|
|
handlers have been lifted out of the Handlers object and are now accessed
|
|
|
|
directly through the homeserver object itself.
|
|
|
|
|
|
|
|
Any new handlers should follow the new pattern of being accessed through
|
|
|
|
the homeserver object and should not be added to the Handlers object.
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2016-07-19 05:18:40 -04:00
|
|
|
The remaining handlers should be moved out of the handlers object.
|
2014-08-12 10:10:52 -04:00
|
|
|
"""
|
|
|
|
|
|
|
|
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.federation_handler = FederationHandler(hs)
|
|
|
|
self.profile_handler = ProfileHandler(hs)
|
|
|
|
self.directory_handler = DirectoryHandler(hs)
|
2014-09-29 09:59:52 -04:00
|
|
|
self.admin_handler = AdminHandler(hs)
|
2015-04-15 10:50:38 -04:00
|
|
|
self.identity_handler = IdentityHandler(hs)
|
2015-10-09 10:48:31 -04:00
|
|
|
self.search_handler = SearchHandler(hs)
|
2015-10-28 09:45:56 -04:00
|
|
|
self.room_context_handler = RoomContextHandler(hs)
|