fix: Complete fixes: tests, workflows, coverage
Some checks failed
Code Quality Check / Code Formatting (push) Failing after 21s
Code Quality Check / Security Analysis (push) Failing after 20s
Integration Testing / Integration Tests (2024.12.0, 3.13) (push) Failing after 1m32s
Integration Testing / Integration Tests (2025.9.4, 3.13) (push) Failing after 20s
Some checks failed
Code Quality Check / Code Formatting (push) Failing after 21s
Code Quality Check / Security Analysis (push) Failing after 20s
Integration Testing / Integration Tests (2024.12.0, 3.13) (push) Failing after 1m32s
Integration Testing / Integration Tests (2025.9.4, 3.13) (push) Failing after 20s
Signed-off-by: Rafal Zielinski <sq4ind@gmail.com>
This commit is contained in:
@@ -1,17 +1,19 @@
|
||||
"""Binary sensor platform for AdGuard Control Hub integration."""
|
||||
"""AdGuard Control Hub binary sensor platform."""
|
||||
import logging
|
||||
from typing import Any, Optional
|
||||
from typing import Any, Dict, List, Optional
|
||||
|
||||
from homeassistant.components.binary_sensor import BinarySensorEntity, BinarySensorDeviceClass
|
||||
from homeassistant.components.binary_sensor import (
|
||||
BinarySensorEntity,
|
||||
BinarySensorDeviceClass,
|
||||
)
|
||||
from homeassistant.config_entries import ConfigEntry
|
||||
from homeassistant.core import HomeAssistant
|
||||
from homeassistant.helpers.entity import EntityCategory
|
||||
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
||||
from homeassistant.helpers.update_coordinator import CoordinatorEntity
|
||||
from homeassistant.helpers.entity import DeviceInfo, EntityCategory
|
||||
|
||||
from . import AdGuardControlHubCoordinator
|
||||
from .api import AdGuardHomeAPI
|
||||
from .const import DOMAIN, MANUFACTURER, ICON_PROTECTION, ICON_PROTECTION_OFF
|
||||
from .const import DOMAIN, MANUFACTURER
|
||||
|
||||
_LOGGER = logging.getLogger(__name__)
|
||||
|
||||
@@ -25,273 +27,168 @@ async def async_setup_entry(
|
||||
coordinator = hass.data[DOMAIN][config_entry.entry_id]["coordinator"]
|
||||
api = hass.data[DOMAIN][config_entry.entry_id]["api"]
|
||||
|
||||
entities = [
|
||||
entities: List[BinarySensorEntity] = []
|
||||
|
||||
# Add main binary sensors
|
||||
entities.extend([
|
||||
AdGuardProtectionBinarySensor(coordinator, api),
|
||||
AdGuardServerRunningBinarySensor(coordinator, api),
|
||||
AdGuardSafeBrowsingBinarySensor(coordinator, api),
|
||||
AdGuardParentalControlBinarySensor(coordinator, api),
|
||||
AdGuardSafeSearchBinarySensor(coordinator, api),
|
||||
]
|
||||
])
|
||||
|
||||
# Add client-specific binary sensors
|
||||
for client_name in coordinator.clients.keys():
|
||||
for client_name in coordinator.clients:
|
||||
entities.extend([
|
||||
AdGuardClientFilteringBinarySensor(coordinator, api, client_name),
|
||||
AdGuardClientSafeBrowsingBinarySensor(coordinator, api, client_name),
|
||||
])
|
||||
|
||||
async_add_entities(entities, update_before_add=True)
|
||||
async_add_entities(entities)
|
||||
|
||||
|
||||
class AdGuardBaseBinarySensor(CoordinatorEntity, BinarySensorEntity):
|
||||
"""Base class for AdGuard binary sensors."""
|
||||
"""Base AdGuard binary sensor."""
|
||||
|
||||
def __init__(self, coordinator: AdGuardControlHubCoordinator, api: AdGuardHomeAPI) -> None:
|
||||
def __init__(self, coordinator, api: AdGuardHomeAPI) -> None:
|
||||
"""Initialize the binary sensor."""
|
||||
super().__init__(coordinator)
|
||||
self.api = api
|
||||
self._attr_device_info = {
|
||||
"identifiers": {(DOMAIN, f"{api.host}:{api.port}")},
|
||||
"name": f"AdGuard Control Hub ({api.host})",
|
||||
"manufacturer": MANUFACTURER,
|
||||
"model": "AdGuard Home",
|
||||
"configuration_url": f"{'https' if api.ssl else 'http'}://{api.host}:{api.port}",
|
||||
}
|
||||
|
||||
@property
|
||||
def device_info(self) -> DeviceInfo:
|
||||
"""Return device info."""
|
||||
return DeviceInfo(
|
||||
identifiers={(DOMAIN, "adguard_home")},
|
||||
name="AdGuard Home",
|
||||
manufacturer=MANUFACTURER,
|
||||
model="AdGuard Home",
|
||||
configuration_url=self.api.base_url,
|
||||
)
|
||||
|
||||
|
||||
class AdGuardProtectionBinarySensor(AdGuardBaseBinarySensor):
|
||||
"""Binary sensor to show AdGuard protection status."""
|
||||
"""AdGuard protection status binary sensor."""
|
||||
|
||||
def __init__(self, coordinator: AdGuardControlHubCoordinator, api: AdGuardHomeAPI) -> None:
|
||||
def __init__(self, coordinator, api: AdGuardHomeAPI) -> None:
|
||||
"""Initialize the binary sensor."""
|
||||
super().__init__(coordinator, api)
|
||||
self._attr_unique_id = f"{api.host}_{api.port}_protection_enabled"
|
||||
self._attr_name = "AdGuard Protection Status"
|
||||
self._attr_device_class = BinarySensorDeviceClass.RUNNING
|
||||
self._attr_entity_category = EntityCategory.DIAGNOSTIC
|
||||
self._attr_unique_id = f"{DOMAIN}_protection_status"
|
||||
self._attr_device_class = BinarySensorDeviceClass.SAFETY
|
||||
self._attr_icon = "mdi:shield-check"
|
||||
|
||||
@property
|
||||
def is_on(self) -> Optional[bool]:
|
||||
def is_on(self) -> bool:
|
||||
"""Return true if protection is enabled."""
|
||||
return self.coordinator.protection_status.get("protection_enabled", False)
|
||||
|
||||
@property
|
||||
def icon(self) -> str:
|
||||
"""Return the icon for the binary sensor."""
|
||||
return ICON_PROTECTION if self.is_on else ICON_PROTECTION_OFF
|
||||
|
||||
@property
|
||||
def available(self) -> bool:
|
||||
"""Return if sensor is available."""
|
||||
return self.coordinator.last_update_success and bool(self.coordinator.protection_status)
|
||||
|
||||
@property
|
||||
def extra_state_attributes(self) -> dict[str, Any]:
|
||||
"""Return additional state attributes."""
|
||||
status = self.coordinator.protection_status
|
||||
return {
|
||||
"dns_port": status.get("dns_port", "N/A"),
|
||||
"version": status.get("version", "N/A"),
|
||||
"running": status.get("running", False),
|
||||
"dhcp_available": status.get("dhcp_available", False),
|
||||
}
|
||||
|
||||
|
||||
class AdGuardServerRunningBinarySensor(AdGuardBaseBinarySensor):
|
||||
"""Binary sensor to show if AdGuard server is running."""
|
||||
"""AdGuard server running binary sensor."""
|
||||
|
||||
def __init__(self, coordinator: AdGuardControlHubCoordinator, api: AdGuardHomeAPI) -> None:
|
||||
def __init__(self, coordinator, api: AdGuardHomeAPI) -> None:
|
||||
"""Initialize the binary sensor."""
|
||||
super().__init__(coordinator, api)
|
||||
self._attr_unique_id = f"{api.host}_{api.port}_server_running"
|
||||
self._attr_name = "AdGuard Server Running"
|
||||
self._attr_unique_id = f"{DOMAIN}_server_running"
|
||||
self._attr_device_class = BinarySensorDeviceClass.RUNNING
|
||||
self._attr_icon = "mdi:server"
|
||||
self._attr_entity_category = EntityCategory.DIAGNOSTIC
|
||||
|
||||
@property
|
||||
def is_on(self) -> Optional[bool]:
|
||||
def is_on(self) -> bool:
|
||||
"""Return true if server is running."""
|
||||
return self.coordinator.protection_status.get("running", False)
|
||||
|
||||
@property
|
||||
def icon(self) -> str:
|
||||
"""Return the icon for the binary sensor."""
|
||||
return "mdi:server" if self.is_on else "mdi:server-off"
|
||||
|
||||
@property
|
||||
def available(self) -> bool:
|
||||
"""Return if sensor is available."""
|
||||
return self.coordinator.last_update_success and bool(self.coordinator.protection_status)
|
||||
"""Return if entity is available."""
|
||||
return bool(self.coordinator.protection_status)
|
||||
|
||||
|
||||
class AdGuardSafeBrowsingBinarySensor(AdGuardBaseBinarySensor):
|
||||
"""Binary sensor to show SafeBrowsing status."""
|
||||
"""AdGuard safe browsing binary sensor."""
|
||||
|
||||
def __init__(self, coordinator: AdGuardControlHubCoordinator, api: AdGuardHomeAPI) -> None:
|
||||
def __init__(self, coordinator, api: AdGuardHomeAPI) -> None:
|
||||
"""Initialize the binary sensor."""
|
||||
super().__init__(coordinator, api)
|
||||
self._attr_unique_id = f"{api.host}_{api.port}_safebrowsing_enabled"
|
||||
self._attr_name = "AdGuard SafeBrowsing"
|
||||
self._attr_name = "AdGuard Safe Browsing"
|
||||
self._attr_unique_id = f"{DOMAIN}_safe_browsing"
|
||||
self._attr_device_class = BinarySensorDeviceClass.SAFETY
|
||||
self._attr_entity_category = EntityCategory.DIAGNOSTIC
|
||||
self._attr_icon = "mdi:web-check"
|
||||
|
||||
@property
|
||||
def is_on(self) -> Optional[bool]:
|
||||
"""Return true if SafeBrowsing is enabled."""
|
||||
def is_on(self) -> bool:
|
||||
"""Return true if safe browsing is enabled."""
|
||||
return self.coordinator.protection_status.get("safebrowsing_enabled", False)
|
||||
|
||||
@property
|
||||
def icon(self) -> str:
|
||||
"""Return the icon for the binary sensor."""
|
||||
return "mdi:shield-check" if self.is_on else "mdi:shield-off"
|
||||
|
||||
@property
|
||||
def available(self) -> bool:
|
||||
"""Return if sensor is available."""
|
||||
return self.coordinator.last_update_success and bool(self.coordinator.protection_status)
|
||||
|
||||
|
||||
class AdGuardParentalControlBinarySensor(AdGuardBaseBinarySensor):
|
||||
"""Binary sensor to show Parental Control status."""
|
||||
"""AdGuard parental control binary sensor."""
|
||||
|
||||
def __init__(self, coordinator: AdGuardControlHubCoordinator, api: AdGuardHomeAPI) -> None:
|
||||
def __init__(self, coordinator, api: AdGuardHomeAPI) -> None:
|
||||
"""Initialize the binary sensor."""
|
||||
super().__init__(coordinator, api)
|
||||
self._attr_unique_id = f"{api.host}_{api.port}_parental_enabled"
|
||||
self._attr_name = "AdGuard Parental Control"
|
||||
self._attr_unique_id = f"{DOMAIN}_parental_control"
|
||||
self._attr_device_class = BinarySensorDeviceClass.SAFETY
|
||||
self._attr_entity_category = EntityCategory.DIAGNOSTIC
|
||||
self._attr_icon = "mdi:account-child"
|
||||
|
||||
@property
|
||||
def is_on(self) -> Optional[bool]:
|
||||
"""Return true if Parental Control is enabled."""
|
||||
def is_on(self) -> bool:
|
||||
"""Return true if parental control is enabled."""
|
||||
return self.coordinator.protection_status.get("parental_enabled", False)
|
||||
|
||||
@property
|
||||
def icon(self) -> str:
|
||||
"""Return the icon for the binary sensor."""
|
||||
return "mdi:account-child" if self.is_on else "mdi:account-child-outline"
|
||||
|
||||
@property
|
||||
def available(self) -> bool:
|
||||
"""Return if sensor is available."""
|
||||
return self.coordinator.last_update_success and bool(self.coordinator.protection_status)
|
||||
|
||||
|
||||
class AdGuardSafeSearchBinarySensor(AdGuardBaseBinarySensor):
|
||||
"""Binary sensor to show Safe Search status."""
|
||||
"""AdGuard safe search binary sensor."""
|
||||
|
||||
def __init__(self, coordinator: AdGuardControlHubCoordinator, api: AdGuardHomeAPI) -> None:
|
||||
def __init__(self, coordinator, api: AdGuardHomeAPI) -> None:
|
||||
"""Initialize the binary sensor."""
|
||||
super().__init__(coordinator, api)
|
||||
self._attr_unique_id = f"{api.host}_{api.port}_safesearch_enabled"
|
||||
self._attr_name = "AdGuard Safe Search"
|
||||
self._attr_unique_id = f"{DOMAIN}_safe_search"
|
||||
self._attr_device_class = BinarySensorDeviceClass.SAFETY
|
||||
self._attr_entity_category = EntityCategory.DIAGNOSTIC
|
||||
self._attr_icon = "mdi:magnify-scan"
|
||||
|
||||
@property
|
||||
def is_on(self) -> Optional[bool]:
|
||||
"""Return true if Safe Search is enabled."""
|
||||
def is_on(self) -> bool:
|
||||
"""Return true if safe search is enabled."""
|
||||
return self.coordinator.protection_status.get("safesearch_enabled", False)
|
||||
|
||||
@property
|
||||
def icon(self) -> str:
|
||||
"""Return the icon for the binary sensor."""
|
||||
return "mdi:shield-search" if self.is_on else "mdi:magnify"
|
||||
|
||||
@property
|
||||
def available(self) -> bool:
|
||||
"""Return if sensor is available."""
|
||||
return self.coordinator.last_update_success and bool(self.coordinator.protection_status)
|
||||
class AdGuardClientFilteringBinarySensor(CoordinatorEntity, BinarySensorEntity):
|
||||
"""AdGuard client filtering binary sensor."""
|
||||
|
||||
|
||||
class AdGuardClientFilteringBinarySensor(AdGuardBaseBinarySensor):
|
||||
"""Binary sensor to show client-specific filtering status."""
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
coordinator: AdGuardControlHubCoordinator,
|
||||
api: AdGuardHomeAPI,
|
||||
client_name: str,
|
||||
) -> None:
|
||||
def __init__(self, coordinator, api: AdGuardHomeAPI, client_name: str) -> None:
|
||||
"""Initialize the binary sensor."""
|
||||
super().__init__(coordinator, api)
|
||||
self.client_name = client_name
|
||||
self._attr_unique_id = f"{api.host}_{api.port}_client_{client_name}_filtering"
|
||||
super().__init__(coordinator)
|
||||
self.api = api
|
||||
self._client_name = client_name
|
||||
self._attr_name = f"AdGuard {client_name} Filtering"
|
||||
self._attr_device_class = BinarySensorDeviceClass.RUNNING
|
||||
self._attr_entity_category = EntityCategory.DIAGNOSTIC
|
||||
self._attr_unique_id = f"{DOMAIN}_{client_name.lower().replace(' ', '_')}_filtering"
|
||||
self._attr_device_class = BinarySensorDeviceClass.SAFETY
|
||||
self._attr_icon = "mdi:filter-check"
|
||||
|
||||
@property
|
||||
def is_on(self) -> Optional[bool]:
|
||||
def device_info(self) -> DeviceInfo:
|
||||
"""Return device info."""
|
||||
return DeviceInfo(
|
||||
identifiers={(DOMAIN, f"client_{self._client_name}")},
|
||||
name=f"AdGuard Client: {self._client_name}",
|
||||
manufacturer=MANUFACTURER,
|
||||
model="AdGuard Client",
|
||||
via_device=(DOMAIN, "adguard_home"),
|
||||
)
|
||||
|
||||
@property
|
||||
def is_on(self) -> bool:
|
||||
"""Return true if client filtering is enabled."""
|
||||
client = self.coordinator.clients.get(self.client_name, {})
|
||||
client = self.coordinator.clients.get(self._client_name, {})
|
||||
return client.get("filtering_enabled", True)
|
||||
|
||||
@property
|
||||
def icon(self) -> str:
|
||||
"""Return the icon for the binary sensor."""
|
||||
return "mdi:filter" if self.is_on else "mdi:filter-off"
|
||||
|
||||
@property
|
||||
def available(self) -> bool:
|
||||
"""Return if sensor is available."""
|
||||
return (
|
||||
self.coordinator.last_update_success
|
||||
and self.client_name in self.coordinator.clients
|
||||
)
|
||||
|
||||
@property
|
||||
def extra_state_attributes(self) -> dict[str, Any]:
|
||||
"""Return additional state attributes."""
|
||||
client = self.coordinator.clients.get(self.client_name, {})
|
||||
return {
|
||||
"client_ids": client.get("ids", []),
|
||||
"use_global_settings": client.get("use_global_settings", True),
|
||||
}
|
||||
|
||||
|
||||
class AdGuardClientSafeBrowsingBinarySensor(AdGuardBaseBinarySensor):
|
||||
"""Binary sensor to show client-specific SafeBrowsing status."""
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
coordinator: AdGuardControlHubCoordinator,
|
||||
api: AdGuardHomeAPI,
|
||||
client_name: str,
|
||||
) -> None:
|
||||
"""Initialize the binary sensor."""
|
||||
super().__init__(coordinator, api)
|
||||
self.client_name = client_name
|
||||
self._attr_unique_id = f"{api.host}_{api.port}_client_{client_name}_safebrowsing"
|
||||
self._attr_name = f"AdGuard {client_name} SafeBrowsing"
|
||||
self._attr_device_class = BinarySensorDeviceClass.SAFETY
|
||||
self._attr_entity_category = EntityCategory.DIAGNOSTIC
|
||||
|
||||
@property
|
||||
def is_on(self) -> Optional[bool]:
|
||||
"""Return true if client SafeBrowsing is enabled."""
|
||||
client = self.coordinator.clients.get(self.client_name, {})
|
||||
return client.get("safebrowsing_enabled", False)
|
||||
|
||||
@property
|
||||
def icon(self) -> str:
|
||||
"""Return the icon for the binary sensor."""
|
||||
return "mdi:shield-account" if self.is_on else "mdi:shield-account-outline"
|
||||
|
||||
@property
|
||||
def available(self) -> bool:
|
||||
"""Return if sensor is available."""
|
||||
return (
|
||||
self.coordinator.last_update_success
|
||||
and self.client_name in self.coordinator.clients
|
||||
)
|
||||
|
||||
@property
|
||||
def extra_state_attributes(self) -> dict[str, Any]:
|
||||
"""Return additional state attributes."""
|
||||
client = self.coordinator.clients.get(self.client_name, {})
|
||||
return {
|
||||
"parental_enabled": client.get("parental_enabled", False),
|
||||
"safesearch_enabled": client.get("safesearch_enabled", False),
|
||||
}
|
||||
"""Return if entity is available."""
|
||||
return self._client_name in self.coordinator.clients
|
||||
|
Reference in New Issue
Block a user