catbase/plugins/cowboy/cowboy.go

87 lines
2.1 KiB
Go
Raw Normal View History

2022-07-21 15:25:10 +00:00
package cowboy
import (
2022-07-21 15:39:50 +00:00
"fmt"
2022-07-21 15:25:10 +00:00
"regexp"
2022-07-22 21:06:55 +00:00
"github.com/velour/catbase/connectors/discord"
2022-07-21 15:25:10 +00:00
"github.com/rs/zerolog/log"
"github.com/velour/catbase/bot"
"github.com/velour/catbase/config"
)
type Cowboy struct {
b bot.Bot
c *config.Config
emojyPath string
baseEmojyURL string
2022-07-21 15:25:10 +00:00
}
func New(b bot.Bot) *Cowboy {
emojyPath := b.Config().Get("emojy.path", "emojy")
baseURL := b.Config().Get("emojy.baseURL", "/emojy/file")
2022-07-21 15:25:10 +00:00
c := Cowboy{
b: b,
c: b.Config(),
emojyPath: emojyPath,
baseEmojyURL: baseURL,
2022-07-21 15:25:10 +00:00
}
c.register()
c.registerWeb()
2022-07-22 21:04:51 +00:00
switch conn := b.DefaultConnector().(type) {
case *discord.Discord:
c.registerCmds(conn)
}
2022-07-21 15:25:10 +00:00
return &c
}
func (p *Cowboy) register() {
tbl := bot.HandlerTable{
2022-07-22 21:06:55 +00:00
{
Kind: bot.Message, IsCmd: true,
Regex: regexp.MustCompile(`(?i)^:cowboy_clear_cache:$`),
Handler: func(r bot.Request) bool {
cowboyClearCache()
p.b.Send(r.Conn, bot.Ephemeral, r.Msg.Channel, r.Msg.User.ID, ":cowboy_cache_cleared:")
return true
},
},
2022-07-21 15:25:10 +00:00
{
Kind: bot.Message, IsCmd: false,
Regex: regexp.MustCompile(`(?i)^:cowboy_(?P<what>.+):$`),
Handler: func(r bot.Request) bool {
p.makeCowboy(r)
return true
},
},
}
p.b.RegisterTable(p, tbl)
}
func (p *Cowboy) makeCowboy(r bot.Request) {
2022-07-22 21:06:55 +00:00
what := r.Values["what"]
// This'll add the image to the cowboy_cache before discord tries to access it over http
2022-07-22 22:27:20 +00:00
i, err := cowboy(p.c, p.emojyPath, p.baseEmojyURL, what)
2022-07-22 21:06:55 +00:00
if err != nil {
log.Error().Err(err).Msg(":cowboy_fail:")
p.b.Send(r.Conn, bot.Ephemeral, r.Msg.Channel, r.Msg.User.ID, "Hey cowboy, that image wasn't there.")
return
}
2022-07-21 15:25:10 +00:00
log.Debug().Msgf("makeCowboy: %s", r.Values["what"])
base := p.c.Get("baseURL", "http://127.0.0.1:1337")
u := base + "/cowboy/img/" + r.Values["what"]
2022-07-21 15:39:50 +00:00
p.b.Send(r.Conn, bot.Delete, r.Msg.Channel, r.Msg.ID)
2022-07-21 15:25:10 +00:00
p.b.Send(r.Conn, bot.Message, r.Msg.Channel, "", bot.ImageAttachment{
URL: u,
2022-07-21 15:39:50 +00:00
AltTxt: fmt.Sprintf("%s: %s", r.Msg.User.Name, r.Msg.Body),
2022-07-22 22:27:20 +00:00
Width: i.Bounds().Max.X,
Height: i.Bounds().Max.Y,
2022-07-21 15:25:10 +00:00
})
}
2022-07-22 21:04:51 +00:00
func (p *Cowboy) registerCmds(d *discord.Discord) {
//d.RegisterSlashCmd()
}