jumpserver/apps/terminal/backends/__init__.py

35 lines
1018 B
Python
Raw Normal View History

2017-11-29 11:27:04 +00:00
from importlib import import_module
from django.conf import settings
from .command.serializers import SessionCommandSerializer
2018-01-20 14:22:09 +00:00
TYPE_ENGINE_MAPPING = {
'elasticsearch': 'terminal.backends.command.db',
}
2017-11-29 11:27:04 +00:00
def get_command_store():
2018-01-20 14:22:09 +00:00
params = settings.COMMAND_STORAGE
engine_class = import_module(params['ENGINE'])
storage = engine_class.CommandStore(params)
return storage
def get_terminal_command_store():
storage_list = {}
for name, params in settings.TERMINAL_COMMAND_STORAGE.items():
tp = params['TYPE']
if tp == 'server':
storage = get_command_store()
else:
if not TYPE_ENGINE_MAPPING.get(tp):
raise AssertionError("Command storage type should in {}".format(
', '.join(TYPE_ENGINE_MAPPING.keys()))
)
engine_class = import_module(TYPE_ENGINE_MAPPING[tp])
storage = engine_class.CommandStore(params)
storage_list[name] = storage
return storage_list
2017-11-29 11:27:04 +00:00