17 Commits
0.2.0 ... 0.2.4

Author SHA1 Message Date
a2db56e704 custom_components/whatsapp_bridge_integration/__init__.py aktualisiert 2026-06-15 09:57:12 +00:00
6a74cc7f2e custom_components/whatsapp_bridge_integration/manifest.json aktualisiert 2026-06-15 09:56:54 +00:00
2701a6f908 CHANGELOG.md aktualisiert 2026-06-15 09:56:41 +00:00
1d85bd7905 custom_components/whatsapp_bridge_integration/sensor.py aktualisiert
0.2.3
2026-06-15 09:52:35 +00:00
d4ede6669a custom_components/whatsapp_bridge_integration/__init__.py aktualisiert
0.2.3
2026-06-15 09:52:16 +00:00
eb6be8cdf4 custom_components/whatsapp_bridge_integration/manifest.json aktualisiert
0.2.3
2026-06-15 09:51:57 +00:00
2c62edfa44 CHANGELOG.md aktualisiert
0.2.3
2026-06-15 09:51:42 +00:00
faed01cd8f CHANGELOG.md aktualisiert 2026-06-15 09:38:41 +00:00
7175522f4a custom_components/whatsapp_bridge_integration/sensor.py aktualisiert
0.2.2
2026-06-15 09:37:06 +00:00
3b99c037ae custom_components/whatsapp_bridge_integration/__init__.py aktualisiert
0.2.2
2026-06-15 09:36:42 +00:00
4f8a4304ba custom_components/whatsapp_bridge_integration/manifest.json aktualisiert
0.2.2
2026-06-15 09:36:19 +00:00
bcff98b44b CHANGELOG.md aktualisiert
0.2.2
2026-06-15 09:36:00 +00:00
40f74f9b8b CHANGELOG.md aktualisiert 2026-06-15 09:27:36 +00:00
5e1c07cecf CHANGELOG.md aktualisiert
0.2.1
2026-06-15 09:26:57 +00:00
2cfb881cc0 custom_components/whatsapp_bridge_integration/sensor.py aktualisiert
0.2.1
2026-06-15 09:26:10 +00:00
c5d216e458 custom_components/whatsapp_bridge_integration/__init__.py aktualisiert
0.2.1
2026-06-15 09:25:47 +00:00
4f08cbbd6d custom_components/whatsapp_bridge_integration/manifest.json aktualisiert
0.2.1
2026-06-15 09:25:26 +00:00
4 changed files with 75 additions and 33 deletions

View File

@@ -1,10 +1,28 @@
# CHANGELOG - Whatsapp Bridge Integration # CHANGELOG - Whatsapp Bridge Integration
## Release 0.2.4 - 2026-06-15
- **Fix:** Resolved a `TypeError` in `async_get_or_create()` caused by stricter Home Assistant Core requirements demanding a `config_entry_id` for all device registry entries.
- **Architecture Refinement:** The global "WhatsApp Bridge Hub" now utilizes a shared multi-entry architecture. It dynamically links to active configurations under a static identifier, ensuring the hub remains a single, non-duplicated entity that survives individual account deletions.
## Release 0.2.3 - 2026-06-15
- **New (Orphaned Devices Cleaner):** Added an automatic database cleanup utility. On startup, the integration now automatically identifies and removes orphaned or "ghost" devices left behind by previous configuration changes or older versions.
- **Fix:** Decoupled the central "WhatsApp Bridge Hub" device from specific config entry bindings. The Hub is now persistent and indestructible, preventing global entities (Broadcast and Live Status) from disappearing when individual user profiles are deleted or re-added.
## Release 0.2.2 - 2026-06-15
- **Architecture Change:** Introduced a dedicated "WhatsApp Bridge Hub" device. This central device acts as a single point of reference for global components, preventing UI clutter.
- **Fix:** Moved the global live status sensor and the virtual broadcast entity to the new WhatsApp Bridge Hub device. This ensures they remain fully visible and accessible across the Home Assistant UI, automations, and service calls without being duplicated across individual user accounts.
- **Improvement:** Maintained isolated, clean individual devices for each configured account profile.
## Release 0.2.1 - 2026-06-15
- **Fix:** Resolved device assignment duplication where a single global gateway card duplicated across all account tabs.
- **Fix:** Globalized the live status sensor and the broadcast entity to instantiate exactly once for the entire integration rather than incorrectly duplicating per account.
- **Optimization:** Code refactoring within `sensor.py` to prevent entity duplication when utilizing multiple profiles.
## Release 0.2.0 - 2026-06-15 ## Release 0.2.0 - 2026-06-15
- New: Setup of a main device (WhatsApp Bridge Gateway) in the Home Assistant device registry. - **New:** Setup of a main device (WhatsApp Bridge Gateway) in the Home Assistant device registry.
- New: Integrated global service `whatsapp_bridge.send_broadcast`, which operates independently of individual profile entities and can send messages to any number or group ID. - **New:** Integrated global service `whatsapp_bridge.send_broadcast`, which operates independently of individual profile entities and can send messages to any number or group ID.
- New: Added status sensor (`sensor.whatsapp_bridge_status`). This queries the add-on's new API and provides the current connection status (`CONNECTED`, `WAITING_FOR_SCAN`, `INITIALIZING`, `OFFLINE`) directly within Home Assistant. - **New:** Added status sensor (`sensor.whatsapp_bridge_status`). This queries the add-on's new API and provides the current connection status (`CONNECTED`, `WAITING_FOR_SCAN`, `INITIALIZING`, `OFFLINE`) directly within Home Assistant.
- Improved: The sensor is assigned to the new main device, which significantly simplifies automations (e.g., alert on connection loss). - **Improved:** The sensor is assigned to the new main device, which significantly simplifies automations (e.g., alert on connection loss).
## Release 0.1.7 ## Release 0.1.7
- Previous stable version - Previous stable version

