-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig_flow.py
82 lines (64 loc) · 2.47 KB
/
config_flow.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
"""Config flow for AndroidTV remote integration."""
from __future__ import annotations
import logging
from typing import Any
import voluptuous as vol
from homeassistant import config_entries
from homeassistant.data_entry_flow import FlowResult
from homeassistant.exceptions import HomeAssistantError
from py_atvremote.py_atvremote import ATVRemote
from .const import DOMAIN
_LOGGER = logging.getLogger(__name__)
# TODO adjust the data schema to the data that you need
STEP_USER_DATA_SCHEMA = vol.Schema(
{
vol.Required("host"): str,
}
)
STEP_USER_DATA_SCHEMA_CODE = vol.Schema(
{
vol.Required("code"): str,
}
)
class ConfigFlow(config_entries.ConfigFlow, domain=DOMAIN):
"""Handle a config flow for AndroidTV remote."""
VERSION = 1
def __init__(self) -> None:
super().__init__()
self.host: str = None
self.atvremote: ATVRemote = None
async def async_step_user(
self, user_input: dict[str, Any] | None = None
) -> FlowResult:
"""Handle the initial step."""
if user_input is None:
return self.async_show_form(
step_id="user", data_schema=STEP_USER_DATA_SCHEMA
)
errors = {}
if (host := user_input.get("host")) is not None:
self.host = host
logging.info(f"Connecting to host: {host}")
self.atvremote = ATVRemote(host)
if not await self.atvremote.start_pairing():
errors["base"] = "cannot_connect"
return self.async_show_form(
step_id="user", data_schema=STEP_USER_DATA_SCHEMA, errors=errors
)
await self.async_set_unique_id(self.atvremote.unique_id)
self._abort_if_unique_id_configured()
return self.async_show_form(
step_id="user", data_schema=STEP_USER_DATA_SCHEMA_CODE, errors=errors
)
if not await self.atvremote.finish_pairing(user_input["code"]):
errors["base"] = "invalid_auth"
return self.async_show_form(
step_id="user", data_schema=STEP_USER_DATA_SCHEMA_CODE, errors=errors
)
return self.async_create_entry(
title="AndroidTV remote", data={"host": self.host, "unique_id": self.atvremote.unique_id}
)
class CannotConnect(HomeAssistantError):
"""Error to indicate we cannot connect."""
class InvalidAuth(HomeAssistantError):
"""Error to indicate there is invalid auth."""