QChatGPT/pkg/plugin/models.py

200 lines
5.8 KiB
Python
Raw Normal View History

2023-01-13 16:49:56 +08:00
import logging
import pkg.plugin.host as host
import pkg.utils.context
2023-01-13 16:49:56 +08:00
__current_registering_plugin__ = ""
PersonMessageReceived = "person_message_received"
"""收到私聊消息时,在判断是否应该响应前触发
kwargs:
launcher_type: str 发起对象类型(group/person)
launcher_id: int 发起对象ID(群号/QQ号)
sender_id: int 发送者ID(QQ号)
message_chain: mirai.models.message.MessageChain 消息链
"""
GroupMessageReceived = "group_message_received"
2023-01-13 23:26:52 +08:00
"""收到群聊消息时,在判断是否应该响应前触发(所有群消息)
kwargs:
launcher_type: str 发起对象类型(group/person)
launcher_id: int 发起对象ID(群号/QQ号)
sender_id: int 发送者ID(QQ号)
message_chain: mirai.models.message.MessageChain 消息链
"""
PersonNormalMessageReceived = "person_normal_message_received"
2023-01-13 23:26:52 +08:00
"""判断为应该处理的私聊普通消息时触发
kwargs:
launcher_type: str 发起对象类型(group/person)
launcher_id: int 发起对象ID(群号/QQ号)
sender_id: int 发送者ID(QQ号)
text_message: str 消息文本
"""
PersonCommandSent = "person_command_sent"
2023-01-13 23:26:52 +08:00
"""判断为应该处理的私聊指令时触发
kwargs:
launcher_type: str 发起对象类型(group/person)
launcher_id: int 发起对象ID(群号/QQ号)
sender_id: int 发送者ID(QQ号)
command: str 指令
2023-01-14 22:36:48 +08:00
params: list[str] 参数列表
2023-01-13 23:26:52 +08:00
text_message: str 完整指令文本
is_admin: bool 是否为管理员
returns (optional):
reply: list 回复消息组件列表
2023-01-13 23:26:52 +08:00
"""
GroupNormalMessageReceived = "group_normal_message_received"
2023-01-13 23:26:52 +08:00
"""判断为应该处理的群聊普通消息时触发
kwargs:
launcher_type: str 发起对象类型(group/person)
launcher_id: int 发起对象ID(群号/QQ号)
sender_id: int 发送者ID(QQ号)
text_message: str 消息文本
"""
GroupCommandSent = "group_command_sent"
2023-01-13 23:26:52 +08:00
"""判断为应该处理的群聊指令时触发
kwargs:
launcher_type: str 发起对象类型(group/person)
launcher_id: int 发起对象ID(群号/QQ号)
sender_id: int 发送者ID(QQ号)
command: str 指令
2023-01-14 22:36:48 +08:00
params: list[str] 参数列表
2023-01-13 23:26:52 +08:00
text_message: str 完整指令文本
2023-01-14 22:36:48 +08:00
is_admin: bool 是否为管理员
2023-01-13 23:26:52 +08:00
"""
NormalMessageResponded = "normal_message_responded"
"""获取到对普通消息的文字响应时触发
kwargs:
launcher_type: str 发起对象类型(group/person)
launcher_id: int 发起对象ID(群号/QQ号)
sender_id: int 发送者ID(QQ号)
session: pkg.openai.session.Session 会话对象
prefix: str 回复文字消息的前缀
response_text: str 响应文本
returns (optional):
reply: list 替换回复消息组件列表
"""
SessionFirstMessageReceived = "session_first_message_received"
2023-01-13 23:26:52 +08:00
"""会话被第一次交互时触发
kwargs:
session_name: str 会话名称(<launcher_type>_<launcher_id>)
session: pkg.openai.session.Session 会话对象
default_prompt: str 预设值
"""
2023-01-14 22:36:48 +08:00
SessionExplicitReset = "session_reset"
"""会话被用户手动重置时触发,此事件不支持阻止默认行为
2023-01-13 23:26:52 +08:00
kwargs:
session_name: str 会话名称(<launcher_type>_<launcher_id>)
session: pkg.openai.session.Session 会话对象
"""
2023-01-13 16:49:56 +08:00
SessionExpired = "session_expired"
2023-01-13 23:26:52 +08:00
"""会话过期时触发
kwargs:
session_name: str 会话名称(<launcher_type>_<launcher_id>)
session: pkg.openai.session.Session 会话对象
2023-01-14 22:36:48 +08:00
session_expire_time: int 已设置的会话过期时间()
2023-01-13 23:26:52 +08:00
"""
2023-01-13 16:49:56 +08:00
KeyExceeded = "key_exceeded"
2023-01-13 23:26:52 +08:00
"""api-key超额时触发
kwargs:
key_name: str 超额的api-key名称
usage: dict 超额的api-key使用情况
2023-01-14 22:36:48 +08:00
exceeded_keys: list[str] 超额的api-key列表
2023-01-13 23:26:52 +08:00
"""
2023-01-13 16:49:56 +08:00
KeySwitched = "key_switched"
2023-01-14 22:36:48 +08:00
"""api-key超额切换成功时触发此事件不支持阻止默认行为
2023-01-13 23:26:52 +08:00
kwargs:
key_name: str 切换成功的api-key名称
key_list: list[str] api-key列表
"""
2023-01-13 16:49:56 +08:00
2023-01-14 22:36:48 +08:00
def on(event: str):
"""注册事件监听器
:param
event: str 事件名称
"""
return Plugin.on(event)
2023-01-13 16:49:56 +08:00
class Plugin:
host: host.PluginHost
"""插件宿主,提供插件的一些基础功能"""
@classmethod
def on(cls, event):
"""事件处理器装饰器
:param
event: 事件类型
:return:
None
"""
def wrapper(func):
plugin_hooks = host.__plugins__[__current_registering_plugin__]["hooks"]
if event not in plugin_hooks:
plugin_hooks[event] = []
plugin_hooks[event].append(func)
host.__plugins__[__current_registering_plugin__]["hooks"] = plugin_hooks
return func
return wrapper
def register(name: str, description: str, version: str, author: str):
"""注册插件, 此函数作为装饰器使用
Args:
name (str): 插件名称
description (str): 插件描述
version (str): 插件版本
author (str): 插件作者
Returns:
None
"""
global __current_registering_plugin__
__current_registering_plugin__ = name
host.__plugins__[name] = {
"name": name,
"description": description,
"version": version,
"author": author,
"hooks": {}
}
def wrapper(cls: Plugin):
cls.name = name
cls.description = description
cls.version = version
cls.author = author
cls.host = pkg.utils.context.get_plugin_host()
# 存到插件列表
host.__plugins__[name]["class"] = cls
logging.info("插件注册完成: n='{}', d='{}', v={}, a='{}' ({})".format(name, description, version, author, cls))
return cls
return wrapper