37 lines
1.1 KiB
Python
37 lines
1.1 KiB
Python
""""Starting setup task: Sensor"."""
|
|
from __future__ import annotations
|
|
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers.discovery import async_load_platform
|
|
|
|
from ..base import HacsBase
|
|
from ..const import DOMAIN
|
|
from ..enums import ConfigurationType, HacsStage
|
|
from .base import HacsTask
|
|
|
|
SENSOR_DOMAIN = "sensor"
|
|
|
|
|
|
async def async_setup_task(hacs: HacsBase, hass: HomeAssistant) -> Task:
|
|
"""Set up this task."""
|
|
return Task(hacs=hacs, hass=hass)
|
|
|
|
|
|
class Task(HacsTask):
|
|
"""Setup the HACS sensor platform."""
|
|
|
|
stages = [HacsStage.SETUP]
|
|
|
|
async def async_execute(self) -> None:
|
|
"""Execute the task."""
|
|
if self.hacs.configuration.config_type == ConfigurationType.YAML:
|
|
self.hass.async_create_task(
|
|
async_load_platform(
|
|
self.hass, SENSOR_DOMAIN, DOMAIN, {}, self.hacs.configuration.config
|
|
)
|
|
)
|
|
else:
|
|
self.hass.config_entries.async_setup_platforms(
|
|
self.hacs.configuration.config_entry, [SENSOR_DOMAIN]
|
|
)
|