-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathmain.py
141 lines (125 loc) · 6.35 KB
/
main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
import concurrent.futures
import importlib
import os
import subprocess
import sys
import asyncio
import threading
import traceback
os.chdir(os.path.dirname(os.path.abspath(__file__)))
sys.path.append(os.path.dirname(os.path.abspath(__file__)))
from plugins.core.yamlLoader import YAMLManager
if sys.platform == 'win32':
asyncio.set_event_loop_policy(asyncio.WindowsProactorEventLoopPolicy())
from plugins.utils.websocket_fix import ExtendBot
config = YAMLManager(["config/settings.yaml",
"config/basic_config.yaml",
"config/api.yaml",
"config/controller.yaml",
"data/censor/censor_group.yaml",
"data/censor/censor_user.yaml",
"data/media_service/bilibili/bili_dynamic.yaml",
"data/tasks/sheduled_tasks_push_groups_ordinary.yaml",
"data/tasks/scheduledTasks_push_groups.yaml",
"data/recognize/doro.yaml",
"data/recognize/nailong.yaml",
"data/recognize/nanniang.yaml",]) #这玩意用来动态加载和修改配置文件
#from developTools.adapters.http_adapter import HTTPBot
#bot = HTTPBot(http_sever=config.basic_config["adapter"]["http_client"]["url"],access_token=config.basic_config["adapter"]["access_token"],host=str(config.basic_config['adapter']["http_sever"]["host"]), port=int(config.basic_config["adapter"]["http_sever"]["port"]))
#或者使用ws适配器
bot1 = ExtendBot(config.basic_config["adapter"]["ws_client"]["ws_link"],config,blocked_loggers=["DEBUG", "INFO_MSG"])
if config.basic_config["webui"]:
bot2 = ExtendBot("ws://127.0.0.1:5008", config,
blocked_loggers=["DEBUG", "INFO_MSG","warning"])
PLUGIN_DIR = "run"
def find_plugins(plugin_dir=PLUGIN_DIR):
plugin_modules = []
for root, _, files in os.walk(plugin_dir):
for file in files:
if file.endswith(".py") and file != "__init__.py":
module_path = os.path.join(root, file)
module_name = module_path.replace(os.sep, ".").removesuffix(".py")
plugin_name = os.path.splitext(file)[0]
if check_has_main(module_name) and plugin_name!="nailong_get":
plugin_modules.append((plugin_name, module_name))
else:
if plugin_name!="nailong_get" and plugin_name!="func_collection":
bot1.logger.info(f"⚠️ The plugin `{plugin_name}` does not have a main() method. If this plugin is a function collection, please ignore this warning.")
return plugin_modules
def check_has_main(module_name):
"""检查模块是否包含 `main()` 方法"""
try:
spec = importlib.util.find_spec(module_name)
if spec is None:
return False
module = importlib.util.module_from_spec(spec)
spec.loader.exec_module(module)
return hasattr(module, "main")
except Exception:
return False
# 自动构建插件列表
plugin_modules = find_plugins()
bot1.logger.info(f"🔧 共读取到插件:{len(plugin_modules)}个")
bot1.logger.info(f"🔧 正在加载插件....") #{', '.join(name for name, _ in plugin_modules)}")
def safe_import_and_load(plugin_name, module_path,bot,config):
try:
module = importlib.import_module(module_path)
if hasattr(module, "main"):
module.main(bot, config)
bot.logger.info(f"✅ 成功加载插件:{plugin_name}")
else:
bot.logger.warning(f"⚠️ 插件{module_path} {plugin_name} 缺少 `main()` 方法")
except Exception as e:
bot.logger.warning(f"❌ 插件 {plugin_name} 加载失败:{e}")
traceback.print_exc()
bot.logger.warning(f"❌ 建议执行一次 更新脚本(windows)/tool.py(linux) 自动补全依赖后重启以尝试修复此问题")
bot.logger.warning(f"❌ 如仍无法解决,请反馈此问题至 https://github.com/avilliai/Eridanus/issues 或我们的QQ群 913122269")
def load_plugins(bot,config):
# 并行加载插件
with concurrent.futures.ThreadPoolExecutor() as executor:
futures = {
executor.submit(safe_import_and_load, name, path,bot,config): name for name, path in plugin_modules
}
for future in concurrent.futures.as_completed(futures):
try:
future.result()
except Exception as e:
bot.logger.warning(f"❌ 插件 {futures[future]} 加载过程中发生异常:{e}")
# 奶龙检测(可选功能)
try:
if config.settings["抽象检测"]["奶龙检测"] or config.settings["抽象检测"]["doro检测"]:
safe_import_and_load("nailong_get", "run.groupManager.nailong_get", bot, config)
except Exception as e:
bot.logger.warning("⚠️ 【可选功能】奶龙检测相关依赖未安装,如有需要,请安装 AI 检测必要素材")
try:
enable_webui=config.basic_config["webui"]
except:
enable_webui=False
if enable_webui and os.path.exists("../server.exe"):
config_copy = YAMLManager(["config/settings.yaml",
"config/basic_config.yaml",
"config/api.yaml",
"config/controller.yaml",
"data/censor/censor_group.yaml",
"data/censor/censor_user.yaml",
"data/media_service/bilibili/bili_dynamic.yaml",
"data/tasks/sheduled_tasks_push_groups_ordinary.yaml",
"data/tasks/scheduledTasks_push_groups.yaml",
"data/recognize/doro.yaml",
"data/recognize/nailong.yaml",
"data/recognize/nanniang.yaml",]) # 这玩意用来动态加载和修改配置文件
def config_fix(config_copy):
config_copy.settings["JMComic"]["anti_nsfw"] = "no_censor"
config_copy.settings["asmr"]["gray_layer"] = False
config_copy.settings["basic_plugin"]["setu"]["gray_layer"] = False
config_copy.api["llm"]["读取群聊上下文"]=False
config_copy.basic_config["master"]["id"]=111111111
def run_bot2():
"""在独立线程运行 bot2"""
config_fix(config_copy)
load_plugins(bot2,config_copy)
bot2.run()
bot2_thread = threading.Thread(target=run_bot2, daemon=True)
bot2_thread.start()
load_plugins(bot1,config)
bot1.run()