78 lines
2.0 KiB
Python
78 lines
2.0 KiB
Python
"""Adds config flow for SabNzbd."""
|
|
from __future__ import annotations
|
|
|
|
import logging
|
|
from typing import Any
|
|
|
|
import voluptuous as vol
|
|
|
|
from homeassistant import config_entries
|
|
from homeassistant.const import (
|
|
CONF_API_KEY,
|
|
CONF_HOST,
|
|
CONF_NAME,
|
|
CONF_PATH,
|
|
CONF_PORT,
|
|
CONF_SSL,
|
|
CONF_URL,
|
|
)
|
|
from homeassistant.data_entry_flow import FlowResult
|
|
|
|
from .const import DEFAULT_NAME, DOMAIN
|
|
from .sab import get_client
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
USER_SCHEMA = vol.Schema(
|
|
{
|
|
vol.Required(CONF_API_KEY): str,
|
|
vol.Optional(CONF_NAME, default=DEFAULT_NAME): str,
|
|
vol.Required(CONF_URL): str,
|
|
vol.Optional(CONF_PATH): str,
|
|
}
|
|
)
|
|
|
|
|
|
class SABnzbdConfigFlow(config_entries.ConfigFlow, domain=DOMAIN):
|
|
"""Sabnzbd config flow."""
|
|
|
|
VERSION = 1
|
|
|
|
async def _async_validate_input(self, user_input):
|
|
"""Validate the user input allows us to connect."""
|
|
errors = {}
|
|
sab_api = await get_client(self.hass, user_input)
|
|
if not sab_api:
|
|
errors["base"] = "cannot_connect"
|
|
|
|
return errors
|
|
|
|
async def async_step_user(
|
|
self, user_input: dict[str, Any] | None = None
|
|
) -> FlowResult:
|
|
"""Handle a flow initialized by the user."""
|
|
|
|
errors = {}
|
|
if user_input is not None:
|
|
|
|
errors = await self._async_validate_input(user_input)
|
|
|
|
if not errors:
|
|
return self.async_create_entry(
|
|
title=user_input[CONF_API_KEY][:12], data=user_input
|
|
)
|
|
|
|
return self.async_show_form(
|
|
step_id="user",
|
|
data_schema=USER_SCHEMA,
|
|
errors=errors,
|
|
)
|
|
|
|
async def async_step_import(self, import_data):
|
|
"""Import sabnzbd config from configuration.yaml."""
|
|
protocol = "https://" if import_data[CONF_SSL] else "http://"
|
|
import_data[
|
|
CONF_URL
|
|
] = f"{protocol}{import_data[CONF_HOST]}:{import_data[CONF_PORT]}"
|
|
return await self.async_step_user(import_data)
|