catbase/plugins/emojifyme/emojifyme.go

110 lines
2.3 KiB
Go
Raw Normal View History

// © 2013 the CatBase Authors under the WTFPL. See AUTHORS for the list of authors.
package emojifyme
import (
"encoding/json"
"io/ioutil"
"log"
"math/rand"
"net/http"
"strings"
"github.com/velour/catbase/bot"
"github.com/velour/catbase/bot/msg"
)
type EmojifyMePlugin struct {
Bot bot.Bot
GotBotEmoji bool
Emoji map[string]string
}
func New(b bot.Bot) *EmojifyMePlugin {
resp, err := http.Get("https://raw.githubusercontent.com/github/gemoji/master/db/emoji.json")
if err != nil {
log.Fatalf("Error generic emoji list: %s", err)
}
body, err := ioutil.ReadAll(resp.Body)
resp.Body.Close()
if err != nil {
log.Fatalf("Error generic emoji list body: %s", err)
}
type Emoji struct {
Aliases []string `json:"aliases"`
}
var emoji []Emoji
err = json.Unmarshal(body, &emoji)
if err != nil {
log.Fatalf("Error parsing emoji list: %s", err)
}
emojiMap := map[string]string{}
for _, e := range emoji {
for _, alias := range e.Aliases {
emojiMap[alias] = alias
}
}
ep := &EmojifyMePlugin{
Bot: b,
GotBotEmoji: false,
Emoji: emojiMap,
}
b.Register(ep, bot.Message, ep.message)
return ep
}
func (p *EmojifyMePlugin) message(kind bot.Kind, message msg.Message, args ...interface{}) bool {
if !p.GotBotEmoji {
p.GotBotEmoji = true
emojiMap := p.Bot.GetEmojiList()
for e := range emojiMap {
p.Emoji[e] = e
}
}
2019-01-22 00:16:57 +00:00
inertTokens := p.Bot.Config().GetArray("Emojify.Scoreless", []string{})
emojied := 0.0
2019-01-21 23:00:51 +00:00
emojys := []string{}
msg := strings.Replace(strings.ToLower(message.Body), "_", " ", -1)
for k, v := range p.Emoji {
k = strings.Replace(k, "_", " ", -1)
2019-01-21 23:05:35 +00:00
candidates := []string{
2019-01-21 23:30:20 +00:00
k,
2019-01-21 23:05:35 +00:00
k + "es",
k + "s",
}
for _, c := range candidates {
if strings.Contains(msg, " "+c+" ") ||
strings.HasPrefix(msg, c+" ") ||
2019-01-22 15:59:08 +00:00
strings.HasSuffix(msg, " "+c) ||
msg == c {
2019-01-21 23:05:35 +00:00
emojys = append(emojys, v)
2019-01-22 15:52:28 +00:00
if !stringsContain(inertTokens, k) && len(v) > 2 {
2019-01-21 23:30:20 +00:00
emojied += 1
2019-01-21 23:05:35 +00:00
}
}
}
}
2019-01-21 23:00:51 +00:00
2019-01-22 00:16:57 +00:00
if emojied > 0 && rand.Float64() <= p.Bot.Config().GetFloat64("Emojify.Chance", 0.02)*emojied {
2019-01-21 23:00:51 +00:00
for _, e := range emojys {
p.Bot.Send(bot.Reaction, message.Channel, e, message)
}
return false
}
return false
}
2017-12-03 18:04:55 +00:00
func stringsContain(haystack []string, needle string) bool {
for _, s := range haystack {
if s == needle {
return true
}
}
return false
}