mirror of
https://github.com/tomaae/homeassistant-mikrotik_router.git
synced 2025-06-26 02:38:47 +02:00
338 lines
12 KiB
Python
338 lines
12 KiB
Python
|
"""Mikrotik Router integration."""
|
||
|
|
||
|
from .mikrotikapi import MikrotikAPI
|
||
|
|
||
|
from datetime import timedelta
|
||
|
import logging
|
||
|
from homeassistant.helpers.dispatcher import async_dispatcher_send
|
||
|
from homeassistant.helpers.event import async_track_time_interval, async_track_time_change
|
||
|
from homeassistant import config_entries
|
||
|
from homeassistant.util import Throttle
|
||
|
from homeassistant.const import CONF_NAME, CONF_HOST, CONF_PORT, CONF_USERNAME, CONF_PASSWORD, CONF_SSL
|
||
|
from .const import (
|
||
|
DEFAULT_NAME,
|
||
|
DOMAIN,
|
||
|
DATA_CLIENT,
|
||
|
CONF_TRACK_ARP,
|
||
|
DEFAULT_TRACK_ARP,
|
||
|
CONF_SCAN_INTERVAL,
|
||
|
DEFAULT_SCAN_INTERVAL,
|
||
|
)
|
||
|
|
||
|
_LOGGER = logging.getLogger(__name__)
|
||
|
|
||
|
#DEFAULT_SCAN_INTERVAL = timedelta(seconds=DEFAULT_SCAN_INTERVAL)
|
||
|
|
||
|
#---------------------------
|
||
|
# async_setup
|
||
|
#---------------------------
|
||
|
async def async_setup(hass, config):
|
||
|
"""Set up configured Mikrotik Controller."""
|
||
|
hass.data[DOMAIN] = {}
|
||
|
hass.data[DOMAIN][DATA_CLIENT] = {}
|
||
|
return True
|
||
|
|
||
|
#---------------------------
|
||
|
# async_setup_entry
|
||
|
#---------------------------
|
||
|
async def async_setup_entry(hass, config_entry):
|
||
|
"""Set up Mikrotik Router as config entry."""
|
||
|
name = config_entry.data[CONF_NAME]
|
||
|
host = config_entry.data[CONF_HOST]
|
||
|
port = config_entry.data[CONF_PORT]
|
||
|
username = config_entry.data[CONF_USERNAME]
|
||
|
password = config_entry.data[CONF_PASSWORD]
|
||
|
use_ssl = config_entry.data[CONF_SSL]
|
||
|
|
||
|
mikrotik_controller = MikrotikControllerData(hass, config_entry, name, host, port, username, password, use_ssl)
|
||
|
await mikrotik_controller.hwinfo_update()
|
||
|
await mikrotik_controller.async_update()
|
||
|
|
||
|
if not mikrotik_controller.data:
|
||
|
raise ConfigEntryNotReady()
|
||
|
|
||
|
hass.data[DOMAIN][DATA_CLIENT][config_entry.entry_id] = mikrotik_controller
|
||
|
|
||
|
#hass.async_create_task(
|
||
|
# hass.config_entries.async_forward_entry_setup(config_entry, "sensor")
|
||
|
#)
|
||
|
|
||
|
hass.async_create_task(
|
||
|
hass.config_entries.async_forward_entry_setup(config_entry, "device_tracker")
|
||
|
)
|
||
|
|
||
|
device_registry = await hass.helpers.device_registry.async_get_registry()
|
||
|
device_registry.async_get_or_create(
|
||
|
config_entry_id=config_entry.entry_id,
|
||
|
manufacturer=mikrotik_controller.data['resource']['platform'],
|
||
|
model=mikrotik_controller.data['routerboard']['model'],
|
||
|
name=mikrotik_controller.data['routerboard']['model'],
|
||
|
sw_version=mikrotik_controller.data['resource']['version'],
|
||
|
)
|
||
|
|
||
|
return True
|
||
|
|
||
|
#---------------------------
|
||
|
# async_unload_entry
|
||
|
#---------------------------
|
||
|
async def async_unload_entry(hass, config_entry):
|
||
|
"""Unload a config entry."""
|
||
|
mikrotik_controller = hass.data[DOMAIN][DATA_CLIENT][config_entry.entry_id]
|
||
|
await hass.config_entries.async_forward_entry_unload(config_entry, "sensor")
|
||
|
await hass.config_entries.async_forward_entry_unload(config_entry, "device_tracker")
|
||
|
await mikrotik_controller.async_reset()
|
||
|
hass.data[DOMAIN][DATA_CLIENT].pop(config_entry.entry_id)
|
||
|
return True
|
||
|
|
||
|
#---------------------------
|
||
|
# MikrotikControllerData
|
||
|
#---------------------------
|
||
|
class MikrotikControllerData():
|
||
|
def __init__(self, hass, config_entry, name, host, port, username, password, use_ssl):
|
||
|
"""Initialize."""
|
||
|
self.name = name
|
||
|
self.hass = hass
|
||
|
self.config_entry = config_entry
|
||
|
|
||
|
self.data = {}
|
||
|
self.data['routerboard'] = {}
|
||
|
self.data['resource'] = {}
|
||
|
self.data['interface'] = {}
|
||
|
self.data['arp'] = {}
|
||
|
|
||
|
self.listeners = []
|
||
|
|
||
|
self.api = MikrotikAPI(host, username, password, port, use_ssl)
|
||
|
if not self.api.connect():
|
||
|
self.api = None
|
||
|
|
||
|
async_track_time_interval(self.hass, self.force_update, self.option_scan_interval)
|
||
|
|
||
|
return
|
||
|
|
||
|
async def force_update(self, now=None):
|
||
|
"""Periodic update."""
|
||
|
await self.async_update()
|
||
|
#async_track_time_change(self.hass, self.force_update, self.option_scan_interval)
|
||
|
return
|
||
|
|
||
|
#---------------------------
|
||
|
# option_track_arp
|
||
|
#---------------------------
|
||
|
@property
|
||
|
def option_track_arp(self):
|
||
|
"""Config entry option to not track ARP."""
|
||
|
return self.config_entry.options.get(CONF_TRACK_ARP, DEFAULT_TRACK_ARP)
|
||
|
|
||
|
#---------------------------
|
||
|
# option_scan_interval
|
||
|
#---------------------------
|
||
|
@property
|
||
|
def option_scan_interval(self):
|
||
|
"""Config entry option scan interval."""
|
||
|
scan_interval = self.config_entry.options.get(CONF_SCAN_INTERVAL, DEFAULT_SCAN_INTERVAL)
|
||
|
return timedelta(seconds=scan_interval)
|
||
|
|
||
|
#---------------------------
|
||
|
# signal_update
|
||
|
#---------------------------
|
||
|
@property
|
||
|
def signal_update(self):
|
||
|
"""Event specific per UniFi entry to signal new data."""
|
||
|
return f"{DOMAIN}-update-{self.name}"
|
||
|
|
||
|
#---------------------------
|
||
|
# connected
|
||
|
#---------------------------
|
||
|
def connected(self):
|
||
|
"""Return connected boolean."""
|
||
|
return self.api.connected()
|
||
|
|
||
|
#---------------------------
|
||
|
# hwinfo_update
|
||
|
#---------------------------
|
||
|
async def hwinfo_update(self):
|
||
|
"""Update Mikrotik hardware info."""
|
||
|
self.get_system_routerboard()
|
||
|
self.get_system_resource()
|
||
|
return
|
||
|
|
||
|
#---------------------------
|
||
|
# async_update
|
||
|
#---------------------------
|
||
|
#@Throttle(DEFAULT_SCAN_INTERVAL)
|
||
|
async def async_update(self):
|
||
|
"""Update Mikrotik Controller data."""
|
||
|
|
||
|
self.get_interfaces()
|
||
|
self.get_arp()
|
||
|
|
||
|
async_dispatcher_send(self.hass, self.signal_update)
|
||
|
return
|
||
|
|
||
|
#---------------------------
|
||
|
# async_reset
|
||
|
#---------------------------
|
||
|
async def async_reset(self):
|
||
|
"""Reset this controller to default state."""
|
||
|
for unsub_dispatcher in self.listeners:
|
||
|
unsub_dispatcher()
|
||
|
|
||
|
self.listeners = []
|
||
|
return True
|
||
|
|
||
|
#---------------------------
|
||
|
# get_interfaces
|
||
|
#---------------------------
|
||
|
def get_interfaces(self):
|
||
|
ifaces = self.api.path("/interface")
|
||
|
for iface in ifaces:
|
||
|
if 'default-name' not in iface:
|
||
|
continue
|
||
|
|
||
|
uid = iface['default-name']
|
||
|
if uid not in self.data['interface']:
|
||
|
self.data['interface'][uid] = {}
|
||
|
|
||
|
self.data['interface'][uid]['default-name'] = iface['default-name']
|
||
|
self.data['interface'][uid]['name'] = iface['name'] if 'name' in iface else iface['default-name']
|
||
|
self.data['interface'][uid]['type'] = iface['type'] if 'type' in iface else "unknown"
|
||
|
self.data['interface'][uid]['running'] = True if iface['running'] == True else False
|
||
|
self.data['interface'][uid]['enabled'] = True if iface['disabled'] == False else False
|
||
|
self.data['interface'][uid]['port-mac-address'] = iface['mac-address'] if 'mac-address' in iface else ""
|
||
|
self.data['interface'][uid]['comment'] = iface['comment'] if 'comment' in iface else ""
|
||
|
self.data['interface'][uid]['last-link-down-time'] = iface['last-link-down-time'] if 'last-link-down-time' in iface else ""
|
||
|
self.data['interface'][uid]['last-link-up-time'] = iface['last-link-up-time'] if 'last-link-up-time' in iface else ""
|
||
|
self.data['interface'][uid]['link-downs'] = iface['link-downs'] if 'link-downs' in iface else ""
|
||
|
self.data['interface'][uid]['rx-byte'] = iface['rx-byte'] if 'rx-byte' in iface else ""
|
||
|
self.data['interface'][uid]['tx-byte'] = iface['tx-byte'] if 'tx-byte' in iface else ""
|
||
|
self.data['interface'][uid]['tx-queue-drop'] = iface['tx-queue-drop'] if 'tx-queue-drop' in iface else ""
|
||
|
self.data['interface'][uid]['actual-mtu'] = iface['actual-mtu'] if 'actual-mtu' in iface else ""
|
||
|
|
||
|
if 'client-ip-address' not in self.data['interface'][uid]:
|
||
|
self.data['interface'][uid]['client-ip-address'] = ""
|
||
|
|
||
|
if 'client-mac-address' not in self.data['interface'][uid]:
|
||
|
self.data['interface'][uid]['client-mac-address'] = ""
|
||
|
|
||
|
return
|
||
|
|
||
|
#---------------------------
|
||
|
# get_arp
|
||
|
#---------------------------
|
||
|
def get_arp(self):
|
||
|
self.data['arp'] = {}
|
||
|
if not self.option_track_arp:
|
||
|
for uid in self.data['interface']:
|
||
|
self.data['interface'][uid]['client-ip-address'] = "disabled"
|
||
|
self.data['interface'][uid]['client-mac-address'] = "disabled"
|
||
|
return False
|
||
|
|
||
|
mac2ip = {}
|
||
|
bridge_used = False
|
||
|
data = self.api.path("/ip/arp")
|
||
|
for entry in data:
|
||
|
## Ignore invalid entries
|
||
|
if entry['invalid']:
|
||
|
continue
|
||
|
|
||
|
## Do not add ARP detected on bridge
|
||
|
if entry['interface'] == "bridge":
|
||
|
bridge_used = True
|
||
|
## Build address table on bridge
|
||
|
if 'mac-address' in entry and 'address' in entry:
|
||
|
mac2ip[entry['mac-address']] = entry['address']
|
||
|
|
||
|
continue
|
||
|
|
||
|
## Get iface default-name from custom name
|
||
|
uid = None
|
||
|
for ifacename in self.data['interface']:
|
||
|
if self.data['interface'][ifacename]['name'] == entry['interface']:
|
||
|
uid = self.data['interface'][ifacename]['default-name']
|
||
|
break
|
||
|
|
||
|
if not uid:
|
||
|
continue
|
||
|
|
||
|
## Create uid arp dict
|
||
|
if uid not in self.data['arp']:
|
||
|
self.data['arp'][uid] = {}
|
||
|
|
||
|
## Add data
|
||
|
self.data['arp'][uid]['interface'] = uid
|
||
|
if 'mac-address' in self.data['arp'][uid]:
|
||
|
self.data['arp'][uid]['mac-address'] = "multiple"
|
||
|
else:
|
||
|
self.data['arp'][uid]['mac-address'] = entry['mac-address'] if 'mac-address' in entry else ""
|
||
|
|
||
|
if 'address' in self.data['arp'][uid]:
|
||
|
self.data['arp'][uid]['address'] = "multiple"
|
||
|
else:
|
||
|
self.data['arp'][uid]['address'] = entry['address'] if 'address' in entry else ""
|
||
|
|
||
|
if bridge_used:
|
||
|
data = self.api.path("/interface/bridge/host")
|
||
|
for entry in data:
|
||
|
## Ignore port MAC
|
||
|
if entry['local']:
|
||
|
continue
|
||
|
|
||
|
## Get iface default-name from custom name
|
||
|
uid = None
|
||
|
for ifacename in self.data['interface']:
|
||
|
if self.data['interface'][ifacename]['name'] == entry['interface']:
|
||
|
uid = self.data['interface'][ifacename]['default-name']
|
||
|
break
|
||
|
|
||
|
if not uid:
|
||
|
continue
|
||
|
|
||
|
## Create uid arp dict
|
||
|
if uid not in self.data['arp']:
|
||
|
self.data['arp'][uid] = {}
|
||
|
|
||
|
## Add data
|
||
|
self.data['arp'][uid]['interface'] = uid
|
||
|
if 'mac-address' in self.data['arp'][uid]:
|
||
|
self.data['arp'][uid]['mac-address'] = "multiple"
|
||
|
self.data['arp'][uid]['address'] = "multiple"
|
||
|
else:
|
||
|
self.data['arp'][uid]['mac-address'] = entry['mac-address'] if 'mac-address' in entry else ""
|
||
|
self.data['arp'][uid]['address'] = ""
|
||
|
|
||
|
if self.data['arp'][uid]['address'] == "" and self.data['arp'][uid]['mac-address'] in mac2ip:
|
||
|
self.data['arp'][uid]['address'] = mac2ip[self.data['arp'][uid]['mac-address']]
|
||
|
|
||
|
## Map ARP to ifaces
|
||
|
for uid in self.data['interface']:
|
||
|
self.data['interface'][uid]['client-ip-address'] = self.data['arp'][uid]['address'] if uid in self.data['arp'] and 'address' in self.data['arp'][uid] else ""
|
||
|
self.data['interface'][uid]['client-mac-address'] = self.data['arp'][uid]['mac-address'] if uid in self.data['arp'] and 'mac-address' in self.data['arp'][uid] else ""
|
||
|
|
||
|
return
|
||
|
|
||
|
#---------------------------
|
||
|
# get_system_routerboard
|
||
|
#---------------------------
|
||
|
def get_system_routerboard(self):
|
||
|
data = self.api.path("/system/routerboard")
|
||
|
for entry in data:
|
||
|
self.data['routerboard']['routerboard'] = True if entry['routerboard'] == True else False
|
||
|
self.data['routerboard']['model'] = entry['model'] if 'model' in entry else "unknown"
|
||
|
self.data['routerboard']['serial-number'] = entry['serial-number'] if 'serial-number' in entry else "unknown"
|
||
|
self.data['routerboard']['firmware'] = entry['current-firmware'] if 'current-firmware' in entry else "unknown"
|
||
|
|
||
|
return
|
||
|
|
||
|
#---------------------------
|
||
|
# get_system_resource
|
||
|
#---------------------------
|
||
|
def get_system_resource(self):
|
||
|
data = self.api.path("/system/resource")
|
||
|
for entry in data:
|
||
|
self.data['resource']['platform'] = entry['platform'] if 'platform' in entry else "unknown"
|
||
|
self.data['resource']['board-name'] = entry['board-name'] if 'board-name' in entry else "unknown"
|
||
|
self.data['resource']['version'] = entry['version'] if 'version' in entry else "unknown"
|
||
|
|
||
|
return
|