12
12
from homeassistant .components import webhook
13
13
from homeassistant .config_entries import ConfigEntry
14
14
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
16
16
from homeassistant .exceptions import ConfigEntryNotReady
17
17
18
18
from .const import DOMAIN , ENTRY_TITLE
@@ -186,13 +186,34 @@ async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
186
186
187
187
await hass .config_entries .async_forward_entry_setups (entry , PLATFORMS )
188
188
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."""
189
209
if any (
190
210
coordinator .update_by_webhook () for coordinator in coordinators_by_id .values ()
191
211
):
192
- # Need webhook
212
+ # Need webhook because there coordinator updated by this
193
213
if CONF_WEBHOOK_ID not in entry .data or entry .unique_id is None :
194
214
new_data = entry .data .copy ()
195
215
if CONF_WEBHOOK_ID not in new_data :
216
+ # create new id and new conf
196
217
new_data [CONF_WEBHOOK_ID ] = webhook .async_generate_id ()
197
218
198
219
hass .config_entries .async_update_entry (
@@ -211,14 +232,15 @@ async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
211
232
DOMAIN ,
212
233
webhook_name ,
213
234
entry .data [CONF_WEBHOOK_ID ],
214
- create_handle_webhook (coordinators_by_id ),
235
+ _create_handle_webhook (coordinators_by_id ),
215
236
)
216
237
217
238
webhook_url = webhook .async_generate_url (
218
239
hass ,
219
240
entry .data [CONF_WEBHOOK_ID ],
220
241
)
221
- # check if webhook is configured
242
+
243
+ # check if webhook is configured in switchbot cloud
222
244
check_webhook_result = None
223
245
with contextlib .suppress (Exception ):
224
246
check_webhook_result = await api .get_webook_configuration ()
@@ -244,23 +266,13 @@ async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
244
266
# call api for register webhookurl
245
267
await api .setup_webhook (webhook_url )
246
268
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
-
257
269
258
- def create_handle_webhook (
270
+ def _create_handle_webhook (
259
271
coordinators_by_id : dict [str , SwitchBotCoordinator ],
260
272
) -> Callable [[HomeAssistant , str , web .Request ], Awaitable [None ]]:
261
273
"""Create a webhook handler."""
262
274
263
- async def internal_handle_webhook (
275
+ async def _internal_handle_webhook (
264
276
hass : HomeAssistant , webhook_id : str , request : web .Request
265
277
) -> None :
266
278
"""Handle webhook callback."""
@@ -312,4 +324,4 @@ async def internal_handle_webhook(
312
324
313
325
coordinators_by_id [deviceMac ].async_set_updated_data (data ["context" ])
314
326
315
- return internal_handle_webhook
327
+ return _internal_handle_webhook
0 commit comments