helloplhm-qwq fc7d0c5d75 fix: 修复某些配置无效的问题
common.debug_mode & common.log_length_limit

这gunpg怎么老抽风
2023-12-02 11:17:20 +08:00

48 lines
1.2 KiB
Python

# ----------------------------------------
# - mode: python -
# - author: helloplhm-qwq -
# - name: variable.py -
# - project: lx-music-api-server -
# - license: MIT -
# ----------------------------------------
# This file is part of the "lx-music-api-server" project.
# Do not edit except you know what you are doing.
import os
import ujson as json
def _read_config_file():
try:
with open("./config.json", "r", encoding = "utf-8") as f:
return json.load(f)
except:
pass
def _read_config(key):
try:
config = _read_config_file()
keys = key.split('.')
value = config
for k in keys:
if isinstance(value, dict):
if k not in value and keys.index(k) != len(keys) - 1:
value[k] = {}
elif k not in value and keys.index(k) == len(keys) - 1:
value = None
value = value[k]
else:
value = None
break
return value
except:
return None
debug_mode = _read_config("common.debug_mode")
log_length_limit = _read_config("common.log_length_limit")
running = True
config = {}
workdir = os.getcwd()
banList_suggest = 0
iscn = True
fake_ip = None