mirror of
https://github.com/EstrellaXD/Auto_Bangumi.git
synced 2026-02-12 23:07:05 +08:00
107 lines
2.8 KiB
Python
107 lines
2.8 KiB
Python
# -*- encoding: utf-8 -*-
|
|
|
|
DEFAULT_SETTINGS = {
|
|
"program": {
|
|
"sleep_time": 7200,
|
|
"times": 20,
|
|
"webui_port": 7892,
|
|
"data_version": 4.0
|
|
},
|
|
"downloader": {
|
|
"type": "qbittorrent",
|
|
"host": "127.0.0.1:8080",
|
|
"username": "admin",
|
|
"password": "adminadmin",
|
|
"path": "/downloads/Bangumi",
|
|
"ssl": False
|
|
},
|
|
"rss_parser": {
|
|
"enable": True,
|
|
"type": "mikan",
|
|
"link": "",
|
|
"enable_tmdb": False,
|
|
"filter": ["720", "\\d+-\\d+"],
|
|
"language": "zh"
|
|
},
|
|
"bangumi_manage": {
|
|
"enable": True,
|
|
"eps_complete": False,
|
|
"rename_method": "pn",
|
|
"group_tag": False,
|
|
"remove_bad_torrent": False
|
|
},
|
|
"debug": {
|
|
"enable": False,
|
|
"level": "info",
|
|
"file": "bangumi.log",
|
|
"dev_debug": False
|
|
},
|
|
"proxy": {
|
|
"enable": False,
|
|
"type": "http",
|
|
"host": "",
|
|
"port": 1080,
|
|
"username": "",
|
|
"password": ""
|
|
},
|
|
"notification": {
|
|
"enable": False,
|
|
"type": "telegram",
|
|
"token": "",
|
|
"chat_id": ""
|
|
}
|
|
}
|
|
|
|
|
|
ENV_TO_ATTR = {
|
|
"program": {
|
|
"AB_INTERVAL_TIME": ("sleep_time", lambda e: float(e)),
|
|
"AB_RENAME_FREQ": ("times", lambda e: float(e)),
|
|
"AB_WEBUI_PORT": ("webui_port", lambda e: int(e)),
|
|
},
|
|
"downloader": {
|
|
"AB_DOWNLOADER_HOST": "host",
|
|
"AB_DOWNLOADER_USERNAME": "username",
|
|
"AB_DOWNLOADER_PASSWORD": "password",
|
|
"AB_DOWNLOAD_PATH": "path",
|
|
},
|
|
"rss_parser": {
|
|
"AB_RSS_COLLECTOR": ("enable", lambda e: e.lower() in ("True", "1", "t")),
|
|
"AB_RSS": "link",
|
|
"AB_NOT_CONTAIN": ("filter", lambda e: e.split("|")),
|
|
"AB_LANGUAGE": "language",
|
|
"AB_ENABLE_TMDB": ("enable_tmdb", lambda e: e.lower() in ("True", "1", "t")),
|
|
},
|
|
"bangumi_manage": {
|
|
"AB_RENAME": ("enable", lambda e: e.lower() in ("True", "1", "t")),
|
|
"AB_METHOD": "method",
|
|
"AB_GROUP_TAG": ("group_tag", lambda e: e.lower() in ("True", "1", "t")),
|
|
"AB_EP_COMPLETE": ("eps_complete", lambda e: e.lower() in ("True", "1", "t")),
|
|
"AB_REMOVE_BAD_BT": ("remove_bad_torrent", lambda e: e.lower() in ("True", "1", "t")),
|
|
},
|
|
"debug": {
|
|
"AB_DEBUG_MODE": ("enable", lambda e: e.lower() in ("True", "1", "t")),
|
|
},
|
|
"proxy": {
|
|
"AB_HTTP_PROXY": "http",
|
|
"AB_SOCKS": "socks",
|
|
},
|
|
}
|
|
|
|
|
|
class BCOLORS:
|
|
@staticmethod
|
|
def _(color: str, *args: str) -> str:
|
|
strings = [str(s) for s in args]
|
|
return f"{color}{', '.join(strings)}{BCOLORS.ENDC}"
|
|
|
|
HEADER = "\033[95m"
|
|
OKBLUE = "\033[94m"
|
|
OKCYAN = "\033[96m"
|
|
OKGREEN = "\033[92m"
|
|
WARNING = "\033[93m"
|
|
FAIL = "\033[91m"
|
|
ENDC = "\033[0m"
|
|
BOLD = "\033[1m"
|
|
UNDERLINE = "\033[4m"
|