194 lines
6.4 KiB
Python
194 lines
6.4 KiB
Python
"""
|
|
Support for Mikrotik routers as device tracker.
|
|
|
|
For more details about this platform, please refer to the documentation at
|
|
https://home-assistant.io/components/device_tracker.mikrotik/
|
|
"""
|
|
import logging
|
|
|
|
import voluptuous as vol
|
|
|
|
import homeassistant.helpers.config_validation as cv
|
|
from homeassistant.components.device_tracker import (
|
|
DOMAIN, PLATFORM_SCHEMA, DeviceScanner)
|
|
from homeassistant.const import (
|
|
CONF_HOST, CONF_PASSWORD, CONF_USERNAME, CONF_PORT)
|
|
|
|
REQUIREMENTS = ['librouteros==1.0.5']
|
|
|
|
MTK_DEFAULT_API_PORT = '8728'
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
PLATFORM_SCHEMA = PLATFORM_SCHEMA.extend({
|
|
vol.Required(CONF_HOST): cv.string,
|
|
vol.Required(CONF_USERNAME): cv.string,
|
|
vol.Required(CONF_PASSWORD): cv.string,
|
|
vol.Optional(CONF_PORT, default=MTK_DEFAULT_API_PORT): cv.port
|
|
})
|
|
|
|
|
|
def get_scanner(hass, config):
|
|
"""Validate the configuration and return MTikScanner."""
|
|
scanner = MikrotikScanner(config[DOMAIN])
|
|
return scanner if scanner.success_init else None
|
|
|
|
|
|
class MikrotikScanner(DeviceScanner):
|
|
"""This class queries a Mikrotik router."""
|
|
|
|
def __init__(self, config):
|
|
"""Initialize the scanner."""
|
|
self.last_results = {}
|
|
|
|
self.host = config[CONF_HOST]
|
|
self.port = config[CONF_PORT]
|
|
self.username = config[CONF_USERNAME]
|
|
self.password = config[CONF_PASSWORD]
|
|
|
|
self.connected = False
|
|
self.success_init = False
|
|
self.client = None
|
|
self.wireless_exist = None
|
|
self.success_init = self.connect_to_device()
|
|
|
|
if self.success_init:
|
|
_LOGGER.info(
|
|
"Start polling Mikrotik (%s) router...",
|
|
self.host
|
|
)
|
|
self._update_info()
|
|
else:
|
|
_LOGGER.error(
|
|
"Connection to Mikrotik (%s) failed",
|
|
self.host
|
|
)
|
|
|
|
def connect_to_device(self):
|
|
"""Connect to Mikrotik method."""
|
|
# pylint: disable=import-error
|
|
import librouteros
|
|
try:
|
|
self.client = librouteros.connect(
|
|
self.host,
|
|
self.username,
|
|
self.password,
|
|
port=int(self.port),
|
|
encoding='utf-8'
|
|
)
|
|
|
|
try:
|
|
routerboard_info = self.client(
|
|
cmd='/system/routerboard/getall')
|
|
except (librouteros.exceptions.TrapError,
|
|
librouteros.exceptions.MultiTrapError,
|
|
librouteros.exceptions.ConnectionError):
|
|
routerboard_info = None
|
|
raise
|
|
|
|
if routerboard_info:
|
|
_LOGGER.info("Connected to Mikrotik %s with IP %s",
|
|
routerboard_info[0].get('model', 'Router'),
|
|
self.host)
|
|
|
|
self.connected = True
|
|
|
|
try:
|
|
self.capsman_exist = self.client(
|
|
cmd='/caps-man/interface/getall'
|
|
)
|
|
except (librouteros.exceptions.TrapError,
|
|
librouteros.exceptions.MultiTrapError,
|
|
librouteros.exceptions.ConnectionError):
|
|
self.capsman_exist = False
|
|
|
|
if not self.capsman_exist:
|
|
_LOGGER.info(
|
|
'Mikrotik %s: Not a CAPSman controller. Trying '
|
|
'local interfaces ',
|
|
self.host
|
|
)
|
|
|
|
try:
|
|
self.wireless_exist = self.client(
|
|
cmd='/interface/wireless/getall'
|
|
)
|
|
except (librouteros.exceptions.TrapError,
|
|
librouteros.exceptions.MultiTrapError,
|
|
librouteros.exceptions.ConnectionError):
|
|
self.wireless_exist = False
|
|
|
|
if not self.wireless_exist:
|
|
_LOGGER.info(
|
|
'Mikrotik %s: Wireless adapters not found. Try to '
|
|
'use DHCP lease table as presence tracker source. '
|
|
'Please decrease lease time as much as possible.',
|
|
self.host
|
|
)
|
|
|
|
except (librouteros.exceptions.TrapError,
|
|
librouteros.exceptions.MultiTrapError,
|
|
librouteros.exceptions.ConnectionError) as api_error:
|
|
_LOGGER.error("Connection error: %s", api_error)
|
|
|
|
return self.connected
|
|
|
|
def scan_devices(self):
|
|
"""Scan for new devices and return a list with found device MACs."""
|
|
self._update_info()
|
|
return [device for device in self.last_results]
|
|
|
|
def get_device_name(self, device):
|
|
"""Return the name of the given device or None if we don't know."""
|
|
return self.last_results.get(device)
|
|
|
|
def _update_info(self):
|
|
"""Retrieve latest information from the Mikrotik box."""
|
|
if self.capsman_exist:
|
|
devices_tracker = 'capsman'
|
|
elif self.wireless_exist:
|
|
devices_tracker = 'wireless'
|
|
else:
|
|
devices_tracker = 'ip'
|
|
|
|
_LOGGER.info(
|
|
"Loading %s devices from Mikrotik (%s) ...",
|
|
devices_tracker,
|
|
self.host
|
|
)
|
|
|
|
device_names = self.client(cmd='/ip/dhcp-server/lease/getall')
|
|
if devices_tracker == 'capsman':
|
|
devices = self.client(
|
|
cmd='/caps-man/registration-table/getall'
|
|
)
|
|
elif devices_tracker == 'wireless':
|
|
devices = self.client(
|
|
cmd='/interface/wireless/registration-table/getall'
|
|
)
|
|
else:
|
|
devices = device_names
|
|
|
|
if device_names is None and devices is None:
|
|
return False
|
|
|
|
mac_names = {device.get('mac-address'): device.get('host-name')
|
|
for device in device_names
|
|
if device.get('mac-address')}
|
|
|
|
if self.wireless_exist or self.capsman_exist:
|
|
self.last_results = {
|
|
device.get('mac-address'):
|
|
mac_names.get(device.get('mac-address'))
|
|
for device in devices
|
|
}
|
|
else:
|
|
self.last_results = {
|
|
device.get('mac-address'):
|
|
mac_names.get(device.get('mac-address'))
|
|
for device in device_names
|
|
if device.get('active-address')
|
|
}
|
|
|
|
return True
|