195 lines
6.0 KiB
Python
195 lines
6.0 KiB
Python
"""Config flow for Sonarr."""
|
|
from __future__ import annotations
|
|
|
|
import logging
|
|
from typing import Any
|
|
|
|
from sonarr import Sonarr, SonarrAccessRestricted, SonarrError
|
|
import voluptuous as vol
|
|
|
|
from homeassistant.config_entries import ConfigFlow, OptionsFlow
|
|
from homeassistant.const import (
|
|
CONF_API_KEY,
|
|
CONF_HOST,
|
|
CONF_PORT,
|
|
CONF_SSL,
|
|
CONF_VERIFY_SSL,
|
|
)
|
|
from homeassistant.core import HomeAssistant, callback
|
|
from homeassistant.data_entry_flow import FlowResult
|
|
from homeassistant.helpers.aiohttp_client import async_get_clientsession
|
|
from homeassistant.helpers.typing import ConfigType
|
|
|
|
from .const import (
|
|
CONF_BASE_PATH,
|
|
CONF_UPCOMING_DAYS,
|
|
CONF_WANTED_MAX_ITEMS,
|
|
DEFAULT_BASE_PATH,
|
|
DEFAULT_PORT,
|
|
DEFAULT_SSL,
|
|
DEFAULT_UPCOMING_DAYS,
|
|
DEFAULT_VERIFY_SSL,
|
|
DEFAULT_WANTED_MAX_ITEMS,
|
|
DOMAIN,
|
|
)
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
|
|
async def validate_input(hass: HomeAssistant, data: dict) -> dict[str, Any]:
|
|
"""Validate the user input allows us to connect.
|
|
|
|
Data has the keys from DATA_SCHEMA with values provided by the user.
|
|
"""
|
|
session = async_get_clientsession(hass)
|
|
|
|
sonarr = Sonarr(
|
|
host=data[CONF_HOST],
|
|
port=data[CONF_PORT],
|
|
api_key=data[CONF_API_KEY],
|
|
base_path=data[CONF_BASE_PATH],
|
|
tls=data[CONF_SSL],
|
|
verify_ssl=data[CONF_VERIFY_SSL],
|
|
session=session,
|
|
)
|
|
|
|
await sonarr.update()
|
|
|
|
return True
|
|
|
|
|
|
class SonarrConfigFlow(ConfigFlow, domain=DOMAIN):
|
|
"""Handle a config flow for Sonarr."""
|
|
|
|
VERSION = 1
|
|
|
|
def __init__(self):
|
|
"""Initialize the flow."""
|
|
self._reauth = False
|
|
self._entry_id = None
|
|
self._entry_data = {}
|
|
|
|
@staticmethod
|
|
@callback
|
|
def async_get_options_flow(config_entry):
|
|
"""Get the options flow for this handler."""
|
|
return SonarrOptionsFlowHandler(config_entry)
|
|
|
|
async def async_step_reauth(self, data: ConfigType | None = None) -> FlowResult:
|
|
"""Handle configuration by re-auth."""
|
|
self._reauth = True
|
|
self._entry_data = dict(data)
|
|
entry = await self.async_set_unique_id(self.unique_id)
|
|
self._entry_id = entry.entry_id
|
|
|
|
return await self.async_step_reauth_confirm()
|
|
|
|
async def async_step_reauth_confirm(
|
|
self, user_input: ConfigType | None = None
|
|
) -> FlowResult:
|
|
"""Confirm reauth dialog."""
|
|
if user_input is None:
|
|
return self.async_show_form(
|
|
step_id="reauth_confirm",
|
|
description_placeholders={"host": self._entry_data[CONF_HOST]},
|
|
data_schema=vol.Schema({}),
|
|
errors={},
|
|
)
|
|
|
|
return await self.async_step_user()
|
|
|
|
async def async_step_user(self, user_input: ConfigType | None = None) -> FlowResult:
|
|
"""Handle a flow initiated by the user."""
|
|
errors = {}
|
|
|
|
if user_input is not None:
|
|
if self._reauth:
|
|
user_input = {**self._entry_data, **user_input}
|
|
|
|
if CONF_VERIFY_SSL not in user_input:
|
|
user_input[CONF_VERIFY_SSL] = DEFAULT_VERIFY_SSL
|
|
|
|
try:
|
|
await validate_input(self.hass, user_input)
|
|
except SonarrAccessRestricted:
|
|
errors = {"base": "invalid_auth"}
|
|
except SonarrError:
|
|
errors = {"base": "cannot_connect"}
|
|
except Exception: # pylint: disable=broad-except
|
|
_LOGGER.exception("Unexpected exception")
|
|
return self.async_abort(reason="unknown")
|
|
else:
|
|
if self._reauth:
|
|
return await self._async_reauth_update_entry(
|
|
self._entry_id, user_input
|
|
)
|
|
|
|
return self.async_create_entry(
|
|
title=user_input[CONF_HOST], data=user_input
|
|
)
|
|
|
|
data_schema = self._get_user_data_schema()
|
|
return self.async_show_form(
|
|
step_id="user",
|
|
data_schema=vol.Schema(data_schema),
|
|
errors=errors,
|
|
)
|
|
|
|
async def _async_reauth_update_entry(self, entry_id: str, data: dict) -> FlowResult:
|
|
"""Update existing config entry."""
|
|
entry = self.hass.config_entries.async_get_entry(entry_id)
|
|
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")
|
|
|
|
def _get_user_data_schema(self) -> dict[str, Any]:
|
|
"""Get the data schema to display user form."""
|
|
if self._reauth:
|
|
return {vol.Required(CONF_API_KEY): str}
|
|
|
|
data_schema = {
|
|
vol.Required(CONF_HOST): str,
|
|
vol.Required(CONF_API_KEY): str,
|
|
vol.Optional(CONF_BASE_PATH, default=DEFAULT_BASE_PATH): str,
|
|
vol.Optional(CONF_PORT, default=DEFAULT_PORT): int,
|
|
vol.Optional(CONF_SSL, default=DEFAULT_SSL): bool,
|
|
}
|
|
|
|
if self.show_advanced_options:
|
|
data_schema[
|
|
vol.Optional(CONF_VERIFY_SSL, default=DEFAULT_VERIFY_SSL)
|
|
] = bool
|
|
|
|
return data_schema
|
|
|
|
|
|
class SonarrOptionsFlowHandler(OptionsFlow):
|
|
"""Handle Sonarr client options."""
|
|
|
|
def __init__(self, config_entry):
|
|
"""Initialize options flow."""
|
|
self.config_entry = config_entry
|
|
|
|
async def async_step_init(self, user_input: ConfigType | None = None):
|
|
"""Manage Sonarr options."""
|
|
if user_input is not None:
|
|
return self.async_create_entry(title="", data=user_input)
|
|
|
|
options = {
|
|
vol.Optional(
|
|
CONF_UPCOMING_DAYS,
|
|
default=self.config_entry.options.get(
|
|
CONF_UPCOMING_DAYS, DEFAULT_UPCOMING_DAYS
|
|
),
|
|
): int,
|
|
vol.Optional(
|
|
CONF_WANTED_MAX_ITEMS,
|
|
default=self.config_entry.options.get(
|
|
CONF_WANTED_MAX_ITEMS, DEFAULT_WANTED_MAX_ITEMS
|
|
),
|
|
): int,
|
|
}
|
|
|
|
return self.async_show_form(step_id="init", data_schema=vol.Schema(options))
|