Added Alexa Music
This commit is contained in:
@@ -0,0 +1,494 @@
|
||||
# ty:ignore[unresolved-import]
|
||||
"""Config flow for integration."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from typing import TYPE_CHECKING, Any
|
||||
from urllib.parse import urlencode
|
||||
|
||||
import voluptuous as vol
|
||||
from homeassistant.config_entries import (
|
||||
SOURCE_REAUTH,
|
||||
ConfigEntry,
|
||||
ConfigEntryState,
|
||||
ConfigFlow,
|
||||
ConfigFlowResult,
|
||||
OptionsFlowWithReload,
|
||||
)
|
||||
from homeassistant.const import CONF_URL
|
||||
from homeassistant.core import callback
|
||||
from homeassistant.helpers import aiohttp_client
|
||||
from homeassistant.helpers.config_entry_oauth2_flow import (
|
||||
_encode_jwt,
|
||||
async_get_redirect_uri,
|
||||
)
|
||||
from music_assistant_client import MusicAssistantClient
|
||||
from music_assistant_client.auth_helpers import create_long_lived_token, get_server_info
|
||||
from music_assistant_client.exceptions import (
|
||||
CannotConnect,
|
||||
InvalidServerVersion,
|
||||
MusicAssistantClientException,
|
||||
)
|
||||
from music_assistant_models.api import ServerInfoMessage
|
||||
from music_assistant_models.errors import AuthenticationFailed, InvalidToken
|
||||
|
||||
from .const import (
|
||||
AUTH_SCHEMA_VERSION,
|
||||
CONF_DOWNLOAD_LOCAL,
|
||||
CONF_TOKEN,
|
||||
DOMAIN,
|
||||
HASSIO_DISCOVERY_SCHEMA_VERSION,
|
||||
LOGGER,
|
||||
)
|
||||
|
||||
if TYPE_CHECKING:
|
||||
from collections.abc import Mapping
|
||||
|
||||
from homeassistant.core import HomeAssistant
|
||||
from homeassistant.helpers.service_info.hassio import HassioServiceInfo
|
||||
from homeassistant.helpers.service_info.zeroconf import ZeroconfServiceInfo
|
||||
|
||||
DEFAULT_URL = "http://mass.local:8095"
|
||||
DEFAULT_TITLE = "Music Assistant Queue Items"
|
||||
DEFAULT_DOWNLOAD_LOCAL = False
|
||||
|
||||
STEP_AUTH_TOKEN_SCHEMA = vol.Schema({vol.Required(CONF_TOKEN): str})
|
||||
|
||||
|
||||
def _parse_zeroconf_server_info(properties: dict[str, str]) -> ServerInfoMessage:
|
||||
"""Parse zeroconf properties to ServerInfoMessage."""
|
||||
return ServerInfoMessage(
|
||||
server_id=properties["server_id"],
|
||||
server_version=properties["server_version"],
|
||||
schema_version=int(properties["schema_version"]),
|
||||
min_supported_schema_version=int(properties["min_supported_schema_version"]),
|
||||
base_url=properties["base_url"],
|
||||
homeassistant_addon=properties["homeassistant_addon"].lower() == "true",
|
||||
onboard_done=properties["onboard_done"].lower() == "true",
|
||||
)
|
||||
|
||||
|
||||
def get_manual_schema(user_input: dict[str, Any] | None) -> vol.Schema:
|
||||
"""Return a schema for the manual step."""
|
||||
default_url = (
|
||||
user_input.get(CONF_URL, DEFAULT_URL)
|
||||
if type(user_input) is dict
|
||||
else DEFAULT_URL
|
||||
)
|
||||
return vol.Schema(
|
||||
{
|
||||
vol.Required(CONF_URL, default=default_url): str,
|
||||
},
|
||||
)
|
||||
|
||||
|
||||
async def _get_server_info(hass: HomeAssistant, url: str) -> ServerInfoMessage:
|
||||
"""Validate the user input allows us to connect."""
|
||||
session = aiohttp_client.async_get_clientsession(hass)
|
||||
return await get_server_info(server_url=url, aiohttp_session=session)
|
||||
|
||||
|
||||
async def _test_connection(hass: HomeAssistant, url: str, token: str) -> None:
|
||||
"""Test connection to MA server with given URL and token."""
|
||||
session = aiohttp_client.async_get_clientsession(hass)
|
||||
async with MusicAssistantClient(
|
||||
server_url=url,
|
||||
aiohttp_session=session,
|
||||
token=token,
|
||||
) as client:
|
||||
# Just executing any command to test the connection.
|
||||
# If auth is required and the token is invalid, this will raise.
|
||||
await client.send_command("info")
|
||||
|
||||
|
||||
class MusicAssistantConfigFlow(ConfigFlow, domain=DOMAIN):
|
||||
"""Handle a config flow for MusicAssistant."""
|
||||
|
||||
VERSION = 1
|
||||
|
||||
def __init__(self) -> None:
|
||||
"""Set up flow instance."""
|
||||
self.url: str | None = None
|
||||
self.token: str | None = None
|
||||
self.server_info: ServerInfoMessage | None = None
|
||||
|
||||
async def async_step_user(
|
||||
self,
|
||||
user_input: dict[str, Any] | None = None,
|
||||
) -> ConfigFlowResult:
|
||||
"""Handle a manual configuration."""
|
||||
errors: dict[str, str] = {}
|
||||
if user_input is not None:
|
||||
self.url = user_input[CONF_URL]
|
||||
try:
|
||||
server_info = await _get_server_info(self.hass, self.url)
|
||||
except CannotConnect:
|
||||
errors["base"] = "cannot_connect"
|
||||
except InvalidServerVersion:
|
||||
errors["base"] = "invalid_server_version"
|
||||
except MusicAssistantClientException:
|
||||
LOGGER.exception("Unexpected exception")
|
||||
errors["base"] = "unknown"
|
||||
else:
|
||||
self.server_info = server_info
|
||||
await self.async_set_unique_id(
|
||||
server_info.server_id,
|
||||
raise_on_progress=False,
|
||||
)
|
||||
self._abort_if_unique_id_configured(updates={CONF_URL: self.url})
|
||||
if server_info.schema_version >= AUTH_SCHEMA_VERSION:
|
||||
return await self.async_step_auth()
|
||||
return self.async_create_entry(
|
||||
title=DEFAULT_TITLE,
|
||||
data={
|
||||
CONF_URL: self.url,
|
||||
},
|
||||
options={CONF_DOWNLOAD_LOCAL: DEFAULT_DOWNLOAD_LOCAL},
|
||||
)
|
||||
|
||||
suggested_values = user_input
|
||||
if suggested_values is None:
|
||||
suggested_values = {CONF_URL: DEFAULT_URL}
|
||||
|
||||
form = get_manual_schema(user_input)
|
||||
schema = self.add_suggested_values_to_schema(
|
||||
form,
|
||||
suggested_values,
|
||||
)
|
||||
return self.async_show_form(
|
||||
step_id="user",
|
||||
data_schema=schema,
|
||||
errors=errors,
|
||||
)
|
||||
|
||||
async def async_step_hassio(
|
||||
self,
|
||||
discovery_info: HassioServiceInfo,
|
||||
) -> ConfigFlowResult:
|
||||
"""Handle Home Assistant add-on discovery.
|
||||
|
||||
This flow is triggered by the Music Assistant add-on.
|
||||
"""
|
||||
# Build URL from add-on discovery info
|
||||
# The add-on exposes the API on port 8095, but also hosts an internal-only
|
||||
# webserver (default at port 8094) for the Home Assistant integration to connect to.
|
||||
# The info where the internal API is exposed is passed via discovery_info
|
||||
host = discovery_info.config["host"]
|
||||
port = discovery_info.config["port"]
|
||||
self.url = f"http://{host}:{port}"
|
||||
try:
|
||||
server_info = await _get_server_info(self.hass, self.url)
|
||||
except CannotConnect:
|
||||
return self.async_abort(reason="cannot_connect")
|
||||
except InvalidServerVersion:
|
||||
return self.async_abort(reason="invalid_server_version")
|
||||
except MusicAssistantClientException:
|
||||
LOGGER.exception("Unexpected exception during add-on discovery")
|
||||
return self.async_abort(reason="unknown")
|
||||
|
||||
if not server_info.onboard_done:
|
||||
return self.async_abort(reason="server_not_ready")
|
||||
|
||||
# We trust the token from hassio discovery and validate it during setup
|
||||
self.token = discovery_info.config["auth_token"]
|
||||
|
||||
self.server_info = server_info
|
||||
|
||||
# Check if there's an existing entry
|
||||
if entry := await self.async_set_unique_id(server_info.server_id):
|
||||
# Update the entry with new URL and token
|
||||
if self.hass.config_entries.async_update_entry(
|
||||
entry,
|
||||
data={**entry.data, CONF_URL: self.url, CONF_TOKEN: self.token},
|
||||
) and entry.state in (
|
||||
ConfigEntryState.LOADED,
|
||||
ConfigEntryState.SETUP_ERROR,
|
||||
ConfigEntryState.SETUP_RETRY,
|
||||
):
|
||||
self.hass.config_entries.async_schedule_reload(entry.entry_id)
|
||||
|
||||
# Abort since entry already exists
|
||||
return self.async_abort(reason="already_configured")
|
||||
|
||||
return await self.async_step_hassio_confirm()
|
||||
|
||||
async def async_step_hassio_confirm(
|
||||
self,
|
||||
user_input: dict[str, Any] | None = None,
|
||||
) -> ConfigFlowResult:
|
||||
"""Confirm the add-on discovery."""
|
||||
if TYPE_CHECKING:
|
||||
assert self.url is not None
|
||||
|
||||
if user_input is not None:
|
||||
data = {CONF_URL: self.url}
|
||||
if self.token:
|
||||
data[CONF_TOKEN] = self.token
|
||||
return self.async_create_entry(
|
||||
title=DEFAULT_TITLE,
|
||||
data=data,
|
||||
)
|
||||
|
||||
self._set_confirm_only()
|
||||
return self.async_show_form(step_id="hassio_confirm")
|
||||
|
||||
async def async_step_zeroconf(
|
||||
self,
|
||||
discovery_info: ZeroconfServiceInfo,
|
||||
) -> ConfigFlowResult:
|
||||
"""Handle a zeroconf discovery for a Music Assistant server."""
|
||||
try:
|
||||
# Parse zeroconf properties (strings) to ServerInfoMessage
|
||||
server_info = _parse_zeroconf_server_info(discovery_info.properties)
|
||||
except (LookupError, KeyError, ValueError):
|
||||
return self.async_abort(reason="invalid_discovery_info")
|
||||
|
||||
if server_info.schema_version >= HASSIO_DISCOVERY_SCHEMA_VERSION:
|
||||
# Ignore servers running as Home Assistant add-on
|
||||
# (they should be discovered through hassio discovery instead)
|
||||
if server_info.homeassistant_addon:
|
||||
LOGGER.debug("Ignoring add-on server in zeroconf discovery")
|
||||
return self.async_abort(reason="already_discovered_addon")
|
||||
|
||||
# Ignore servers that have not completed onboarding yet
|
||||
if not server_info.onboard_done:
|
||||
LOGGER.debug("Ignoring server that hasn't completed onboarding")
|
||||
return self.async_abort(reason="server_not_ready")
|
||||
|
||||
self.url = server_info.base_url
|
||||
self.server_info = server_info
|
||||
|
||||
await self.async_set_unique_id(server_info.server_id)
|
||||
self._abort_if_unique_id_configured(updates={CONF_URL: self.url})
|
||||
|
||||
try:
|
||||
await _get_server_info(self.hass, self.url)
|
||||
except CannotConnect:
|
||||
return self.async_abort(reason="cannot_connect")
|
||||
|
||||
return await self.async_step_discovery_confirm()
|
||||
|
||||
async def async_step_discovery_confirm(
|
||||
self,
|
||||
user_input: dict[str, Any] | None = None,
|
||||
) -> ConfigFlowResult:
|
||||
"""Handle user-confirmation of discovered server."""
|
||||
if TYPE_CHECKING:
|
||||
assert self.url is not None
|
||||
assert self.server_info is not None
|
||||
|
||||
if user_input is not None:
|
||||
# Check if authentication is required for this server
|
||||
if self.server_info.schema_version >= AUTH_SCHEMA_VERSION:
|
||||
# Redirect to browser-based authentication
|
||||
return await self.async_step_auth()
|
||||
|
||||
# Old server, no auth needed
|
||||
return self.async_create_entry(
|
||||
title=DEFAULT_TITLE,
|
||||
data={
|
||||
CONF_URL: self.url,
|
||||
},
|
||||
options={CONF_DOWNLOAD_LOCAL: DEFAULT_DOWNLOAD_LOCAL},
|
||||
)
|
||||
|
||||
self._set_confirm_only()
|
||||
return self.async_show_form(
|
||||
step_id="discovery_confirm",
|
||||
description_placeholders={"url": self.url},
|
||||
)
|
||||
|
||||
async def async_step_auth(
|
||||
self,
|
||||
user_input: dict[str, Any] | None = None,
|
||||
) -> ConfigFlowResult:
|
||||
"""Handle authentication via redirect to MA login."""
|
||||
if TYPE_CHECKING:
|
||||
assert self.url is not None
|
||||
|
||||
# Check if we're returning from the external auth step with a token
|
||||
if user_input is not None:
|
||||
if "error" in user_input:
|
||||
return self.async_abort(reason="auth_error")
|
||||
# OAuth2 callback sends token as "code" parameter
|
||||
if "code" in user_input:
|
||||
self.token = user_input["code"]
|
||||
return self.async_external_step_done(next_step_id="finish_auth")
|
||||
|
||||
# Check if we can use external auth (redirect flow)
|
||||
try:
|
||||
redirect_uri = async_get_redirect_uri(self.hass)
|
||||
except RuntimeError:
|
||||
# No current request context or missing required headers
|
||||
return await self.async_step_auth_manual()
|
||||
|
||||
# Use OAuth2 callback URL with JWT-encoded state
|
||||
state = _encode_jwt(
|
||||
self.hass,
|
||||
{"flow_id": self.flow_id, "redirect_uri": redirect_uri},
|
||||
)
|
||||
# Music Assistant server will redirect to: {redirect_uri}?state={state}&code={token}
|
||||
params = urlencode(
|
||||
{
|
||||
"return_url": f"{redirect_uri}?state={state}",
|
||||
"device_name": "Home Assistant",
|
||||
},
|
||||
)
|
||||
login_url = f"{self.url}/login?{params}"
|
||||
return self.async_external_step(step_id="auth", url=login_url)
|
||||
|
||||
async def async_step_finish_auth(
|
||||
self,
|
||||
user_input: dict[str, Any] | None = None, # noqa: ARG002
|
||||
) -> ConfigFlowResult:
|
||||
"""Finish authentication after receiving token."""
|
||||
if TYPE_CHECKING:
|
||||
assert self.url is not None
|
||||
assert self.token is not None
|
||||
|
||||
# Exchange session token for long-lived token
|
||||
# The login flow gives us a session token (short expiration)
|
||||
session = aiohttp_client.async_get_clientsession(self.hass)
|
||||
|
||||
try:
|
||||
LOGGER.debug("Creating long-lived token")
|
||||
long_lived_token = await create_long_lived_token(
|
||||
self.url,
|
||||
self.token,
|
||||
"Home Assistant",
|
||||
aiohttp_session=session,
|
||||
)
|
||||
LOGGER.debug("Successfully created long-lived token")
|
||||
except (TimeoutError, CannotConnect):
|
||||
return self.async_abort(reason="cannot_connect")
|
||||
except (AuthenticationFailed, InvalidToken) as err:
|
||||
LOGGER.error("Authentication failed: %s", err)
|
||||
return self.async_abort(reason="auth_failed")
|
||||
except InvalidServerVersion as err:
|
||||
LOGGER.error("Invalid server version: %s", err)
|
||||
return self.async_abort(reason="invalid_server_version")
|
||||
except MusicAssistantClientException:
|
||||
LOGGER.exception("Unexpected exception during connection test")
|
||||
return self.async_abort(reason="unknown")
|
||||
|
||||
if self.source == SOURCE_REAUTH:
|
||||
reauth_entry = self._get_reauth_entry()
|
||||
return self.async_update_reload_and_abort(
|
||||
reauth_entry,
|
||||
data={CONF_URL: self.url, CONF_TOKEN: long_lived_token},
|
||||
)
|
||||
|
||||
# Connection has been validated by creating a long-lived token
|
||||
return self.async_create_entry(
|
||||
title=DEFAULT_TITLE,
|
||||
data={CONF_URL: self.url, CONF_TOKEN: long_lived_token},
|
||||
)
|
||||
|
||||
async def async_step_auth_manual(
|
||||
self,
|
||||
user_input: dict[str, Any] | None = None,
|
||||
) -> ConfigFlowResult:
|
||||
"""Handle manual token entry as fallback."""
|
||||
if TYPE_CHECKING:
|
||||
assert self.url is not None
|
||||
|
||||
errors: dict[str, str] = {}
|
||||
|
||||
if user_input is not None:
|
||||
self.token = user_input[CONF_TOKEN]
|
||||
try:
|
||||
# Test the connection with the provided token
|
||||
await _test_connection(self.hass, self.url, self.token)
|
||||
except CannotConnect:
|
||||
return self.async_abort(reason="cannot_connect")
|
||||
except InvalidServerVersion:
|
||||
return self.async_abort(reason="invalid_server_version")
|
||||
except (AuthenticationFailed, InvalidToken):
|
||||
errors["base"] = "auth_failed"
|
||||
except MusicAssistantClientException:
|
||||
LOGGER.exception("Unexpected exception during manual auth")
|
||||
return self.async_abort(reason="unknown")
|
||||
else:
|
||||
if self.source == SOURCE_REAUTH:
|
||||
return self.async_update_reload_and_abort(
|
||||
self._get_reauth_entry(),
|
||||
data={CONF_URL: self.url, CONF_TOKEN: self.token},
|
||||
)
|
||||
|
||||
return self.async_create_entry(
|
||||
title=DEFAULT_TITLE,
|
||||
data={CONF_URL: self.url, CONF_TOKEN: self.token},
|
||||
)
|
||||
|
||||
return self.async_show_form(
|
||||
step_id="auth_manual",
|
||||
data_schema=vol.Schema({vol.Required(CONF_TOKEN): str}),
|
||||
description_placeholders={"url": self.url},
|
||||
errors=errors,
|
||||
)
|
||||
|
||||
async def async_step_reauth(
|
||||
self,
|
||||
entry_data: Mapping[str, Any],
|
||||
) -> ConfigFlowResult:
|
||||
"""Handle reauth when token is invalid or expired."""
|
||||
self.url = entry_data[CONF_URL]
|
||||
# Show confirmation before redirecting to auth
|
||||
return await self.async_step_reauth_confirm()
|
||||
|
||||
async def async_step_reauth_confirm(
|
||||
self,
|
||||
user_input: dict[str, Any] | None = None,
|
||||
) -> ConfigFlowResult:
|
||||
"""Confirm reauth dialog."""
|
||||
if TYPE_CHECKING:
|
||||
assert self.url is not None
|
||||
|
||||
if user_input is not None:
|
||||
# Redirect to auth flow
|
||||
return await self.async_step_auth()
|
||||
|
||||
return self.async_show_form(
|
||||
step_id="reauth_confirm",
|
||||
description_placeholders={"url": self.url},
|
||||
)
|
||||
|
||||
@staticmethod
|
||||
@callback
|
||||
def async_get_options_flow(
|
||||
config_entry: ConfigEntry,
|
||||
) -> OptionsFlowHandler:
|
||||
"""Gets the options flow for this handler."""
|
||||
LOGGER.debug("Starting options flow.")
|
||||
return OptionsFlowHandler(config_entry)
|
||||
|
||||
|
||||
class OptionsFlowHandler(OptionsFlowWithReload):
|
||||
"""Options config flow for Music Assistant Queue Actions."""
|
||||
|
||||
def __init__(self, config_entry: ConfigEntry) -> None:
|
||||
"""Initialize options handler."""
|
||||
self._config_entry = config_entry
|
||||
self._download_local = config_entry.options.get(
|
||||
CONF_DOWNLOAD_LOCAL,
|
||||
DEFAULT_DOWNLOAD_LOCAL,
|
||||
)
|
||||
|
||||
async def async_step_init(self, user_input=None) -> ConfigFlowResult:
|
||||
"""Manage options."""
|
||||
if user_input is not None:
|
||||
LOGGER.debug("User input is not none, submitting data")
|
||||
entry = self.async_create_entry(data=self.config_entry.options | user_input)
|
||||
LOGGER.debug(f"Created entry {entry} ({dir(entry)})")
|
||||
return entry
|
||||
LOGGER.debug("User input is none, showing form...")
|
||||
default_download = self._download_local
|
||||
data_schema = vol.Schema(
|
||||
{
|
||||
vol.Required(CONF_DOWNLOAD_LOCAL, default=default_download): bool,
|
||||
},
|
||||
)
|
||||
return self.async_show_form(
|
||||
step_id="init",
|
||||
data_schema=data_schema,
|
||||
)
|
||||
Reference in New Issue
Block a user