185 lines
6.6 KiB
Python
185 lines
6.6 KiB
Python
|
"""Config flow for Aussie Broadband integration."""
|
||
|
from __future__ import annotations
|
||
|
|
||
|
from typing import Any
|
||
|
|
||
|
from aiohttp import ClientError
|
||
|
from aussiebb.asyncio import AussieBB, AuthenticationException
|
||
|
import voluptuous as vol
|
||
|
|
||
|
from homeassistant import config_entries
|
||
|
from homeassistant.const import CONF_PASSWORD, CONF_USERNAME
|
||
|
from homeassistant.core import callback
|
||
|
from homeassistant.data_entry_flow import FlowResult
|
||
|
from homeassistant.helpers.aiohttp_client import async_get_clientsession
|
||
|
import homeassistant.helpers.config_validation as cv
|
||
|
|
||
|
from .const import CONF_SERVICES, DOMAIN, SERVICE_ID
|
||
|
|
||
|
|
||
|
class ConfigFlow(config_entries.ConfigFlow, domain=DOMAIN):
|
||
|
"""Handle a config flow for Aussie Broadband."""
|
||
|
|
||
|
VERSION = 1
|
||
|
|
||
|
def __init__(self):
|
||
|
"""Initialize the config flow."""
|
||
|
self.data: dict = {}
|
||
|
self.options: dict = {CONF_SERVICES: []}
|
||
|
self.services: list[dict[str]] = []
|
||
|
self.client: AussieBB | None = None
|
||
|
self._reauth_username: str | None = None
|
||
|
|
||
|
async def async_auth(self, user_input: dict[str, str]) -> dict[str, str] | None:
|
||
|
"""Reusable Auth Helper."""
|
||
|
self.client = AussieBB(
|
||
|
user_input[CONF_USERNAME],
|
||
|
user_input[CONF_PASSWORD],
|
||
|
async_get_clientsession(self.hass),
|
||
|
)
|
||
|
try:
|
||
|
await self.client.login()
|
||
|
return None
|
||
|
except AuthenticationException:
|
||
|
return {"base": "invalid_auth"}
|
||
|
except ClientError:
|
||
|
return {"base": "cannot_connect"}
|
||
|
|
||
|
async def async_step_user(
|
||
|
self, user_input: dict[str, Any] | None = None
|
||
|
) -> FlowResult:
|
||
|
"""Handle the initial step."""
|
||
|
errors: dict[str, str] | None = None
|
||
|
if user_input is not None:
|
||
|
if not (errors := await self.async_auth(user_input)):
|
||
|
await self.async_set_unique_id(user_input[CONF_USERNAME].lower())
|
||
|
self._abort_if_unique_id_configured()
|
||
|
|
||
|
self.data = user_input
|
||
|
self.services = await self.client.get_services() # type: ignore[union-attr]
|
||
|
|
||
|
if not self.services:
|
||
|
return self.async_abort(reason="no_services_found")
|
||
|
|
||
|
if len(self.services) == 1:
|
||
|
return self.async_create_entry(
|
||
|
title=self.data[CONF_USERNAME],
|
||
|
data=self.data,
|
||
|
options={CONF_SERVICES: [str(self.services[0][SERVICE_ID])]},
|
||
|
)
|
||
|
|
||
|
# Account has more than one service, select service to add
|
||
|
return await self.async_step_service()
|
||
|
|
||
|
return self.async_show_form(
|
||
|
step_id="user",
|
||
|
data_schema=vol.Schema(
|
||
|
{
|
||
|
vol.Required(CONF_USERNAME): str,
|
||
|
vol.Required(CONF_PASSWORD): str,
|
||
|
}
|
||
|
),
|
||
|
errors=errors,
|
||
|
)
|
||
|
|
||
|
async def async_step_service(
|
||
|
self, user_input: dict[str, Any] | None = None
|
||
|
) -> FlowResult:
|
||
|
"""Handle the optional service selection step."""
|
||
|
if user_input is not None:
|
||
|
return self.async_create_entry(
|
||
|
title=self.data[CONF_USERNAME], data=self.data, options=user_input
|
||
|
)
|
||
|
|
||
|
service_options = {str(s[SERVICE_ID]): s["description"] for s in self.services}
|
||
|
return self.async_show_form(
|
||
|
step_id="service",
|
||
|
data_schema=vol.Schema(
|
||
|
{
|
||
|
vol.Required(
|
||
|
CONF_SERVICES, default=list(service_options.keys())
|
||
|
): cv.multi_select(service_options)
|
||
|
}
|
||
|
),
|
||
|
errors=None,
|
||
|
)
|
||
|
|
||
|
async def async_step_reauth(
|
||
|
self, user_input: dict[str, Any] | None = None
|
||
|
) -> FlowResult:
|
||
|
"""Handle reauth."""
|
||
|
errors: dict[str, str] | None = None
|
||
|
if user_input and user_input.get(CONF_USERNAME):
|
||
|
self._reauth_username = user_input[CONF_USERNAME]
|
||
|
|
||
|
elif self._reauth_username and user_input and user_input.get(CONF_PASSWORD):
|
||
|
data = {
|
||
|
CONF_USERNAME: self._reauth_username,
|
||
|
CONF_PASSWORD: user_input[CONF_PASSWORD],
|
||
|
}
|
||
|
|
||
|
if not (errors := await self.async_auth(data)):
|
||
|
entry = await self.async_set_unique_id(self._reauth_username.lower())
|
||
|
if entry:
|
||
|
self.hass.config_entries.async_update_entry(
|
||
|
entry,
|
||
|
data=data,
|
||
|
)
|
||
|
await self.hass.config_entries.async_reload(entry.entry_id)
|
||
|
return self.async_abort(reason="reauth_successful")
|
||
|
return self.async_create_entry(title=self._reauth_username, data=data)
|
||
|
|
||
|
return self.async_show_form(
|
||
|
step_id="reauth",
|
||
|
description_placeholders={"username": self._reauth_username},
|
||
|
data_schema=vol.Schema(
|
||
|
{
|
||
|
vol.Required(CONF_PASSWORD): str,
|
||
|
}
|
||
|
),
|
||
|
errors=errors,
|
||
|
)
|
||
|
|
||
|
@staticmethod
|
||
|
@callback
|
||
|
def async_get_options_flow(
|
||
|
config_entry: config_entries.ConfigEntry,
|
||
|
) -> config_entries.OptionsFlow:
|
||
|
"""Get the options flow for this handler."""
|
||
|
return OptionsFlowHandler(config_entry)
|
||
|
|
||
|
|
||
|
class OptionsFlowHandler(config_entries.OptionsFlow):
|
||
|
"""Options flow for picking services."""
|
||
|
|
||
|
def __init__(self, config_entry: config_entries.ConfigEntry) -> None:
|
||
|
"""Initialize options flow."""
|
||
|
self.config_entry = config_entry
|
||
|
|
||
|
async def async_step_init(self, user_input=None):
|
||
|
"""Manage the options."""
|
||
|
if user_input is not None:
|
||
|
return self.async_create_entry(title="", data=user_input)
|
||
|
|
||
|
if self.config_entry.state != config_entries.ConfigEntryState.LOADED:
|
||
|
return self.async_abort(reason="unknown")
|
||
|
data = self.hass.data[DOMAIN][self.config_entry.entry_id]
|
||
|
try:
|
||
|
services = await data["client"].get_services()
|
||
|
except AuthenticationException:
|
||
|
return self.async_abort(reason="invalid_auth")
|
||
|
except ClientError:
|
||
|
return self.async_abort(reason="cannot_connect")
|
||
|
service_options = {str(s[SERVICE_ID]): s["description"] for s in services}
|
||
|
return self.async_show_form(
|
||
|
step_id="init",
|
||
|
data_schema=vol.Schema(
|
||
|
{
|
||
|
vol.Required(
|
||
|
CONF_SERVICES,
|
||
|
default=self.config_entry.options.get(CONF_SERVICES),
|
||
|
): cv.multi_select(service_options),
|
||
|
}
|
||
|
),
|
||
|
)
|