bot

package
v0.4.3 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jul 20, 2023 License: MIT Imports: 27 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func AddHttpRouteHandler added in v0.4.0

func AddHttpRouteHandler(path, addr string, handler func(*gin.Context) bool)

新增一个http路由,用于与机器人同时运行,避免占用同一个端口,以及允许使用短路机制处理请求 path: 路由路径 addr: 路由地址 handler: 路由处理器,返回true则短路,返回false则继续执行(系统将在所有同路径端口的handler都不短路后再处理消息)

func NewBot

func NewBot(bot_id, bot_secret, bot_pubkey, path, addr string) *bot

NewBot 创建一个机器人实例,bot_id 为机器人的id,bot_secret 为机器人的secret,path 为接收事件的路径(如"/"),addr 为接收事件的地址(如":8888"); 机器人实例创建后,需要调用 Run() 方法启动机器人; 对于消息处理,可以通过 AddPreprocessor() 方法添加预处理器,通过 AddOnCommand() 方法添加命令处理器,通过 AddListener() 方法添加事件监听器; 对于插件,可以通过 AddPlugin() 方法添加插件; 整体消息处理的运行与短路顺序为: [main]预处理器 -> [插件]预处理器 -> [插件]令处理器 -> [main]命令处理器 -> [main]事件监听器;

func RemoveHttpRouteHandler added in v0.4.0

func RemoveHttpRouteHandler(path, addr string, handler func(*gin.Context) bool)

func StartAll added in v0.4.0

func StartAll()

开始运行所有机器人和 HTTP 服务器

func StartAllBot

func StartAllBot()

func StartAllHttpServer added in v0.4.0

func StartAllHttpServer()

Types

This section is empty.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL