Merge branch 'master' into 0809gw-messagemodule
42
controllers/emoji.go
Normal file
|
@ -0,0 +1,42 @@
|
|||
package controllers
|
||||
|
||||
import (
|
||||
"encoding/json"
|
||||
"io/ioutil"
|
||||
"net/http"
|
||||
"path"
|
||||
"path/filepath"
|
||||
"strings"
|
||||
|
||||
"github.com/gabek/owncast/models"
|
||||
log "github.com/sirupsen/logrus"
|
||||
)
|
||||
|
||||
// Make this path configurable if somebody has a valid reason
|
||||
// to need it to be. The config is getting a bit bloated.
|
||||
const emojiPath = "/img/emoji" // Relative to webroot
|
||||
|
||||
//GetCustomEmoji returns a list of custom emoji via the API
|
||||
func GetCustomEmoji(w http.ResponseWriter, r *http.Request) {
|
||||
emojiList := make([]models.CustomEmoji, 0)
|
||||
|
||||
fullPath := filepath.Join("webroot", emojiPath)
|
||||
files, err := ioutil.ReadDir(fullPath)
|
||||
if err != nil {
|
||||
log.Errorln(err)
|
||||
// Throw HTTP 500
|
||||
return
|
||||
}
|
||||
|
||||
// Memoize this result somewhere? Right now it iterates through the
|
||||
// filesystem every time the API is hit. Should you need to restart
|
||||
// the server to add emoji?
|
||||
for _, f := range files {
|
||||
name := strings.TrimSuffix(f.Name(), path.Ext(f.Name()))
|
||||
path := filepath.Join(emojiPath, f.Name())
|
||||
singleEmoji := models.CustomEmoji{name, path}
|
||||
emojiList = append(emojiList, singleEmoji)
|
||||
}
|
||||
|
||||
json.NewEncoder(w).Encode(emojiList)
|
||||
}
|
7
models/emoji.go
Normal file
|
@ -0,0 +1,7 @@
|
|||
package models
|
||||
|
||||
//CustomEmoji represents an image that can be used in chat as a custom emoji
|
||||
type CustomEmoji struct {
|
||||
Name string `json:"name"`
|
||||
Emoji string `json:"emoji"`
|
||||
}
|
|
@ -23,6 +23,9 @@ func Start() error {
|
|||
// status of the system
|
||||
http.HandleFunc("/status", controllers.GetStatus)
|
||||
|
||||
// custom emoji supported in the chat
|
||||
http.HandleFunc("/emoji", controllers.GetCustomEmoji)
|
||||
|
||||
if !config.Config.DisableWebFeatures {
|
||||
// websocket chat server
|
||||
go chat.Start()
|
||||
|
|
BIN
webroot/img/emoji/Reaper-gg.png
Normal file
After Width: | Height: | Size: 17 KiB |
BIN
webroot/img/emoji/Reaper-hi.png
Normal file
After Width: | Height: | Size: 17 KiB |
BIN
webroot/img/emoji/Reaper-hype.png
Normal file
After Width: | Height: | Size: 17 KiB |
BIN
webroot/img/emoji/Reaper-lol.png
Normal file
After Width: | Height: | Size: 18 KiB |
BIN
webroot/img/emoji/Reaper-love.png
Normal file
After Width: | Height: | Size: 23 KiB |
BIN
webroot/img/emoji/Reaper-rage.png
Normal file
After Width: | Height: | Size: 19 KiB |
BIN
webroot/img/emoji/Reaper-rip.png
Normal file
After Width: | Height: | Size: 17 KiB |
BIN
webroot/img/emoji/Reaper-wtf.png
Normal file
After Width: | Height: | Size: 13 KiB |
BIN
webroot/img/emoji/ac-box.png
Normal file
After Width: | Height: | Size: 8.2 KiB |
BIN
webroot/img/emoji/ac-construction.png
Normal file
After Width: | Height: | Size: 8 KiB |
BIN
webroot/img/emoji/ac-fossil.png
Normal file
After Width: | Height: | Size: 9.5 KiB |
BIN
webroot/img/emoji/ac-item-leaf.png
Normal file
After Width: | Height: | Size: 8.7 KiB |
BIN
webroot/img/emoji/ac-kkslider.png
Normal file
After Width: | Height: | Size: 28 KiB |
BIN
webroot/img/emoji/ac-moneytree.png
Normal file
After Width: | Height: | Size: 12 KiB |
BIN
webroot/img/emoji/ac-mosquito.png
Normal file
After Width: | Height: | Size: 4.4 KiB |
BIN
webroot/img/emoji/ac-shirt.png
Normal file
After Width: | Height: | Size: 11 KiB |
BIN
webroot/img/emoji/ac-song.png
Normal file
After Width: | Height: | Size: 5 KiB |
BIN
webroot/img/emoji/ac-tree.png
Normal file
After Width: | Height: | Size: 8.4 KiB |
BIN
webroot/img/emoji/ac-turnip.png
Normal file
After Width: | Height: | Size: 8.5 KiB |
BIN
webroot/img/emoji/ac-weeds.png
Normal file
After Width: | Height: | Size: 10 KiB |
BIN
webroot/img/emoji/alert.gif
Normal file
After Width: | Height: | Size: 60 KiB |
BIN
webroot/img/emoji/bananadance.gif
Normal file
After Width: | Height: | Size: 32 KiB |
BIN
webroot/img/emoji/bb8.png
Normal file
After Width: | Height: | Size: 3.8 KiB |
BIN
webroot/img/emoji/beerparrot.gif
Normal file
After Width: | Height: | Size: 23 KiB |
BIN
webroot/img/emoji/bells.png
Normal file
After Width: | Height: | Size: 6.9 KiB |
BIN
webroot/img/emoji/birthdaypartyparrot.gif
Normal file
After Width: | Height: | Size: 32 KiB |
BIN
webroot/img/emoji/blacklightsaber.png
Normal file
After Width: | Height: | Size: 12 KiB |
BIN
webroot/img/emoji/bluelightsaber.png
Normal file
After Width: | Height: | Size: 28 KiB |
BIN
webroot/img/emoji/bluntparrot.gif
Normal file
After Width: | Height: | Size: 24 KiB |
BIN
webroot/img/emoji/bobaparrot.gif
Normal file
After Width: | Height: | Size: 22 KiB |
BIN
webroot/img/emoji/cakeparrot.gif
Normal file
After Width: | Height: | Size: 88 KiB |
BIN
webroot/img/emoji/chewbacca.png
Normal file
After Width: | Height: | Size: 35 KiB |
BIN
webroot/img/emoji/chillparrot.gif
Normal file
After Width: | Height: | Size: 3.8 KiB |
BIN
webroot/img/emoji/christmasparrot.gif
Normal file
After Width: | Height: | Size: 22 KiB |
BIN
webroot/img/emoji/coffeeparrot.gif
Normal file
After Width: | Height: | Size: 6.5 KiB |
BIN
webroot/img/emoji/confusedparrot.gif
Normal file
After Width: | Height: | Size: 31 KiB |
BIN
webroot/img/emoji/copparrot.gif
Normal file
After Width: | Height: | Size: 21 KiB |
BIN
webroot/img/emoji/coronavirus.png
Normal file
After Width: | Height: | Size: 37 KiB |
BIN
webroot/img/emoji/covid19parrot.gif
Normal file
After Width: | Height: | Size: 120 KiB |
BIN
webroot/img/emoji/cryptoparrot.gif
Normal file
After Width: | Height: | Size: 9.2 KiB |
BIN
webroot/img/emoji/dabparrot.gif
Normal file
After Width: | Height: | Size: 9.3 KiB |
BIN
webroot/img/emoji/dadparrot.gif
Normal file
After Width: | Height: | Size: 19 KiB |
BIN
webroot/img/emoji/daftpunkparrot.gif
Normal file
After Width: | Height: | Size: 45 KiB |
BIN
webroot/img/emoji/darkbeerparrot.gif
Normal file
After Width: | Height: | Size: 5.3 KiB |
BIN
webroot/img/emoji/darkmodeparrot.gif
Normal file
After Width: | Height: | Size: 10 KiB |
BIN
webroot/img/emoji/darth_vader.png
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
webroot/img/emoji/dealwithitparrot.gif
Normal file
After Width: | Height: | Size: 46 KiB |
BIN
webroot/img/emoji/death_star.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
webroot/img/emoji/discoparrot.gif
Normal file
After Width: | Height: | Size: 18 KiB |
BIN
webroot/img/emoji/division-gg.png
Normal file
After Width: | Height: | Size: 21 KiB |
BIN
webroot/img/emoji/division-hi.png
Normal file
After Width: | Height: | Size: 21 KiB |
BIN
webroot/img/emoji/division-hype.png
Normal file
After Width: | Height: | Size: 19 KiB |
BIN
webroot/img/emoji/division-lol.png
Normal file
After Width: | Height: | Size: 18 KiB |
BIN
webroot/img/emoji/division-omg.png
Normal file
After Width: | Height: | Size: 17 KiB |
BIN
webroot/img/emoji/division-rage.png
Normal file
After Width: | Height: | Size: 25 KiB |
BIN
webroot/img/emoji/division-rip.png
Normal file
After Width: | Height: | Size: 20 KiB |
BIN
webroot/img/emoji/division-wtf.png
Normal file
After Width: | Height: | Size: 22 KiB |
BIN
webroot/img/emoji/docparrot.gif
Normal file
After Width: | Height: | Size: 22 KiB |
BIN
webroot/img/emoji/donutparrot.gif
Normal file
After Width: | Height: | Size: 61 KiB |
BIN
webroot/img/emoji/doom_mad.gif
Normal file
After Width: | Height: | Size: 2.4 KiB |
BIN
webroot/img/emoji/empire.png
Normal file
After Width: | Height: | Size: 6.2 KiB |
BIN
webroot/img/emoji/everythingsfineparrot.gif
Normal file
After Width: | Height: | Size: 20 KiB |
BIN
webroot/img/emoji/evilparrot.gif
Normal file
After Width: | Height: | Size: 23 KiB |
BIN
webroot/img/emoji/explodyparrot.gif
Normal file
After Width: | Height: | Size: 57 KiB |
BIN
webroot/img/emoji/fixparrot.gif
Normal file
After Width: | Height: | Size: 11 KiB |
BIN
webroot/img/emoji/flyingmoneyparrot.gif
Normal file
After Width: | Height: | Size: 24 KiB |
BIN
webroot/img/emoji/footballparrot.gif
Normal file
After Width: | Height: | Size: 42 KiB |
BIN
webroot/img/emoji/gabe1.png
Normal file
After Width: | Height: | Size: 15 KiB |
BIN
webroot/img/emoji/gabe2.png
Normal file
After Width: | Height: | Size: 56 KiB |
BIN
webroot/img/emoji/gentlemanparrot.gif
Normal file
After Width: | Height: | Size: 24 KiB |
BIN
webroot/img/emoji/githubparrot.gif
Normal file
After Width: | Height: | Size: 28 KiB |
BIN
webroot/img/emoji/goomba.gif
Normal file
After Width: | Height: | Size: 376 B |
BIN
webroot/img/emoji/gothparrot.gif
Normal file
After Width: | Height: | Size: 17 KiB |
BIN
webroot/img/emoji/hamburgerparrot.gif
Normal file
After Width: | Height: | Size: 11 KiB |
BIN
webroot/img/emoji/harrypotterparrot.gif
Normal file
After Width: | Height: | Size: 8.2 KiB |
BIN
webroot/img/emoji/headbangingparrot.gif
Normal file
After Width: | Height: | Size: 15 KiB |
BIN
webroot/img/emoji/headingparrot.gif
Normal file
After Width: | Height: | Size: 22 KiB |
BIN
webroot/img/emoji/headsetparrot.gif
Normal file
After Width: | Height: | Size: 32 KiB |
BIN
webroot/img/emoji/hmmparrot.gif
Normal file
After Width: | Height: | Size: 18 KiB |
BIN
webroot/img/emoji/hypnoparrot.gif
Normal file
After Width: | Height: | Size: 46 KiB |
BIN
webroot/img/emoji/icecreamparrot.gif
Normal file
After Width: | Height: | Size: 4.2 KiB |
BIN
webroot/img/emoji/illuminatiparrot.gif
Normal file
After Width: | Height: | Size: 57 KiB |
BIN
webroot/img/emoji/jediparrot.gif
Normal file
After Width: | Height: | Size: 19 KiB |
BIN
webroot/img/emoji/keanu_thanks.gif
Normal file
After Width: | Height: | Size: 126 KiB |
BIN
webroot/img/emoji/laptop_parrot.gif
Normal file
After Width: | Height: | Size: 17 KiB |
BIN
webroot/img/emoji/loveparrot.gif
Normal file
After Width: | Height: | Size: 10 KiB |
BIN
webroot/img/emoji/mandalorian.png
Normal file
After Width: | Height: | Size: 4.4 KiB |
BIN
webroot/img/emoji/margaritaparrot.gif
Normal file
After Width: | Height: | Size: 7.5 KiB |
BIN
webroot/img/emoji/mario.gif
Normal file
After Width: | Height: | Size: 2 KiB |
BIN
webroot/img/emoji/matrixparrot.gif
Normal file
After Width: | Height: | Size: 2.2 KiB |
BIN
webroot/img/emoji/meldparrot.gif
Normal file
After Width: | Height: | Size: 46 KiB |
BIN
webroot/img/emoji/metalparrot.gif
Normal file
After Width: | Height: | Size: 12 KiB |
BIN
webroot/img/emoji/michaeljacksonparrot.gif
Normal file
After Width: | Height: | Size: 30 KiB |
BIN
webroot/img/emoji/moonparrot.gif
Normal file
After Width: | Height: | Size: 33 KiB |
BIN
webroot/img/emoji/moonwalkingparrot.gif
Normal file
After Width: | Height: | Size: 19 KiB |
BIN
webroot/img/emoji/mustacheparrot.gif
Normal file
After Width: | Height: | Size: 17 KiB |
BIN
webroot/img/emoji/nicolas_cage_party.gif
Normal file
After Width: | Height: | Size: 24 KiB |