View File

@@ -9,20 +9,49 @@ async def async_setup(hass: HomeAssistant, config: dict):
return True return True
async def async_setup_entry(hass: HomeAssistant, entry): async def async_setup_entry(hass: HomeAssistant, entry):
"""Set up entry, create general device and forward to sensor platform.""" """Set up entry, create devices, and clean up old orphaned devices."""
# Lege die Daten im hass-Objekt ab
hass.data.setdefault(DOMAIN, {}) hass.data.setdefault(DOMAIN, {})
hass.data[DOMAIN][entry.entry_id] = entry.data hass.data[DOMAIN][entry.entry_id] = entry.data
# 1. Hauptgerät (General Device) im Device Registry anlegen
device_registry = dr.async_get(hass) device_registry = dr.async_get(hass)
# 1. Automatisches Aufräumen von alten Geister-Geräten
active_entry_ids = set(hass.config_entries.async_entries(DOMAIN))
active_ids = {e.entry_id for e in active_entry_ids}
# Durchsuche die HA-Datenbank nach Geräten unserer Integration
devices_to_clean = [
dev for dev in device_registry.devices.values()
if any(identifier[0] == DOMAIN for identifier in dev.identifiers)
]
for device in devices_to_clean:
# Falls ein Gerät zu einem gelöschten Config Entry gehört -> Löschen!
# Der globale Hub ("global_bridge_hub") wird ignoriert und bleibt erhalten.
for config_id in device.config_entries:
if config_id not in active_ids and not any(idx == "global_bridge_hub" for _, idx in device.identifiers):
_LOGGER.info(f"Entferne verwaistes WhatsApp-Gerät: {device.name}")
device_registry.async_remove_device(device.id)
# 2. Eigenes Gerät SPEZIFISCH für dieses aktive Konto anlegen
device_registry.async_get_or_create( device_registry.async_get_or_create(
config_entry_id=entry.entry_id, config_entry_id=entry.entry_id,
identifiers={(DOMAIN, "general_gateway")}, identifiers={(DOMAIN, entry.entry_id)},
name="WhatsApp Bridge Gateway", name=f"WhatsApp {entry.title}",
manufacturer="Bahmcloud", manufacturer="Bahmcloud",
model="Bridge Server v0.2.0", model="Kontakt-Endpunkt",
sw_version="0.2.0", sw_version="0.2.4",
)
# 3. Zentralen System-Hub anlegen mit erzwungener config_entry_id Bindung (HA Core Anforderung)
# Nutzt Multi-Entry-Zusammenführung über den fixen "global_bridge_hub" Identifier.
device_registry.async_get_or_create(
config_entry_id=entry.entry_id,
identifiers={(DOMAIN, "global_bridge_hub")},
name="WhatsApp Bridge Hub",
manufacturer="Bahmcloud",
model="Bridge Server",
sw_version="0.2.4",
) )
# Forward the setup to the sensor platform to create entities # Forward the setup to the sensor platform to create entities

View File

@@ -4,7 +4,7 @@
"documentation": "https://git.bahmcloud.de/bahmcloud/Whatsapp-Bridge-Integration", "documentation": "https://git.bahmcloud.de/bahmcloud/Whatsapp-Bridge-Integration",
"dependencies": [], "dependencies": [],
"codeowners": ["@bahmcloud"], "codeowners": ["@bahmcloud"],
"version": "0.2.0", "version": "0.2.4",
"iot_class": "local_polling", "iot_class": "local_polling",
"config_flow": true "config_flow": true
} }

View File

