mirror of
https://github.com/home-assistant/core.git
synced 2025-07-09 22:37:11 +00:00
Add support for statewide data for Flu Near You (#19341)
* Initial changes * Add support for state-wide data for Flu Near You * Bumped requirements * Member comments
This commit is contained in:
parent
a08bab7b18
commit
cc90cba78a
@ -18,13 +18,15 @@ from homeassistant.helpers import aiohttp_client
|
||||
from homeassistant.helpers.entity import Entity
|
||||
from homeassistant.util import Throttle
|
||||
|
||||
REQUIREMENTS = ['pyflunearyou==0.0.2']
|
||||
REQUIREMENTS = ['pyflunearyou==1.0.0']
|
||||
_LOGGER = logging.getLogger(__name__)
|
||||
|
||||
ATTR_CITY = 'city'
|
||||
ATTR_REPORTED_DATE = 'reported_date'
|
||||
ATTR_REPORTED_LATITUDE = 'reported_latitude'
|
||||
ATTR_REPORTED_LONGITUDE = 'reported_longitude'
|
||||
ATTR_STATE_REPORTS_LAST_WEEK = 'state_reports_last_week'
|
||||
ATTR_STATE_REPORTS_THIS_WEEK = 'state_reports_this_week'
|
||||
ATTR_ZIP_CODE = 'zip_code'
|
||||
|
||||
DEFAULT_ATTRIBUTION = 'Data provided by Flu Near You'
|
||||
@ -41,10 +43,16 @@ TYPE_USER_CHICK = 'chick'
|
||||
TYPE_USER_DENGUE = 'dengue'
|
||||
TYPE_USER_FLU = 'flu'
|
||||
TYPE_USER_LEPTO = 'lepto'
|
||||
TYPE_USER_NO_NONE = 'none'
|
||||
TYPE_USER_NO_SYMPTOMS = 'none'
|
||||
TYPE_USER_SYMPTOMS = 'symptoms'
|
||||
TYPE_USER_TOTAL = 'total'
|
||||
|
||||
EXTENDED_TYPE_MAPPING = {
|
||||
TYPE_USER_FLU: 'ili',
|
||||
TYPE_USER_NO_SYMPTOMS: 'no_symptoms',
|
||||
TYPE_USER_TOTAL: 'total_surveys',
|
||||
}
|
||||
|
||||
SENSORS = {
|
||||
CATEGORY_CDC_REPORT: [
|
||||
(TYPE_CDC_LEVEL, 'CDC Level', 'mdi:biohazard', None),
|
||||
@ -55,7 +63,7 @@ SENSORS = {
|
||||
(TYPE_USER_DENGUE, 'Dengue Fever Symptoms', 'mdi:alert', 'reports'),
|
||||
(TYPE_USER_FLU, 'Flu Symptoms', 'mdi:alert', 'reports'),
|
||||
(TYPE_USER_LEPTO, 'Leptospirosis Symptoms', 'mdi:alert', 'reports'),
|
||||
(TYPE_USER_NO_NONE, 'No Symptoms', 'mdi:alert', 'reports'),
|
||||
(TYPE_USER_NO_SYMPTOMS, 'No Symptoms', 'mdi:alert', 'reports'),
|
||||
(TYPE_USER_SYMPTOMS, 'Flu-like Symptoms', 'mdi:alert', 'reports'),
|
||||
(TYPE_USER_TOTAL, 'Total Symptoms', 'mdi:alert', 'reports'),
|
||||
]
|
||||
@ -72,26 +80,20 @@ PLATFORM_SCHEMA = PLATFORM_SCHEMA.extend({
|
||||
async def async_setup_platform(
|
||||
hass, config, async_add_entities, discovery_info=None):
|
||||
"""Configure the platform and add the sensors."""
|
||||
from pyflunearyou import create_client
|
||||
from pyflunearyou.errors import FluNearYouError
|
||||
from pyflunearyou import Client
|
||||
|
||||
websession = aiohttp_client.async_get_clientsession(hass)
|
||||
|
||||
latitude = config.get(CONF_LATITUDE, hass.config.latitude)
|
||||
longitude = config.get(CONF_LONGITUDE, hass.config.longitude)
|
||||
identifier = '{0},{1}'.format(latitude, longitude)
|
||||
|
||||
try:
|
||||
client = await create_client(latitude, longitude, websession)
|
||||
except FluNearYouError as err:
|
||||
_LOGGER.error('There was an error while setting up: %s', err)
|
||||
return
|
||||
|
||||
fny = FluNearYouData(client, config[CONF_MONITORED_CONDITIONS])
|
||||
fny = FluNearYouData(
|
||||
Client(websession), latitude, longitude,
|
||||
config[CONF_MONITORED_CONDITIONS])
|
||||
await fny.async_update()
|
||||
|
||||
sensors = [
|
||||
FluNearYouSensor(fny, kind, name, identifier, category, icon, unit)
|
||||
FluNearYouSensor(fny, kind, name, category, icon, unit)
|
||||
for category in config[CONF_MONITORED_CONDITIONS]
|
||||
for kind, name, icon, unit in SENSORS[category]
|
||||
]
|
||||
@ -102,12 +104,11 @@ async def async_setup_platform(
|
||||
class FluNearYouSensor(Entity):
|
||||
"""Define a base Flu Near You sensor."""
|
||||
|
||||
def __init__(self, fny, kind, name, identifier, category, icon, unit):
|
||||
def __init__(self, fny, kind, name, category, icon, unit):
|
||||
"""Initialize the sensor."""
|
||||
self._attrs = {ATTR_ATTRIBUTION: DEFAULT_ATTRIBUTION}
|
||||
self._category = category
|
||||
self._icon = icon
|
||||
self._identifier = identifier
|
||||
self._kind = kind
|
||||
self._name = name
|
||||
self._state = None
|
||||
@ -142,7 +143,8 @@ class FluNearYouSensor(Entity):
|
||||
@property
|
||||
def unique_id(self):
|
||||
"""Return a unique, HASS-friendly identifier for this entity."""
|
||||
return '{0}_{1}'.format(self._identifier, self._kind)
|
||||
return '{0},{1}_{2}'.format(
|
||||
self.fny.latitude, self.fny.longitude, self._kind)
|
||||
|
||||
@property
|
||||
def unit_of_measurement(self):
|
||||
@ -164,50 +166,59 @@ class FluNearYouSensor(Entity):
|
||||
self._state = cdc_data[self._kind]
|
||||
elif self._category == CATEGORY_USER_REPORT and user_data:
|
||||
self._attrs.update({
|
||||
ATTR_CITY: user_data['city'].split('(')[0],
|
||||
ATTR_REPORTED_LATITUDE: user_data['latitude'],
|
||||
ATTR_REPORTED_LONGITUDE: user_data['longitude'],
|
||||
ATTR_ZIP_CODE: user_data['zip'],
|
||||
ATTR_CITY: user_data['local']['city'].split('(')[0],
|
||||
ATTR_REPORTED_LATITUDE: user_data['local']['latitude'],
|
||||
ATTR_REPORTED_LONGITUDE: user_data['local']['longitude'],
|
||||
ATTR_STATE: user_data['state']['name'],
|
||||
ATTR_ZIP_CODE: user_data['local']['zip'],
|
||||
})
|
||||
|
||||
if self._kind in user_data['state']['data']:
|
||||
states_key = self._kind
|
||||
elif self._kind in EXTENDED_TYPE_MAPPING:
|
||||
states_key = EXTENDED_TYPE_MAPPING[self._kind]
|
||||
|
||||
self._attrs[ATTR_STATE_REPORTS_THIS_WEEK] = user_data['state'][
|
||||
'data'][states_key]
|
||||
self._attrs[ATTR_STATE_REPORTS_LAST_WEEK] = user_data['state'][
|
||||
'last_week_data'][states_key]
|
||||
|
||||
if self._kind == TYPE_USER_TOTAL:
|
||||
self._state = sum(
|
||||
v for k, v in user_data.items() if k in (
|
||||
v for k, v in user_data['local'].items() if k in (
|
||||
TYPE_USER_CHICK, TYPE_USER_DENGUE, TYPE_USER_FLU,
|
||||
TYPE_USER_LEPTO, TYPE_USER_SYMPTOMS))
|
||||
else:
|
||||
self._state = user_data[self._kind]
|
||||
self._state = user_data['local'][self._kind]
|
||||
|
||||
|
||||
class FluNearYouData:
|
||||
"""Define a data object to retrieve info from Flu Near You."""
|
||||
|
||||
def __init__(self, client, sensor_types):
|
||||
def __init__(self, client, latitude, longitude, sensor_types):
|
||||
"""Initialize."""
|
||||
self._client = client
|
||||
self._sensor_types = sensor_types
|
||||
self.data = {}
|
||||
|
||||
async def _get_data(self, category, method):
|
||||
"""Get data for a specific category."""
|
||||
from pyflunearyou.errors import FluNearYouError
|
||||
|
||||
try:
|
||||
self.data[category] = await method()
|
||||
except FluNearYouError as err:
|
||||
_LOGGER.error(
|
||||
'There was an error with "%s" data: %s', category, err)
|
||||
self.data[category] = {}
|
||||
self.latitude = latitude
|
||||
self.longitude = longitude
|
||||
|
||||
@Throttle(MIN_TIME_BETWEEN_UPDATES)
|
||||
async def async_update(self):
|
||||
"""Update Flu Near You data."""
|
||||
if CATEGORY_CDC_REPORT in self._sensor_types:
|
||||
await self._get_data(
|
||||
CATEGORY_CDC_REPORT, self._client.cdc_reports.status)
|
||||
from pyflunearyou.errors import FluNearYouError
|
||||
|
||||
if CATEGORY_USER_REPORT in self._sensor_types:
|
||||
await self._get_data(
|
||||
CATEGORY_USER_REPORT, self._client.user_reports.status)
|
||||
for key, method in [(CATEGORY_CDC_REPORT,
|
||||
self._client.cdc_reports.status_by_coordinates),
|
||||
(CATEGORY_USER_REPORT,
|
||||
self._client.user_reports.status_by_coordinates)]:
|
||||
if key in self._sensor_types:
|
||||
try:
|
||||
self.data[key] = await method(
|
||||
self.latitude, self.longitude)
|
||||
except FluNearYouError as err:
|
||||
_LOGGER.error(
|
||||
'There was an error with "%s" data: %s', key, err)
|
||||
self.data[key] = {}
|
||||
|
||||
_LOGGER.debug('New data stored: %s', self.data)
|
||||
|
@ -959,7 +959,7 @@ pyflexit==0.3
|
||||
pyflic-homeassistant==0.4.dev0
|
||||
|
||||
# homeassistant.components.sensor.flunearyou
|
||||
pyflunearyou==0.0.2
|
||||
pyflunearyou==1.0.0
|
||||
|
||||
# homeassistant.components.light.futurenow
|
||||
pyfnip==0.2
|
||||
|
Loading…
x
Reference in New Issue
Block a user