Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

1 рік тому
1 рік тому
1 рік тому
1 рік тому
1 рік тому
1 рік тому
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391
  1. # encoding:utf-8
  2. import json
  3. import os
  4. import random
  5. import string
  6. import traceback
  7. from typing import Tuple
  8. from bridge.bridge import Bridge
  9. from bridge.context import ContextType
  10. from bridge.reply import Reply, ReplyType
  11. from config import conf, load_config
  12. import plugins
  13. from plugins import *
  14. from common import const
  15. from common.log import logger
  16. # 定义指令集
  17. COMMANDS = {
  18. "help": {
  19. "alias": ["help", "帮助"],
  20. "desc": "回复此帮助",
  21. },
  22. "helpp": {
  23. "alias": ["help", "帮助"], # 与help指令共用别名,根据参数数量区分
  24. "args": ["插件名"],
  25. "desc": "回复指定插件的详细帮助",
  26. },
  27. "auth": {
  28. "alias": ["auth", "认证"],
  29. "args": ["口令"],
  30. "desc": "管理员认证",
  31. },
  32. "set_openai_api_key": {
  33. "alias": ["set_openai_api_key"],
  34. "args": ["api_key"],
  35. "desc": "设置你的OpenAI私有api_key",
  36. },
  37. "reset_openai_api_key": {
  38. "alias": ["reset_openai_api_key"],
  39. "desc": "重置为默认的api_key",
  40. },
  41. "id": {
  42. "alias": ["id", "用户"],
  43. "desc": "获取用户id", # wechaty和wechatmp的用户id不会变化,可用于绑定管理员
  44. },
  45. "reset": {
  46. "alias": ["reset", "重置会话"],
  47. "desc": "重置会话",
  48. },
  49. }
  50. ADMIN_COMMANDS = {
  51. "resume": {
  52. "alias": ["resume", "恢复服务"],
  53. "desc": "恢复服务",
  54. },
  55. "stop": {
  56. "alias": ["stop", "暂停服务"],
  57. "desc": "暂停服务",
  58. },
  59. "reconf": {
  60. "alias": ["reconf", "重载配置"],
  61. "desc": "重载配置(不包含插件配置)",
  62. },
  63. "resetall": {
  64. "alias": ["resetall", "重置所有会话"],
  65. "desc": "重置所有会话",
  66. },
  67. "scanp": {
  68. "alias": ["scanp", "扫描插件"],
  69. "desc": "扫描插件目录是否有新插件",
  70. },
  71. "plist": {
  72. "alias": ["plist", "插件"],
  73. "desc": "打印当前插件列表",
  74. },
  75. "setpri": {
  76. "alias": ["setpri", "设置插件优先级"],
  77. "args": ["插件名", "优先级"],
  78. "desc": "设置指定插件的优先级,越大越优先",
  79. },
  80. "reloadp": {
  81. "alias": ["reloadp", "重载插件"],
  82. "args": ["插件名"],
  83. "desc": "重载指定插件配置",
  84. },
  85. "enablep": {
  86. "alias": ["enablep", "启用插件"],
  87. "args": ["插件名"],
  88. "desc": "启用指定插件",
  89. },
  90. "disablep": {
  91. "alias": ["disablep", "禁用插件"],
  92. "args": ["插件名"],
  93. "desc": "禁用指定插件",
  94. },
  95. "installp": {
  96. "alias": ["installp", "安装插件"],
  97. "args": ["仓库地址或插件名"],
  98. "desc": "安装指定插件",
  99. },
  100. "uninstallp": {
  101. "alias": ["uninstallp", "卸载插件"],
  102. "args": ["插件名"],
  103. "desc": "卸载指定插件",
  104. },
  105. "updatep": {
  106. "alias": ["updatep", "更新插件"],
  107. "args": ["插件名"],
  108. "desc": "更新指定插件",
  109. },
  110. "debug": {
  111. "alias": ["debug", "调试模式", "DEBUG"],
  112. "desc": "开启机器调试日志",
  113. },
  114. }
  115. # 定义帮助函数
  116. def get_help_text(isadmin, isgroup):
  117. help_text = "通用指令:\n"
  118. for cmd, info in COMMANDS.items():
  119. if cmd=="auth": #不提示认证指令
  120. continue
  121. if cmd=="id" and conf().get("channel_type","wx") not in ["wxy","wechatmp"]:
  122. continue
  123. alias=["#"+a for a in info['alias'][:1]]
  124. help_text += f"{','.join(alias)} "
  125. if 'args' in info:
  126. args=[a for a in info['args']]
  127. help_text += f"{' '.join(args)}"
  128. help_text += f": {info['desc']}\n"
  129. # 插件指令
  130. plugins = PluginManager().list_plugins()
  131. help_text += "\n目前可用插件有:"
  132. for plugin in plugins:
  133. if plugins[plugin].enabled and not plugins[plugin].hidden:
  134. namecn = plugins[plugin].namecn
  135. help_text += "\n%s:"%namecn
  136. help_text += PluginManager().instances[plugin].get_help_text(verbose=False).strip()
  137. if ADMIN_COMMANDS and isadmin:
  138. help_text += "\n\n管理员指令:\n"
  139. for cmd, info in ADMIN_COMMANDS.items():
  140. alias=["#"+a for a in info['alias'][:1]]
  141. help_text += f"{','.join(alias)} "
  142. if 'args' in info:
  143. args=[a for a in info['args']]
  144. help_text += f"{' '.join(args)}"
  145. help_text += f": {info['desc']}\n"
  146. return help_text
  147. @plugins.register(name="Godcmd", desire_priority=999, hidden=True, desc="为你的机器人添加指令集,有用户和管理员两种角色,加载顺序请放在首位,初次运行后插件目录会生成配置文件, 填充管理员密码后即可认证", version="1.0", author="lanvent")
  148. class Godcmd(Plugin):
  149. def __init__(self):
  150. super().__init__()
  151. curdir=os.path.dirname(__file__)
  152. config_path=os.path.join(curdir,"config.json")
  153. gconf=None
  154. if not os.path.exists(config_path):
  155. gconf={"password":"","admin_users":[]}
  156. with open(config_path,"w") as f:
  157. json.dump(gconf,f,indent=4)
  158. else:
  159. with open(config_path,"r") as f:
  160. gconf=json.load(f)
  161. if gconf["password"] == "":
  162. self.temp_password = "".join(random.sample(string.digits, 4))
  163. logger.info("[Godcmd] 因未设置口令,本次的临时口令为%s。"%self.temp_password)
  164. else:
  165. self.temp_password = None
  166. custom_commands = conf().get("clear_memory_commands", [])
  167. for custom_command in custom_commands:
  168. if custom_command and custom_command.startswith("#"):
  169. custom_command = custom_command[1:]
  170. if custom_command and custom_command not in COMMANDS["reset"]["alias"]:
  171. COMMANDS["reset"]["alias"].append(custom_command)
  172. self.password = gconf["password"]
  173. self.admin_users = gconf["admin_users"] # 预存的管理员账号,这些账号不需要认证。itchat的用户名每次都会变,不可用
  174. self.isrunning = True # 机器人是否运行中
  175. self.handlers[Event.ON_HANDLE_CONTEXT] = self.on_handle_context
  176. logger.info("[Godcmd] inited")
  177. def on_handle_context(self, e_context: EventContext):
  178. context_type = e_context['context'].type
  179. if context_type != ContextType.TEXT:
  180. if not self.isrunning:
  181. e_context.action = EventAction.BREAK_PASS
  182. return
  183. content = e_context['context'].content
  184. logger.debug("[Godcmd] on_handle_context. content: %s" % content)
  185. if content.startswith("#"):
  186. # msg = e_context['context']['msg']
  187. channel = e_context['channel']
  188. user = e_context['context']['receiver']
  189. session_id = e_context['context']['session_id']
  190. isgroup = e_context['context'].get("isgroup", False)
  191. bottype = Bridge().get_bot_type("chat")
  192. bot = Bridge().get_bot("chat")
  193. # 将命令和参数分割
  194. command_parts = content[1:].strip().split()
  195. cmd = command_parts[0]
  196. args = command_parts[1:]
  197. isadmin=False
  198. if user in self.admin_users:
  199. isadmin=True
  200. ok=False
  201. result="string"
  202. if any(cmd in info['alias'] for info in COMMANDS.values()):
  203. cmd = next(c for c, info in COMMANDS.items() if cmd in info['alias'])
  204. if cmd == "auth":
  205. ok, result = self.authenticate(user, args, isadmin, isgroup)
  206. elif cmd == "help" or cmd == "helpp":
  207. if len(args) == 0:
  208. ok, result = True, get_help_text(isadmin, isgroup)
  209. else:
  210. # This can replace the helpp command
  211. plugins = PluginManager().list_plugins()
  212. query_name = args[0].upper()
  213. # search name and namecn
  214. for name, plugincls in plugins.items():
  215. if not plugincls.enabled :
  216. continue
  217. if query_name == name or query_name == plugincls.namecn:
  218. ok, result = True, PluginManager().instances[name].get_help_text(isgroup=isgroup, isadmin=isadmin, verbose=True)
  219. break
  220. if not ok:
  221. result = "插件不存在或未启用"
  222. elif cmd == "id":
  223. ok, result = True, user
  224. elif cmd == "set_openai_api_key":
  225. if len(args) == 1:
  226. user_data = conf().get_user_data(user)
  227. user_data['openai_api_key'] = args[0]
  228. ok, result = True, "你的OpenAI私有api_key已设置为" + args[0]
  229. else:
  230. ok, result = False, "请提供一个api_key"
  231. elif cmd == "reset_openai_api_key":
  232. try:
  233. user_data = conf().get_user_data(user)
  234. user_data.pop('openai_api_key')
  235. ok, result = True, "你的OpenAI私有api_key已清除"
  236. except Exception as e:
  237. ok, result = False, "你没有设置私有api_key"
  238. elif cmd == "reset":
  239. if bottype in (const.CHATGPT, const.OPEN_AI):
  240. bot.sessions.clear_session(session_id)
  241. channel.cancel_session(session_id)
  242. ok, result = True, "会话已重置"
  243. else:
  244. ok, result = False, "当前对话机器人不支持重置会话"
  245. logger.debug("[Godcmd] command: %s by %s" % (cmd, user))
  246. elif any(cmd in info['alias'] for info in ADMIN_COMMANDS.values()):
  247. if isadmin:
  248. if isgroup:
  249. ok, result = False, "群聊不可执行管理员指令"
  250. else:
  251. cmd = next(c for c, info in ADMIN_COMMANDS.items() if cmd in info['alias'])
  252. if cmd == "stop":
  253. self.isrunning = False
  254. ok, result = True, "服务已暂停"
  255. elif cmd == "resume":
  256. self.isrunning = True
  257. ok, result = True, "服务已恢复"
  258. elif cmd == "reconf":
  259. load_config()
  260. ok, result = True, "配置已重载"
  261. elif cmd == "resetall":
  262. if bottype in (const.CHATGPT, const.OPEN_AI):
  263. channel.cancel_all_session()
  264. bot.sessions.clear_all_session()
  265. ok, result = True, "重置所有会话成功"
  266. else:
  267. ok, result = False, "当前对话机器人不支持重置会话"
  268. elif cmd == "debug":
  269. logger.setLevel('DEBUG')
  270. ok, result = True, "DEBUG模式已开启"
  271. elif cmd == "plist":
  272. plugins = PluginManager().list_plugins()
  273. ok = True
  274. result = "插件列表:\n"
  275. for name,plugincls in plugins.items():
  276. result += f"{plugincls.name}_v{plugincls.version} {plugincls.priority} - "
  277. if plugincls.enabled:
  278. result += "已启用\n"
  279. else:
  280. result += "未启用\n"
  281. elif cmd == "scanp":
  282. new_plugins = PluginManager().scan_plugins()
  283. ok, result = True, "插件扫描完成"
  284. PluginManager().activate_plugins()
  285. if len(new_plugins) >0 :
  286. result += "\n发现新插件:\n"
  287. result += "\n".join([f"{p.name}_v{p.version}" for p in new_plugins])
  288. else :
  289. result +=", 未发现新插件"
  290. elif cmd == "setpri":
  291. if len(args) != 2:
  292. ok, result = False, "请提供插件名和优先级"
  293. else:
  294. ok = PluginManager().set_plugin_priority(args[0], int(args[1]))
  295. if ok:
  296. result = "插件" + args[0] + "优先级已设置为" + args[1]
  297. else:
  298. result = "插件不存在"
  299. elif cmd == "reloadp":
  300. if len(args) != 1:
  301. ok, result = False, "请提供插件名"
  302. else:
  303. ok = PluginManager().reload_plugin(args[0])
  304. if ok:
  305. result = "插件配置已重载"
  306. else:
  307. result = "插件不存在"
  308. elif cmd == "enablep":
  309. if len(args) != 1:
  310. ok, result = False, "请提供插件名"
  311. else:
  312. ok, result = PluginManager().enable_plugin(args[0])
  313. elif cmd == "disablep":
  314. if len(args) != 1:
  315. ok, result = False, "请提供插件名"
  316. else:
  317. ok = PluginManager().disable_plugin(args[0])
  318. if ok:
  319. result = "插件已禁用"
  320. else:
  321. result = "插件不存在"
  322. elif cmd == "installp":
  323. if len(args) != 1:
  324. ok, result = False, "请提供插件名或.git结尾的仓库地址"
  325. else:
  326. ok, result = PluginManager().install_plugin(args[0])
  327. elif cmd == "uninstallp":
  328. if len(args) != 1:
  329. ok, result = False, "请提供插件名"
  330. else:
  331. ok, result = PluginManager().uninstall_plugin(args[0])
  332. elif cmd == "updatep":
  333. if len(args) != 1:
  334. ok, result = False, "请提供插件名"
  335. else:
  336. ok, result = PluginManager().update_plugin(args[0])
  337. logger.debug("[Godcmd] admin command: %s by %s" % (cmd, user))
  338. else:
  339. ok, result = False, "需要管理员权限才能执行该指令"
  340. else:
  341. trigger_prefix = conf().get('plugin_trigger_prefix',"$")
  342. if trigger_prefix == "#": # 跟插件聊天指令前缀相同,继续递交
  343. return
  344. ok, result = False, f"未知指令:{cmd}\n查看指令列表请输入#help \n"
  345. reply = Reply()
  346. if ok:
  347. reply.type = ReplyType.INFO
  348. else:
  349. reply.type = ReplyType.ERROR
  350. reply.content = result
  351. e_context['reply'] = reply
  352. e_context.action = EventAction.BREAK_PASS # 事件结束,并跳过处理context的默认逻辑
  353. elif not self.isrunning:
  354. e_context.action = EventAction.BREAK_PASS
  355. def authenticate(self, userid, args, isadmin, isgroup) -> Tuple[bool,str] :
  356. if isgroup:
  357. return False,"请勿在群聊中认证"
  358. if isadmin:
  359. return False,"管理员账号无需认证"
  360. if len(args) != 1:
  361. return False,"请提供口令"
  362. password = args[0]
  363. if password == self.password:
  364. self.admin_users.append(userid)
  365. return True,"认证成功"
  366. elif password == self.temp_password:
  367. self.admin_users.append(userid)
  368. return True,"认证成功,请尽快设置口令"
  369. else:
  370. return False,"认证失败"
  371. def get_help_text(self, isadmin = False, isgroup = False, **kwargs):
  372. return get_help_text(isadmin, isgroup)