mirror of
https://github.com/home-assistant/core.git
synced 2026-07-08 23:34:22 +01:00
ef29183160
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: balloob <1444314+balloob@users.noreply.github.com>
234 lines
7.5 KiB
Python
234 lines
7.5 KiB
Python
"""Proxmox parent entity class."""
|
|
|
|
from typing import Any
|
|
|
|
from yarl import URL
|
|
|
|
from homeassistant.const import CONF_HOST, CONF_PORT
|
|
from homeassistant.helpers.device_registry import DeviceInfo
|
|
from homeassistant.helpers.entity import EntityDescription
|
|
from homeassistant.helpers.update_coordinator import CoordinatorEntity
|
|
|
|
from .const import DOMAIN
|
|
from .coordinator import ProxmoxCoordinator, ProxmoxNodeData
|
|
|
|
|
|
def _proxmox_base_url(coordinator: ProxmoxCoordinator) -> URL:
|
|
"""Return the base URL for the Proxmox VE."""
|
|
data = coordinator.config_entry.data
|
|
return URL.build(
|
|
scheme="https",
|
|
host=data[CONF_HOST],
|
|
port=data[CONF_PORT],
|
|
)
|
|
|
|
|
|
class ProxmoxCoordinatorEntity(CoordinatorEntity[ProxmoxCoordinator]):
|
|
"""Base class for Proxmox entities."""
|
|
|
|
_attr_has_entity_name = True
|
|
|
|
|
|
class ProxmoxNodeEntity(ProxmoxCoordinatorEntity):
|
|
"""Represents any entity created for a Proxmox VE node."""
|
|
|
|
def __init__(
|
|
self,
|
|
coordinator: ProxmoxCoordinator,
|
|
entity_description: EntityDescription,
|
|
node_data: ProxmoxNodeData,
|
|
) -> None:
|
|
"""Initialize the Proxmox node entity."""
|
|
super().__init__(coordinator)
|
|
self._node_data = node_data
|
|
self.device_id = node_data.node["id"]
|
|
self.device_name = node_data.node["node"]
|
|
self.entity_description = entity_description
|
|
self._attr_device_info = DeviceInfo(
|
|
identifiers={
|
|
(DOMAIN, f"{coordinator.config_entry.entry_id}_node_{self.device_id}")
|
|
},
|
|
name=node_data.node.get("node", str(self.device_id)),
|
|
model="Node",
|
|
configuration_url=_proxmox_base_url(coordinator).with_fragment(
|
|
f"v1:0:=node/{node_data.node['node']}"
|
|
),
|
|
)
|
|
|
|
self._attr_unique_id = (
|
|
f"{coordinator.config_entry.entry_id}"
|
|
f"_{node_data.node['id']}"
|
|
f"_{entity_description.key}"
|
|
)
|
|
|
|
@property
|
|
def available(self) -> bool:
|
|
"""Return if the device is available."""
|
|
return super().available and self.device_name in self.coordinator.data
|
|
|
|
|
|
class ProxmoxStorageEntity(ProxmoxCoordinatorEntity):
|
|
"""Represents a Storage entity."""
|
|
|
|
def __init__(
|
|
self,
|
|
coordinator: ProxmoxCoordinator,
|
|
entity_description: EntityDescription,
|
|
storage_data: dict[str, Any],
|
|
node_data: ProxmoxNodeData,
|
|
) -> None:
|
|
"""Initialize the Proxmox Storage entity."""
|
|
super().__init__(coordinator)
|
|
self.entity_description = entity_description
|
|
self._storage_data = storage_data
|
|
self._node_name = node_data.node["node"]
|
|
self.device_id = storage_data["storage"]
|
|
self.device_name = storage_data["storage"]
|
|
|
|
self._attr_device_info = DeviceInfo(
|
|
identifiers={
|
|
(
|
|
DOMAIN,
|
|
f"{coordinator.config_entry.entry_id}_storage_{self.device_id}",
|
|
)
|
|
},
|
|
name=f"Storage ({self.device_name})",
|
|
model="Storage",
|
|
configuration_url=_proxmox_base_url(coordinator).with_fragment(
|
|
f"v1:0:=storage/{self._node_name}/{storage_data['storage']}"
|
|
),
|
|
via_device=(
|
|
DOMAIN,
|
|
f"{coordinator.config_entry.entry_id}_node_{node_data.node['id']}",
|
|
),
|
|
)
|
|
|
|
self._attr_unique_id = (
|
|
f"{coordinator.config_entry.entry_id}"
|
|
f"_{self._node_name}_{self.device_id}"
|
|
f"_{entity_description.key}"
|
|
)
|
|
|
|
@property
|
|
def available(self) -> bool:
|
|
"""Return if the device is available."""
|
|
return (
|
|
super().available
|
|
and self._node_name in self.coordinator.data
|
|
and self.device_id in self.coordinator.data[self._node_name].storages
|
|
)
|
|
|
|
@property
|
|
def storage_data(self) -> dict[str, Any]:
|
|
"""Return the Storage data."""
|
|
return self.coordinator.data[self._node_name].storages[self.device_id]
|
|
|
|
|
|
class ProxmoxVMEntity(ProxmoxCoordinatorEntity):
|
|
"""Represents a VM entity."""
|
|
|
|
def __init__(
|
|
self,
|
|
coordinator: ProxmoxCoordinator,
|
|
entity_description: EntityDescription,
|
|
vm_data: dict[str, Any],
|
|
node_data: ProxmoxNodeData,
|
|
) -> None:
|
|
"""Initialize the Proxmox VM entity."""
|
|
super().__init__(coordinator)
|
|
self.entity_description = entity_description
|
|
self._vm_data = vm_data
|
|
self._node_name = node_data.node["node"]
|
|
self.device_id = vm_data["vmid"]
|
|
self.device_name = vm_data["name"]
|
|
|
|
self._attr_device_info = DeviceInfo(
|
|
identifiers={
|
|
(DOMAIN, f"{coordinator.config_entry.entry_id}_vm_{self.device_id}")
|
|
},
|
|
name=self.device_name,
|
|
model="VM",
|
|
configuration_url=_proxmox_base_url(coordinator).with_fragment(
|
|
f"v1:0:=qemu/{vm_data['vmid']}"
|
|
),
|
|
via_device=(
|
|
DOMAIN,
|
|
f"{coordinator.config_entry.entry_id}_node_{node_data.node['id']}",
|
|
),
|
|
)
|
|
|
|
self._attr_unique_id = (
|
|
f"{coordinator.config_entry.entry_id}"
|
|
f"_{self.device_id}_{entity_description.key}"
|
|
)
|
|
|
|
@property
|
|
def available(self) -> bool:
|
|
"""Return if the device is available."""
|
|
return (
|
|
super().available
|
|
and self._node_name in self.coordinator.data
|
|
and self.device_id in self.coordinator.data[self._node_name].vms
|
|
)
|
|
|
|
@property
|
|
def vm_data(self) -> dict[str, Any]:
|
|
"""Return the VM data."""
|
|
return self.coordinator.data[self._node_name].vms[self.device_id]
|
|
|
|
|
|
class ProxmoxContainerEntity(ProxmoxCoordinatorEntity):
|
|
"""Represents a Container entity."""
|
|
|
|
def __init__(
|
|
self,
|
|
coordinator: ProxmoxCoordinator,
|
|
entity_description: EntityDescription,
|
|
container_data: dict[str, Any],
|
|
node_data: ProxmoxNodeData,
|
|
) -> None:
|
|
"""Initialize the Proxmox Container entity."""
|
|
super().__init__(coordinator)
|
|
self.entity_description = entity_description
|
|
self._container_data = container_data
|
|
self._node_name = node_data.node["node"]
|
|
self.device_id = container_data["vmid"]
|
|
self.device_name = container_data["name"]
|
|
|
|
self._attr_device_info = DeviceInfo(
|
|
identifiers={
|
|
(
|
|
DOMAIN,
|
|
f"{coordinator.config_entry.entry_id}_container_{self.device_id}",
|
|
)
|
|
},
|
|
name=self.device_name,
|
|
model="Container",
|
|
configuration_url=_proxmox_base_url(coordinator).with_fragment(
|
|
f"v1:0:=lxc/{container_data['vmid']}"
|
|
),
|
|
via_device=(
|
|
DOMAIN,
|
|
f"{coordinator.config_entry.entry_id}_node_{node_data.node['id']}",
|
|
),
|
|
)
|
|
|
|
self._attr_unique_id = (
|
|
f"{coordinator.config_entry.entry_id}"
|
|
f"_{self.device_id}_{entity_description.key}"
|
|
)
|
|
|
|
@property
|
|
def available(self) -> bool:
|
|
"""Return if the device is available."""
|
|
return (
|
|
super().available
|
|
and self._node_name in self.coordinator.data
|
|
and self.device_id in self.coordinator.data[self._node_name].containers
|
|
)
|
|
|
|
@property
|
|
def container_data(self) -> dict[str, Any]:
|
|
"""Return the Container data."""
|
|
return self.coordinator.data[self._node_name].containers[self.device_id]
|