Source code for wolk_gateway_module.protocol.registration_protocol

"""Handling of inbound and outbound messages related to device registraiton."""
#   Copyright 2019 WolkAbout Technology s.r.o.
#
#   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 abc import ABC
from abc import abstractmethod
from typing import List

from wolk_gateway_module.model.device_registration_request import (
    DeviceRegistrationRequest,
)
from wolk_gateway_module.model.device_registration_response import (
    DeviceRegistrationResponse,
)
from wolk_gateway_module.model.message import Message


[docs]class RegistrationProtocol(ABC): """Parse inbound messages and serialize outbound registration messages."""
[docs] @abstractmethod def get_inbound_topics_for_device(self, device_key: str) -> List[str]: """ Return list of inbound topics for given device key. :param device_key: Device key for which to create topics :type device_key: str :returns: inbound_topics :rtype: list """ pass
[docs] @abstractmethod def extract_key_from_message(self, message: Message) -> str: """ Return device key from message. :param message: Message received :type message: Message :returns: device_key :rtype: str """ pass
[docs] @abstractmethod def is_registration_response_message(self, message: Message) -> bool: """ Check if message is device registration response. :param message: Message received :type message: Message :returns: is_device_registration_response :rtype: bool """ pass
[docs] @abstractmethod def make_registration_message( self, request: DeviceRegistrationRequest ) -> Message: """ Make message from device registration request. :param request: Device registration request :type request: DeviceRegistrationRequest :returns: message :rtype: Message """ pass
[docs] @abstractmethod def make_registration_response( self, message: Message ) -> DeviceRegistrationResponse: """ Make device registration response from message. :param message: Message received :rtpe message: Message :returns: device_registration_response :rtype: DeviceRegistrationResponse """ pass