mirror of
https://github.com/Electric-Special/ha-core.git
synced 2026-03-27 12:07:19 +01:00
* Moved climate components with tests into platform dirs. * Updated tests from climate component. * Moved binary_sensor components with tests into platform dirs. * Updated tests from binary_sensor component. * Moved calendar components with tests into platform dirs. * Updated tests from calendar component. * Moved camera components with tests into platform dirs. * Updated tests from camera component. * Moved cover components with tests into platform dirs. * Updated tests from cover component. * Moved device_tracker components with tests into platform dirs. * Updated tests from device_tracker component. * Moved fan components with tests into platform dirs. * Updated tests from fan component. * Moved geo_location components with tests into platform dirs. * Updated tests from geo_location component. * Moved image_processing components with tests into platform dirs. * Updated tests from image_processing component. * Moved light components with tests into platform dirs. * Updated tests from light component. * Moved lock components with tests into platform dirs. * Moved media_player components with tests into platform dirs. * Updated tests from media_player component. * Moved scene components with tests into platform dirs. * Moved sensor components with tests into platform dirs. * Updated tests from sensor component. * Moved switch components with tests into platform dirs. * Updated tests from sensor component. * Moved vacuum components with tests into platform dirs. * Updated tests from vacuum component. * Moved weather components with tests into platform dirs. * Fixed __init__.py files * Fixes for stuff moved as part of this branch. * Fix stuff needed to merge with balloob's branch. * Formatting issues. * Missing __init__.py files. * Fix-ups * Fixup * Regenerated requirements. * Linting errors fixed. * Fixed more broken tests. * Missing init files. * Fix broken tests. * More broken tests * There seems to be a thread race condition. I suspect the logger stuff is running in another thread, which means waiting until the aio loop is done is missing the log messages. Used sleep instead because that allows the logger thread to run. I think the api_streams sensor might not be thread safe. * Disabled tests, will remove sensor in #22147 * Updated coverage and codeowners.
197 lines
7.1 KiB
Python
197 lines
7.1 KiB
Python
"""
|
|
Support for HydroQuebec.
|
|
|
|
Get data from 'My Consumption Profile' page:
|
|
https://www.hydroquebec.com/portail/en/group/clientele/portrait-de-consommation
|
|
|
|
For more details about this platform, please refer to the documentation at
|
|
https://home-assistant.io/components/sensor.hydroquebec/
|
|
"""
|
|
import logging
|
|
from datetime import timedelta
|
|
|
|
import voluptuous as vol
|
|
|
|
from homeassistant.components.sensor import PLATFORM_SCHEMA
|
|
from homeassistant.const import (
|
|
CONF_USERNAME, CONF_PASSWORD, ENERGY_KILO_WATT_HOUR,
|
|
CONF_NAME, CONF_MONITORED_VARIABLES, TEMP_CELSIUS)
|
|
from homeassistant.helpers.entity import Entity
|
|
from homeassistant.util import Throttle
|
|
import homeassistant.helpers.config_validation as cv
|
|
|
|
REQUIREMENTS = ['pyhydroquebec==2.2.2']
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
KILOWATT_HOUR = ENERGY_KILO_WATT_HOUR
|
|
PRICE = 'CAD' # type: str
|
|
DAYS = 'days' # type: str
|
|
CONF_CONTRACT = 'contract' # type: str
|
|
|
|
DEFAULT_NAME = 'HydroQuebec'
|
|
|
|
REQUESTS_TIMEOUT = 15
|
|
MIN_TIME_BETWEEN_UPDATES = timedelta(hours=1)
|
|
SCAN_INTERVAL = timedelta(hours=1)
|
|
|
|
SENSOR_TYPES = {
|
|
'balance':
|
|
['Balance', PRICE, 'mdi:square-inc-cash'],
|
|
'period_total_bill':
|
|
['Period total bill', PRICE, 'mdi:square-inc-cash'],
|
|
'period_length':
|
|
['Period length', DAYS, 'mdi:calendar-today'],
|
|
'period_total_days':
|
|
['Period total days', DAYS, 'mdi:calendar-today'],
|
|
'period_mean_daily_bill':
|
|
['Period mean daily bill', PRICE, 'mdi:square-inc-cash'],
|
|
'period_mean_daily_consumption':
|
|
['Period mean daily consumption', KILOWATT_HOUR, 'mdi:flash'],
|
|
'period_total_consumption':
|
|
['Period total consumption', KILOWATT_HOUR, 'mdi:flash'],
|
|
'period_lower_price_consumption':
|
|
['Period lower price consumption', KILOWATT_HOUR, 'mdi:flash'],
|
|
'period_higher_price_consumption':
|
|
['Period higher price consumption', KILOWATT_HOUR, 'mdi:flash'],
|
|
'yesterday_total_consumption':
|
|
['Yesterday total consumption', KILOWATT_HOUR, 'mdi:flash'],
|
|
'yesterday_lower_price_consumption':
|
|
['Yesterday lower price consumption', KILOWATT_HOUR, 'mdi:flash'],
|
|
'yesterday_higher_price_consumption':
|
|
['Yesterday higher price consumption', KILOWATT_HOUR, 'mdi:flash'],
|
|
'yesterday_average_temperature':
|
|
['Yesterday average temperature', TEMP_CELSIUS, 'mdi:thermometer'],
|
|
'period_average_temperature':
|
|
['Period average temperature', TEMP_CELSIUS, 'mdi:thermometer'],
|
|
}
|
|
|
|
PLATFORM_SCHEMA = PLATFORM_SCHEMA.extend({
|
|
vol.Required(CONF_MONITORED_VARIABLES):
|
|
vol.All(cv.ensure_list, [vol.In(SENSOR_TYPES)]),
|
|
vol.Required(CONF_USERNAME): cv.string,
|
|
vol.Required(CONF_PASSWORD): cv.string,
|
|
vol.Required(CONF_CONTRACT): cv.string,
|
|
vol.Optional(CONF_NAME, default=DEFAULT_NAME): cv.string,
|
|
})
|
|
|
|
HOST = 'https://www.hydroquebec.com'
|
|
HOME_URL = '{}/portail/web/clientele/authentification'.format(HOST)
|
|
PROFILE_URL = ('{}/portail/fr/group/clientele/'
|
|
'portrait-de-consommation'.format(HOST))
|
|
MONTHLY_MAP = (('period_total_bill', 'montantFacturePeriode'),
|
|
('period_length', 'nbJourLecturePeriode'),
|
|
('period_total_days', 'nbJourPrevuPeriode'),
|
|
('period_mean_daily_bill', 'moyenneDollarsJourPeriode'),
|
|
('period_mean_daily_consumption', 'moyenneKwhJourPeriode'),
|
|
('period_total_consumption', 'consoTotalPeriode'),
|
|
('period_lower_price_consumption', 'consoRegPeriode'),
|
|
('period_higher_price_consumption', 'consoHautPeriode'))
|
|
DAILY_MAP = (('yesterday_total_consumption', 'consoTotalQuot'),
|
|
('yesterday_lower_price_consumption', 'consoRegQuot'),
|
|
('yesterday_higher_price_consumption', 'consoHautQuot'))
|
|
|
|
|
|
async def async_setup_platform(hass, config, async_add_entities,
|
|
discovery_info=None):
|
|
"""Set up the HydroQuebec sensor."""
|
|
# Create a data fetcher to support all of the configured sensors. Then make
|
|
# the first call to init the data.
|
|
|
|
username = config.get(CONF_USERNAME)
|
|
password = config.get(CONF_PASSWORD)
|
|
contract = config.get(CONF_CONTRACT)
|
|
|
|
httpsession = hass.helpers.aiohttp_client.async_get_clientsession()
|
|
hydroquebec_data = HydroquebecData(username, password, httpsession,
|
|
contract)
|
|
contracts = await hydroquebec_data.get_contract_list()
|
|
if not contracts:
|
|
return
|
|
_LOGGER.info("Contract list: %s",
|
|
", ".join(contracts))
|
|
|
|
name = config.get(CONF_NAME)
|
|
|
|
sensors = []
|
|
for variable in config[CONF_MONITORED_VARIABLES]:
|
|
sensors.append(HydroQuebecSensor(hydroquebec_data, variable, name))
|
|
|
|
async_add_entities(sensors, True)
|
|
|
|
|
|
class HydroQuebecSensor(Entity):
|
|
"""Implementation of a HydroQuebec sensor."""
|
|
|
|
def __init__(self, hydroquebec_data, sensor_type, name):
|
|
"""Initialize the sensor."""
|
|
self.client_name = name
|
|
self.type = sensor_type
|
|
self._name = SENSOR_TYPES[sensor_type][0]
|
|
self._unit_of_measurement = SENSOR_TYPES[sensor_type][1]
|
|
self._icon = SENSOR_TYPES[sensor_type][2]
|
|
self.hydroquebec_data = hydroquebec_data
|
|
self._state = None
|
|
|
|
@property
|
|
def name(self):
|
|
"""Return the name of the sensor."""
|
|
return '{} {}'.format(self.client_name, self._name)
|
|
|
|
@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 self._unit_of_measurement
|
|
|
|
@property
|
|
def icon(self):
|
|
"""Icon to use in the frontend, if any."""
|
|
return self._icon
|
|
|
|
async def async_update(self):
|
|
"""Get the latest data from Hydroquebec and update the state."""
|
|
await self.hydroquebec_data.async_update()
|
|
if self.hydroquebec_data.data.get(self.type) is not None:
|
|
self._state = round(self.hydroquebec_data.data[self.type], 2)
|
|
|
|
|
|
class HydroquebecData:
|
|
"""Get data from HydroQuebec."""
|
|
|
|
def __init__(self, username, password, httpsession, contract=None):
|
|
"""Initialize the data object."""
|
|
from pyhydroquebec import HydroQuebecClient
|
|
self.client = HydroQuebecClient(
|
|
username, password, REQUESTS_TIMEOUT, httpsession)
|
|
self._contract = contract
|
|
self.data = {}
|
|
|
|
async def get_contract_list(self):
|
|
"""Return the contract list."""
|
|
# Fetch data
|
|
ret = await self._fetch_data()
|
|
if ret:
|
|
return self.client.get_contracts()
|
|
return []
|
|
|
|
@Throttle(MIN_TIME_BETWEEN_UPDATES)
|
|
async def _fetch_data(self):
|
|
"""Fetch latest data from HydroQuebec."""
|
|
from pyhydroquebec.client import PyHydroQuebecError
|
|
try:
|
|
await self.client.fetch_data()
|
|
except PyHydroQuebecError as exp:
|
|
_LOGGER.error("Error on receive last Hydroquebec data: %s", exp)
|
|
return False
|
|
return True
|
|
|
|
async def async_update(self):
|
|
"""Return the latest collected data from HydroQuebec."""
|
|
await self._fetch_data()
|
|
self.data = self.client.get_data(self._contract)[self._contract]
|