* some sensors working in homeassistant * bring up to date * add codeowner * update requirements * overhaul data imports from api & sensor discovery * remove print statement * delete requirements_test_all * add requrements_test_all.txt * Update homeassistant/components/nextcloud/sensor.py Co-Authored-By: springstan <46536646+springstan@users.noreply.github.com> * Update homeassistant/components/nextcloud/sensor.py Co-Authored-By: springstan <46536646+springstan@users.noreply.github.com> * describe recursive function * clarify that dict is returned * remove requirements from requirements_test_all * improve and simplify sensor naming * add basic tests * restore pre-commit config * update requirements_test_all * remove codespell requirement * update pre-commit-config * add-back codespell * rename class variables as suggested by @springstan * add dev branch to no-commit-to-branch git hook Because my fork had the same 'dev' branch i wasn't able to push. Going forward I should probably name my branches differently. * move config logic to __init__.py * restore .pre-commit-config.yaml * remove tests * remove nextcloud test requirement * remove debugging code * implement binary sensors * restore .pre-commit-config.yaml * bump dependency version * bump requirements files * bump nextcloud reqirement to latest * update possible exceptions, use fstrings * add list of sensors & fix inconsistency in get_data_points * use domain for config * fix guard clause * repair pre-commit-config * Remove period from logging * include url in unique_id * update requirements_all.txt Co-authored-by: springstan <46536646+springstan@users.noreply.github.com>
52 lines
1.4 KiB
Python
52 lines
1.4 KiB
Python
"""Summary binary data from Nextcoud."""
|
|
import logging
|
|
|
|
from homeassistant.components.binary_sensor import BinarySensorDevice
|
|
|
|
from . import BINARY_SENSORS, DOMAIN
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
|
|
def setup_platform(hass, config, add_entities, discovery_info=None):
|
|
"""Set up the Nextcloud sensors."""
|
|
if discovery_info is None:
|
|
return
|
|
binary_sensors = []
|
|
for name in hass.data[DOMAIN]:
|
|
if name in BINARY_SENSORS:
|
|
binary_sensors.append(NextcloudBinarySensor(name))
|
|
add_entities(binary_sensors, True)
|
|
|
|
|
|
class NextcloudBinarySensor(BinarySensorDevice):
|
|
"""Represents a Nextcloud binary sensor."""
|
|
|
|
def __init__(self, item):
|
|
"""Initialize the Nextcloud binary sensor."""
|
|
self._name = item
|
|
self._is_on = None
|
|
|
|
@property
|
|
def icon(self):
|
|
"""Return the icon for this binary sensor."""
|
|
return "mdi:cloud"
|
|
|
|
@property
|
|
def name(self):
|
|
"""Return the name for this binary sensor."""
|
|
return self._name
|
|
|
|
@property
|
|
def is_on(self):
|
|
"""Return true if the binary sensor is on."""
|
|
return self._is_on == "yes"
|
|
|
|
@property
|
|
def unique_id(self):
|
|
"""Return the unique ID for this binary sensor."""
|
|
return f"{self.hass.data[DOMAIN]['instance']}#{self._name}"
|
|
|
|
def update(self):
|
|
"""Update the binary sensor."""
|
|
self._is_on = self.hass.data[DOMAIN][self._name]
|