Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

285 lines
12KB

  1. import plugins
  2. from bridge.context import ContextType
  3. from bridge.reply import Reply, ReplyType
  4. from config import global_config
  5. from plugins import *
  6. from .midjourney import MJBot
  7. from .summary import LinkSummary
  8. from bridge import bridge
  9. from common.expired_dict import ExpiredDict
  10. from common import const
  11. @plugins.register(
  12. name="linkai",
  13. desc="A plugin that supports knowledge base and midjourney drawing.",
  14. version="0.1.0",
  15. author="https://link-ai.tech",
  16. desire_priority=99
  17. )
  18. class LinkAI(Plugin):
  19. def __init__(self):
  20. super().__init__()
  21. self.handlers[Event.ON_HANDLE_CONTEXT] = self.on_handle_context
  22. self.config = super().load_config()
  23. if not self.config:
  24. # 未加载到配置,使用模板中的配置
  25. self.config = self._load_config_template()
  26. if self.config:
  27. self.mj_bot = MJBot(self.config.get("midjourney"))
  28. self.sum_config = {}
  29. if self.config:
  30. self.sum_config = self.config.get("summary")
  31. logger.info("[LinkAI] inited")
  32. def on_handle_context(self, e_context: EventContext):
  33. """
  34. 消息处理逻辑
  35. :param e_context: 消息上下文
  36. """
  37. if not self.config:
  38. return
  39. context = e_context['context']
  40. if context.type not in [ContextType.TEXT, ContextType.IMAGE, ContextType.IMAGE_CREATE, ContextType.FILE, ContextType.SHARING]:
  41. # filter content no need solve
  42. return
  43. if context.type == ContextType.FILE and self._is_summary_open(context):
  44. # 文件处理
  45. context.get("msg").prepare()
  46. file_path = context.content
  47. if not LinkSummary().check_file(file_path, self.sum_config):
  48. return
  49. _send_info(e_context, "正在为你加速生成摘要,请稍后")
  50. res = LinkSummary().summary_file(file_path)
  51. if not res:
  52. _set_reply_text("总结出现异常,请稍后再试吧", e_context)
  53. return
  54. USER_FILE_MAP[_find_user_id(context) + "-sum_id"] = res.get("summary_id")
  55. _set_reply_text(res.get("summary") + "\n\n💬 发送 \"开启对话\" 可以开启与文件内容的对话", e_context, level=ReplyType.TEXT)
  56. return
  57. if (context.type == ContextType.SHARING and self._is_summary_open(context)) or \
  58. (context.type == ContextType.TEXT and LinkSummary().check_url(context.content)):
  59. if not LinkSummary().check_url(context.content):
  60. return
  61. _send_info(e_context, "正在为你加速生成摘要,请稍后")
  62. res = LinkSummary().summary_url(context.content)
  63. if not res:
  64. _set_reply_text("总结出现异常,请稍后再试吧", e_context)
  65. return
  66. _set_reply_text(res.get("summary") + "\n\n💬 发送 \"开启对话\" 可以开启与文章内容的对话", e_context, level=ReplyType.TEXT)
  67. USER_FILE_MAP[_find_user_id(context) + "-sum_id"] = res.get("summary_id")
  68. return
  69. mj_type = self.mj_bot.judge_mj_task_type(e_context)
  70. if mj_type:
  71. # MJ作图任务处理
  72. self.mj_bot.process_mj_task(mj_type, e_context)
  73. return
  74. if context.content.startswith(f"{_get_trigger_prefix()}linkai"):
  75. # 应用管理功能
  76. self._process_admin_cmd(e_context)
  77. return
  78. if context.type == ContextType.TEXT and context.content == "开启对话" and _find_sum_id(context):
  79. # 文本对话
  80. _send_info(e_context, "正在为你开启对话,请稍后")
  81. res = LinkSummary().summary_chat(_find_sum_id(context))
  82. if not res:
  83. _set_reply_text("开启对话失败,请稍后再试吧", e_context)
  84. return
  85. USER_FILE_MAP[_find_user_id(context) + "-file_id"] = res.get("file_id")
  86. _set_reply_text("💡你可以问我关于这篇文章的任何问题,例如:\n\n" + res.get("questions") + "\n\n发送 \"退出对话\" 可以关闭与文章的对话", e_context, level=ReplyType.TEXT)
  87. return
  88. if context.type == ContextType.TEXT and context.content == "退出对话" and _find_file_id(context):
  89. del USER_FILE_MAP[_find_user_id(context) + "-file_id"]
  90. bot = bridge.Bridge().find_chat_bot(const.LINKAI)
  91. bot.sessions.clear_session(context["session_id"])
  92. _set_reply_text("对话已退出", e_context, level=ReplyType.TEXT)
  93. return
  94. if context.type == ContextType.TEXT and _find_file_id(context):
  95. bot = bridge.Bridge().find_chat_bot(const.LINKAI)
  96. context.kwargs["file_id"] = _find_file_id(context)
  97. reply = bot.reply(context.content, context)
  98. e_context["reply"] = reply
  99. e_context.action = EventAction.BREAK_PASS
  100. return
  101. if self._is_chat_task(e_context):
  102. # 文本对话任务处理
  103. self._process_chat_task(e_context)
  104. # 插件管理功能
  105. def _process_admin_cmd(self, e_context: EventContext):
  106. context = e_context['context']
  107. cmd = context.content.split()
  108. if len(cmd) == 1 or (len(cmd) == 2 and cmd[1] == "help"):
  109. _set_reply_text(self.get_help_text(verbose=True), e_context, level=ReplyType.INFO)
  110. return
  111. if len(cmd) == 2 and (cmd[1] == "open" or cmd[1] == "close"):
  112. # 知识库开关指令
  113. if not _is_admin(e_context):
  114. _set_reply_text("需要管理员权限执行", e_context, level=ReplyType.ERROR)
  115. return
  116. is_open = True
  117. tips_text = "开启"
  118. if cmd[1] == "close":
  119. tips_text = "关闭"
  120. is_open = False
  121. conf()["use_linkai"] = is_open
  122. bridge.Bridge().reset_bot()
  123. _set_reply_text(f"LinkAI对话功能{tips_text}", e_context, level=ReplyType.INFO)
  124. return
  125. if len(cmd) == 3 and cmd[1] == "app":
  126. # 知识库应用切换指令
  127. if not context.kwargs.get("isgroup"):
  128. _set_reply_text("该指令需在群聊中使用", e_context, level=ReplyType.ERROR)
  129. return
  130. if not _is_admin(e_context):
  131. _set_reply_text("需要管理员权限执行", e_context, level=ReplyType.ERROR)
  132. return
  133. app_code = cmd[2]
  134. group_name = context.kwargs.get("msg").from_user_nickname
  135. group_mapping = self.config.get("group_app_map")
  136. if group_mapping:
  137. group_mapping[group_name] = app_code
  138. else:
  139. self.config["group_app_map"] = {group_name: app_code}
  140. # 保存插件配置
  141. super().save_config(self.config)
  142. _set_reply_text(f"应用设置成功: {app_code}", e_context, level=ReplyType.INFO)
  143. if len(cmd) == 3 and cmd[1] == "sum" and (cmd[2] == "open" or cmd[2] == "close"):
  144. # 知识库开关指令
  145. if not _is_admin(e_context):
  146. _set_reply_text("需要管理员权限执行", e_context, level=ReplyType.ERROR)
  147. return
  148. is_open = True
  149. tips_text = "开启"
  150. if cmd[2] == "close":
  151. tips_text = "关闭"
  152. is_open = False
  153. self.sum_config["enabled"] = is_open
  154. _set_reply_text(f"文章总结功能{tips_text}", e_context, level=ReplyType.INFO)
  155. else:
  156. _set_reply_text(f"指令错误,请输入{_get_trigger_prefix()}linkai help 获取帮助", e_context,
  157. level=ReplyType.INFO)
  158. return
  159. def _is_summary_open(self, context) -> bool:
  160. if not self.sum_config or not self.sum_config.get("enabled"):
  161. return False
  162. if not context.kwargs.get("isgroup") and not self.sum_config.get("group_enabled"):
  163. return False
  164. return True
  165. # LinkAI 对话任务处理
  166. def _is_chat_task(self, e_context: EventContext):
  167. context = e_context['context']
  168. # 群聊应用管理
  169. return self.config.get("group_app_map") and context.kwargs.get("isgroup")
  170. def _process_chat_task(self, e_context: EventContext):
  171. """
  172. 处理LinkAI对话任务
  173. :param e_context: 对话上下文
  174. """
  175. context = e_context['context']
  176. # 群聊应用管理
  177. group_name = context.get("msg").from_user_nickname
  178. app_code = self._fetch_group_app_code(group_name)
  179. if app_code:
  180. context.kwargs['app_code'] = app_code
  181. def _fetch_group_app_code(self, group_name: str) -> str:
  182. """
  183. 根据群聊名称获取对应的应用code
  184. :param group_name: 群聊名称
  185. :return: 应用code
  186. """
  187. group_mapping = self.config.get("group_app_map")
  188. if group_mapping:
  189. app_code = group_mapping.get(group_name) or group_mapping.get("ALL_GROUP")
  190. return app_code
  191. def get_help_text(self, verbose=False, **kwargs):
  192. trigger_prefix = _get_trigger_prefix()
  193. help_text = "用于集成 LinkAI 提供的知识库、Midjourney绘画、文档总结对话等能力。\n\n"
  194. if not verbose:
  195. return help_text
  196. help_text += f'📖 知识库\n - 群聊中指定应用: {trigger_prefix}linkai app 应用编码\n'
  197. help_text += f' - {trigger_prefix}linkai open: 开启对话\n'
  198. help_text += f' - {trigger_prefix}linkai close: 关闭对话\n'
  199. help_text += f'\n例如: \n"{trigger_prefix}linkai app Kv2fXJcH"\n\n'
  200. help_text += f"🎨 绘画\n - 生成: {trigger_prefix}mj 描述词1, 描述词2.. \n - 放大: {trigger_prefix}mju 图片ID 图片序号\n - 变换: {trigger_prefix}mjv 图片ID 图片序号\n - 重置: {trigger_prefix}mjr 图片ID"
  201. help_text += f"\n\n例如:\n\"{trigger_prefix}mj a little cat, white --ar 9:16\"\n\"{trigger_prefix}mju 11055927171882 2\""
  202. help_text += f"\n\"{trigger_prefix}mjv 11055927171882 2\"\n\"{trigger_prefix}mjr 11055927171882\""
  203. help_text += f"\n\n💡 文档总结和对话\n - 开启: {trigger_prefix}linkai sum open\n - 使用: 发送文件、公众号文章等可生成摘要,并与内容对话"
  204. return help_text
  205. def _load_config_template(self):
  206. logger.debug("No LinkAI plugin config.json, use plugins/linkai/config.json.template")
  207. try:
  208. plugin_config_path = os.path.join(self.path, "config.json.template")
  209. if os.path.exists(plugin_config_path):
  210. with open(plugin_config_path, "r", encoding="utf-8") as f:
  211. plugin_conf = json.load(f)
  212. plugin_conf["midjourney"]["enabled"] = False
  213. plugin_conf["summary"]["enabled"] = False
  214. return plugin_conf
  215. except Exception as e:
  216. logger.exception(e)
  217. def _send_info(e_context: EventContext, content: str):
  218. reply = Reply(ReplyType.TEXT, content)
  219. channel = e_context["channel"]
  220. channel.send(reply, e_context["context"])
  221. # 静态方法
  222. def _is_admin(e_context: EventContext) -> bool:
  223. """
  224. 判断消息是否由管理员用户发送
  225. :param e_context: 消息上下文
  226. :return: True: 是, False: 否
  227. """
  228. context = e_context["context"]
  229. if context["isgroup"]:
  230. return context.kwargs.get("msg").actual_user_id in global_config["admin_users"]
  231. else:
  232. return context["receiver"] in global_config["admin_users"]
  233. def _find_user_id(context):
  234. if context["isgroup"]:
  235. return context.kwargs.get("msg").actual_user_id
  236. else:
  237. return context["receiver"]
  238. def _set_reply_text(content: str, e_context: EventContext, level: ReplyType = ReplyType.ERROR):
  239. reply = Reply(level, content)
  240. e_context["reply"] = reply
  241. e_context.action = EventAction.BREAK_PASS
  242. def _get_trigger_prefix():
  243. return conf().get("plugin_trigger_prefix", "$")
  244. def _find_sum_id(context):
  245. return USER_FILE_MAP.get(_find_user_id(context) + "-sum_id")
  246. def _find_file_id(context):
  247. return USER_FILE_MAP.get(_find_user_id(context) + "-file_id")
  248. USER_FILE_MAP = ExpiredDict(60 * 60)