102 lines
2.8 KiB
Python
102 lines
2.8 KiB
Python
"""Support for Recollect Waste curbside collection pickup."""
|
|
import logging
|
|
|
|
import voluptuous as vol
|
|
|
|
import homeassistant.helpers.config_validation as cv
|
|
from homeassistant.components.sensor import PLATFORM_SCHEMA
|
|
from homeassistant.const import CONF_NAME
|
|
from homeassistant.helpers.entity import Entity
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
ATTR_PICKUP_TYPES = "pickup_types"
|
|
ATTR_AREA_NAME = "area_name"
|
|
CONF_PLACE_ID = "place_id"
|
|
CONF_SERVICE_ID = "service_id"
|
|
DEFAULT_NAME = "recollect_waste"
|
|
ICON = "mdi:trash-can-outline"
|
|
SCAN_INTERVAL = 86400
|
|
|
|
|
|
PLATFORM_SCHEMA = PLATFORM_SCHEMA.extend(
|
|
{
|
|
vol.Required(CONF_PLACE_ID): cv.string,
|
|
vol.Required(CONF_SERVICE_ID): cv.string,
|
|
vol.Optional(CONF_NAME, default=DEFAULT_NAME): cv.string,
|
|
}
|
|
)
|
|
|
|
|
|
def setup_platform(hass, config, add_entities, discovery_info=None):
|
|
"""Set up the Recollect Waste platform."""
|
|
import recollect_waste
|
|
|
|
# pylint: disable=no-member
|
|
client = recollect_waste.RecollectWasteClient(
|
|
config[CONF_PLACE_ID], config[CONF_SERVICE_ID]
|
|
)
|
|
|
|
# Ensure the client can connect to the API successfully
|
|
# with given place_id and service_id.
|
|
try:
|
|
client.get_next_pickup()
|
|
# pylint: disable=no-member
|
|
except recollect_waste.RecollectWasteException as ex:
|
|
_LOGGER.error("Recollect Waste platform error. %s", ex)
|
|
return
|
|
|
|
add_entities([RecollectWasteSensor(config.get(CONF_NAME), client)], True)
|
|
|
|
|
|
class RecollectWasteSensor(Entity):
|
|
"""Recollect Waste Sensor."""
|
|
|
|
def __init__(self, name, client):
|
|
"""Initialize the sensor."""
|
|
self._attributes = {}
|
|
self._name = name
|
|
self._state = None
|
|
self.client = client
|
|
|
|
@property
|
|
def name(self):
|
|
"""Return the name of the sensor."""
|
|
return self._name
|
|
|
|
@property
|
|
def unique_id(self) -> str:
|
|
"""Return a unique ID."""
|
|
return f"{self.client.place_id}{self.client.service_id}"
|
|
|
|
@property
|
|
def state(self):
|
|
"""Return the state of the sensor."""
|
|
return self._state
|
|
|
|
@property
|
|
def device_state_attributes(self):
|
|
"""Return the state attributes."""
|
|
return self._attributes
|
|
|
|
@property
|
|
def icon(self):
|
|
"""Icon to use in the frontend."""
|
|
return ICON
|
|
|
|
def update(self):
|
|
"""Update device state."""
|
|
import recollect_waste
|
|
|
|
try:
|
|
pickup_event = self.client.get_next_pickup()
|
|
self._state = pickup_event.event_date
|
|
self._attributes.update(
|
|
{
|
|
ATTR_PICKUP_TYPES: pickup_event.pickup_types,
|
|
ATTR_AREA_NAME: pickup_event.area_name,
|
|
}
|
|
)
|
|
# pylint: disable=no-member
|
|
except recollect_waste.RecollectWasteException as ex:
|
|
_LOGGER.error("Recollect Waste platform error. %s", ex)
|