2022-08-08 15:53:26 +03:00
|
|
|
try:
|
|
|
|
import ujson as json
|
2022-08-11 12:27:17 +03:00
|
|
|
from ujson import JSONDecodeError as JSONDecodeError
|
2022-08-08 15:53:26 +03:00
|
|
|
except ModuleNotFoundError:
|
|
|
|
import json
|
2022-08-11 12:27:17 +03:00
|
|
|
from json import JSONDecodeError as JSONDecodeError
|
2022-08-08 15:53:26 +03:00
|
|
|
|
2022-08-10 14:08:15 +03:00
|
|
|
import os
|
2022-08-11 12:27:17 +03:00
|
|
|
import sys
|
|
|
|
import traceback
|
|
|
|
|
2022-08-11 21:39:03 +03:00
|
|
|
from signal import SIGKILL # type: ignore
|
2022-08-11 12:27:17 +03:00
|
|
|
from modules.logging import logWrite
|
2022-08-08 15:53:26 +03:00
|
|
|
|
|
|
|
def jsonLoad(filename):
|
|
|
|
"""Loads arg1 as json and returns its contents"""
|
|
|
|
with open(filename, "r", encoding='utf8') as file:
|
2022-08-11 12:27:17 +03:00
|
|
|
try:
|
|
|
|
output = json.loads(file.read())
|
|
|
|
except JSONDecodeError:
|
|
|
|
logWrite(f"Could not load json file {filename}: file seems to be incorrect!\n{traceback.print_exc()}")
|
2022-08-11 21:39:03 +03:00
|
|
|
raise
|
2022-08-11 12:27:17 +03:00
|
|
|
except FileNotFoundError:
|
|
|
|
logWrite(f"Could not load json file {filename}: file does not seem to exist!\n{traceback.print_exc()}")
|
2022-08-11 21:39:03 +03:00
|
|
|
raise
|
2022-08-08 15:53:26 +03:00
|
|
|
file.close()
|
|
|
|
return output
|
|
|
|
|
|
|
|
def jsonSave(contents, filename):
|
|
|
|
"""Dumps dict/list arg1 to file arg2"""
|
2022-08-11 12:27:17 +03:00
|
|
|
try:
|
|
|
|
with open(filename, "w", encoding='utf8') as file:
|
|
|
|
file.write(json.dumps(contents, ensure_ascii=False, indent=4))
|
|
|
|
file.close()
|
|
|
|
except Exception as exp:
|
|
|
|
logWrite(f"Could not save json file {filename}: {exp}\n{traceback.print_exc()}")
|
2022-08-08 15:53:26 +03:00
|
|
|
return
|
|
|
|
|
|
|
|
|
|
|
|
def configSet(key: str, value, *args: str):
|
|
|
|
"""Set key to a value
|
|
|
|
Args:
|
|
|
|
* key (str): The last key of the keys path.
|
|
|
|
* value (str/int/float/list/dict/None): Some needed value.
|
|
|
|
* *args (str): Path to key like: dict[args][key].
|
|
|
|
"""
|
|
|
|
this_dict = jsonLoad("config.json")
|
|
|
|
string = "this_dict"
|
|
|
|
for arg in args:
|
|
|
|
string += f'["{arg}"]'
|
|
|
|
if type(value) in [str]:
|
|
|
|
string += f'["{key}"] = "{value}"'
|
|
|
|
else:
|
|
|
|
string += f'["{key}"] = {value}'
|
|
|
|
exec(string)
|
|
|
|
jsonSave(this_dict, "config.json")
|
|
|
|
return
|
|
|
|
|
|
|
|
def configGet(key: str, *args: str):
|
|
|
|
"""Get value of the config key
|
|
|
|
Args:
|
|
|
|
* key (str): The last key of the keys path.
|
|
|
|
* *args (str): Path to key like: dict[args][key].
|
|
|
|
Returns:
|
|
|
|
* any: Value of provided key
|
|
|
|
"""
|
|
|
|
this_dict = jsonLoad("config.json")
|
|
|
|
this_key = this_dict
|
|
|
|
for dict_key in args:
|
|
|
|
this_key = this_key[dict_key]
|
2022-08-10 14:08:15 +03:00
|
|
|
return this_key[key]
|
|
|
|
|
2022-08-11 21:39:03 +03:00
|
|
|
def locale(key: str, *args: str, locale=configGet("locale")):
|
2022-08-10 14:08:15 +03:00
|
|
|
"""Get value of locale string
|
|
|
|
Args:
|
|
|
|
* key (str): The last key of the locale's keys path.
|
|
|
|
* *args (list): Path to key like: dict[args][key].
|
|
|
|
* locale (str): Locale to looked up in. Defaults to config's locale value.
|
|
|
|
Returns:
|
|
|
|
* any: Value of provided locale key
|
|
|
|
"""
|
|
|
|
if (locale == None):
|
|
|
|
locale = configGet("locale")
|
|
|
|
|
|
|
|
try:
|
|
|
|
this_dict = jsonLoad(f'{configGet("locale", "locations")}{os.sep}{locale}.json')
|
|
|
|
except FileNotFoundError:
|
|
|
|
try:
|
|
|
|
this_dict = jsonLoad(f'{configGet("locale", "locations")}{os.sep}{configGet("locale")}.json')
|
|
|
|
except FileNotFoundError:
|
|
|
|
try:
|
|
|
|
this_dict = jsonLoad(f'{configGet("locale_fallback", "locations")}{os.sep}{configGet("locale")}.json')
|
|
|
|
except:
|
|
|
|
return f'⚠️ Locale in config is invalid: could not get "{key}" in {str(args)} from locale "{locale}"'
|
|
|
|
|
|
|
|
this_key = this_dict
|
|
|
|
for dict_key in args:
|
|
|
|
this_key = this_key[dict_key]
|
|
|
|
|
|
|
|
try:
|
|
|
|
return this_key[key]
|
|
|
|
except KeyError:
|
|
|
|
return f'⚠️ Locale in config is invalid: could not get "{key}" in {str(args)} from locale "{locale}"'
|
|
|
|
|
2022-08-11 12:27:17 +03:00
|
|
|
try:
|
|
|
|
import psutil
|
|
|
|
except ModuleNotFoundError:
|
|
|
|
print(locale("deps_missing", "console", locale=configGet("locale")), flush=True)
|
|
|
|
sys.exit()
|
|
|
|
|
2022-08-10 14:08:15 +03:00
|
|
|
def killProc(pid):
|
|
|
|
if os.name == "posix":
|
|
|
|
os.kill(pid, SIGKILL)
|
|
|
|
else:
|
|
|
|
p = psutil.Process(pid)
|
|
|
|
p.kill()
|