"""Repairs for DoorBird.""" from __future__ import annotations import voluptuous as vol from homeassistant import data_entry_flow from homeassistant.components.repairs import RepairsFlow from homeassistant.core import HomeAssistant from homeassistant.helpers import issue_registry as ir class DoorBirdReloadConfirmRepairFlow(RepairsFlow): """Handler to show doorbird error and reload.""" def __init__(self, entry_id: str) -> None: """Initialize the flow.""" self.entry_id = entry_id async def async_step_init( self, user_input: dict[str, str] | None = None ) -> data_entry_flow.FlowResult: """Handle the first step of a fix flow.""" return await self.async_step_confirm() async def async_step_confirm( self, user_input: dict[str, str] | None = None ) -> data_entry_flow.FlowResult: """Handle the confirm step of a fix flow.""" if user_input is not None: self.hass.config_entries.async_schedule_reload(self.entry_id) return self.async_create_entry(data={}) issue_registry = ir.async_get(self.hass) description_placeholders = None if issue := issue_registry.async_get_issue(self.handler, self.issue_id): description_placeholders = issue.translation_placeholders return self.async_show_form( step_id="confirm", data_schema=vol.Schema({}), description_placeholders=description_placeholders, ) async def async_create_fix_flow( hass: HomeAssistant, issue_id: str, data: dict[str, str | int | float | None] | None, ) -> RepairsFlow: """Create flow.""" assert data is not None entry_id = data["entry_id"] assert isinstance(entry_id, str) return DoorBirdReloadConfirmRepairFlow(entry_id=entry_id)