@@ -10,7 +10,6 @@ from .const import DOMAIN
_LOGGER = logging.getLogger(__name__) _LOGGER = logging.getLogger(__name__)
# Polling-Intervall (15 Sekunden)
SCAN_INTERVAL = timedelta(seconds=15) SCAN_INTERVAL = timedelta(seconds=15)
async def async_setup_entry(hass, entry, async_add_entities): async def async_setup_entry(hass, entry, async_add_entities):
@@ -37,22 +36,19 @@ async def async_setup_entry(hass, entry, async_add_entities):
update_interval=SCAN_INTERVAL, update_interval=SCAN_INTERVAL,
) )
# Ersten Abruf vor dem Erstellen der Entitäten erzwingen
try: try:
await coordinator.async_config_entry_first_refresh() await coordinator.async_config_entry_first_refresh()
except UpdateFailed: except UpdateFailed:
_LOGGER.warning("Erster Status-Abruf fehlgeschlagen. Add-on läuft eventuell noch an.") _LOGGER.warning("Erster Status-Abruf fehlgeschlagen. Add-on läuft eventuell noch an.")
# Basis-Entitäten: Account-Sensor und der neue Live-Status-Sensor # Jeder Account bekommt immer seine eigene Entität
entities = [ entities = [WhatsAppAccountEntity(entry)]
WhatsAppAccountEntity(entry),
WhatsAppStatusSensor(coordinator, entry)
]
# Prüfen, ob die Broadcast-Entität schon existiert # Globale Entitäten (Status & Broadcast) NUR EINMALIG für die gesamte Integration anlegen
if not hass.data[DOMAIN].get("broadcast_registered"): if not hass.data[DOMAIN].get("global_entities_registered"):
entities.append(WhatsAppStatusSensor(coordinator))
entities.append(WhatsAppBroadcastEntity()) entities.append(WhatsAppBroadcastEntity())
hass.data[DOMAIN]["broadcast_registered"] = True hass.data[DOMAIN]["global_entities_registered"] = True
async_add_entities(entities, True) async_add_entities(entities, True)
@@ -75,14 +71,14 @@ class WhatsAppAccountEntity(SensorEntity):
@property @property
def device_info(self) -> DeviceInfo: def device_info(self) -> DeviceInfo:
"""Ordnet diesen Sensor dem Hauptgerät zu.""" """Ordnet diesen Sensor seinem spezifischen Personen-Gerät zu."""
return DeviceInfo( return DeviceInfo(
identifiers={(DOMAIN, "general_gateway")}, identifiers={(DOMAIN, self._entry.entry_id)},
) )
class WhatsAppBroadcastEntity(SensorEntity): class WhatsAppBroadcastEntity(SensorEntity):
"""Virtual 'All Accounts' Entity.""" """Virtual 'All Accounts' Entity, geordnet unter dem zentralen Hub."""
def __init__(self): def __init__(self):
self._attr_name = "WhatsApp Broadcast (All)" self._attr_name = "WhatsApp Broadcast (All)"
self._attr_unique_id = "whatsapp_bridge_broadcast_all" self._attr_unique_id = "whatsapp_bridge_broadcast_all"
@@ -97,20 +93,19 @@ class WhatsAppBroadcastEntity(SensorEntity):
@property @property
def device_info(self) -> DeviceInfo: def device_info(self) -> DeviceInfo:
"""Ordnet diesen Sensor dem Hauptgerät zu.""" """Ordnet diese Entität dem permanenten, zentralen Hub-Gerät zu."""
return DeviceInfo( return DeviceInfo(
identifiers={(DOMAIN, "general_gateway")}, identifiers={(DOMAIN, "global_bridge_hub")},
) )
class WhatsAppStatusSensor(SensorEntity): class WhatsAppStatusSensor(SensorEntity):
"""Echter Live-Status-Sensor, gekoppelt an die Add-on API.""" """Echter Live-Status-Sensor, geordnet unter dem zentralen Hub."""
def __init__(self, coordinator, entry): def __init__(self, coordinator):
self.coordinator = coordinator self.coordinator = coordinator
self._entry = entry
self._attr_name = "WhatsApp Bridge Status" self._attr_name = "WhatsApp Bridge Status"
self._attr_unique_id = f"{entry.entry_id}_bridge_live_status" self._attr_unique_id = "whatsapp_bridge_live_status_global"
self._attr_icon = "mdi:whatsapp" self._attr_icon = "mdi:whatsapp"
@property @property
@@ -150,9 +145,9 @@ class WhatsAppStatusSensor(SensorEntity):
@property @property
def device_info(self) -> DeviceInfo: def device_info(self) -> DeviceInfo:
"""Ordnet diesen Sensor dem Hauptgerät zu.""" """Ordnet diese Entität dem permanenten, zentralen Hub-Gerät zu."""
return DeviceInfo( return DeviceInfo(
identifiers={(DOMAIN, "general_gateway")}, identifiers={(DOMAIN, "global_bridge_hub")},
) )
async def async_added_to_hass(self): async def async_added_to_hass(self):