mirror of
https://github.com/KevinMidboe/mktxp-no-cli.git
synced 2025-10-29 17:50:23 +00:00
54 lines
2.3 KiB
Python
54 lines
2.3 KiB
Python
# coding=utf8
|
|
## Copyright (c) 2020 Arseniy Kuznetsov
|
|
##
|
|
## This program is free software; you can redistribute it and/or
|
|
## modify it under the terms of the GNU General Public License
|
|
## as published by the Free Software Foundation; either version 2
|
|
## of the License, or (at your option) any later version.
|
|
##
|
|
## This program is distributed in the hope that it will be useful,
|
|
## but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
## GNU General Public License for more details.
|
|
|
|
|
|
from mktxp.cli.config.config import config_handler
|
|
from mktxp.flow.router_entry import RouterEntry
|
|
|
|
|
|
class RouterEntriesHandler:
|
|
''' Handles RouterOS entries defined in MKTXP config
|
|
'''
|
|
def __init__(self):
|
|
self._router_entries = {}
|
|
for router_name in config_handler.registered_entries():
|
|
router_entry = RouterEntry(router_name)
|
|
if router_entry.config_entry.remote_dhcp_entry and config_handler.registered_entry(router_entry.config_entry.remote_dhcp_entry):
|
|
router_entry.dhcp_entry = RouterEntry(router_entry.config_entry.remote_dhcp_entry)
|
|
self._router_entries[router_name] = router_entry
|
|
|
|
@property
|
|
def router_entries(self):
|
|
return (entry for key, entry in self._router_entries.items() if entry.config_entry.enabled) \
|
|
if self._router_entries else None
|
|
|
|
def router_entry(self, entry_name, enabled_only = False):
|
|
entry = self._router_entries.get(entry_name)
|
|
if entry and (entry.config_entry.enabled or not enabled_only):
|
|
return entry
|
|
return None
|
|
|
|
@staticmethod
|
|
def router_entry(entry_name, enabled_only = False):
|
|
''' A static router entry initialiser
|
|
'''
|
|
config_entry = config_handler.config_entry(entry_name)
|
|
if enabled_only and not config_entry.enabled:
|
|
return None
|
|
|
|
router_entry = RouterEntry(entry_name)
|
|
if config_entry.remote_dhcp_entry and config_handler.registered_entry(config_entry.remote_dhcp_entry):
|
|
router_entry.dhcp_entry = RouterEntry(config_entry.remote_dhcp_entry)
|
|
|
|
return router_entry
|