Skip to content
Snippets Groups Projects
Unverified Commit b47861d9 authored by J. Nick Koston's avatar J. Nick Koston Committed by GitHub
Browse files

Update shelly bluetooth scanner to version 2.0 (#107917)

parent c4fd45ef
No related branches found
No related tags found
No related merge requests found
...@@ -3,7 +3,7 @@ from __future__ import annotations ...@@ -3,7 +3,7 @@ from __future__ import annotations
from typing import TYPE_CHECKING from typing import TYPE_CHECKING
from aioshelly.ble import async_start_scanner from aioshelly.ble import async_start_scanner, create_scanner
from aioshelly.ble.const import ( from aioshelly.ble.const import (
BLE_SCAN_RESULT_EVENT, BLE_SCAN_RESULT_EVENT,
BLE_SCAN_RESULT_VERSION, BLE_SCAN_RESULT_VERSION,
...@@ -12,15 +12,11 @@ from aioshelly.ble.const import ( ...@@ -12,15 +12,11 @@ from aioshelly.ble.const import (
DEFAULT_WINDOW_MS, DEFAULT_WINDOW_MS,
) )
from homeassistant.components.bluetooth import ( from homeassistant.components.bluetooth import async_register_scanner
HaBluetoothConnector,
async_register_scanner,
)
from homeassistant.core import CALLBACK_TYPE, HomeAssistant, callback as hass_callback from homeassistant.core import CALLBACK_TYPE, HomeAssistant, callback as hass_callback
from homeassistant.helpers.device_registry import format_mac from homeassistant.helpers.device_registry import format_mac
from ..const import BLEScannerMode from ..const import BLEScannerMode
from .scanner import ShellyBLEScanner
if TYPE_CHECKING: if TYPE_CHECKING:
from ..coordinator import ShellyRpcCoordinator from ..coordinator import ShellyRpcCoordinator
...@@ -35,13 +31,7 @@ async def async_connect_scanner( ...@@ -35,13 +31,7 @@ async def async_connect_scanner(
device = coordinator.device device = coordinator.device
entry = coordinator.entry entry = coordinator.entry
source = format_mac(coordinator.mac).upper() source = format_mac(coordinator.mac).upper()
connector = HaBluetoothConnector( scanner = create_scanner(source, entry.title)
# no active connections to shelly yet
client=None, # type: ignore[arg-type]
source=source,
can_connect=lambda: False,
)
scanner = ShellyBLEScanner(source, entry.title, connector, False)
unload_callbacks = [ unload_callbacks = [
async_register_scanner(hass, scanner), async_register_scanner(hass, scanner),
scanner.async_setup(), scanner.async_setup(),
......
"""Bluetooth scanner for shelly."""
from __future__ import annotations
from typing import Any
from aioshelly.ble import parse_ble_scan_result_event
from aioshelly.ble.const import BLE_SCAN_RESULT_EVENT, BLE_SCAN_RESULT_VERSION
from homeassistant.components.bluetooth import MONOTONIC_TIME, BaseHaRemoteScanner
from homeassistant.core import callback
from ..const import LOGGER
class ShellyBLEScanner(BaseHaRemoteScanner):
"""Scanner for shelly."""
@callback
def async_on_event(self, event: dict[str, Any]) -> None:
"""Process an event from the shelly and ignore if its not a ble.scan_result."""
if event.get("event") != BLE_SCAN_RESULT_EVENT:
return
data = event["data"]
if data[0] != BLE_SCAN_RESULT_VERSION:
LOGGER.warning("Unsupported BLE scan result version: %s", data[0])
return
try:
address, rssi, parsed = parse_ble_scan_result_event(data)
except Exception as err: # pylint: disable=broad-except
# Broad exception catch because we have no
# control over the data that is coming in.
LOGGER.error("Failed to parse BLE event: %s", err, exc_info=True)
return
self._async_on_advertisement(
address,
rssi,
parsed.local_name,
parsed.service_uuids,
parsed.service_data,
parsed.manufacturer_data,
parsed.tx_power,
{},
MONOTONIC_TIME(),
)
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
"iot_class": "local_push", "iot_class": "local_push",
"loggers": ["aioshelly"], "loggers": ["aioshelly"],
"quality_scale": "platinum", "quality_scale": "platinum",
"requirements": ["aioshelly==7.1.0"], "requirements": ["aioshelly==8.0.0"],
"zeroconf": [ "zeroconf": [
{ {
"type": "_http._tcp.local.", "type": "_http._tcp.local.",
......
...@@ -359,7 +359,7 @@ aioruuvigateway==0.1.0 ...@@ -359,7 +359,7 @@ aioruuvigateway==0.1.0
aiosenz==1.0.0 aiosenz==1.0.0
# homeassistant.components.shelly # homeassistant.components.shelly
aioshelly==7.1.0 aioshelly==8.0.0
# homeassistant.components.skybell # homeassistant.components.skybell
aioskybell==22.7.0 aioskybell==22.7.0
......
...@@ -332,7 +332,7 @@ aioruuvigateway==0.1.0 ...@@ -332,7 +332,7 @@ aioruuvigateway==0.1.0
aiosenz==1.0.0 aiosenz==1.0.0
# homeassistant.components.shelly # homeassistant.components.shelly
aioshelly==7.1.0 aioshelly==8.0.0
# homeassistant.components.skybell # homeassistant.components.skybell
aioskybell==22.7.0 aioskybell==22.7.0
......
...@@ -11,8 +11,8 @@ from homeassistant.core import HomeAssistant ...@@ -11,8 +11,8 @@ from homeassistant.core import HomeAssistant
from .. import init_integration, inject_rpc_device_event from .. import init_integration, inject_rpc_device_event
async def test_scanner(hass: HomeAssistant, mock_rpc_device, monkeypatch) -> None: async def test_scanner_v1(hass: HomeAssistant, mock_rpc_device, monkeypatch) -> None:
"""Test injecting data into the scanner.""" """Test injecting data into the scanner v1."""
await init_integration( await init_integration(
hass, 2, options={CONF_BLE_SCANNER_MODE: BLEScannerMode.ACTIVE} hass, 2, options={CONF_BLE_SCANNER_MODE: BLEScannerMode.ACTIVE}
) )
...@@ -49,6 +49,48 @@ async def test_scanner(hass: HomeAssistant, mock_rpc_device, monkeypatch) -> Non ...@@ -49,6 +49,48 @@ async def test_scanner(hass: HomeAssistant, mock_rpc_device, monkeypatch) -> Non
assert ble_device is None assert ble_device is None
async def test_scanner_v2(hass: HomeAssistant, mock_rpc_device, monkeypatch) -> None:
"""Test injecting data into the scanner v2."""
await init_integration(
hass, 2, options={CONF_BLE_SCANNER_MODE: BLEScannerMode.ACTIVE}
)
assert mock_rpc_device.initialized is True
inject_rpc_device_event(
monkeypatch,
mock_rpc_device,
{
"events": [
{
"component": "script:1",
"data": [
2,
[
[
"aa:bb:cc:dd:ee:ff",
-62,
"AgEGCf9ZANH7O3TIkA==",
"EQcbxdWlAgC4n+YRTSIADaLLBhYADUgQYQ==",
]
],
],
"event": BLE_SCAN_RESULT_EVENT,
"id": 1,
"ts": 1668522399.2,
}
],
"ts": 1668522399.2,
},
)
ble_device = bluetooth.async_ble_device_from_address(
hass, "AA:BB:CC:DD:EE:FF", connectable=False
)
assert ble_device is not None
ble_device = bluetooth.async_ble_device_from_address(
hass, "AA:BB:CC:DD:EE:FF", connectable=True
)
assert ble_device is None
async def test_scanner_ignores_non_ble_events( async def test_scanner_ignores_non_ble_events(
hass: HomeAssistant, mock_rpc_device, monkeypatch hass: HomeAssistant, mock_rpc_device, monkeypatch
) -> None: ) -> None:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment