chore: make the config lowercase and add new routes

This commit is contained in:
DaanSelen
2026-03-16 16:52:00 +01:00
parent f898f8ae3c
commit 799b8bd2d2
47 changed files with 237 additions and 346 deletions
+37 -12
View File
@@ -1,19 +1,24 @@
#!/bin/env python3
import logging as log
import flask
from .utilities import config_utilities
from .config_utils import config_utils
class config():
@staticmethod
def filter(config_contents: dict, filter_keyword: str) -> tuple[bool, dict]:
def filter(config_data: dict, filter_keyword: str) -> tuple[bool, dict]:
'''
Helper function to grab a specific part of the config
'''
for section_name, section_values in config_contents.items():
if str(section_name).lower() == filter_keyword.lower():
lower_filter_keyword = filter_keyword.lower()
for section_name, section_values in config_data.items():
if str(section_name).lower() == lower_filter_keyword:
if isinstance(section_values, dict):
return True, dict(section_values)
log.error("failed to properly filter the config")
return False, {}
@staticmethod
@@ -22,17 +27,37 @@ class config():
check some basic things and then return the dict containing the config data
'''
ok, candidate_path = config_utilities.search_known_paths()
ok, candidate_path = config_utils.search_known_paths()
if not ok:
log.error("failed to retrieve a valid path for the config")
return False, {}
ok, config_contents = config_utilities.verify_contents(candidate_path)
ok, config_data = config_utils.read_data(candidate_path)
if not ok:
return False, {}
return True, config_contents
return True, config_data
@staticmethod
def update(section: str, key: str, value: str) -> bool:
print(config_utilities.search_known_paths())
print(section, key, value)
return True
def update(target_section: str, target_key: str, new_value) -> bool:
lower_target_section = target_section.lower()
lower_target_key = target_key.lower()
ok, config_data = config.read()
if not ok:
log.error("failed to read the config succesfully")
return False
if not config_utils.find_section(config_data, lower_target_section):
log.error("failed to find the given section")
return False
if not config_utils.find_key(config_data, lower_target_section, lower_target_key):
log.error("failed to find the given key in the given section")
return False
ok = config_utils.write_key(config_data, lower_target_section, lower_target_key, new_value)
if not ok:
log.error("failed to write the key to the file")
return False
return True