mirror of
https://github.com/idanoo/GoDiscMoji
synced 2025-07-05 04:02:14 +00:00
Pkg updates
This commit is contained in:
parent
8974273628
commit
3ab4884286
3 changed files with 6 additions and 24 deletions
|
@ -10,6 +10,6 @@ require (
|
|||
|
||||
require (
|
||||
github.com/gorilla/websocket v1.5.3 // indirect
|
||||
golang.org/x/crypto v0.32.0 // indirect
|
||||
golang.org/x/sys v0.29.0 // indirect
|
||||
golang.org/x/crypto v0.33.0 // indirect
|
||||
golang.org/x/sys v0.30.0 // indirect
|
||||
)
|
||||
|
|
|
@ -12,11 +12,15 @@ golang.org/x/crypto v0.0.0-20210421170649-83a5a9bb288b h1:7mWr3k41Qtv8XlltBkDkl8
|
|||
golang.org/x/crypto v0.0.0-20210421170649-83a5a9bb288b/go.mod h1:T9bdIzuCu7OtxOm1hfPfRQxPLYneinmdGuTeoZ9dtd4=
|
||||
golang.org/x/crypto v0.32.0 h1:euUpcYgM8WcP71gNpTqQCn6rC2t6ULUPiOzfWaXVVfc=
|
||||
golang.org/x/crypto v0.32.0/go.mod h1:ZnnJkOaASj8g0AjIduWNlq2NRxL0PlBrbKVyZ6V/Ugc=
|
||||
golang.org/x/crypto v0.33.0 h1:IOBPskki6Lysi0lo9qQvbxiQ+FvsCC/YWOecCHAixus=
|
||||
golang.org/x/crypto v0.33.0/go.mod h1:bVdXmD7IV/4GdElGPozy6U7lWdRXA4qyRVGJV57uQ5M=
|
||||
golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg=
|
||||
golang.org/x/sys v0.0.0-20201119102817-f84b799fce68 h1:nxC68pudNYkKU6jWhgrqdreuFiOQWj1Fs7T3VrH4Pjw=
|
||||
golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
||||
golang.org/x/sys v0.29.0 h1:TPYlXGxvx1MGTn2GiZDhnjPA9wZzZeGKHHmKhHYvgaU=
|
||||
golang.org/x/sys v0.29.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
|
||||
golang.org/x/sys v0.30.0 h1:QjkSwP/36a20jFYWkSue1YwXzLmsV5Gfq7Eiy72C1uc=
|
||||
golang.org/x/sys v0.30.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
|
||||
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
|
||||
golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
|
||||
golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=
|
||||
|
|
|
@ -52,7 +52,6 @@ func (bot *Bot) Start() error {
|
|||
})
|
||||
|
||||
// Add handlers
|
||||
// bot.DiscordSession.AddHandler(bot.HandleMessage)
|
||||
bot.DiscordSession.AddHandler(bot.HandleReaction)
|
||||
|
||||
// Load session
|
||||
|
@ -78,27 +77,6 @@ func (bot *Bot) Start() error {
|
|||
return nil
|
||||
}
|
||||
|
||||
// func (bot *Bot) HandleMessage(discord *discordgo.Session, message *discordgo.MessageCreate) {
|
||||
// // Don't reply to self
|
||||
// if message.Author.ID == discord.State.User.ID {
|
||||
// return
|
||||
// }
|
||||
|
||||
// slog.Info("Message received", "message", message.Content)
|
||||
// // respond to user message if it contains `!help` or `!bye`
|
||||
// switch {
|
||||
// case strings.HasPrefix(message.Content, "!help"):
|
||||
// _, err := discord.ChannelMessageSend(message.ChannelID, "Hello World😃")
|
||||
// if err != nil {
|
||||
// slog.Error("Failed to send message", "err", err)
|
||||
// }
|
||||
// case strings.Contains(message.Content, "!bye"):
|
||||
// discord.ChannelMessageSend(message.ChannelID, "Good Bye👋")
|
||||
// // add more cases if required
|
||||
// }
|
||||
|
||||
// }
|
||||
|
||||
// HandleReaction - Simply log it
|
||||
func (bot *Bot) HandleReaction(discord *discordgo.Session, reaction *discordgo.MessageReactionAdd) {
|
||||
err := bot.Db.LogEmojiUsage(reaction.GuildID, reaction.ChannelID, reaction.UserID, reaction.Emoji.Name)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue