Skip to content

Commit 64b4e01

Browse files
committedMar 26, 2025
Rename _need_initialized to _is_initialized and reduce nb line in async_setup_entry
1 parent 0005290 commit 64b4e01

File tree

2 files changed

+32
-20
lines changed

2 files changed

+32
-20
lines changed
 

‎homeassistant/components/switchbot_cloud/__init__.py

+29-17
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
from homeassistant.components import webhook
1313
from homeassistant.config_entries import ConfigEntry
1414
from homeassistant.const import CONF_API_KEY, CONF_API_TOKEN, CONF_WEBHOOK_ID, Platform
15-
from homeassistant.core import HomeAssistant, callback
15+
from homeassistant.core import HomeAssistant
1616
from homeassistant.exceptions import ConfigEntryNotReady
1717

1818
from .const import DOMAIN, ENTRY_TITLE
@@ -186,13 +186,34 @@ async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
186186

187187
await hass.config_entries.async_forward_entry_setups(entry, PLATFORMS)
188188

189+
await _initialize_webhook(hass, entry, api, coordinators_by_id)
190+
191+
return True
192+
193+
194+
async def async_unload_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
195+
"""Unload a config entry."""
196+
if unload_ok := await hass.config_entries.async_unload_platforms(entry, PLATFORMS):
197+
hass.data[DOMAIN].pop(entry.entry_id)
198+
199+
return unload_ok
200+
201+
202+
async def _initialize_webhook(
203+
hass: HomeAssistant,
204+
entry: ConfigEntry,
205+
api: SwitchBotAPI,
206+
coordinators_by_id: dict[str, SwitchBotCoordinator],
207+
) -> None:
208+
"""Initialize webhook if needed."""
189209
if any(
190210
coordinator.update_by_webhook() for coordinator in coordinators_by_id.values()
191211
):
192-
# Need webhook
212+
# Need webhook because there coordinator updated by this
193213
if CONF_WEBHOOK_ID not in entry.data or entry.unique_id is None:
194214
new_data = entry.data.copy()
195215
if CONF_WEBHOOK_ID not in new_data:
216+
# create new id and new conf
196217
new_data[CONF_WEBHOOK_ID] = webhook.async_generate_id()
197218

198219
hass.config_entries.async_update_entry(
@@ -211,14 +232,15 @@ async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
211232
DOMAIN,
212233
webhook_name,
213234
entry.data[CONF_WEBHOOK_ID],
214-
create_handle_webhook(coordinators_by_id),
235+
_create_handle_webhook(coordinators_by_id),
215236
)
216237

217238
webhook_url = webhook.async_generate_url(
218239
hass,
219240
entry.data[CONF_WEBHOOK_ID],
220241
)
221-
# check if webhook is configured
242+
243+
# check if webhook is configured in switchbot cloud
222244
check_webhook_result = None
223245
with contextlib.suppress(Exception):
224246
check_webhook_result = await api.get_webook_configuration()
@@ -244,23 +266,13 @@ async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
244266
# call api for register webhookurl
245267
await api.setup_webhook(webhook_url)
246268

247-
return True
248-
249-
250-
async def async_unload_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
251-
"""Unload a config entry."""
252-
if unload_ok := await hass.config_entries.async_unload_platforms(entry, PLATFORMS):
253-
hass.data[DOMAIN].pop(entry.entry_id)
254-
255-
return unload_ok
256-
257269

258-
def create_handle_webhook(
270+
def _create_handle_webhook(
259271
coordinators_by_id: dict[str, SwitchBotCoordinator],
260272
) -> Callable[[HomeAssistant, str, web.Request], Awaitable[None]]:
261273
"""Create a webhook handler."""
262274

263-
async def internal_handle_webhook(
275+
async def _internal_handle_webhook(
264276
hass: HomeAssistant, webhook_id: str, request: web.Request
265277
) -> None:
266278
"""Handle webhook callback."""
@@ -312,4 +324,4 @@ async def internal_handle_webhook(
312324

313325
coordinators_by_id[deviceMac].async_set_updated_data(data["context"])
314326

315-
return internal_handle_webhook
327+
return _internal_handle_webhook

‎homeassistant/components/switchbot_cloud/coordinator.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -44,18 +44,18 @@ def __init__(
4444
self._device_id = device.device_id
4545
self._should_poll = not update_by_webhook and not isinstance(device, Remote)
4646
self._update_by_webhook = update_by_webhook
47-
self._need_initialized = update_by_webhook
47+
self._is_initialized = not update_by_webhook
4848

4949
def update_by_webhook(self) -> bool:
5050
"""Return update_by_webhook value."""
5151
return self._update_by_webhook
5252

5353
async def _async_update_data(self) -> Status:
5454
"""Fetch data from API endpoint."""
55-
if not self._should_poll and not self._need_initialized:
55+
if not self._should_poll and self._is_initialized:
5656
return None
5757

58-
self._need_initialized = False
58+
self._is_initialized = True
5959
try:
6060
_LOGGER.debug("Refreshing %s", self._device_id)
6161
async with timeout(10):

0 commit comments

Comments
 (0)