* Change dependency to pyvesync-v2 for vesync switch * async vesync component * FInish data_entry_flow * Update config flow * strings.json * Minor fix * Syntax fix * Minor Fixs * UI Fix * Minor Correct * Debug lines * fix device dictionaries * Light switch fix * Cleanup * pylint fixes * Hassfest and setup scripts * Flake8 fixes * Add vesync light platform * Fix typo * Update Devices Service * Fix update devices service * Add initial test * Add Config Flow Tests * Remove Extra Platforms * Fix requirements * Update pypi package * Add login to config_flow Avoid setting up component if login credentials are invalid * Fix variable import * Update config_flow.py * Update config_flow.py * Put VS object into hass.data instead of config entry * Update __init__.py * Handle Login Error * Fix invalid login error * Fix typo * Remove line * PEP fixes * Fix change requests * Fix typo * Update __init__.py * Update switch.py * Flake8 fix * Update test requirements * Fix permission * Address change requests * Address change requests * Fix device discovery indent, add MockConfigEntry * Fix vesynclightswitch classs * Remove active time attribute * Remove time_zone, grammar check
70 lines
2.1 KiB
Python
70 lines
2.1 KiB
Python
"""Config flow utilities."""
|
|
import logging
|
|
from collections import OrderedDict
|
|
import voluptuous as vol
|
|
from pyvesync import VeSync
|
|
from homeassistant import config_entries
|
|
from homeassistant.core import callback
|
|
from homeassistant.const import CONF_USERNAME, CONF_PASSWORD
|
|
from .const import DOMAIN
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
|
|
@callback
|
|
def configured_instances(hass):
|
|
"""Return already configured instances."""
|
|
return hass.config_entries.async_entries(DOMAIN)
|
|
|
|
|
|
@config_entries.HANDLERS.register(DOMAIN)
|
|
class VeSyncFlowHandler(config_entries.ConfigFlow):
|
|
"""Handle a config flow."""
|
|
|
|
VERSION = 1
|
|
CONNECTION_CLASS = config_entries.CONN_CLASS_CLOUD_POLL
|
|
|
|
def __init__(self):
|
|
"""Instantiate config flow."""
|
|
self._username = None
|
|
self._password = None
|
|
self.data_schema = OrderedDict()
|
|
self.data_schema[vol.Required(CONF_USERNAME)] = str
|
|
self.data_schema[vol.Required(CONF_PASSWORD)] = str
|
|
|
|
@callback
|
|
def _show_form(self, errors=None):
|
|
"""Show form to the user."""
|
|
return self.async_show_form(
|
|
step_id='user',
|
|
data_schema=vol.Schema(self.data_schema),
|
|
errors=errors if errors else {},
|
|
)
|
|
|
|
async def async_step_import(self, import_config):
|
|
"""Handle external yaml configuration."""
|
|
return await self.async_step_user(import_config)
|
|
|
|
async def async_step_user(self, user_input=None):
|
|
"""Handle a flow start."""
|
|
if configured_instances(self.hass):
|
|
return self.async_abort(reason='already_setup')
|
|
|
|
if not user_input:
|
|
return self._show_form()
|
|
|
|
self._username = user_input[CONF_USERNAME]
|
|
self._password = user_input[CONF_PASSWORD]
|
|
|
|
manager = VeSync(self._username, self._password)
|
|
login = await self.hass.async_add_executor_job(manager.login)
|
|
if not login:
|
|
return self._show_form(errors={'base': 'invalid_login'})
|
|
|
|
return self.async_create_entry(
|
|
title=self._username,
|
|
data={
|
|
CONF_USERNAME: self._username,
|
|
CONF_PASSWORD: self._password,
|
|
},
|
|
)
|