1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
|
#
# Copyright 2022 aiohomekit team
#
# 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 aiohomekit.controller.abstract import FinishPairing
from aiohomekit.utils import check_pin_format, pair_with_auth
from aiohomekit.zeroconf import HomeKitService, ZeroconfDiscovery
from .connection import CoAPHomeKitConnection
from .pairing import CoAPPairing
class CoAPDiscovery(ZeroconfDiscovery):
"""
A discovered CoAP HAP device that is unpaired.
"""
def __init__(self, controller, description: HomeKitService):
super().__init__(description)
self.controller = controller
self.connection = CoAPHomeKitConnection(
None, description.address, description.port
)
def __repr__(self):
return f"CoAPDiscovery(host={self.description.address}, port={self.description.port})"
async def _ensure_connected(self):
"""
No preparation needs to be done for pair setup over CoAP.
"""
return
async def close(self):
"""
No teardown needs to be done for pair setup over CoAP.
"""
return
async def async_identify(self) -> None:
return await self.connection.do_identify()
async def async_start_pairing(self, alias: str) -> FinishPairing:
salt, srpB = await self.connection.do_pair_setup(
pair_with_auth(self.description.feature_flags)
)
async def finish_pairing(pin: str) -> CoAPPairing:
check_pin_format(pin)
pairing = await self.connection.do_pair_setup_finish(pin, salt, srpB)
pairing["AccessoryIP"] = self.description.address
pairing["AccessoryPort"] = self.description.port
pairing["Connection"] = "CoAP"
obj = self.controller.pairings[alias] = CoAPPairing(
self.controller, pairing
)
return obj
return finish_pairing
|