restructure

This commit is contained in:
root
2025-09-18 12:04:10 +02:00
committed by Magel, Denis
parent 22419ecf84
commit d90a18053f
3 changed files with 41 additions and 69 deletions

View File

@@ -14,40 +14,10 @@ from fastapi import FastAPI
from database import setup_db_conn, get_inventory_from_redis, read_config_from_db
from initialize import initialize_config
from utils import setup_logging
def initialize_config():
load_dotenv()
ENV_INVENTORYPATH = os.getenv('cluster_inventory_path')
ENV_REDISHOST = os.getenv('redis_host')
ENV_REDISPORT = os.getenv('redis_port')
log.info(f"Fount Cluster Inventory file at: {ENV_INVENTORYPATH}")
if not ENV_INVENTORYPATH or not Path(ENV_INVENTORYPATH).is_file():
print(f"FATAL: Inventory file {ENV_INVENTORYPATH} is missing or not a file.")
return False
try:
with open(ENV_INVENTORYPATH, 'r') as f:
inv = yaml.safe_load(f)
inventory = json.dumps(inv)
except Exception as e:
print(f"FATAL: Cannot read inventory file {ENV_INVENTORYPATH}. Err: {e}")
return False
print(f'[INFO] Importing configuration to DB...')
try:
redis_conn = setup_db_conn(ENV_REDISHOST, ENV_REDISPORT)
redis_conn.hset('cluster_inventory', mapping={'inventory': inventory})
redis_conn.close()
log.info("Configuration has been loaded.")
return True
except Exception as e:
print(f"FATAL: Redis DB error: {e}")
return False
@asynccontextmanager
async def lifespan(app: FastAPI):
''' make loading it async'''