snow/storage/embeds.go
2024-05-28 23:57:26 -07:00

52 lines
798 B
Go

package storage
import (
"embed"
"encoding/json"
"io"
"net/http"
"strings"
"github.com/ectrc/snow/aid"
)
var (
//go:embed mem/*
Assets embed.FS
)
type snowFS struct {
embed.FS
}
func Asset(file string) (*[]byte) {
data, err := Assets.ReadFile("mem/" + strings.ToLower(file))
if err != nil {
return nil
}
return &data
}
func HttpAsset[T interface{}](file string) (*T) {
client := http.Client{}
resp, err := client.Get(aid.Config.API.Host + "/snow/httpassets/" + file)
// resp, err := client.Get("https://raw.githubusercontent.com/ectrc/ectrc/main/" + file)
if err != nil {
return nil
}
data, err := io.ReadAll(resp.Body)
if err != nil {
return nil
}
var assetData T
err = json.Unmarshal(data, &assetData)
if err != nil {
return nil
}
return &assetData
}