mirror of
https://github.com/home-assistant/core.git
synced 2025-07-16 17:57:11 +00:00
Move Aurora entity to separate file (#95245)
This commit is contained in:
parent
91e6e918c3
commit
9e3706e3b9
@ -91,6 +91,7 @@ omit =
|
|||||||
homeassistant/components/aurora/__init__.py
|
homeassistant/components/aurora/__init__.py
|
||||||
homeassistant/components/aurora/binary_sensor.py
|
homeassistant/components/aurora/binary_sensor.py
|
||||||
homeassistant/components/aurora/coordinator.py
|
homeassistant/components/aurora/coordinator.py
|
||||||
|
homeassistant/components/aurora/entity.py
|
||||||
homeassistant/components/aurora/sensor.py
|
homeassistant/components/aurora/sensor.py
|
||||||
homeassistant/components/avea/light.py
|
homeassistant/components/avea/light.py
|
||||||
homeassistant/components/avion/light.py
|
homeassistant/components/avion/light.py
|
||||||
|
@ -8,14 +8,8 @@ from homeassistant.config_entries import ConfigEntry
|
|||||||
from homeassistant.const import CONF_LATITUDE, CONF_LONGITUDE, CONF_NAME, Platform
|
from homeassistant.const import CONF_LATITUDE, CONF_LONGITUDE, CONF_NAME, Platform
|
||||||
from homeassistant.core import HomeAssistant
|
from homeassistant.core import HomeAssistant
|
||||||
from homeassistant.helpers import aiohttp_client
|
from homeassistant.helpers import aiohttp_client
|
||||||
from homeassistant.helpers.device_registry import DeviceEntryType
|
|
||||||
from homeassistant.helpers.entity import DeviceInfo
|
|
||||||
from homeassistant.helpers.update_coordinator import (
|
|
||||||
CoordinatorEntity,
|
|
||||||
)
|
|
||||||
|
|
||||||
from .const import (
|
from .const import (
|
||||||
ATTRIBUTION,
|
|
||||||
AURORA_API,
|
AURORA_API,
|
||||||
CONF_THRESHOLD,
|
CONF_THRESHOLD,
|
||||||
COORDINATOR,
|
COORDINATOR,
|
||||||
@ -76,34 +70,3 @@ async def async_unload_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
|
|||||||
hass.data[DOMAIN].pop(entry.entry_id)
|
hass.data[DOMAIN].pop(entry.entry_id)
|
||||||
|
|
||||||
return unload_ok
|
return unload_ok
|
||||||
|
|
||||||
|
|
||||||
class AuroraEntity(CoordinatorEntity[AuroraDataUpdateCoordinator]):
|
|
||||||
"""Implementation of the base Aurora Entity."""
|
|
||||||
|
|
||||||
_attr_attribution = ATTRIBUTION
|
|
||||||
|
|
||||||
def __init__(
|
|
||||||
self,
|
|
||||||
coordinator: AuroraDataUpdateCoordinator,
|
|
||||||
name: str,
|
|
||||||
icon: str,
|
|
||||||
) -> None:
|
|
||||||
"""Initialize the Aurora Entity."""
|
|
||||||
|
|
||||||
super().__init__(coordinator=coordinator)
|
|
||||||
|
|
||||||
self._attr_name = name
|
|
||||||
self._attr_unique_id = f"{coordinator.latitude}_{coordinator.longitude}"
|
|
||||||
self._attr_icon = icon
|
|
||||||
|
|
||||||
@property
|
|
||||||
def device_info(self) -> DeviceInfo:
|
|
||||||
"""Define the device based on name."""
|
|
||||||
return DeviceInfo(
|
|
||||||
entry_type=DeviceEntryType.SERVICE,
|
|
||||||
identifiers={(DOMAIN, str(self.unique_id))},
|
|
||||||
manufacturer="NOAA",
|
|
||||||
model="Aurora Visibility Sensor",
|
|
||||||
name=self.coordinator.name,
|
|
||||||
)
|
|
||||||
|
@ -4,8 +4,8 @@ from homeassistant.config_entries import ConfigEntry
|
|||||||
from homeassistant.core import HomeAssistant
|
from homeassistant.core import HomeAssistant
|
||||||
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
||||||
|
|
||||||
from . import AuroraEntity
|
|
||||||
from .const import COORDINATOR, DOMAIN
|
from .const import COORDINATOR, DOMAIN
|
||||||
|
from .entity import AuroraEntity
|
||||||
|
|
||||||
|
|
||||||
async def async_setup_entry(
|
async def async_setup_entry(
|
||||||
|
48
homeassistant/components/aurora/entity.py
Normal file
48
homeassistant/components/aurora/entity.py
Normal file
@ -0,0 +1,48 @@
|
|||||||
|
"""The aurora component."""
|
||||||
|
|
||||||
|
import logging
|
||||||
|
|
||||||
|
from homeassistant.helpers.device_registry import DeviceEntryType
|
||||||
|
from homeassistant.helpers.entity import DeviceInfo
|
||||||
|
from homeassistant.helpers.update_coordinator import (
|
||||||
|
CoordinatorEntity,
|
||||||
|
)
|
||||||
|
|
||||||
|
from .const import (
|
||||||
|
ATTRIBUTION,
|
||||||
|
DOMAIN,
|
||||||
|
)
|
||||||
|
from .coordinator import AuroraDataUpdateCoordinator
|
||||||
|
|
||||||
|
_LOGGER = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
|
||||||
|
class AuroraEntity(CoordinatorEntity[AuroraDataUpdateCoordinator]):
|
||||||
|
"""Implementation of the base Aurora Entity."""
|
||||||
|
|
||||||
|
_attr_attribution = ATTRIBUTION
|
||||||
|
|
||||||
|
def __init__(
|
||||||
|
self,
|
||||||
|
coordinator: AuroraDataUpdateCoordinator,
|
||||||
|
name: str,
|
||||||
|
icon: str,
|
||||||
|
) -> None:
|
||||||
|
"""Initialize the Aurora Entity."""
|
||||||
|
|
||||||
|
super().__init__(coordinator=coordinator)
|
||||||
|
|
||||||
|
self._attr_name = name
|
||||||
|
self._attr_unique_id = f"{coordinator.latitude}_{coordinator.longitude}"
|
||||||
|
self._attr_icon = icon
|
||||||
|
|
||||||
|
@property
|
||||||
|
def device_info(self) -> DeviceInfo:
|
||||||
|
"""Define the device based on name."""
|
||||||
|
return DeviceInfo(
|
||||||
|
entry_type=DeviceEntryType.SERVICE,
|
||||||
|
identifiers={(DOMAIN, str(self.unique_id))},
|
||||||
|
manufacturer="NOAA",
|
||||||
|
model="Aurora Visibility Sensor",
|
||||||
|
name=self.coordinator.name,
|
||||||
|
)
|
@ -5,8 +5,8 @@ from homeassistant.const import PERCENTAGE
|
|||||||
from homeassistant.core import HomeAssistant
|
from homeassistant.core import HomeAssistant
|
||||||
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
||||||
|
|
||||||
from . import AuroraEntity
|
|
||||||
from .const import COORDINATOR, DOMAIN
|
from .const import COORDINATOR, DOMAIN
|
||||||
|
from .entity import AuroraEntity
|
||||||
|
|
||||||
|
|
||||||
async def async_setup_entry(
|
async def async_setup_entry(
|
||||||
|
Loading…
x
Reference in New Issue
Block a user