Compare commits
8 Commits
be97d757d9
...
pkg/dev/ri
Author | SHA1 | Date | |
---|---|---|---|
941261c830 | |||
6c4bbb3dca | |||
98c77bf719 | |||
279e3a7c4c | |||
1b9d87fa53 | |||
13c7d5816c | |||
0e988d7040 | |||
a89e512266 |
@ -1,6 +1,7 @@
|
|||||||
from os import environ
|
from os import environ
|
||||||
from os.path import isfile
|
from os.path import isfile
|
||||||
from configobj import ConfigObj
|
from configobj import ConfigObj
|
||||||
|
from uuid import uuid4
|
||||||
|
|
||||||
|
|
||||||
CONFIG_FILE = environ.get('CONFIG_FILE', '/etc/risotto/risotto.conf')
|
CONFIG_FILE = environ.get('CONFIG_FILE', '/etc/risotto/risotto.conf')
|
||||||
@ -20,10 +21,6 @@ if 'CONFIGURATION_DIR' in environ:
|
|||||||
CONFIGURATION_DIR = environ['CONFIGURATION_DIR']
|
CONFIGURATION_DIR = environ['CONFIGURATION_DIR']
|
||||||
else:
|
else:
|
||||||
CONFIGURATION_DIR = config.get('CONFIGURATION_DIR', '/srv/risotto/configurations')
|
CONFIGURATION_DIR = config.get('CONFIGURATION_DIR', '/srv/risotto/configurations')
|
||||||
if 'PROVIDER_FACTORY_CONFIG_DIR' in environ:
|
|
||||||
PROVIDER_FACTORY_CONFIG_DIR = environ['PROVIDER_FACTORY_CONFIG_DIR']
|
|
||||||
else:
|
|
||||||
PROVIDER_FACTORY_CONFIG_DIR = config.get('PROVIDER_FACTORY_CONFIG_DIR', '/srv/factory')
|
|
||||||
if 'DEFAULT_USER' in environ:
|
if 'DEFAULT_USER' in environ:
|
||||||
DEFAULT_USER = environ['DEFAULT_USER']
|
DEFAULT_USER = environ['DEFAULT_USER']
|
||||||
else:
|
else:
|
||||||
@ -52,6 +49,18 @@ if 'TIRAMISU_DB_USER' in environ:
|
|||||||
TIRAMISU_DB_USER = environ['TIRAMISU_DB_USER']
|
TIRAMISU_DB_USER = environ['TIRAMISU_DB_USER']
|
||||||
else:
|
else:
|
||||||
TIRAMISU_DB_USER = config.get('TIRAMISU_DB_USER', 'tiramisu')
|
TIRAMISU_DB_USER = config.get('TIRAMISU_DB_USER', 'tiramisu')
|
||||||
|
if 'CELERYRISOTTO_DB_NAME' in environ:
|
||||||
|
CELERYRISOTTO_DB_NAME = environ['CELERYRISOTTO_DB_NAME']
|
||||||
|
else:
|
||||||
|
CELERYRISOTTO_DB_NAME = config.get('CELERYRISOTTO_DB_NAME', None)
|
||||||
|
if 'CELERYRISOTTO_DB_PASSWORD' in environ:
|
||||||
|
CELERYRISOTTO_DB_PASSWORD = environ['CELERYRISOTTO_DB_PASSWORD']
|
||||||
|
else:
|
||||||
|
CELERYRISOTTO_DB_PASSWORD = config.get('CELERYRISOTTO_DB_PASSWORD', None)
|
||||||
|
if 'CELERYRISOTTO_DB_USER' in environ:
|
||||||
|
CELERYRISOTTO_DB_USER = environ['CELERYRISOTTO_DB_USER']
|
||||||
|
else:
|
||||||
|
CELERYRISOTTO_DB_USER = config.get('CELERYRISOTTO_DB_USER', None)
|
||||||
if 'DB_ADDRESS' in environ:
|
if 'DB_ADDRESS' in environ:
|
||||||
DB_ADDRESS = environ['DB_ADDRESS']
|
DB_ADDRESS = environ['DB_ADDRESS']
|
||||||
else:
|
else:
|
||||||
@ -76,6 +85,32 @@ if 'TMP_DIR' in environ:
|
|||||||
TMP_DIR = environ['TMP_DIR']
|
TMP_DIR = environ['TMP_DIR']
|
||||||
else:
|
else:
|
||||||
TMP_DIR = config.get('TMP_DIR', '/tmp')
|
TMP_DIR = config.get('TMP_DIR', '/tmp')
|
||||||
|
if 'IMAGE_PATH' in environ:
|
||||||
|
IMAGE_PATH = environ['IMAGE_PATH']
|
||||||
|
else:
|
||||||
|
IMAGE_PATH = config.get('IMAGE_PATH', '/tmp')
|
||||||
|
if 'PASSWORD_ADMIN_USERNAME' in environ:
|
||||||
|
PASSWORD_ADMIN_USERNAME = environ['PASSWORD_ADMIN_USERNAME']
|
||||||
|
else:
|
||||||
|
PASSWORD_ADMIN_USERNAME = config.get('PASSWORD_ADMIN_USERNAME', 'risotto')
|
||||||
|
if 'PASSWORD_ADMIN_EMAIL' in environ:
|
||||||
|
PASSWORD_ADMIN_EMAIL = environ['PASSWORD_ADMIN_EMAIL']
|
||||||
|
else:
|
||||||
|
# this parameter is mandatory
|
||||||
|
PASSWORD_ADMIN_EMAIL = config['PASSWORD_ADMIN_EMAIL']
|
||||||
|
if 'PASSWORD_ADMIN_PASSWORD' in environ:
|
||||||
|
PASSWORD_ADMIN_PASSWORD = environ['PASSWORD_ADMIN_PASSWORD']
|
||||||
|
else:
|
||||||
|
# this parameter is mandatory
|
||||||
|
PASSWORD_ADMIN_PASSWORD = config['PASSWORD_ADMIN_PASSWORD']
|
||||||
|
if 'PASSWORD_DEVICE_IDENTIFIER' in environ:
|
||||||
|
PASSWORD_DEVICE_IDENTIFIER = environ['PASSWORD_DEVICE_IDENTIFIER']
|
||||||
|
else:
|
||||||
|
PASSWORD_DEVICE_IDENTIFIER = config.get('PASSWORD_DEVICE_IDENTIFIER', uuid4())
|
||||||
|
if 'PASSWORD_URL' in environ:
|
||||||
|
PASSWORD_URL = environ['PASSWORD_URL']
|
||||||
|
else:
|
||||||
|
PASSWORD_URL = config.get('PASSWORD_URL', 'https://localhost:8001/')
|
||||||
|
|
||||||
|
|
||||||
def dsn_factory(database, user, password, address=DB_ADDRESS):
|
def dsn_factory(database, user, password, address=DB_ADDRESS):
|
||||||
@ -85,6 +120,7 @@ def dsn_factory(database, user, password, address=DB_ADDRESS):
|
|||||||
|
|
||||||
_config = {'database': {'dsn': dsn_factory(RISOTTO_DB_NAME, RISOTTO_DB_USER, RISOTTO_DB_PASSWORD),
|
_config = {'database': {'dsn': dsn_factory(RISOTTO_DB_NAME, RISOTTO_DB_USER, RISOTTO_DB_PASSWORD),
|
||||||
'tiramisu_dsn': dsn_factory(TIRAMISU_DB_NAME, TIRAMISU_DB_USER, TIRAMISU_DB_PASSWORD),
|
'tiramisu_dsn': dsn_factory(TIRAMISU_DB_NAME, TIRAMISU_DB_USER, TIRAMISU_DB_PASSWORD),
|
||||||
|
'celery_dsn': dsn_factory(CELERYRISOTTO_DB_NAME, CELERYRISOTTO_DB_USER, CELERYRISOTTO_DB_PASSWORD)
|
||||||
},
|
},
|
||||||
'http_server': {'port': RISOTTO_PORT,
|
'http_server': {'port': RISOTTO_PORT,
|
||||||
'default_user': DEFAULT_USER},
|
'default_user': DEFAULT_USER},
|
||||||
@ -97,13 +133,20 @@ _config = {'database': {'dsn': dsn_factory(RISOTTO_DB_NAME, RISOTTO_DB_USER, RIS
|
|||||||
'sql_dir': SQL_DIR,
|
'sql_dir': SQL_DIR,
|
||||||
'tmp_dir': TMP_DIR,
|
'tmp_dir': TMP_DIR,
|
||||||
},
|
},
|
||||||
|
'password': {'admin_username': PASSWORD_ADMIN_USERNAME,
|
||||||
|
'admin_email': PASSWORD_ADMIN_EMAIL,
|
||||||
|
'admin_password': PASSWORD_ADMIN_PASSWORD,
|
||||||
|
'device_identifier': PASSWORD_DEVICE_IDENTIFIER,
|
||||||
|
'service_url': PASSWORD_URL,
|
||||||
|
},
|
||||||
'cache': {'root_path': CACHE_ROOT_PATH},
|
'cache': {'root_path': CACHE_ROOT_PATH},
|
||||||
'servermodel': {'internal_source_path': SRV_SEED_PATH,
|
'servermodel': {'internal_source_path': SRV_SEED_PATH,
|
||||||
'internal_source': 'internal'},
|
'internal_source': 'internal'},
|
||||||
'submodule': {'allow_insecure_https': False,
|
'submodule': {'allow_insecure_https': False,
|
||||||
'pki': '192.168.56.112'},
|
'pki': '192.168.56.112'},
|
||||||
'provider': {'factory_configuration_dir': PROVIDER_FACTORY_CONFIG_DIR,
|
'provider': {'factory_configuration_filename': 'infra.json',
|
||||||
'factory_configuration_filename': 'infra.json'},
|
'packer_filename': 'recipe.json',
|
||||||
|
'risotto_images_dir': IMAGE_PATH},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -220,7 +220,6 @@ class PublishDispatcher:
|
|||||||
False,
|
False,
|
||||||
)
|
)
|
||||||
for function_obj in self.messages[version][message]['functions']:
|
for function_obj in self.messages[version][message]['functions']:
|
||||||
print('======', function_obj['function'].__name__)
|
|
||||||
async with self.pool.acquire() as connection:
|
async with self.pool.acquire() as connection:
|
||||||
try:
|
try:
|
||||||
await self.check_message_type(risotto_context,
|
await self.check_message_type(risotto_context,
|
||||||
@ -350,7 +349,7 @@ class Dispatcher(register.RegisterDispatcher,
|
|||||||
sql = '''
|
sql = '''
|
||||||
SELECT UserId
|
SELECT UserId
|
||||||
FROM UserUser
|
FROM UserUser
|
||||||
WHERE UserLogin = $1
|
WHERE Login = $1
|
||||||
'''
|
'''
|
||||||
user_id = await connection.fetchval(sql,
|
user_id = await connection.fetchval(sql,
|
||||||
user_login)
|
user_login)
|
||||||
@ -395,10 +394,9 @@ class Dispatcher(register.RegisterDispatcher,
|
|||||||
) -> Optional[Dict]:
|
) -> Optional[Dict]:
|
||||||
# so send the message
|
# so send the message
|
||||||
function = function_obj['function']
|
function = function_obj['function']
|
||||||
submodule_name = function_obj['module']
|
risotto_context.module = function_obj['module'].split('.', 1)[0]
|
||||||
function_name = function.__name__
|
function_name = function.__name__
|
||||||
risotto_context.module = submodule_name.split('.', 1)[0]
|
info_msg = _(f"in function {function_obj['full_module_name']}.{function_name}")
|
||||||
info_msg = _(f'in module {submodule_name}.{function_name}')
|
|
||||||
# build argument for this function
|
# build argument for this function
|
||||||
if risotto_context.type == 'rpc':
|
if risotto_context.type == 'rpc':
|
||||||
kw = config_arguments
|
kw = config_arguments
|
||||||
|
@ -199,7 +199,8 @@ class RegisterDispatcher:
|
|||||||
raise RegistrationError(_(f'the message {message} not exists'))
|
raise RegistrationError(_(f'the message {message} not exists'))
|
||||||
|
|
||||||
# xxx submodule can only be register with v1.yyy.xxx..... message
|
# xxx submodule can only be register with v1.yyy.xxx..... message
|
||||||
risotto_module_name, submodule_name = function.__module__.split('.')[-3:-1]
|
full_module_name = function.__module__
|
||||||
|
risotto_module_name, submodule_name = full_module_name.split('.')[-3:-1]
|
||||||
module_name = risotto_module_name.split('_')[-1]
|
module_name = risotto_module_name.split('_')[-1]
|
||||||
message_module, message_submodule, message_name = message.split('.', 2)
|
message_module, message_submodule, message_name = message.split('.', 2)
|
||||||
if message_module not in self.risotto_modules:
|
if message_module not in self.risotto_modules:
|
||||||
@ -224,6 +225,7 @@ class RegisterDispatcher:
|
|||||||
register(version,
|
register(version,
|
||||||
message,
|
message,
|
||||||
f'{module_name}.{submodule_name}',
|
f'{module_name}.{submodule_name}',
|
||||||
|
full_module_name,
|
||||||
function,
|
function,
|
||||||
function_args,
|
function_args,
|
||||||
notification,
|
notification,
|
||||||
@ -233,11 +235,13 @@ class RegisterDispatcher:
|
|||||||
version: str,
|
version: str,
|
||||||
message: str,
|
message: str,
|
||||||
module_name: str,
|
module_name: str,
|
||||||
|
full_module_name: str,
|
||||||
function: Callable,
|
function: Callable,
|
||||||
function_args: list,
|
function_args: list,
|
||||||
notification: Optional[str],
|
notification: Optional[str],
|
||||||
):
|
):
|
||||||
self.messages[version][message]['module'] = module_name
|
self.messages[version][message]['module'] = module_name
|
||||||
|
self.messages[version][message]['full_module_name'] = full_module_name
|
||||||
self.messages[version][message]['function'] = function
|
self.messages[version][message]['function'] = function
|
||||||
self.messages[version][message]['arguments'] = function_args
|
self.messages[version][message]['arguments'] = function_args
|
||||||
if notification:
|
if notification:
|
||||||
@ -247,6 +251,7 @@ class RegisterDispatcher:
|
|||||||
version: str,
|
version: str,
|
||||||
message: str,
|
message: str,
|
||||||
module_name: str,
|
module_name: str,
|
||||||
|
full_module_name: str,
|
||||||
function: Callable,
|
function: Callable,
|
||||||
function_args: list,
|
function_args: list,
|
||||||
notification: Optional[str],
|
notification: Optional[str],
|
||||||
@ -255,8 +260,10 @@ class RegisterDispatcher:
|
|||||||
self.messages[version][message]['functions'] = []
|
self.messages[version][message]['functions'] = []
|
||||||
|
|
||||||
dico = {'module': module_name,
|
dico = {'module': module_name,
|
||||||
|
'full_module_name': full_module_name,
|
||||||
'function': function,
|
'function': function,
|
||||||
'arguments': function_args}
|
'arguments': function_args,
|
||||||
|
}
|
||||||
if notification and notification:
|
if notification and notification:
|
||||||
dico['notification'] = notification
|
dico['notification'] = notification
|
||||||
self.messages[version][message]['functions'].append(dico)
|
self.messages[version][message]['functions'].append(dico)
|
||||||
@ -309,7 +316,7 @@ class RegisterDispatcher:
|
|||||||
risotto_context.type = None
|
risotto_context.type = None
|
||||||
risotto_context.connection = connection
|
risotto_context.connection = connection
|
||||||
risotto_context.module = submodule_name.split('.', 1)[0]
|
risotto_context.module = submodule_name.split('.', 1)[0]
|
||||||
info_msg = _(f'in module risotto_{submodule_name}.on_join')
|
info_msg = _(f'in function risotto_{submodule_name}.on_join')
|
||||||
await log.info_msg(risotto_context,
|
await log.info_msg(risotto_context,
|
||||||
None,
|
None,
|
||||||
info_msg)
|
info_msg)
|
||||||
|
Reference in New Issue
Block a user