mirror of
https://github.com/TeamPGM/PagerMaid-Pyro.git
synced 2024-11-16 17:40:35 +00:00
81 lines
3.4 KiB
Python
81 lines
3.4 KiB
Python
import os
|
||
from json import load as load_json
|
||
import sys
|
||
from yaml import load, FullLoader, safe_load
|
||
from shutil import copyfile
|
||
|
||
|
||
def strtobool(val):
|
||
"""Convert a string representation of truth to true (1) or false (0).
|
||
|
||
True values are 'y', 'yes', 't', 'true', 'on', and '1'; false values
|
||
are 'n', 'no', 'f', 'false', 'off', and '0'. Raises ValueError if
|
||
'val' is anything else.
|
||
"""
|
||
val = val.lower()
|
||
if val in ('y', 'yes', 't', 'true', 'on', '1'):
|
||
return 1
|
||
elif val in ('n', 'no', 'f', 'false', 'off', '0'):
|
||
return 0
|
||
else:
|
||
raise ValueError("invalid truth value %r" % (val,))
|
||
|
||
|
||
try:
|
||
config = load(open(r"config.yml", encoding="utf-8"), Loader=FullLoader)
|
||
except FileNotFoundError:
|
||
print("The configuration file does not exist, and a new configuration file is being generated.")
|
||
copyfile(f"{os.getcwd()}{os.sep}config.gen.yml", "config.yml")
|
||
sys.exit(1)
|
||
|
||
|
||
class Config:
|
||
try:
|
||
API_ID = int(os.environ.get("API_ID", config["api_id"]))
|
||
API_HASH = os.environ.get("API_HASH", config["api_hash"])
|
||
STRING_SESSION = os.environ.get("STRING_SESSION")
|
||
DEBUG = strtobool(os.environ.get("PGM_DEBUG", config["debug"]))
|
||
ERROR_REPORT = strtobool(os.environ.get("PGM_ERROR_REPORT", config["error_report"]))
|
||
LANGUAGE = os.environ.get("PGM_LANGUAGE", config["application_language"])
|
||
REGION = os.environ.get("PGM_REGION", config["application_region"])
|
||
TTS = os.environ.get("PGM_TTS", config["application_tts"])
|
||
LOG = strtobool(os.environ.get("PGM_LOG", config["log"]))
|
||
LOG_ID = int(os.environ.get("PGM_LOG_ID", config["log_chatid"]))
|
||
IPV6 = strtobool(os.environ.get("PGM_IPV6", config["ipv6"]))
|
||
TIME_FORM = os.environ.get("PGM_TIME_FORM", config["time_form"])
|
||
DATE_FORM = os.environ.get("PGM_DATE_FORM", config["date_form"])
|
||
START_FORM = os.environ.get("PGM_START_FORM", config["start_form"])
|
||
SILENT = strtobool(os.environ.get("PGM_PGM_SILENT", config["silent"]))
|
||
PROXY_ADDRESS = os.environ.get("PGM_PROXY_ADDRESS", config["proxy_addr"])
|
||
PROXY_PORT = os.environ.get("PGM_PROXY_PORT", config["proxy_port"])
|
||
PROXY = None
|
||
if PROXY_ADDRESS and PROXY_PORT:
|
||
PROXY = dict(
|
||
hostname=PROXY_ADDRESS,
|
||
port=PROXY_PORT,
|
||
)
|
||
GIT_SOURCE = os.environ.get("PGM_GIT_SOURCE", config["git_source"])
|
||
GIT_SOURCE = GIT_SOURCE.replace("TeamPGM/PagerMaid_Plugins/", "TeamPGM/PagerMaid_Plugins_Pyro/")
|
||
try:
|
||
with open(f"languages{os.sep}built-in{os.sep}{LANGUAGE}.yml", "r", encoding="utf-8") as f:
|
||
lang_dict = safe_load(f)
|
||
except Exception as e:
|
||
print("[Degrade] Reading language YAML file failed, try to use the english language file.")
|
||
print(e)
|
||
try:
|
||
with open(f"languages{os.sep}built-in{os.sep}{LANGUAGE}.yml", "r", encoding="utf-8") as f:
|
||
lang_dict = safe_load(f)
|
||
except Exception as e:
|
||
print("[Error] Reading English language YAML file failed.")
|
||
print(e)
|
||
sys.exit(1)
|
||
try:
|
||
with open(f"data{os.sep}alias.json", encoding="utf-8") as f:
|
||
alias_dict = load_json(f)
|
||
except Exception as e:
|
||
print(f"[Degrade] Reading alias file failed:{e}")
|
||
alias_dict = {}
|
||
except ValueError as e:
|
||
print(e)
|
||
sys.exit(1)
|