a60c0cd70c
* Adds support for: * sets the tenant for IP addresses and Devices. * setting device tags * setting the blade, chassis, and server roles. Co-authored-by: Thomas Davis <tdavis@nersc.gov> Co-authored-by: Solvik <solvik@solvik.fr>
94 lines
3.6 KiB
Python
94 lines
3.6 KiB
Python
import importlib
|
|
import importlib.machinery
|
|
|
|
from netbox_agent.config import config
|
|
|
|
|
|
class LocationBase():
|
|
"""
|
|
This class is used to guess the location in order to push the information
|
|
in Netbox for a `Device`
|
|
|
|
A driver takes a `value` and evaluates a regex with a `capture group`.
|
|
|
|
There's embeded drivers such as `file` or `cmd` which read a file or return the
|
|
output of a file.
|
|
|
|
There's also a support for an external driver file outside of this project in case
|
|
the logic isn't supported here.
|
|
"""
|
|
|
|
def __init__(self, driver, driver_value, driver_file, regex, *args, **kwargs):
|
|
self.driver = driver
|
|
self.driver_value = driver_value
|
|
self.driver_file = driver_file
|
|
self.regex = regex
|
|
|
|
if self.driver_file:
|
|
try:
|
|
# FIXME: Works with Python 3.3+, support older version?
|
|
loader = importlib.machinery.SourceFileLoader('driver_file', self.driver_file)
|
|
self.driver = loader.load_module()
|
|
except ImportError:
|
|
raise ImportError("Couldn't import {} as a module".format(self.driver_file))
|
|
else:
|
|
if self.driver:
|
|
try:
|
|
self.driver = importlib.import_module(
|
|
'netbox_agent.drivers.{}'.format(self.driver)
|
|
)
|
|
except ImportError:
|
|
raise ImportError("Driver {} doesn't exists".format(self.driver))
|
|
|
|
def get(self):
|
|
if self.driver is None:
|
|
return None
|
|
if not hasattr(self.driver, 'get'):
|
|
raise Exception(
|
|
"Your driver {} doesn't have a get() function, please fix it".format(self.driver)
|
|
)
|
|
return getattr(self.driver, 'get')(self.driver_value, self.regex)
|
|
|
|
|
|
class Tenant(LocationBase):
|
|
def __init__(self):
|
|
driver = config.tenant.driver.split(':')[0] if \
|
|
config.tenant.driver else None
|
|
driver_value = ':'.join(config.tenant.driver.split(':')[1:]) if \
|
|
config.tenant.driver else None
|
|
driver_file = config.tenant.driver_file
|
|
regex = config.tenant.regex
|
|
super().__init__(driver, driver_value, driver_file, regex)
|
|
|
|
|
|
class Datacenter(LocationBase):
|
|
def __init__(self):
|
|
driver = config.datacenter_location.driver.split(':')[0] if \
|
|
config.datacenter_location.driver else None
|
|
driver_value = ':'.join(config.datacenter_location.driver.split(':')[1:]) if \
|
|
config.datacenter_location.driver else None
|
|
driver_file = config.datacenter_location.driver_file
|
|
regex = config.datacenter_location.regex
|
|
super().__init__(driver, driver_value, driver_file, regex)
|
|
|
|
|
|
class Rack(LocationBase):
|
|
def __init__(self):
|
|
driver = config.rack_location.driver.split(':')[0] if \
|
|
config.rack_location.driver else None
|
|
driver_value = ':'.join(config.rack_location.driver.split(':')[1:]) if \
|
|
config.rack_location.driver else None
|
|
driver_file = config.rack_location.driver_file
|
|
regex = config.rack_location.regex
|
|
super().__init__(driver, driver_value, driver_file, regex)
|
|
|
|
|
|
class Slot(LocationBase):
|
|
def __init__(self):
|
|
driver = config.slot_location.driver.split(':')[0] if \
|
|
config.slot_location.driver else None
|
|
driver_value = ':'.join(config.slot_location.driver.split(':')[1:]) if \
|
|
config.slot_location.driver else None
|
|
driver_file = config.slot_location.driver_file
|
|
regex = config.slot_location.regex
|
|
super().__init__(driver, driver_value, driver_file, regex)
|