88 lines
1.9 KiB
Go
88 lines
1.9 KiB
Go
package server
|
|
|
|
import (
|
|
"embed"
|
|
"errors"
|
|
"fmt"
|
|
"io/fs"
|
|
"net/http"
|
|
|
|
"github.com/valyala/fasthttp"
|
|
"github.com/valyala/fasthttp/fasthttpadaptor"
|
|
|
|
"github.com/authelia/authelia/v4/internal/utils"
|
|
)
|
|
|
|
//go:embed locales
|
|
var locales embed.FS
|
|
|
|
//go:embed public_html
|
|
var assets embed.FS
|
|
|
|
func newPublicHTMLEmbeddedHandler() fasthttp.RequestHandler {
|
|
embeddedPath, _ := fs.Sub(assets, "public_html")
|
|
|
|
return fasthttpadaptor.NewFastHTTPHandler(http.FileServer(http.FS(embeddedPath)))
|
|
}
|
|
|
|
func newLocalesEmbeddedHandler() (handler fasthttp.RequestHandler) {
|
|
var languages []string
|
|
|
|
entries, err := locales.ReadDir("locales")
|
|
if err == nil {
|
|
for _, entry := range entries {
|
|
if entry.IsDir() && len(entry.Name()) == 2 {
|
|
languages = append(languages, entry.Name())
|
|
}
|
|
}
|
|
}
|
|
|
|
return func(ctx *fasthttp.RequestCtx) {
|
|
var (
|
|
language, variant, locale, namespace string
|
|
)
|
|
|
|
language = ctx.UserValue("language").(string)
|
|
namespace = ctx.UserValue("namespace").(string)
|
|
locale = language
|
|
|
|
if v := ctx.UserValue("variant"); v != nil {
|
|
variant = v.(string)
|
|
locale = fmt.Sprintf("%s-%s", language, locale)
|
|
}
|
|
|
|
var data []byte
|
|
|
|
if data, err = locales.ReadFile(fmt.Sprintf("locales/%s/%s.json", locale, namespace)); err != nil {
|
|
if variant != "" && utils.IsStringInSliceFold(language, languages) {
|
|
data = []byte("{}")
|
|
}
|
|
|
|
if len(data) == 0 {
|
|
hfsHandleErr(ctx, err)
|
|
|
|
return
|
|
}
|
|
}
|
|
|
|
ctx.SetContentType("application/json")
|
|
ctx.SetBody(data)
|
|
}
|
|
}
|
|
|
|
func hfsHandleErr(ctx *fasthttp.RequestCtx, err error) {
|
|
switch {
|
|
case errors.Is(err, fs.ErrNotExist):
|
|
writeStatus(ctx, fasthttp.StatusNotFound)
|
|
case errors.Is(err, fs.ErrPermission):
|
|
writeStatus(ctx, fasthttp.StatusForbidden)
|
|
default:
|
|
writeStatus(ctx, fasthttp.StatusInternalServerError)
|
|
}
|
|
}
|
|
|
|
func writeStatus(ctx *fasthttp.RequestCtx, status int) {
|
|
ctx.SetStatusCode(status)
|
|
ctx.SetBodyString(fmt.Sprintf("%d %s", status, fasthttp.StatusMessage(status)))
|
|
}
|