mirror of
https://github.com/owncast/owncast.git
synced 2024-11-21 12:18:02 +03:00
Support a custom emoji override directory. Closes #1967
This commit is contained in:
parent
bb1c934c4b
commit
97db93e0d7
3 changed files with 26 additions and 6 deletions
|
@ -4,12 +4,12 @@ import "path/filepath"
|
|||
|
||||
const (
|
||||
// StaticVersionNumber is the version of Owncast that is used when it's not overwritten via build-time settings.
|
||||
StaticVersionNumber = "0.0.12" // Shown when you build from develop
|
||||
StaticVersionNumber = "0.1.0" // Shown when you build from develop
|
||||
// FfmpegSuggestedVersion is the version of ffmpeg we suggest.
|
||||
FfmpegSuggestedVersion = "v4.1.5" // Requires the v
|
||||
// DataDirectory is the directory we save data to.
|
||||
DataDirectory = "data"
|
||||
// EmojiDir is relative to the webroot.
|
||||
// EmojiDir is relative to the static directory.
|
||||
EmojiDir = "/img/emoji"
|
||||
)
|
||||
|
||||
|
@ -19,4 +19,7 @@ var (
|
|||
|
||||
// HLSStoragePath is the directory HLS video is written to.
|
||||
HLSStoragePath = filepath.Join(DataDirectory, "hls")
|
||||
|
||||
// CustomEmojiPath is the optional emoji override directory.
|
||||
CustomEmojiPath = filepath.Join(DataDirectory, "emoji")
|
||||
)
|
||||
|
|
|
@ -4,23 +4,31 @@ import (
|
|||
"encoding/json"
|
||||
"io/fs"
|
||||
"net/http"
|
||||
"os"
|
||||
"path/filepath"
|
||||
"strings"
|
||||
|
||||
"github.com/owncast/owncast/config"
|
||||
"github.com/owncast/owncast/models"
|
||||
"github.com/owncast/owncast/static"
|
||||
"github.com/owncast/owncast/utils"
|
||||
log "github.com/sirupsen/logrus"
|
||||
)
|
||||
|
||||
var emojiStaticServer = http.FileServer(http.FS(static.GetEmoji()))
|
||||
var useCustomEmojiDirectory = utils.DoesFileExists(config.CustomEmojiPath)
|
||||
|
||||
// getCustomEmojiList returns a list of custom emoji either from the cache or from the emoji directory.
|
||||
func getCustomEmojiList() []models.CustomEmoji {
|
||||
bundledEmoji := static.GetEmoji()
|
||||
var emojiFS fs.FS
|
||||
if useCustomEmojiDirectory {
|
||||
emojiFS = os.DirFS(config.CustomEmojiPath)
|
||||
} else {
|
||||
emojiFS = static.GetEmoji()
|
||||
}
|
||||
|
||||
emojiResponse := make([]models.CustomEmoji, 0)
|
||||
|
||||
files, err := fs.Glob(bundledEmoji, "*")
|
||||
files, err := fs.Glob(emojiFS, "*")
|
||||
if err != nil {
|
||||
log.Errorln(err)
|
||||
return emojiResponse
|
||||
|
@ -48,5 +56,14 @@ func GetCustomEmojiList(w http.ResponseWriter, r *http.Request) {
|
|||
func GetCustomEmojiImage(w http.ResponseWriter, r *http.Request) {
|
||||
path := strings.TrimPrefix(r.URL.Path, "/img/emoji/")
|
||||
r.URL.Path = path
|
||||
|
||||
var emojiStaticServer http.Handler
|
||||
if useCustomEmojiDirectory {
|
||||
emojiFS := os.DirFS(config.CustomEmojiPath)
|
||||
emojiStaticServer = http.FileServer(http.FS(emojiFS))
|
||||
} else {
|
||||
emojiStaticServer = http.FileServer(http.FS(static.GetEmoji()))
|
||||
}
|
||||
|
||||
emojiStaticServer.ServeHTTP(w, r)
|
||||
}
|
||||
|
|
|
@ -37,7 +37,7 @@ func Start() error {
|
|||
http.HandleFunc("/logo", controllers.GetLogo)
|
||||
|
||||
// Return a single emoji image.
|
||||
http.HandleFunc("/img/emoji/", middleware.RequireAdminAuth(controllers.GetCustomEmojiImage))
|
||||
http.HandleFunc("/img/emoji/", controllers.GetCustomEmojiImage)
|
||||
|
||||
// return the logo
|
||||
|
||||
|
|
Loading…
Reference in a new issue