66 lines
1.9 KiB
Python
66 lines
1.9 KiB
Python
"""The habitica integration."""
|
|
|
|
from habiticalib import Habitica
|
|
|
|
from homeassistant.const import CONF_API_KEY, CONF_URL, CONF_VERIFY_SSL, Platform
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers import config_validation as cv
|
|
from homeassistant.helpers.aiohttp_client import async_get_clientsession
|
|
from homeassistant.helpers.typing import ConfigType
|
|
|
|
from .const import CONF_API_USER, DOMAIN, X_CLIENT
|
|
from .coordinator import HabiticaDataUpdateCoordinator
|
|
from .services import async_setup_services
|
|
from .types import HabiticaConfigEntry
|
|
|
|
CONFIG_SCHEMA = cv.config_entry_only_config_schema(DOMAIN)
|
|
|
|
|
|
PLATFORMS = [
|
|
Platform.BINARY_SENSOR,
|
|
Platform.BUTTON,
|
|
Platform.CALENDAR,
|
|
Platform.IMAGE,
|
|
Platform.SENSOR,
|
|
Platform.SWITCH,
|
|
Platform.TODO,
|
|
]
|
|
|
|
|
|
async def async_setup(hass: HomeAssistant, config: ConfigType) -> bool:
|
|
"""Set up the Habitica service."""
|
|
|
|
async_setup_services(hass)
|
|
return True
|
|
|
|
|
|
async def async_setup_entry(
|
|
hass: HomeAssistant, config_entry: HabiticaConfigEntry
|
|
) -> bool:
|
|
"""Set up habitica from a config entry."""
|
|
|
|
session = async_get_clientsession(
|
|
hass, verify_ssl=config_entry.data.get(CONF_VERIFY_SSL, True)
|
|
)
|
|
|
|
api = Habitica(
|
|
session,
|
|
api_user=config_entry.data[CONF_API_USER],
|
|
api_key=config_entry.data[CONF_API_KEY],
|
|
url=config_entry.data[CONF_URL],
|
|
x_client=X_CLIENT,
|
|
)
|
|
|
|
coordinator = HabiticaDataUpdateCoordinator(hass, api)
|
|
await coordinator.async_config_entry_first_refresh()
|
|
|
|
config_entry.runtime_data = coordinator
|
|
await hass.config_entries.async_forward_entry_setups(config_entry, PLATFORMS)
|
|
|
|
return True
|
|
|
|
|
|
async def async_unload_entry(hass: HomeAssistant, entry: HabiticaConfigEntry) -> bool:
|
|
"""Unload a config entry."""
|
|
return await hass.config_entries.async_unload_platforms(entry, PLATFORMS)
|