77 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			Python
		
	
	
			
		
		
	
	
			77 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			Python
		
	
	
"""Support for Neato botvac connected vacuum cleaners."""
 | 
						|
 | 
						|
import logging
 | 
						|
 | 
						|
import aiohttp
 | 
						|
from pybotvac import Account
 | 
						|
from pybotvac.exceptions import NeatoException
 | 
						|
 | 
						|
from homeassistant.config_entries import ConfigEntry
 | 
						|
from homeassistant.const import CONF_TOKEN, Platform
 | 
						|
from homeassistant.core import HomeAssistant
 | 
						|
from homeassistant.exceptions import ConfigEntryAuthFailed, ConfigEntryNotReady
 | 
						|
from homeassistant.helpers import config_entry_oauth2_flow
 | 
						|
 | 
						|
from . import api
 | 
						|
from .const import NEATO_DOMAIN, NEATO_LOGIN
 | 
						|
from .hub import NeatoHub
 | 
						|
 | 
						|
_LOGGER = logging.getLogger(__name__)
 | 
						|
 | 
						|
PLATFORMS = [
 | 
						|
    Platform.BUTTON,
 | 
						|
    Platform.CAMERA,
 | 
						|
    Platform.SENSOR,
 | 
						|
    Platform.SWITCH,
 | 
						|
    Platform.VACUUM,
 | 
						|
]
 | 
						|
 | 
						|
 | 
						|
async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
 | 
						|
    """Set up config entry."""
 | 
						|
    hass.data.setdefault(NEATO_DOMAIN, {})
 | 
						|
    if CONF_TOKEN not in entry.data:
 | 
						|
        raise ConfigEntryAuthFailed
 | 
						|
 | 
						|
    implementation = (
 | 
						|
        await config_entry_oauth2_flow.async_get_config_entry_implementation(
 | 
						|
            hass, entry
 | 
						|
        )
 | 
						|
    )
 | 
						|
 | 
						|
    session = config_entry_oauth2_flow.OAuth2Session(hass, entry, implementation)
 | 
						|
    try:
 | 
						|
        await session.async_ensure_token_valid()
 | 
						|
    except aiohttp.ClientResponseError as ex:
 | 
						|
        _LOGGER.debug("API error: %s (%s)", ex.code, ex.message)
 | 
						|
        if ex.code in (401, 403):
 | 
						|
            raise ConfigEntryAuthFailed("Token not valid, trigger renewal") from ex
 | 
						|
        raise ConfigEntryNotReady from ex
 | 
						|
 | 
						|
    neato_session = api.ConfigEntryAuth(hass, entry, implementation)
 | 
						|
    hass.data[NEATO_DOMAIN][entry.entry_id] = neato_session
 | 
						|
    hub = NeatoHub(hass, Account(neato_session))
 | 
						|
 | 
						|
    await hub.async_update_entry_unique_id(entry)
 | 
						|
 | 
						|
    try:
 | 
						|
        await hass.async_add_executor_job(hub.update_robots)
 | 
						|
    except NeatoException as ex:
 | 
						|
        _LOGGER.debug("Failed to connect to Neato API")
 | 
						|
        raise ConfigEntryNotReady from ex
 | 
						|
 | 
						|
    hass.data[NEATO_LOGIN] = hub
 | 
						|
 | 
						|
    await hass.config_entries.async_forward_entry_setups(entry, PLATFORMS)
 | 
						|
 | 
						|
    return True
 | 
						|
 | 
						|
 | 
						|
async def async_unload_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
 | 
						|
    """Unload config entry."""
 | 
						|
    unload_ok = await hass.config_entries.async_unload_platforms(entry, PLATFORMS)
 | 
						|
    if unload_ok:
 | 
						|
        hass.data[NEATO_DOMAIN].pop(entry.entry_id)
 | 
						|
 | 
						|
    return unload_ok
 |