mirror of
https://github.com/tomaae/homeassistant-mikrotik_router.git
synced 2025-07-02 05:24:29 +02:00
redo ppp switches
This commit is contained in:
parent
9b2d5c9b68
commit
9b27bf4241
2 changed files with 18 additions and 79 deletions
|
@ -20,14 +20,6 @@ from .switch_types import (
|
||||||
|
|
||||||
_LOGGER = logging.getLogger(__name__)
|
_LOGGER = logging.getLogger(__name__)
|
||||||
|
|
||||||
DEVICE_ATTRIBUTES_PPP_SECRET = [
|
|
||||||
"connected",
|
|
||||||
"service",
|
|
||||||
"profile",
|
|
||||||
"comment",
|
|
||||||
"caller-id",
|
|
||||||
"encoding",
|
|
||||||
]
|
|
||||||
|
|
||||||
DEVICE_ATTRIBUTES_KIDCONTROL = [
|
DEVICE_ATTRIBUTES_KIDCONTROL = [
|
||||||
"rate-limit",
|
"rate-limit",
|
||||||
|
@ -94,13 +86,14 @@ def update_items(inst, mikrotik_controller, async_add_entities, switches):
|
||||||
# Add switches
|
# Add switches
|
||||||
for switch, sid_func in zip(
|
for switch, sid_func in zip(
|
||||||
# Switch type name
|
# Switch type name
|
||||||
["interface", "nat", "mangle", "filter"],
|
["interface", "nat", "mangle", "filter", "ppp_secret"],
|
||||||
# Entity function
|
# Entity function
|
||||||
[
|
[
|
||||||
MikrotikControllerPortSwitch,
|
MikrotikControllerPortSwitch,
|
||||||
MikrotikControllerNATSwitch,
|
MikrotikControllerNATSwitch,
|
||||||
MikrotikControllerMangleSwitch,
|
MikrotikControllerMangleSwitch,
|
||||||
MikrotikControllerFilterSwitch,
|
MikrotikControllerFilterSwitch,
|
||||||
|
MikrotikControllerSwitch,
|
||||||
],
|
],
|
||||||
):
|
):
|
||||||
uid_switch = SWITCH_TYPES[switch]
|
uid_switch = SWITCH_TYPES[switch]
|
||||||
|
@ -550,76 +543,6 @@ class MikrotikControllerFilterSwitch(MikrotikControllerSwitch):
|
||||||
await self._ctrl.async_update()
|
await self._ctrl.async_update()
|
||||||
|
|
||||||
|
|
||||||
# ---------------------------
|
|
||||||
# MikrotikControllerPPPSecretSwitch
|
|
||||||
# ---------------------------
|
|
||||||
class MikrotikControllerPPPSecretSwitch(MikrotikControllerSwitch):
|
|
||||||
"""Representation of a PPP Secret switch."""
|
|
||||||
|
|
||||||
def __init__(self, inst, uid, mikrotik_controller, sid_data):
|
|
||||||
"""Initialize."""
|
|
||||||
super().__init__(inst, uid, mikrotik_controller, sid_data)
|
|
||||||
|
|
||||||
@property
|
|
||||||
def name(self) -> str:
|
|
||||||
"""Return the name."""
|
|
||||||
return f"{self._inst} PPP Secret {self._data['name']}"
|
|
||||||
|
|
||||||
@property
|
|
||||||
def unique_id(self) -> str:
|
|
||||||
"""Return a unique id for this entity."""
|
|
||||||
return f"{self._inst.lower()}-enable_ppp_secret-{self._data['name']}"
|
|
||||||
|
|
||||||
@property
|
|
||||||
def icon(self) -> str:
|
|
||||||
"""Return the icon."""
|
|
||||||
if not self._data["enabled"]:
|
|
||||||
icon = "mdi:account-off-outline"
|
|
||||||
else:
|
|
||||||
icon = "mdi:account-outline"
|
|
||||||
|
|
||||||
return icon
|
|
||||||
|
|
||||||
@property
|
|
||||||
def device_info(self) -> Dict[str, Any]:
|
|
||||||
"""Return a description for device registry."""
|
|
||||||
info = {
|
|
||||||
"identifiers": {
|
|
||||||
(
|
|
||||||
DOMAIN,
|
|
||||||
"serial-number",
|
|
||||||
f"{self._ctrl.data['routerboard']['serial-number']}",
|
|
||||||
"switch",
|
|
||||||
"PPP",
|
|
||||||
)
|
|
||||||
},
|
|
||||||
"manufacturer": self._ctrl.data["resource"]["platform"],
|
|
||||||
"model": self._ctrl.data["resource"]["board-name"],
|
|
||||||
"name": f"{self._inst} PPP",
|
|
||||||
}
|
|
||||||
return info
|
|
||||||
|
|
||||||
async def async_turn_on(self) -> None:
|
|
||||||
"""Turn on the switch."""
|
|
||||||
path = "/ppp/secret"
|
|
||||||
param = "name"
|
|
||||||
value = self._data["name"]
|
|
||||||
mod_param = "disabled"
|
|
||||||
mod_value = False
|
|
||||||
self._ctrl.set_value(path, param, value, mod_param, mod_value)
|
|
||||||
await self._ctrl.force_update()
|
|
||||||
|
|
||||||
async def async_turn_off(self) -> None:
|
|
||||||
"""Turn off the switch."""
|
|
||||||
path = "/ppp/secret"
|
|
||||||
param = "name"
|
|
||||||
value = self._data["name"]
|
|
||||||
mod_param = "disabled"
|
|
||||||
mod_value = True
|
|
||||||
self._ctrl.set_value(path, param, value, mod_param, mod_value)
|
|
||||||
await self._ctrl.async_update()
|
|
||||||
|
|
||||||
|
|
||||||
# ---------------------------
|
# ---------------------------
|
||||||
# MikrotikControllerQueueSwitch
|
# MikrotikControllerQueueSwitch
|
||||||
# ---------------------------
|
# ---------------------------
|
||||||
|
|
|
@ -225,4 +225,20 @@ SWITCH_TYPES = {
|
||||||
data_reference="uniq-id",
|
data_reference="uniq-id",
|
||||||
data_attributes_list=DEVICE_ATTRIBUTES_FILTER,
|
data_attributes_list=DEVICE_ATTRIBUTES_FILTER,
|
||||||
),
|
),
|
||||||
|
"ppp_secret": MikrotikSwitchEntityDescription(
|
||||||
|
key="ppp_secret",
|
||||||
|
name="PPP Secret",
|
||||||
|
icon_enabled="mdi:account-outline",
|
||||||
|
icon_disabled="mdi:account-off-outline",
|
||||||
|
entity_category=None,
|
||||||
|
ha_group="PPP",
|
||||||
|
ha_connection=DOMAIN,
|
||||||
|
ha_connection_value="PPP",
|
||||||
|
data_path="ppp_secret",
|
||||||
|
data_switch_path="/ppp/secret",
|
||||||
|
data_name="name",
|
||||||
|
data_uid="name",
|
||||||
|
data_reference="name",
|
||||||
|
data_attributes_list=DEVICE_ATTRIBUTES_PPP_SECRET,
|
||||||
|
),
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue