-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path__init__.py
73 lines (50 loc) · 1.88 KB
/
__init__.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
"""The Snoo integration."""
from __future__ import annotations
import logging
from homeassistant.config_entries import ConfigEntry
from homeassistant.core import HomeAssistant
import pysnoo
from .const import DOMAIN
PLATFORMS = ["sensor"]
_LOGGER = logging.getLogger(__name__)
class SnooHub:
"""Hub containing of the Snoo API objects."""
def __init__(self, auth, snoo, device, baby, pubnub):
"""Initialize the hub."""
self.auth = auth
self.snoo = snoo
self.device = device
self.baby = baby
self.pubnub = pubnub
self.is_unloading = False
async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
"""Set up Snoo from a config entry."""
auth = pysnoo.SnooAuthSession()
await auth.fetch_token(entry.data["username"], entry.data["password"])
snoo = pysnoo.Snoo(auth)
devices = await snoo.get_devices()
# Snoo's app only allows one device per account...
if len(devices) != 1:
return True
device = devices[0]
# ... because who would have multiple devices and only one baby.
baby = await snoo.get_baby()
pubnub = pysnoo.SnooPubNub(
auth,
device.serial_number,
f"pn-homeassistant-{device.serial_number}",
)
await pubnub.subscribe_and_await_connect()
hub = SnooHub(auth, snoo, device, baby, pubnub)
hass.data.setdefault(DOMAIN, {})[entry.entry_id] = hub
hass.config_entries.async_setup_platforms(entry, PLATFORMS)
return True
async def async_unload_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
"""Unload a config entry."""
unload_ok = await hass.config_entries.async_unload_platforms(entry, PLATFORMS)
if unload_ok:
hub = hass.data[DOMAIN].pop(entry.entry_id)
if hub:
hub.is_unloading = True
await hub.pubnub.unsubscribe_and_await_disconnect()
return unload_ok