tomaae.homeassistant-mikrot.../custom_components/mikrotik_router/switch.py

402 lines
13 KiB
Python
Raw Normal View History

"""Support for the Mikrotik Router switches."""
import logging
from homeassistant.components.switch import SwitchDevice
from homeassistant.core import callback
from homeassistant.helpers.device_registry import CONNECTION_NETWORK_MAC
from homeassistant.helpers.dispatcher import async_dispatcher_connect
from homeassistant.helpers.restore_state import RestoreEntity
from homeassistant.const import (
CONF_NAME,
ATTR_ATTRIBUTION,
)
from .const import (
DOMAIN,
DATA_CLIENT,
ATTRIBUTION,
)
_LOGGER = logging.getLogger(__name__)
2019-12-03 18:30:45 +01:00
DEVICE_ATTRIBUTES_IFACE = [
"running",
"enabled",
"comment",
"client-ip-address",
"client-mac-address",
"port-mac-address",
"last-link-down-time",
"last-link-up-time",
"link-downs",
"actual-mtu",
"type",
"name",
"default-name",
]
2019-12-03 18:30:45 +01:00
DEVICE_ATTRIBUTES_NAT = [
"protocol",
"dst-port",
"in-interface",
"to-addresses",
"to-ports",
"comment",
]
2019-12-04 20:13:11 +01:00
DEVICE_ATTRIBUTES_SCRIPT = [
"last-started",
"run-count",
]
# ---------------------------
# async_setup_entry
# ---------------------------
async def async_setup_entry(hass, config_entry, async_add_entities):
"""Set up switches for Mikrotik Router component."""
name = config_entry.data[CONF_NAME]
mikrotik_controller = hass.data[DOMAIN][DATA_CLIENT][config_entry.entry_id]
switches = {}
@callback
def update_controller():
"""Update the values of the controller."""
update_items(name, mikrotik_controller, async_add_entities, switches)
mikrotik_controller.listeners.append(
async_dispatcher_connect(hass, mikrotik_controller.signal_update, update_controller)
)
update_controller()
return
# ---------------------------
# update_items
# ---------------------------
@callback
def update_items(name, mikrotik_controller, async_add_entities, switches):
"""Update device switch state from the controller."""
new_switches = []
2019-12-04 20:13:11 +01:00
# Add interface switches
for uid in mikrotik_controller.data['interface']:
if mikrotik_controller.data['interface'][uid]['type'] == "ether":
2019-12-03 18:30:45 +01:00
item_id = name + "-iface-" + mikrotik_controller.data['interface'][uid]['default-name']
if item_id in switches:
if switches[item_id].enabled:
switches[item_id].async_schedule_update_ha_state()
continue
2019-12-03 18:30:45 +01:00
switches[item_id] = MikrotikControllerPortSwitch(name, uid, mikrotik_controller)
new_switches.append(switches[item_id])
2019-12-04 20:13:11 +01:00
# Add NAT switches
2019-12-03 18:30:45 +01:00
for uid in mikrotik_controller.data['nat']:
item_id = name + "-nat-" + mikrotik_controller.data['nat'][uid]['name']
if item_id in switches:
if switches[item_id].enabled:
switches[item_id].async_schedule_update_ha_state()
continue
2019-12-03 18:30:45 +01:00
switches[item_id] = MikrotikControllerNATSwitch(name, uid, mikrotik_controller)
new_switches.append(switches[item_id])
2019-12-04 20:13:11 +01:00
# Add script switches
for uid in mikrotik_controller.data['script']:
item_id = name + "-script-" + mikrotik_controller.data['script'][uid]['name']
if item_id in switches:
if switches[item_id].enabled:
switches[item_id].async_schedule_update_ha_state()
continue
2019-12-04 20:13:11 +01:00
switches[item_id] = MikrotikControllerScriptSwitch(name, uid, mikrotik_controller)
new_switches.append(switches[item_id])
if new_switches:
async_add_entities(new_switches)
return
# ---------------------------
2019-12-03 18:30:45 +01:00
# MikrotikControllerSwitch
# ---------------------------
2019-12-03 18:30:45 +01:00
class MikrotikControllerSwitch(SwitchDevice, RestoreEntity):
"""Representation of a network port switch."""
def __init__(self, name, uid, mikrotik_controller):
2019-12-03 18:30:45 +01:00
"""Set up switch."""
self._name = name
self._uid = uid
self.mikrotik_controller = mikrotik_controller
2019-12-03 18:30:45 +01:00
async def async_added_to_hass(self):
"""Switch entity created."""
_LOGGER.debug("New switch %s (%s)", self._name, self._uid)
return
2019-12-03 18:30:45 +01:00
async def async_update(self):
"""Synchronize state with controller."""
# await self.mikrotik_controller.async_update()
return
2019-12-03 18:30:45 +01:00
@property
def available(self) -> bool:
"""Return if controller is available."""
return self.mikrotik_controller.connected()
# ---------------------------
# MikrotikControllerPortSwitch
# ---------------------------
class MikrotikControllerPortSwitch(MikrotikControllerSwitch):
"""Representation of a network port switch."""
2019-12-03 18:30:45 +01:00
def __init__(self, name, uid, mikrotik_controller):
"""Set up tracked port."""
super().__init__(name, uid, mikrotik_controller)
self._attrs = {
ATTR_ATTRIBUTION: ATTRIBUTION,
}
async def async_added_to_hass(self):
"""Port entity created."""
_LOGGER.debug("New port switch %s (%s)", self._name, self.mikrotik_controller.data['interface'][self._uid]['port-mac-address'])
return
@property
def name(self) -> str:
"""Return the name of the port."""
2019-12-03 18:30:45 +01:00
return f"{self._name} port {self.mikrotik_controller.data['interface'][self._uid]['default-name']}"
@property
def unique_id(self) -> str:
"""Return a unique identifier for this port."""
return f"{self._name.lower()}-enable_switch-{self.mikrotik_controller.data['interface'][self._uid]['port-mac-address']}"
@property
def icon(self):
"""Return the icon."""
if self.mikrotik_controller.data['interface'][self._uid]['running']:
icon = 'mdi:lan-connect'
else:
icon = 'mdi:lan-pending'
if not self.mikrotik_controller.data['interface'][self._uid]['enabled']:
icon = 'mdi:lan-disconnect'
return icon
@property
def device_info(self):
"""Return a port description for device registry."""
info = {
"connections": {(CONNECTION_NETWORK_MAC, self.mikrotik_controller.data['interface'][self._uid]['port-mac-address'])},
"manufacturer": self.mikrotik_controller.data['resource']['platform'],
2019-12-03 18:30:45 +01:00
"model": self.mikrotik_controller.data['resource']['board-name'],
"name": self.mikrotik_controller.data['interface'][self._uid]['default-name'],
}
return info
@property
def device_state_attributes(self):
"""Return the port state attributes."""
attributes = self._attrs
2019-12-03 18:30:45 +01:00
for variable in DEVICE_ATTRIBUTES_IFACE:
if variable in self.mikrotik_controller.data['interface'][self._uid]:
attributes[variable] = self.mikrotik_controller.data['interface'][self._uid][variable]
return attributes
async def async_turn_on(self):
"""Turn on the switch."""
path = '/interface'
param = 'default-name'
value = self.mikrotik_controller.data['interface'][self._uid][param]
mod_param = 'disabled'
mod_value = False
self.mikrotik_controller.set_value(path, param, value, mod_param, mod_value)
await self.mikrotik_controller.force_update()
return
async def async_turn_off(self):
"""Turn on the switch."""
path = '/interface'
param = 'default-name'
value = self.mikrotik_controller.data['interface'][self._uid][param]
mod_param = 'disabled'
mod_value = True
self.mikrotik_controller.set_value(path, param, value, mod_param, mod_value)
await self.mikrotik_controller.async_update()
return
@property
def is_on(self):
"""Return true if device is on."""
return self.mikrotik_controller.data['interface'][self._uid]['enabled']
2019-12-03 18:30:45 +01:00
# ---------------------------
# MikrotikControllerNATSwitch
# ---------------------------
class MikrotikControllerNATSwitch(MikrotikControllerSwitch):
"""Representation of a NAT switch."""
2019-12-03 18:30:45 +01:00
def __init__(self, name, uid, mikrotik_controller):
"""Set up NAT switch."""
super().__init__(name, uid, mikrotik_controller)
2019-12-03 18:30:45 +01:00
self._attrs = {
ATTR_ATTRIBUTION: ATTRIBUTION,
}
2019-12-03 18:30:45 +01:00
async def async_added_to_hass(self):
"""NAT switch entity created."""
_LOGGER.debug("New port switch %s (%s)", self._name, self.mikrotik_controller.data['nat'][self._uid]['name'])
return
2019-12-03 18:30:45 +01:00
@property
def name(self) -> str:
"""Return the name of the NAT switch."""
return f"{self._name} NAT {self.mikrotik_controller.data['nat'][self._uid]['name']}"
2019-12-03 18:30:45 +01:00
@property
def unique_id(self) -> str:
"""Return a unique identifier for this NAT switch."""
return f"{self._name.lower()}-nat_switch-{self.mikrotik_controller.data['nat'][self._uid]['name']}"
2019-12-03 18:30:45 +01:00
@property
def icon(self):
"""Return the icon."""
if not self.mikrotik_controller.data['nat'][self._uid]['enabled']:
icon = 'mdi:network-off-outline'
else:
icon = 'mdi:network-outline'
2019-12-03 18:30:45 +01:00
return icon
2019-12-03 18:30:45 +01:00
@property
def device_info(self):
"""Return a NAT switch description for device registry."""
info = {
"identifiers": {(DOMAIN, "serial-number", self.mikrotik_controller.data['routerboard']['serial-number'], "switch", "NAT")},
"manufacturer": self.mikrotik_controller.data['resource']['platform'],
"model": self.mikrotik_controller.data['resource']['board-name'],
"name": "NAT",
}
return info
2019-12-03 18:30:45 +01:00
@property
def device_state_attributes(self):
"""Return the NAT switch state attributes."""
attributes = self._attrs
2019-12-03 18:30:45 +01:00
for variable in DEVICE_ATTRIBUTES_NAT:
if variable in self.mikrotik_controller.data['nat'][self._uid]:
attributes[variable] = self.mikrotik_controller.data['nat'][self._uid][variable]
2019-12-03 18:30:45 +01:00
return attributes
async def async_turn_on(self):
"""Turn on the switch."""
path = '/ip/firewall/nat'
param = '.id'
value = self._uid
mod_param = 'disabled'
mod_value = False
self.mikrotik_controller.set_value(path, param, value, mod_param, mod_value)
await self.mikrotik_controller.force_update()
return
async def async_turn_off(self):
"""Turn on the switch."""
path = '/ip/firewall/nat'
param = '.id'
value = self._uid
mod_param = 'disabled'
mod_value = True
self.mikrotik_controller.set_value(path, param, value, mod_param, mod_value)
await self.mikrotik_controller.async_update()
return
@property
def is_on(self):
"""Return true if device is on."""
return self.mikrotik_controller.data['nat'][self._uid]['enabled']
2019-12-04 20:13:11 +01:00
# ---------------------------
# MikrotikControllerScriptSwitch
# ---------------------------
class MikrotikControllerScriptSwitch(MikrotikControllerSwitch):
"""Representation of a script switch."""
2019-12-04 20:13:11 +01:00
def __init__(self, name, uid, mikrotik_controller):
"""Set up script switch."""
super().__init__(name, uid, mikrotik_controller)
2019-12-04 20:13:11 +01:00
self._attrs = {
ATTR_ATTRIBUTION: ATTRIBUTION,
}
2019-12-04 20:13:11 +01:00
async def async_added_to_hass(self):
"""Script switch entity created."""
_LOGGER.debug("New script switch %s (%s)", self._name, self.mikrotik_controller.data['script'][self._uid]['name'])
return
2019-12-04 20:13:11 +01:00
@property
def name(self) -> str:
"""Return the name of the script switch."""
return f"{self._name} script {self.mikrotik_controller.data['script'][self._uid]['name']}"
2019-12-04 20:13:11 +01:00
@property
def unique_id(self) -> str:
"""Return a unique identifier for this script switch."""
return f"{self._name.lower()}-script_switch-{self.mikrotik_controller.data['script'][self._uid]['name']}"
2019-12-04 20:13:11 +01:00
@property
def icon(self):
"""Return the icon."""
return 'mdi:script-text-outline'
2019-12-04 20:13:11 +01:00
@property
def device_info(self):
"""Return a script switch description for device registry."""
info = {
"identifiers": {(DOMAIN, "serial-number", self.mikrotik_controller.data['routerboard']['serial-number'], "switch", "Scripts")},
"manufacturer": self.mikrotik_controller.data['resource']['platform'],
"model": self.mikrotik_controller.data['resource']['board-name'],
"name": "Scripts",
}
return info
2019-12-04 20:13:11 +01:00
@property
def device_state_attributes(self):
"""Return the script switch state attributes."""
attributes = self._attrs
2019-12-04 20:13:11 +01:00
for variable in DEVICE_ATTRIBUTES_SCRIPT:
if variable in self.mikrotik_controller.data['script'][self._uid]:
attributes[variable] = self.mikrotik_controller.data['script'][self._uid][variable]
2019-12-04 20:13:11 +01:00
return attributes
async def async_turn_on(self):
"""Turn on the switch."""
self.mikrotik_controller.run_script(self.mikrotik_controller.data['script'][self._uid]['name'])
await self.mikrotik_controller.force_update()
return
async def async_turn_off(self):
"""Turn off the switch."""
return
@property
def is_on(self):
"""Return true if device is on."""
return False