201 lines
6.6 KiB
Python
201 lines
6.6 KiB
Python
"""The Global Disaster Alert and Coordination System (GDACS) integration."""
|
|
from datetime import timedelta
|
|
import logging
|
|
|
|
from aio_georss_gdacs import GdacsFeedManager
|
|
import voluptuous as vol
|
|
|
|
from homeassistant.config_entries import SOURCE_IMPORT
|
|
from homeassistant.const import (
|
|
CONF_LATITUDE,
|
|
CONF_LONGITUDE,
|
|
CONF_RADIUS,
|
|
CONF_SCAN_INTERVAL,
|
|
CONF_UNIT_SYSTEM_IMPERIAL,
|
|
LENGTH_MILES,
|
|
)
|
|
from homeassistant.core import callback
|
|
from homeassistant.helpers import aiohttp_client, config_validation as cv
|
|
from homeassistant.helpers.dispatcher import async_dispatcher_send
|
|
from homeassistant.helpers.event import async_track_time_interval
|
|
from homeassistant.util.unit_system import METRIC_SYSTEM
|
|
|
|
from .const import (
|
|
CONF_CATEGORIES,
|
|
DEFAULT_RADIUS,
|
|
DEFAULT_SCAN_INTERVAL,
|
|
DOMAIN,
|
|
FEED,
|
|
PLATFORMS,
|
|
VALID_CATEGORIES,
|
|
)
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
CONFIG_SCHEMA = vol.Schema(
|
|
{
|
|
DOMAIN: vol.Schema(
|
|
{
|
|
vol.Inclusive(CONF_LATITUDE, "coordinates"): cv.latitude,
|
|
vol.Inclusive(CONF_LONGITUDE, "coordinates"): cv.longitude,
|
|
vol.Optional(CONF_RADIUS, default=DEFAULT_RADIUS): vol.Coerce(float),
|
|
vol.Optional(
|
|
CONF_SCAN_INTERVAL, default=DEFAULT_SCAN_INTERVAL
|
|
): cv.time_period,
|
|
vol.Optional(CONF_CATEGORIES, default=[]): vol.All(
|
|
cv.ensure_list, [vol.In(VALID_CATEGORIES)]
|
|
),
|
|
}
|
|
)
|
|
},
|
|
extra=vol.ALLOW_EXTRA,
|
|
)
|
|
|
|
|
|
async def async_setup(hass, config):
|
|
"""Set up the GDACS component."""
|
|
if DOMAIN not in config:
|
|
return True
|
|
|
|
conf = config[DOMAIN]
|
|
latitude = conf.get(CONF_LATITUDE, hass.config.latitude)
|
|
longitude = conf.get(CONF_LONGITUDE, hass.config.longitude)
|
|
scan_interval = conf[CONF_SCAN_INTERVAL]
|
|
categories = conf[CONF_CATEGORIES]
|
|
|
|
hass.async_create_task(
|
|
hass.config_entries.flow.async_init(
|
|
DOMAIN,
|
|
context={"source": SOURCE_IMPORT},
|
|
data={
|
|
CONF_LATITUDE: latitude,
|
|
CONF_LONGITUDE: longitude,
|
|
CONF_RADIUS: conf[CONF_RADIUS],
|
|
CONF_SCAN_INTERVAL: scan_interval,
|
|
CONF_CATEGORIES: categories,
|
|
},
|
|
)
|
|
)
|
|
|
|
return True
|
|
|
|
|
|
async def async_setup_entry(hass, config_entry):
|
|
"""Set up the GDACS component as config entry."""
|
|
hass.data.setdefault(DOMAIN, {})
|
|
feeds = hass.data[DOMAIN].setdefault(FEED, {})
|
|
|
|
radius = config_entry.data[CONF_RADIUS]
|
|
if hass.config.units.name == CONF_UNIT_SYSTEM_IMPERIAL:
|
|
radius = METRIC_SYSTEM.length(radius, LENGTH_MILES)
|
|
# Create feed entity manager for all platforms.
|
|
manager = GdacsFeedEntityManager(hass, config_entry, radius)
|
|
feeds[config_entry.entry_id] = manager
|
|
_LOGGER.debug("Feed entity manager added for %s", config_entry.entry_id)
|
|
await manager.async_init()
|
|
return True
|
|
|
|
|
|
async def async_unload_entry(hass, entry):
|
|
"""Unload an GDACS component config entry."""
|
|
manager = hass.data[DOMAIN][FEED].pop(entry.entry_id)
|
|
await manager.async_stop()
|
|
return await hass.config_entries.async_unload_platforms(entry, PLATFORMS)
|
|
|
|
|
|
class GdacsFeedEntityManager:
|
|
"""Feed Entity Manager for GDACS feed."""
|
|
|
|
def __init__(self, hass, config_entry, radius_in_km):
|
|
"""Initialize the Feed Entity Manager."""
|
|
self._hass = hass
|
|
self._config_entry = config_entry
|
|
coordinates = (
|
|
config_entry.data[CONF_LATITUDE],
|
|
config_entry.data[CONF_LONGITUDE],
|
|
)
|
|
categories = config_entry.data[CONF_CATEGORIES]
|
|
websession = aiohttp_client.async_get_clientsession(hass)
|
|
self._feed_manager = GdacsFeedManager(
|
|
websession,
|
|
self._generate_entity,
|
|
self._update_entity,
|
|
self._remove_entity,
|
|
coordinates,
|
|
filter_radius=radius_in_km,
|
|
filter_categories=categories,
|
|
status_async_callback=self._status_update,
|
|
)
|
|
self._config_entry_id = config_entry.entry_id
|
|
self._scan_interval = timedelta(seconds=config_entry.data[CONF_SCAN_INTERVAL])
|
|
self._track_time_remove_callback = None
|
|
self._status_info = None
|
|
self.listeners = []
|
|
|
|
async def async_init(self):
|
|
"""Schedule initial and regular updates based on configured time interval."""
|
|
|
|
self._hass.config_entries.async_setup_platforms(self._config_entry, PLATFORMS)
|
|
|
|
async def update(event_time):
|
|
"""Update."""
|
|
await self.async_update()
|
|
|
|
# Trigger updates at regular intervals.
|
|
self._track_time_remove_callback = async_track_time_interval(
|
|
self._hass, update, self._scan_interval
|
|
)
|
|
|
|
_LOGGER.debug("Feed entity manager initialized")
|
|
|
|
async def async_update(self):
|
|
"""Refresh data."""
|
|
await self._feed_manager.update()
|
|
_LOGGER.debug("Feed entity manager updated")
|
|
|
|
async def async_stop(self):
|
|
"""Stop this feed entity manager from refreshing."""
|
|
for unsub_dispatcher in self.listeners:
|
|
unsub_dispatcher()
|
|
self.listeners = []
|
|
if self._track_time_remove_callback:
|
|
self._track_time_remove_callback()
|
|
_LOGGER.debug("Feed entity manager stopped")
|
|
|
|
@callback
|
|
def async_event_new_entity(self):
|
|
"""Return manager specific event to signal new entity."""
|
|
return f"gdacs_new_geolocation_{self._config_entry_id}"
|
|
|
|
def get_entry(self, external_id):
|
|
"""Get feed entry by external id."""
|
|
return self._feed_manager.feed_entries.get(external_id)
|
|
|
|
def status_info(self):
|
|
"""Return latest status update info received."""
|
|
return self._status_info
|
|
|
|
async def _generate_entity(self, external_id):
|
|
"""Generate new entity."""
|
|
async_dispatcher_send(
|
|
self._hass,
|
|
self.async_event_new_entity(),
|
|
self,
|
|
self._config_entry.unique_id,
|
|
external_id,
|
|
)
|
|
|
|
async def _update_entity(self, external_id):
|
|
"""Update entity."""
|
|
async_dispatcher_send(self._hass, f"gdacs_update_{external_id}")
|
|
|
|
async def _remove_entity(self, external_id):
|
|
"""Remove entity."""
|
|
async_dispatcher_send(self._hass, f"gdacs_delete_{external_id}")
|
|
|
|
async def _status_update(self, status_info):
|
|
"""Propagate status update."""
|
|
_LOGGER.debug("Status update received: %s", status_info)
|
|
self._status_info = status_info
|
|
async_dispatcher_send(self._hass, f"gdacs_status_{self._config_entry_id}")
|