2020-04-28 15:32:52 +00:00
|
|
|
package meme
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
2020-04-28 19:00:44 +00:00
|
|
|
"fmt"
|
2020-04-28 15:32:52 +00:00
|
|
|
"image"
|
|
|
|
"image/png"
|
|
|
|
"net/http"
|
|
|
|
"net/url"
|
|
|
|
"path"
|
|
|
|
"strings"
|
2020-04-29 14:57:00 +00:00
|
|
|
"time"
|
2020-04-28 15:32:52 +00:00
|
|
|
|
|
|
|
"github.com/fogleman/gg"
|
|
|
|
"github.com/google/uuid"
|
|
|
|
"github.com/rs/zerolog/log"
|
|
|
|
|
|
|
|
"github.com/velour/catbase/bot"
|
|
|
|
"github.com/velour/catbase/bot/msg"
|
2020-04-29 14:57:00 +00:00
|
|
|
"github.com/velour/catbase/bot/user"
|
2020-04-28 15:32:52 +00:00
|
|
|
"github.com/velour/catbase/config"
|
|
|
|
)
|
|
|
|
|
|
|
|
type MemePlugin struct {
|
|
|
|
bot bot.Bot
|
|
|
|
c *config.Config
|
|
|
|
|
|
|
|
images map[string][]byte
|
|
|
|
}
|
|
|
|
|
|
|
|
func New(b bot.Bot) *MemePlugin {
|
|
|
|
mp := &MemePlugin{
|
|
|
|
bot: b,
|
|
|
|
c: b.Config(),
|
|
|
|
images: make(map[string][]byte),
|
|
|
|
}
|
|
|
|
|
|
|
|
b.Register(mp, bot.Message, mp.message)
|
|
|
|
b.Register(mp, bot.Help, mp.help)
|
|
|
|
mp.registerWeb(b.DefaultConnector())
|
|
|
|
|
|
|
|
return mp
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *MemePlugin) message(c bot.Connector, kind bot.Kind, message msg.Message, args ...interface{}) bool {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *MemePlugin) help(c bot.Connector, kind bot.Kind, message msg.Message, args ...interface{}) bool {
|
|
|
|
formats := p.c.GetMap("meme.memes", defaultFormats)
|
|
|
|
msg := "Use `/meme [format] [text]` to create a meme.\nI know the following formats:"
|
|
|
|
for k := range formats {
|
|
|
|
msg += "\n" + k
|
|
|
|
}
|
|
|
|
p.bot.Send(c, bot.Message, message.Channel, msg)
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *MemePlugin) registerWeb(c bot.Connector) {
|
|
|
|
http.HandleFunc("/slash/meme", func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
r.ParseForm()
|
|
|
|
log.Debug().Msgf("Meme:\n%+v", r.PostForm.Get("text"))
|
|
|
|
channel := r.PostForm.Get("channel_id")
|
2020-04-29 14:57:00 +00:00
|
|
|
channelName := r.PostForm.Get("channel_name")
|
|
|
|
from := r.PostForm.Get("user_name")
|
2020-04-28 15:32:52 +00:00
|
|
|
log.Debug().Msgf("channel: %s", channel)
|
|
|
|
|
|
|
|
parts := strings.SplitN(r.PostForm.Get("text"), " ", 2)
|
2020-04-29 14:57:00 +00:00
|
|
|
isCmd, message := bot.IsCmd(p.c, parts[1])
|
|
|
|
|
2020-04-28 15:32:52 +00:00
|
|
|
log.Debug().Strs("parts", parts).Msgf("Meme:\n%+v", r.PostForm.Get("text"))
|
|
|
|
w.WriteHeader(200)
|
|
|
|
|
2020-04-29 14:57:00 +00:00
|
|
|
id := p.genMeme(parts[0], message)
|
2020-04-28 15:32:52 +00:00
|
|
|
baseURL := p.c.Get("BaseURL", `https://catbase.velour.ninja`)
|
|
|
|
u, _ := url.Parse(baseURL)
|
|
|
|
u.Path = path.Join(u.Path, "meme", "img", id)
|
|
|
|
|
|
|
|
log.Debug().Msgf("image is at %s", u.String())
|
|
|
|
p.bot.Send(c, bot.Message, channel, "", bot.ImageAttachment{
|
|
|
|
URL: u.String(),
|
2020-04-29 14:57:00 +00:00
|
|
|
AltTxt: fmt.Sprintf("%s: %s", from, message),
|
2020-04-28 15:32:52 +00:00
|
|
|
})
|
|
|
|
w.Write(nil)
|
2020-04-29 14:57:00 +00:00
|
|
|
m := msg.Message{
|
|
|
|
User: &user.User{
|
|
|
|
ID: from,
|
|
|
|
Name: from,
|
|
|
|
Admin: false,
|
|
|
|
},
|
|
|
|
Channel: channel,
|
|
|
|
ChannelName: channelName,
|
|
|
|
Body: message,
|
|
|
|
Command: isCmd,
|
|
|
|
Time: time.Now(),
|
|
|
|
}
|
|
|
|
|
|
|
|
p.bot.Receive(c, bot.Message, m)
|
2020-04-28 15:32:52 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
http.HandleFunc("/meme/img/", func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
_, file := path.Split(r.URL.Path)
|
|
|
|
id := file
|
|
|
|
img := p.images[id]
|
|
|
|
w.Write(img)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2020-04-28 18:58:23 +00:00
|
|
|
func DownloadTemplate(u *url.URL) image.Image {
|
|
|
|
res, err := http.Get(u.String())
|
2020-04-28 15:32:52 +00:00
|
|
|
if err != nil {
|
2020-04-28 18:58:23 +00:00
|
|
|
log.Error().Msgf("template from %s failed because of %v", u.String(), err)
|
2020-04-28 15:32:52 +00:00
|
|
|
}
|
|
|
|
defer res.Body.Close()
|
|
|
|
image, _, err := image.Decode(res.Body)
|
|
|
|
if err != nil {
|
2020-04-28 18:58:23 +00:00
|
|
|
log.Error().Msgf("Could not decode %v because of %v", u, err)
|
2020-04-28 15:32:52 +00:00
|
|
|
}
|
|
|
|
return image
|
|
|
|
}
|
|
|
|
|
|
|
|
var defaultFormats = map[string]string{
|
|
|
|
"fry": "Futurama-Fry.jpg",
|
|
|
|
"aliens": "Ancient-Aliens.jpg",
|
|
|
|
"doge": "Doge.jpg",
|
|
|
|
"simply": "One-Does-Not-Simply.jpg",
|
|
|
|
"wonka": "Creepy-Condescending-Wonka.jpg",
|
|
|
|
"grumpy": "Grumpy-Cat.jpg",
|
|
|
|
"raptor": "Philosoraptor.jpg",
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *MemePlugin) genMeme(meme, text string) string {
|
|
|
|
const fontSize = 36
|
|
|
|
|
|
|
|
formats := p.c.GetMap("meme.memes", defaultFormats)
|
|
|
|
|
|
|
|
path := uuid.New().String()
|
|
|
|
|
|
|
|
imgName, ok := formats[meme]
|
|
|
|
if !ok {
|
|
|
|
imgName = meme
|
|
|
|
}
|
2020-04-28 18:58:23 +00:00
|
|
|
|
|
|
|
u, err := url.Parse(imgName)
|
2020-04-28 19:16:45 +00:00
|
|
|
if err != nil || u.Scheme == "" {
|
|
|
|
log.Debug().Err(err).Str("imgName", imgName).Msgf("url not detected")
|
2020-04-28 18:58:23 +00:00
|
|
|
u, _ = url.Parse("https://imgflip.com/s/meme/" + imgName)
|
|
|
|
}
|
|
|
|
|
2020-04-28 19:16:45 +00:00
|
|
|
log.Debug().Msgf("Attempting to download url: %s", u.String())
|
|
|
|
|
2020-04-28 18:58:23 +00:00
|
|
|
img := DownloadTemplate(u)
|
2020-04-28 15:32:52 +00:00
|
|
|
r := img.Bounds()
|
|
|
|
w := r.Dx()
|
|
|
|
h := r.Dy()
|
|
|
|
|
|
|
|
m := gg.NewContext(w, h)
|
|
|
|
m.DrawImage(img, 0, 0)
|
|
|
|
fontLocation := p.c.Get("meme.font", "impact.ttf")
|
2020-04-28 18:58:23 +00:00
|
|
|
err = m.LoadFontFace(fontLocation, fontSize) // problem
|
2020-04-28 15:32:52 +00:00
|
|
|
if err != nil {
|
|
|
|
log.Error().Err(err).Msg("could not load font")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Apply black stroke
|
|
|
|
m.SetHexColor("#000")
|
|
|
|
strokeSize := 6
|
|
|
|
for dy := -strokeSize; dy <= strokeSize; dy++ {
|
|
|
|
for dx := -strokeSize; dx <= strokeSize; dx++ {
|
|
|
|
// give it rounded corners
|
|
|
|
if dx*dx+dy*dy >= strokeSize*strokeSize {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
x := float64(w/2 + dx)
|
|
|
|
y := float64(h - fontSize + dy)
|
|
|
|
m.DrawStringAnchored(text, x, y, 0.5, 0.5)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Apply white fill
|
|
|
|
m.SetHexColor("#FFF")
|
|
|
|
m.DrawStringAnchored(text, float64(w)/2, float64(h)-fontSize, 0.5, 0.5)
|
|
|
|
|
|
|
|
i := bytes.Buffer{}
|
|
|
|
png.Encode(&i, m.Image())
|
|
|
|
p.images[path] = i.Bytes()
|
|
|
|
|
|
|
|
log.Debug().Msgf("Saved to %s\n", path)
|
|
|
|
|
|
|
|
return path
|
|
|
|
}
|