|
| 1 | +"""API module of the Pterodactyl integration.""" |
| 2 | + |
| 3 | +from dataclasses import dataclass |
| 4 | +import logging |
| 5 | + |
| 6 | +from pydactyl import PterodactylClient |
| 7 | +from pydactyl.exceptions import ( |
| 8 | + BadRequestError, |
| 9 | + ClientConfigError, |
| 10 | + PterodactylApiError, |
| 11 | + PydactylError, |
| 12 | +) |
| 13 | + |
| 14 | +from homeassistant.core import HomeAssistant |
| 15 | + |
| 16 | +_LOGGER = logging.getLogger(__name__) |
| 17 | + |
| 18 | + |
| 19 | +class PterodactylConfigurationError(Exception): |
| 20 | + """Raised when the configuration is invalid.""" |
| 21 | + |
| 22 | + |
| 23 | +class PterodactylConnectionError(Exception): |
| 24 | + """Raised when no data can be fechted from the server.""" |
| 25 | + |
| 26 | + |
| 27 | +@dataclass |
| 28 | +class PterodactylData: |
| 29 | + """Data for the Pterodactyl server.""" |
| 30 | + |
| 31 | + name: str |
| 32 | + uuid: str |
| 33 | + identifier: str |
| 34 | + state: str |
| 35 | + memory_utilization: int |
| 36 | + cpu_utilization: float |
| 37 | + disk_utilization: int |
| 38 | + network_rx_utilization: int |
| 39 | + network_tx_utilization: int |
| 40 | + uptime: int |
| 41 | + |
| 42 | + |
| 43 | +class PterodactylAPI: |
| 44 | + """Wrapper for Pterodactyl's API.""" |
| 45 | + |
| 46 | + pterodactyl: PterodactylClient | None |
| 47 | + identifiers: list[str] |
| 48 | + |
| 49 | + def __init__(self, hass: HomeAssistant, host: str, api_key: str) -> None: |
| 50 | + """Initialize the Pterodactyl API.""" |
| 51 | + self.hass = hass |
| 52 | + self.host = host |
| 53 | + self.api_key = api_key |
| 54 | + self.pterodactyl = None |
| 55 | + self.identifiers = [] |
| 56 | + |
| 57 | + async def async_init(self): |
| 58 | + """Initialize the Pterodactyl API.""" |
| 59 | + self.pterodactyl = PterodactylClient(self.host, self.api_key) |
| 60 | + |
| 61 | + try: |
| 62 | + paginated_response = await self.hass.async_add_executor_job( |
| 63 | + self.pterodactyl.client.servers.list_servers |
| 64 | + ) |
| 65 | + except ClientConfigError as error: |
| 66 | + raise PterodactylConfigurationError(error) from error |
| 67 | + except ( |
| 68 | + PydactylError, |
| 69 | + BadRequestError, |
| 70 | + PterodactylApiError, |
| 71 | + ) as error: |
| 72 | + raise PterodactylConnectionError(error) from error |
| 73 | + else: |
| 74 | + game_servers = paginated_response.collect() |
| 75 | + for game_server in game_servers: |
| 76 | + self.identifiers.append(game_server["attributes"]["identifier"]) |
| 77 | + |
| 78 | + _LOGGER.debug("Identifiers of Pterodactyl servers: %s", self.identifiers) |
| 79 | + |
| 80 | + def get_server_data(self, identifier: str) -> tuple[dict, dict]: |
| 81 | + """Get all data from the Pterodactyl server.""" |
| 82 | + server = self.pterodactyl.client.servers.get_server(identifier) # type: ignore[union-attr] |
| 83 | + utilization = self.pterodactyl.client.servers.get_server_utilization( # type: ignore[union-attr] |
| 84 | + identifier |
| 85 | + ) |
| 86 | + |
| 87 | + return server, utilization |
| 88 | + |
| 89 | + async def async_get_data(self) -> dict[str, PterodactylData]: |
| 90 | + """Update the data from all Pterodactyl servers.""" |
| 91 | + data = {} |
| 92 | + |
| 93 | + for identifier in self.identifiers: |
| 94 | + try: |
| 95 | + server, utilization = await self.hass.async_add_executor_job( |
| 96 | + self.get_server_data, identifier |
| 97 | + ) |
| 98 | + except ( |
| 99 | + PydactylError, |
| 100 | + BadRequestError, |
| 101 | + PterodactylApiError, |
| 102 | + ) as error: |
| 103 | + raise PterodactylConnectionError(error) from error |
| 104 | + else: |
| 105 | + data[identifier] = PterodactylData( |
| 106 | + name=server["name"], |
| 107 | + uuid=server["uuid"], |
| 108 | + identifier=identifier, |
| 109 | + state=utilization["current_state"], |
| 110 | + cpu_utilization=utilization["resources"]["cpu_absolute"], |
| 111 | + memory_utilization=utilization["resources"]["memory_bytes"], |
| 112 | + disk_utilization=utilization["resources"]["disk_bytes"], |
| 113 | + network_rx_utilization=utilization["resources"]["network_rx_bytes"], |
| 114 | + network_tx_utilization=utilization["resources"]["network_tx_bytes"], |
| 115 | + uptime=utilization["resources"]["uptime"], |
| 116 | + ) |
| 117 | + |
| 118 | + _LOGGER.debug("%s", data[identifier]) |
| 119 | + |
| 120 | + return data |
0 commit comments