91 lines
2.5 KiB
Python
91 lines
2.5 KiB
Python
"""TrueNAS binary sensor platform"""
|
|
from logging import getLogger
|
|
from typing import Any
|
|
from homeassistant.components.update import (
|
|
UpdateEntity,
|
|
UpdateDeviceClass,
|
|
UpdateEntityFeature,
|
|
)
|
|
|
|
from .model import model_async_setup_entry, TrueNASEntity
|
|
from .update_types import SENSOR_TYPES, SENSOR_SERVICES
|
|
|
|
_LOGGER = getLogger(__name__)
|
|
DEVICE_UPDATE = "device_update"
|
|
|
|
|
|
# ---------------------------
|
|
# async_setup_entry
|
|
# ---------------------------
|
|
async def async_setup_entry(hass, config_entry, async_add_entities):
|
|
"""Set up device tracker for OpenMediaVault component"""
|
|
dispatcher = {
|
|
"TrueNASUpdate": TrueNASUpdate,
|
|
}
|
|
await model_async_setup_entry(
|
|
hass,
|
|
config_entry,
|
|
async_add_entities,
|
|
SENSOR_SERVICES,
|
|
SENSOR_TYPES,
|
|
dispatcher,
|
|
)
|
|
|
|
|
|
# ---------------------------
|
|
# TrueNASUpdate
|
|
# ---------------------------
|
|
class TrueNASUpdate(TrueNASEntity, UpdateEntity):
|
|
"""Define an TrueNAS Update Sensor"""
|
|
|
|
TYPE = DEVICE_UPDATE
|
|
_attr_device_class = UpdateDeviceClass.FIRMWARE
|
|
|
|
def __init__(
|
|
self,
|
|
inst,
|
|
uid: "",
|
|
truenas_controller,
|
|
entity_description,
|
|
):
|
|
"""Set up device update entity."""
|
|
super().__init__(inst, uid, truenas_controller, entity_description)
|
|
|
|
self._attr_supported_features = UpdateEntityFeature.INSTALL
|
|
self._attr_supported_features |= UpdateEntityFeature.PROGRESS
|
|
self._attr_title = self.entity_description.title
|
|
|
|
@property
|
|
def installed_version(self) -> str:
|
|
"""Version installed and in use."""
|
|
return self._data["version"]
|
|
|
|
@property
|
|
def latest_version(self) -> str:
|
|
"""Latest version available for install."""
|
|
return self._data["update_version"]
|
|
|
|
async def options_updated(self) -> None:
|
|
"""No action needed."""
|
|
|
|
async def async_install(self, version: str, backup: bool, **kwargs: Any) -> None:
|
|
"""Install an update."""
|
|
self._data["update_jobid"] = await self.hass.async_add_executor_job(
|
|
self._ctrl.api.query,
|
|
"update/update",
|
|
"post",
|
|
{"reboot": True},
|
|
)
|
|
await self._ctrl.async_update()
|
|
|
|
@property
|
|
def in_progress(self) -> int:
|
|
"""Update installation progress."""
|
|
if self._data["update_state"] != "RUNNING":
|
|
return False
|
|
|
|
if self._data["update_progress"] == 0:
|
|
self._data["update_progress"] = 1
|
|
|
|
return self._data["update_progress"]
|