75 lines
1.9 KiB
Go
Raw Normal View History

2018-03-06 16:34:02 +00:00
package main
import (
"strings"
2018-04-19 20:15:05 +00:00
"github.com/animenotifier/arn/search"
2018-03-06 16:34:02 +00:00
"github.com/bwmarrin/discordgo"
)
// OnMessageCreate is called every time a new message is created on any channel.
func OnMessageCreate(s *discordgo.Session, msg *discordgo.MessageCreate) {
// Ignore all messages created by the bot itself
if msg.Author.ID == s.State.User.ID {
return
}
if msg.Content == "!commands" {
s.ChannelMessageSend(msg.ChannelID, `
**!user** [username]
**!anime** [id]
**!animelist** [username]
**!tag** [forum tag]`)
}
// Has the bot been mentioned?
for _, user := range msg.Mentions {
if user.ID == discord.State.User.ID {
s.ChannelMessageSend(msg.ChannelID, msg.Author.Mention()+" :heart:")
return
}
}
if strings.HasPrefix(msg.Content, "!user ") {
s.ChannelMessageSend(msg.ChannelID, "https://notify.moe/+"+strings.Split(msg.Content, " ")[1])
return
}
if strings.HasPrefix(msg.Content, "!animelist ") {
s.ChannelMessageSend(msg.ChannelID, "https://notify.moe/+"+strings.Split(msg.Content, " ")[1]+"/animelist")
return
}
if strings.HasPrefix(msg.Content, "!tag ") {
s.ChannelMessageSend(msg.ChannelID, "https://notify.moe/forum/"+strings.ToLower(strings.Split(msg.Content, " ")[1]))
return
}
if strings.HasPrefix(msg.Content, "!play ") {
s.UpdateStatus(0, msg.Content[len("!play "):])
return
}
2018-03-15 17:01:17 +00:00
if msg.Content == "!source" {
2018-03-15 17:04:43 +00:00
s.ChannelMessageSend(msg.ChannelID, msg.Author.Mention()+" B-baaaaaaaka! Y..you...you want to...TOUCH MY CODE?!\n\nhttps://github.com/animenotifier/notify.moe/tree/go/bots/discord")
2018-03-15 17:01:17 +00:00
return
}
2018-04-15 10:13:19 +00:00
if strings.HasPrefix(msg.Content, "!a ") {
term := msg.Content[len("!a "):]
2018-04-19 20:15:05 +00:00
animes := search.Anime(term, 3)
2018-04-15 10:13:19 +00:00
message := ""
2018-03-06 16:34:02 +00:00
2018-04-15 10:13:19 +00:00
for _, anime := range animes {
message += "https://notify.moe" + anime.Link() + "\n"
}
2018-03-06 16:34:02 +00:00
2018-04-15 10:13:19 +00:00
if len(animes) == 0 {
message = "Sorry, I couldn't find anything using that term."
}
2018-03-06 16:34:02 +00:00
2018-04-15 10:13:19 +00:00
s.ChannelMessageSend(msg.ChannelID, message)
return
}
2018-03-06 16:34:02 +00:00
}