mirror of
https://github.com/owncast/owncast.git
synced 2024-11-22 21:03:19 +03:00
d042fd70d1
* use emojiCache * add emojiCacheTimestamp * add function description * better logging
63 lines
1.6 KiB
Go
63 lines
1.6 KiB
Go
package controllers
|
|
|
|
import (
|
|
"encoding/json"
|
|
"io/ioutil"
|
|
"net/http"
|
|
"os"
|
|
"path"
|
|
"path/filepath"
|
|
"strings"
|
|
"time"
|
|
|
|
"github.com/owncast/owncast/config"
|
|
"github.com/owncast/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 emojiDir = "/img/emoji" // Relative to webroot
|
|
|
|
var emojiCache = make([]models.CustomEmoji, 0)
|
|
var emojiCacheTimestamp time.Time
|
|
|
|
// getCustomEmojiList returns a list of custom emoji either from the cache or from the emoji directory.
|
|
func getCustomEmojiList() []models.CustomEmoji {
|
|
fullPath := filepath.Join(config.WebRoot, emojiDir)
|
|
emojiDirInfo, err := os.Stat(fullPath)
|
|
if err != nil {
|
|
log.Errorln(err)
|
|
}
|
|
if emojiDirInfo.ModTime() != emojiCacheTimestamp {
|
|
log.Traceln("Emoji cache invalid")
|
|
emojiCache = make([]models.CustomEmoji, 0)
|
|
}
|
|
|
|
if len(emojiCache) == 0 {
|
|
files, err := ioutil.ReadDir(fullPath)
|
|
if err != nil {
|
|
log.Errorln(err)
|
|
return emojiCache
|
|
}
|
|
for _, f := range files {
|
|
name := strings.TrimSuffix(f.Name(), path.Ext(f.Name()))
|
|
emojiPath := filepath.Join(emojiDir, f.Name())
|
|
singleEmoji := models.CustomEmoji{Name: name, Emoji: emojiPath}
|
|
emojiCache = append(emojiCache, singleEmoji)
|
|
}
|
|
|
|
emojiCacheTimestamp = emojiDirInfo.ModTime()
|
|
}
|
|
|
|
return emojiCache
|
|
}
|
|
|
|
// GetCustomEmoji returns a list of custom emoji via the API.
|
|
func GetCustomEmoji(w http.ResponseWriter, r *http.Request) {
|
|
emojiList := getCustomEmojiList()
|
|
|
|
if err := json.NewEncoder(w).Encode(emojiList); err != nil {
|
|
InternalErrorHandler(w, err)
|
|
}
|
|
}
|