core/homeassistant/components/ups/sensor.py

109 lines
3.1 KiB
Python
Raw Normal View History

"""Sensor for UPS packages."""
2017-02-12 20:47:12 +00:00
import logging
from collections import defaultdict
2017-02-12 20:47:12 +00:00
from datetime import timedelta
import voluptuous as vol
import homeassistant.helpers.config_validation as cv
2017-02-12 20:47:12 +00:00
from homeassistant.components.sensor import PLATFORM_SCHEMA
from homeassistant.const import (
ATTR_ATTRIBUTION, CONF_NAME, CONF_PASSWORD, CONF_SCAN_INTERVAL,
CONF_USERNAME
)
2017-02-12 20:47:12 +00:00
from homeassistant.helpers.entity import Entity
from homeassistant.util import Throttle, slugify
2017-02-12 20:47:12 +00:00
from homeassistant.util.dt import now, parse_date
_LOGGER = logging.getLogger(__name__)
DOMAIN = 'ups'
COOKIE = 'upsmychoice_cookies.pickle'
ICON = 'mdi:package-variant-closed'
STATUS_DELIVERED = 'delivered'
SCAN_INTERVAL = timedelta(seconds=1800)
PLATFORM_SCHEMA = PLATFORM_SCHEMA.extend({
vol.Required(CONF_USERNAME): cv.string,
vol.Required(CONF_PASSWORD): cv.string,
vol.Optional(CONF_NAME): cv.string,
})
2017-02-12 20:47:12 +00:00
def setup_platform(hass, config, add_entities, discovery_info=None):
"""Set up the UPS platform."""
2017-02-12 20:47:12 +00:00
import upsmychoice
try:
cookie = hass.config.path(COOKIE)
session = upsmychoice.get_session(
config.get(CONF_USERNAME), config.get(CONF_PASSWORD),
cookie_path=cookie)
2017-02-12 20:47:12 +00:00
except upsmychoice.UPSError:
_LOGGER.exception("Could not connect to UPS My Choice")
2017-02-12 20:47:12 +00:00
return False
add_entities([UPSSensor(
session,
config.get(CONF_NAME),
config.get(CONF_SCAN_INTERVAL, SCAN_INTERVAL)
)], True)
2017-02-12 20:47:12 +00:00
class UPSSensor(Entity):
"""UPS Sensor."""
def __init__(self, session, name, interval):
"""Initialize the sensor."""
self._session = session
self._name = name
self._attributes = None
self._state = None
self.update = Throttle(interval)(self._update)
@property
def name(self):
"""Return the name of the sensor."""
return self._name or DOMAIN
@property
def state(self):
"""Return the state of the sensor."""
return self._state
@property
def unit_of_measurement(self):
"""Return the unit of measurement of this entity, if any."""
return 'packages'
2017-02-12 20:47:12 +00:00
def _update(self):
"""Update device state."""
import upsmychoice
status_counts = defaultdict(int)
try:
for package in upsmychoice.get_packages(self._session):
status = slugify(package['status'])
skip = status == STATUS_DELIVERED and \
parse_date(package['delivery_date']) < now().date()
if skip:
continue
status_counts[status] += 1
except upsmychoice.UPSError:
_LOGGER.error('Could not connect to UPS My Choice account')
2017-02-12 20:47:12 +00:00
self._attributes = {
ATTR_ATTRIBUTION: upsmychoice.ATTRIBUTION
}
self._attributes.update(status_counts)
self._state = sum(status_counts.values())
@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