mirror of https://github.com/home-assistant/core
44 lines
1.3 KiB
Python
44 lines
1.3 KiB
Python
"""The Volumio integration."""
|
|
|
|
from pyvolumio import CannotConnectError, Volumio
|
|
|
|
from homeassistant.config_entries import ConfigEntry
|
|
from homeassistant.const import CONF_HOST, CONF_PORT, Platform
|
|
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 = [Platform.MEDIA_PLAYER]
|
|
|
|
|
|
async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
|
|
"""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,
|
|
}
|
|
|
|
await hass.config_entries.async_forward_entry_setups(entry, PLATFORMS)
|
|
|
|
return True
|
|
|
|
|
|
async def async_unload_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
|
|
"""Unload a config entry."""
|
|
unload_ok = await hass.config_entries.async_unload_platforms(entry, PLATFORMS)
|
|
if unload_ok:
|
|
hass.data[DOMAIN].pop(entry.entry_id)
|
|
|
|
return unload_ok
|