55 lines
1.5 KiB
Python
55 lines
1.5 KiB
Python
"""The Volumio integration."""
|
|
import asyncio
|
|
|
|
from pyvolumio import CannotConnectError, Volumio
|
|
|
|
from homeassistant.config_entries import ConfigEntry
|
|
from homeassistant.const import CONF_HOST, CONF_PORT
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.exceptions import ConfigEntryNotReady
|
|
from homeassistant.helpers.aiohttp_client import async_get_clientsession
|
|
|
|
from .const import DATA_INFO, DATA_VOLUMIO, DOMAIN
|
|
|
|
PLATFORMS = ["media_player"]
|
|
|
|
|
|
async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry):
|
|
"""Set up Volumio from a config entry."""
|
|
|
|
volumio = Volumio(
|
|
entry.data[CONF_HOST], entry.data[CONF_PORT], async_get_clientsession(hass)
|
|
)
|
|
try:
|
|
info = await volumio.get_system_version()
|
|
except CannotConnectError as error:
|
|
raise ConfigEntryNotReady from error
|
|
|
|
hass.data.setdefault(DOMAIN, {})[entry.entry_id] = {
|
|
DATA_VOLUMIO: volumio,
|
|
DATA_INFO: info,
|
|
}
|
|
|
|
for platform in PLATFORMS:
|
|
hass.async_create_task(
|
|
hass.config_entries.async_forward_entry_setup(entry, platform)
|
|
)
|
|
|
|
return True
|
|
|
|
|
|
async def async_unload_entry(hass: HomeAssistant, entry: ConfigEntry):
|
|
"""Unload a config entry."""
|
|
unload_ok = all(
|
|
await asyncio.gather(
|
|
*[
|
|
hass.config_entries.async_forward_entry_unload(entry, platform)
|
|
for platform in PLATFORMS
|
|
]
|
|
)
|
|
)
|
|
if unload_ok:
|
|
hass.data[DOMAIN].pop(entry.entry_id)
|
|
|
|
return unload_ok
|