mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 12:37:37 +03:00
Create resources.FS only once
This commit is contained in:
parent
79a4d8f6ad
commit
6226741517
2 changed files with 17 additions and 15 deletions
|
@ -2,6 +2,7 @@ package resources
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"io"
|
||||||
"strings"
|
"strings"
|
||||||
"unicode"
|
"unicode"
|
||||||
|
|
||||||
|
@ -9,7 +10,11 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
func loadBanner() string {
|
func loadBanner() string {
|
||||||
data, _ := Asset("banner.txt")
|
f, err := embedFS.Open("banner.txt")
|
||||||
|
if err != nil {
|
||||||
|
return ""
|
||||||
|
}
|
||||||
|
data, _ := io.ReadAll(f)
|
||||||
return strings.TrimRightFunc(string(data), unicode.IsSpace)
|
return strings.TrimRightFunc(string(data), unicode.IsSpace)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -2,10 +2,10 @@ package resources
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"embed"
|
"embed"
|
||||||
"io"
|
|
||||||
"io/fs"
|
"io/fs"
|
||||||
"os"
|
"os"
|
||||||
"path"
|
"path"
|
||||||
|
"sync"
|
||||||
|
|
||||||
"github.com/navidrome/navidrome/conf"
|
"github.com/navidrome/navidrome/conf"
|
||||||
"github.com/navidrome/navidrome/utils"
|
"github.com/navidrome/navidrome/utils"
|
||||||
|
@ -13,20 +13,17 @@ import (
|
||||||
|
|
||||||
var (
|
var (
|
||||||
//go:embed *
|
//go:embed *
|
||||||
fsys embed.FS
|
embedFS embed.FS
|
||||||
|
fsOnce sync.Once
|
||||||
|
fsys fs.FS
|
||||||
)
|
)
|
||||||
|
|
||||||
func FS() fs.FS {
|
func FS() fs.FS {
|
||||||
return utils.MergeFS{
|
fsOnce.Do(func() {
|
||||||
Base: fsys,
|
fsys = utils.MergeFS{
|
||||||
Overlay: os.DirFS(path.Join(conf.Server.DataFolder, "resources")),
|
Base: embedFS,
|
||||||
}
|
Overlay: os.DirFS(path.Join(conf.Server.DataFolder, "resources")),
|
||||||
}
|
}
|
||||||
|
})
|
||||||
func Asset(path string) ([]byte, error) {
|
return fsys
|
||||||
f, err := FS().Open(path)
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
return io.ReadAll(f)
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue