QQ Robotic Rapid Development Framework basierend auf dem OneBot -Protokoll
Dokument · Download · Schneller Start · Teilnahme am Beitrag
Aus
v2
-Version, nurJDK 17+
undSpringBoot 3.0.0+
Weitere Informationen finden Sie im Migrationshandbuch für Projektdokument V2
Ersetzen Sie bei der Einführung der Abhängigkeit die Version der
latest
Version vonMaven Central
.
< dependency >
< groupId >com.mikuac groupId >
< artifactId >shiro artifactId >
< version >latest version >
dependency >
implementation( " com.mikuac:shiro:latest " )
implementation ' com.mikuac:shiro:latest '
Schreiben Sie die Konfigurationsdatei
application.yaml
oder beziehen Sie sich auf die erweiterte Konfigurationsdatei
server :
port : 5000
@ Shiro
@ Component
public class ExamplePlugin {
// 更多用法详见 @MessageHandlerFilter 注解源码
// 当机器人收到的私聊消息消息符合 cmd 值 "hi" 时,这个方法会被调用。
@ PrivateMessageHandler
@ MessageHandlerFilter ( cmd = "hi" )
public void fun1 ( Bot bot , PrivateMessageEvent event , Matcher matcher ) {
// 构建消息
String sendMsg = MsgUtils . builder (). face ( 66 ). text ( "Hello, this is shiro demo." ). build ();
// 发送私聊消息
bot . sendPrivateMsg ( event . getUserId (), sendMsg , false );
}
// 如果 at 参数设定为 AtEnum.NEED 则只有 at 了机器人的消息会被响应
@ GroupMessageHandler
@ MessageHandlerFilter ( at = AtEnum . NEED )
public void fun2 ( GroupMessageEvent event ) {
// 以注解方式调用可以根据自己的需要来为方法设定参数
// 例如群组消息可以传递 GroupMessageEvent, Bot, Matcher 多余的参数会被设定为 null
System . out . println ( event . getMessage ());
}
// 同时监听群组及私聊消息 并根据消息类型(私聊,群聊)回复
@ AnyMessageHandler
@ MessageHandlerFilter ( cmd = "say hello" )
public void fun3 ( Bot bot , AnyMessageEvent event ) {
bot . sendMsg ( event , "hello" , false );
}
}
plugin-list
definierenresources/application.yaml
fügt den folgenden Inhalt hinzuMESSAGE_BLOCK
wird in der Reihenfolge ausgeführt.Schreiben Sie die Konfigurationsdatei
application.yaml
oder beziehen Sie sich auf die erweiterte Konfigurationsdatei
server :
port : 5000
shiro :
plugin-list :
- com.example.bot.plugins.ExamplePlugin
@ Component
public class ExamplePlugin extends BotPlugin {
@ Override
public int onPrivateMessage ( Bot bot , PrivateMessageEvent event ) {
if ( "hi" . equals ( event . getMessage ())) {
// 构建消息
String sendMsg = MsgUtils . builder ()
. face ( 66 )
. text ( "hello, this is shiro example plugin." )
. build ();
// 发送私聊消息
bot . sendPrivateMsg ( event . getUserId (), sendMsg , false );
}
// 返回 MESSAGE_IGNORE 执行 plugin-list 下一个插件,返回 MESSAGE_BLOCK 则不执行下一个插件
return MESSAGE_IGNORE ;
}
@ Override
public int onGroupMessage ( Bot bot , GroupMessageEvent event ) {
if ( "hi" . equals ( event . getMessage ())) {
// 构建消息
String sendMsg = MsgUtils . builder ()
. at ( event . getUserId ())
. face ( 66 )
. text ( "hello, this is shiro example plugin." )
. build ();
// 发送群消息
bot . sendGroupMsg ( event . getGroupId (), sendMsg , false );
}
// 返回 MESSAGE_IGNORE 执行 plugin-list 下一个插件,返回 MESSAGE_BLOCK 则不执行下一个插件
return MESSAGE_IGNORE ;
}
}
Shiro wird mit dem OneBot-V11-Standardprotokoll entwickelt, das mit allen OneBot-Protokoll-Clients kompatibel ist, die das umgekehrte WebSocket unterstützen
Projekt | beschreiben | Bemerkung |
---|---|---|
Llonebot | Lassen Sie Ihr NTQQ das OneBot11 -Protokoll für die Entwicklung von QQ -Roboter unterstützen | |
LaGrange.core | NTQQ -Protokollimplementierung | |
Go-cqhttp | Die native Implementierung von OneBot Golang basierend auf Mirai und Miraigo | Wartung stoppen |
OpenSamrock | Robot -Framework basierend auf dem OneBot -Standard basierend auf XPosed |
Sehen Sie sich an alle Personen, die bereits beigetragen haben, für Details!
Dieses Produkt ist unter der GNU General Publicing-Version lizenziert.
Alternativ ist dieses Produkt unter dem gnu weniger allgemeinen Leben vergleichbar, 3 für nicht komposerische Verwendung.
Fühlen Sie sich frei, uns zu studieren, wenn Sie Fragen zum Livensing haben oder die Bibliothek in einem kommerziellen Creece -Produkt verwenden möchten.
JetBrains bietet kostenlose Lizenzen zur Unterstützung von Open -Source -Projekten.