mirror of
https://github.com/zitadel/zitadel
synced 2024-11-22 00:39:36 +00:00
fix(middleware): init translation messages (#7778)
* fix(middleware): init translation messages * revert change * refactor: split loop in separate function * add imports to ensure init of fs
This commit is contained in:
parent
386addc718
commit
9bcfa12be2
@ -3,58 +3,78 @@ package i18n
|
|||||||
import (
|
import (
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"io"
|
"io"
|
||||||
|
"io/fs"
|
||||||
"net/http"
|
"net/http"
|
||||||
"os"
|
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"github.com/BurntSushi/toml"
|
"github.com/BurntSushi/toml"
|
||||||
"github.com/nicksnyder/go-i18n/v2/i18n"
|
"github.com/nicksnyder/go-i18n/v2/i18n"
|
||||||
|
"github.com/zitadel/logging"
|
||||||
"golang.org/x/text/language"
|
"golang.org/x/text/language"
|
||||||
"sigs.k8s.io/yaml"
|
"sigs.k8s.io/yaml"
|
||||||
|
|
||||||
"github.com/zitadel/zitadel/internal/domain"
|
"github.com/zitadel/zitadel/internal/domain"
|
||||||
"github.com/zitadel/zitadel/internal/zerrors"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
const i18nPath = "/i18n"
|
const i18nPath = "/i18n"
|
||||||
|
|
||||||
func newBundle(dir http.FileSystem, defaultLanguage language.Tag, allowedLanguages []language.Tag) (*i18n.Bundle, error) {
|
var translationMessages = map[Namespace]map[language.Tag]*i18n.MessageFile{
|
||||||
|
ZITADEL: make(map[language.Tag]*i18n.MessageFile),
|
||||||
|
LOGIN: make(map[language.Tag]*i18n.MessageFile),
|
||||||
|
NOTIFICATION: make(map[language.Tag]*i18n.MessageFile),
|
||||||
|
}
|
||||||
|
|
||||||
|
func init() {
|
||||||
|
for ns := range translationMessages {
|
||||||
|
loadTranslationsFromNamespace(ns)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func newBundle(ns Namespace, defaultLanguage language.Tag, allowedLanguages []language.Tag) (*i18n.Bundle, error) {
|
||||||
bundle := i18n.NewBundle(defaultLanguage)
|
bundle := i18n.NewBundle(defaultLanguage)
|
||||||
bundle.RegisterUnmarshalFunc("yaml", func(data []byte, v interface{}) error { return yaml.Unmarshal(data, v) })
|
|
||||||
bundle.RegisterUnmarshalFunc("json", json.Unmarshal)
|
for lang, file := range translationMessages[ns] {
|
||||||
bundle.RegisterUnmarshalFunc("toml", toml.Unmarshal)
|
if err := domain.LanguageIsAllowed(false, allowedLanguages, lang); err != nil {
|
||||||
i18nDir, err := dir.Open(i18nPath)
|
|
||||||
if err != nil {
|
|
||||||
return nil, zerrors.ThrowNotFound(err, "I18N-MnXRie", "path not found")
|
|
||||||
}
|
|
||||||
defer i18nDir.Close()
|
|
||||||
files, err := i18nDir.Readdir(0)
|
|
||||||
if err != nil {
|
|
||||||
return nil, zerrors.ThrowNotFound(err, "I18N-Gew23", "cannot read dir")
|
|
||||||
}
|
|
||||||
for _, file := range files {
|
|
||||||
fileLang, _ := strings.CutSuffix(file.Name(), filepath.Ext(file.Name()))
|
|
||||||
if err = domain.LanguageIsAllowed(false, allowedLanguages, language.Make(fileLang)); err != nil {
|
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
if err := addFileFromFileSystemToBundle(dir, bundle, file); err != nil {
|
bundle.MustAddMessages(lang, file.Messages...)
|
||||||
return nil, zerrors.ThrowNotFoundf(err, "I18N-ZS2AW", "cannot append file %s to Bundle", file.Name())
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return bundle, nil
|
return bundle, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func addFileFromFileSystemToBundle(dir http.FileSystem, bundle *i18n.Bundle, file os.FileInfo) error {
|
func loadTranslationsFromNamespace(ns Namespace) {
|
||||||
f, err := dir.Open("/i18n/" + file.Name())
|
dir := LoadFilesystem(ns)
|
||||||
if err != nil {
|
i18nDir, err := dir.Open(i18nPath)
|
||||||
return err
|
logging.WithFields("namespace", ns).OnError(err).Panic("unable to open translation files")
|
||||||
|
defer i18nDir.Close()
|
||||||
|
files, err := i18nDir.Readdir(0)
|
||||||
|
logging.WithFields("namespace", ns).OnError(err).Panic("unable to read translation files")
|
||||||
|
for _, file := range files {
|
||||||
|
loadTranslationsFromFile(ns, file, dir)
|
||||||
}
|
}
|
||||||
defer f.Close()
|
}
|
||||||
content, err := io.ReadAll(f)
|
|
||||||
if err != nil {
|
func loadTranslationsFromFile(ns Namespace, fileInfo fs.FileInfo, dir http.FileSystem) {
|
||||||
return err
|
file, err := dir.Open("/i18n/" + fileInfo.Name())
|
||||||
}
|
logging.WithFields("namespace", ns, "file", fileInfo.Name()).OnError(err).Panic("unable to open translation file")
|
||||||
_, err = bundle.ParseMessageFileBytes(content, file.Name())
|
defer file.Close()
|
||||||
return err
|
|
||||||
|
content, err := io.ReadAll(file)
|
||||||
|
logging.WithFields("namespace", ns, "file", fileInfo.Name()).OnError(err).Panic("unable to read translation file")
|
||||||
|
|
||||||
|
unmarshaler := map[string]i18n.UnmarshalFunc{
|
||||||
|
"yaml": func(data []byte, v interface{}) error { return yaml.Unmarshal(data, v) },
|
||||||
|
"json": json.Unmarshal,
|
||||||
|
"toml": toml.Unmarshal,
|
||||||
|
}
|
||||||
|
|
||||||
|
messageFile, err := i18n.ParseMessageFileBytes(content, fileInfo.Name(), unmarshaler)
|
||||||
|
logging.WithFields("namespace", ns, "file", fileInfo.Name()).OnError(err).Panic("unable to parse translation file")
|
||||||
|
|
||||||
|
fileLang, _ := strings.CutSuffix(fileInfo.Name(), filepath.Ext(fileInfo.Name()))
|
||||||
|
lang := language.Make(fileLang)
|
||||||
|
|
||||||
|
translationMessages[ns][lang] = messageFile
|
||||||
}
|
}
|
||||||
|
@ -5,6 +5,11 @@ import (
|
|||||||
|
|
||||||
"github.com/rakyll/statik/fs"
|
"github.com/rakyll/statik/fs"
|
||||||
"github.com/zitadel/logging"
|
"github.com/zitadel/logging"
|
||||||
|
|
||||||
|
// ensure fs is setup
|
||||||
|
_ "github.com/zitadel/zitadel/internal/api/ui/login/statik"
|
||||||
|
_ "github.com/zitadel/zitadel/internal/notification/statik"
|
||||||
|
_ "github.com/zitadel/zitadel/internal/statik"
|
||||||
)
|
)
|
||||||
|
|
||||||
var zitadelFS, loginFS, notificationFS http.FileSystem
|
var zitadelFS, loginFS, notificationFS http.FileSystem
|
||||||
|
@ -51,7 +51,7 @@ func newTranslator(ns Namespace, defaultLanguage language.Tag, allowedLanguages
|
|||||||
if len(t.allowedLanguages) == 0 {
|
if len(t.allowedLanguages) == 0 {
|
||||||
t.allowedLanguages = SupportedLanguages()
|
t.allowedLanguages = SupportedLanguages()
|
||||||
}
|
}
|
||||||
t.bundle, err = newBundle(LoadFilesystem(ns), defaultLanguage, t.allowedLanguages)
|
t.bundle, err = newBundle(ns, defaultLanguage, t.allowedLanguages)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user