Move emoji directory definition to config (#1317)

* mv emojiDir to config

* end comment with period
This commit is contained in:
Meisam 2021-08-14 21:48:04 +02:00 committed by GitHub
parent 04bb97bffc
commit 31a8d81a42
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 6 deletions

View file

@ -13,6 +13,8 @@ const (
FfmpegSuggestedVersion = "v4.1.5" // Requires the v
// DataDirectory is the directory we save data to.
DataDirectory = "data"
// EmojiDir is relative to the webroot.
EmojiDir = "/img/emoji"
)
var (

View file

@ -15,16 +15,12 @@ import (
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)
fullPath := filepath.Join(config.WebRoot, config.EmojiDir)
emojiDirInfo, err := os.Stat(fullPath)
if err != nil {
log.Errorln(err)
@ -42,7 +38,7 @@ func getCustomEmojiList() []models.CustomEmoji {
}
for _, f := range files {
name := strings.TrimSuffix(f.Name(), path.Ext(f.Name()))
emojiPath := filepath.Join(emojiDir, f.Name())
emojiPath := filepath.Join(config.EmojiDir, f.Name())
singleEmoji := models.CustomEmoji{Name: name, Emoji: emojiPath}
emojiCache = append(emojiCache, singleEmoji)
}