You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

106 lines
4.6KB

  1. from bridge.context import Context, ContextType
  2. from bridge.reply import Reply, ReplyType
  3. from common.log import logger
  4. from linkai import LinkAIClient, PushMsg
  5. from config import conf, pconf, plugin_config, available_setting
  6. from plugins import PluginManager
  7. import time
  8. chat_client: LinkAIClient
  9. class ChatClient(LinkAIClient):
  10. def __init__(self, api_key, host, channel):
  11. super().__init__(api_key, host)
  12. self.channel = channel
  13. self.client_type = channel.channel_type
  14. def on_message(self, push_msg: PushMsg):
  15. session_id = push_msg.session_id
  16. msg_content = push_msg.msg_content
  17. logger.info(f"receive msg push, session_id={session_id}, msg_content={msg_content}")
  18. context = Context()
  19. context.type = ContextType.TEXT
  20. context["receiver"] = session_id
  21. context["isgroup"] = push_msg.is_group
  22. self.channel.send(Reply(ReplyType.TEXT, content=msg_content), context)
  23. def on_config(self, config: dict):
  24. if not self.client_id:
  25. return
  26. logger.info(f"[LinkAI] 从客户端管理加载远程配置: {config}")
  27. if config.get("enabled") != "Y":
  28. return
  29. local_config = conf()
  30. for key in config.keys():
  31. if key in available_setting and config.get(key) is not None:
  32. local_config[key] = config.get(key)
  33. # 语音配置
  34. reply_voice_mode = config.get("reply_voice_mode")
  35. if reply_voice_mode:
  36. if reply_voice_mode == "voice_reply_voice":
  37. local_config["voice_reply_voice"] = True
  38. elif reply_voice_mode == "always_reply_voice":
  39. local_config["always_reply_voice"] = True
  40. if config.get("admin_password"):
  41. if not plugin_config.get("Godcmd"):
  42. plugin_config["Godcmd"] = {"password": config.get("admin_password"), "admin_users": []}
  43. else:
  44. plugin_config["Godcmd"]["password"] = config.get("admin_password")
  45. PluginManager().instances["GODCMD"].reload()
  46. if config.get("group_app_map") and pconf("linkai"):
  47. local_group_map = {}
  48. for mapping in config.get("group_app_map"):
  49. local_group_map[mapping.get("group_name")] = mapping.get("app_code")
  50. pconf("linkai")["group_app_map"] = local_group_map
  51. PluginManager().instances["LINKAI"].reload()
  52. if config.get("text_to_image") and config.get("text_to_image") == "midjourney" and pconf("linkai"):
  53. if pconf("linkai")["midjourney"]:
  54. pconf("linkai")["midjourney"]["enabled"] = True
  55. pconf("linkai")["midjourney"]["use_image_create_prefix"] = True
  56. elif config.get("text_to_image") and config.get("text_to_image") in ["dall-e-2", "dall-e-3"]:
  57. if pconf("linkai")["midjourney"]:
  58. pconf("linkai")["midjourney"]["use_image_create_prefix"] = False
  59. def start(channel):
  60. global chat_client
  61. chat_client = ChatClient(api_key=conf().get("linkai_api_key"), host="", channel=channel)
  62. chat_client.config = _build_config()
  63. chat_client.start()
  64. time.sleep(1.5)
  65. if chat_client.client_id:
  66. logger.info("[LinkAI] 可前往控制台进行线上登录和配置:https://link-ai.tech/console/clients")
  67. def _build_config():
  68. local_conf = conf()
  69. config = {
  70. "linkai_app_code": local_conf.get("linkai_app_code"),
  71. "single_chat_prefix": local_conf.get("single_chat_prefix"),
  72. "single_chat_reply_prefix": local_conf.get("single_chat_reply_prefix"),
  73. "single_chat_reply_suffix": local_conf.get("single_chat_reply_suffix"),
  74. "group_chat_prefix": local_conf.get("group_chat_prefix"),
  75. "group_chat_reply_prefix": local_conf.get("group_chat_reply_prefix"),
  76. "group_chat_reply_suffix": local_conf.get("group_chat_reply_suffix"),
  77. "group_name_white_list": local_conf.get("group_name_white_list"),
  78. "nick_name_black_list": local_conf.get("nick_name_black_list"),
  79. "speech_recognition": "Y" if local_conf.get("speech_recognition") else "N",
  80. "text_to_image": local_conf.get("text_to_image"),
  81. "image_create_prefix": local_conf.get("image_create_prefix")
  82. }
  83. if local_conf.get("always_reply_voice"):
  84. config["reply_voice_mode"] = "always_reply_voice"
  85. elif local_conf.get("voice_reply_voice"):
  86. config["reply_voice_mode"] = "voice_reply_voice"
  87. if pconf("linkai"):
  88. config["group_app_map"] = pconf("linkai").get("group_app_map")
  89. if plugin_config.get("Godcmd"):
  90. config["admin_password"] = plugin_config.get("Godcmd").get("password")
  91. return config