1
0
mirror of https://github.com/fumiama/NanoBot.git synced 2026-06-05 02:30:23 +08:00

finish emoji

This commit is contained in:
源文雨
2023-10-14 00:37:43 +09:00
parent 1f3529ec88
commit 8461538905
3 changed files with 74 additions and 1 deletions

View File

@@ -19,7 +19,7 @@ func checkrespbaseunsafe(ptr any) error {
return nil
}
//go:generate go run codegen/getopenapiof/main.go ShardWSSGateway User Guild Channel Member RoleMembers GuildRoleList ChannelPermissions Message MessageSetting PinsMessage Schedule
//go:generate go run codegen/getopenapiof/main.go ShardWSSGateway User Guild Channel Member RoleMembers GuildRoleList ChannelPermissions Message MessageSetting PinsMessage Schedule MessageReactionUsers
// GetOpenAPI 从 ep 获取 json 结构化数据写到 ptr, ptr 除 Slice 外必须在开头继承 CodeMessageBase
func (bot *Bot) GetOpenAPI(ep, contenttype string, ptr any) error {

View File

@@ -149,3 +149,15 @@ func (bot *Bot) getOpenAPIofSchedule(ep string) (*Schedule, error) {
}
return &resp.Schedule, err
}
func (bot *Bot) getOpenAPIofMessageReactionUsers(ep string) (*MessageReactionUsers, error) {
resp := &struct {
CodeMessageBase
MessageReactionUsers
}{}
err := bot.GetOpenAPI(ep, "", resp)
if err != nil {
err = errors.Wrap(err, getCallerFuncName())
}
return &resp.MessageReactionUsers, err
}

61
openapi_emoji.go Normal file
View File

@@ -0,0 +1,61 @@
package nano
import "strconv"
// Emoji 表情对象
//
// https://bot.q.qq.com/wiki/develop/api/openapi/emoji/model.html
type Emoji struct {
ID string `json:"id"`
Type uint32 `json:"type"`
}
// MessageReaction https://bot.q.qq.com/wiki/develop/api/openapi/reaction/model.html#messagereaction
type MessageReaction struct {
UserID string `json:"user_id"`
GuildID string `json:"guild_id"`
ChannelID string `json:"channel_id"`
Target *ReactionTarget `json:"target"`
Emoji *Emoji `json:"emoji"`
}
// ReactionTargetType https://bot.q.qq.com/wiki/develop/api/openapi/reaction/model.html#reactiontargettype
type ReactionTargetType int
// ReactionTarget https://bot.q.qq.com/wiki/develop/api/openapi/reaction/model.html#reactiontarget
type ReactionTarget struct {
ID string `json:"id"`
Type ReactionTargetType `json:"type"`
}
// GiveMessageReaction 对消息 message_id 进行表情表态
//
// https://bot.q.qq.com/wiki/develop/api/openapi/reaction/put_message_reaction.html
func (bot *Bot) GiveMessageReaction(channelid, messageid string, emoji Emoji) error {
return bot.PutOpenAPI("/channels/"+channelid+"/messages/"+messageid+"/reactions/"+strconv.FormatUint(uint64(emoji.Type), 10)+"/"+emoji.ID, "", nil, nil)
}
// DeleteMessageReaction 删除自己对消息 message_id 的表情表态
//
// https://bot.q.qq.com/wiki/develop/api/openapi/reaction/delete_own_message_reaction.html
func (bot *Bot) DeleteMessageReaction(channelid, messageid string, emoji Emoji) error {
return bot.DeleteOpenAPI("/channels/"+channelid+"/messages/"+messageid+"/reactions/"+strconv.FormatUint(uint64(emoji.Type), 10)+"/"+emoji.ID, "", nil)
}
// MessageReactionUsers https://bot.q.qq.com/wiki/develop/api/openapi/reaction/get_reaction_users.html#%E8%BF%94%E5%9B%9E
type MessageReactionUsers struct {
Users []User `json:"users"`
Cookie string `json:"cookie"`
IsEnd bool `json:"is_end"`
}
// GetMessageReactionUsers 拉取对消息 message_id 指定表情表态的用户列表
//
// https://bot.q.qq.com/wiki/develop/api/openapi/reaction/get_reaction_users.html
func (bot *Bot) GetMessageReactionUsers(channelid, messageid string, emoji Emoji, cookie string, limit int) (*MessageReactionUsers, error) {
return bot.getOpenAPIofMessageReactionUsers(WriteHTTPQueryIfNotNil(
"/channels/"+channelid+"/messages/"+messageid+"/reactions/"+strconv.FormatUint(uint64(emoji.Type), 10)+"/"+emoji.ID,
"cookie", cookie,
"limit", limit,
))
}