-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathi18ngo.go
236 lines (190 loc) · 5.46 KB
/
i18ngo.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
package i18ngo
import (
"encoding/json"
"errors"
"fmt"
"log"
"slices"
"strings"
"sync"
)
type (
Context struct {
availableLocales []string
locales []Locale
currentLocale Locale
options Options
onLocaleChange func(locale string)
mutex sync.RWMutex
}
Locale struct {
locale string
data map[string]interface{}
}
Options struct {
DefaultLocale string
Locales []LocaleOptions
Debug bool
Separator string
}
LocaleOptions struct {
Locale string
File []byte
}
I18nGo interface {
T(path string, options ...interface{}) string
ChangeLocale(locale string) error
CurrentLocale() string
}
)
func New(options Options) (I18nGo, error) {
var Locales []Locale
var currentLocale Locale
var availableLocales []string
if len(options.Locales) == 0 {
if options.Debug {
log.Println("[DEBUG] [New] no locales defined")
}
return nil, errors.New("no locales defined")
}
if options.DefaultLocale == "" {
if options.Debug {
log.Println("[DEBUG] [New] default locale is not defined")
}
return nil, errors.New("default locale is not defined")
}
for _, locale := range options.Locales {
var localeData map[string]interface{}
if err := json.Unmarshal(locale.File, &localeData); err != nil {
if options.Debug {
log.Println(fmt.Sprintf("[DEBUG] [New] error unmarshalling JSON for locale '%s': %v", locale.Locale, err))
}
return nil, errors.New(fmt.Sprintf("error unmarshalling JSON for locale '%s': %v", locale.Locale, err))
}
Locales = append(Locales, Locale{
locale: locale.Locale,
data: localeData,
})
if slices.Contains(availableLocales, locale.Locale) {
if options.Debug {
log.Println(fmt.Sprintf("[DEBUG] [New] locale '%s' is defined more than once", locale.Locale))
}
return nil, errors.New(fmt.Sprintf("locale '%s' is defined more than once", locale.Locale))
}
if locale.Locale == options.DefaultLocale {
currentLocale = Locale{
locale: locale.Locale,
data: localeData,
}
}
availableLocales = append(availableLocales, locale.Locale)
}
if !slices.Contains(availableLocales, options.DefaultLocale) {
if options.Debug {
log.Println(fmt.Sprintf("[DEBUG] [New] default locale '%s' is not defined", options.DefaultLocale))
}
return nil, errors.New(fmt.Sprintf("default locale '%s' is not defined", options.DefaultLocale))
}
if options.Debug {
log.Println(fmt.Sprintf("[DEBUG] [New] default locale is '%s'", options.DefaultLocale))
log.Println(fmt.Sprintf("[DEBUG] [New] available locales are '%v'", availableLocales))
}
if options.Separator == "" {
options.Separator = "."
}
ctx := Context{
availableLocales: availableLocales,
locales: Locales,
options: options,
currentLocale: currentLocale,
}
return &ctx, nil
}
func (ctx *Context) T(path string, options ...interface{}) string {
ctx.mutex.RLock()
defer ctx.mutex.RUnlock()
keys := strings.Split(path, ctx.options.Separator)
requestedLocale := ctx.currentLocale.locale
if len(options) > 0 {
if optionsMap, ok := options[0].(*map[string]interface{}); ok {
if scope, ok := (*optionsMap)["scope"].(string); ok {
if scope != "" {
scopeKeys := strings.Split(scope, ctx.options.Separator)
keys = append(scopeKeys, keys...)
}
}
if locale, ok := (*optionsMap)["locale"].(string); ok {
requestedLocale = locale
}
}
}
currentKeyPath := strings.Join(keys, ctx.options.Separator)
if len(keys) == 0 {
if ctx.options.Debug {
log.Println(fmt.Sprintf("[DEBUG] [T] invalid path '%s.%s'", requestedLocale, currentKeyPath))
}
return fmt.Sprintf("invalid path '%s'", currentKeyPath)
}
var current interface{} = ctx.currentLocale.data
if requestedLocale != "" {
for _, l := range ctx.locales {
if l.locale == requestedLocale {
current = l.data
break
}
}
}
for _, key := range keys {
if value, ok := current.(map[string]interface{})[key]; ok {
current = value
} else {
if ctx.options.Debug {
log.Println(fmt.Sprintf("[DEBUG] [T] missing translation for path '%s.%s'", requestedLocale, currentKeyPath))
}
return fmt.Sprintf("missing translation for path '%s.%s'", requestedLocale, currentKeyPath)
}
}
val := fmt.Sprintf("%v", current)
if len(options) > 0 {
if optionsMap, ok := options[0].(*map[string]interface{}); ok {
for key, value := range *optionsMap {
val = strings.ReplaceAll(val, fmt.Sprintf("{{%s}}", key), fmt.Sprintf("%v", value))
}
}
}
return val
}
func (ctx *Context) ChangeLocale(locale string) error {
ctx.mutex.Lock()
defer ctx.mutex.Unlock()
if !slices.Contains(ctx.availableLocales, locale) {
if ctx.options.Debug {
log.Println(fmt.Sprintf("[DEBUG] [changeLocale] locale '%s' is not available", locale))
}
return errors.New(fmt.Sprintf("locale '%s' is not available", locale))
}
if ctx.currentLocale.locale == locale {
return nil
}
for _, l := range ctx.locales {
if l.locale == locale {
ctx.currentLocale = l
if ctx.onLocaleChange != nil {
ctx.onLocaleChange(locale)
}
if ctx.options.Debug {
log.Println(fmt.Sprintf("[DEBUG] [changeLocale] locale changed to '%s'", locale))
}
return nil
}
}
if ctx.options.Debug {
log.Println(fmt.Sprintf("[DEBUG] [changeLocale] locale '%s' is not defined", locale))
}
return errors.New(fmt.Sprintf("locale '%s' is not defined", locale))
}
func (ctx *Context) CurrentLocale() string {
ctx.mutex.RLock()
defer ctx.mutex.RUnlock()
return ctx.currentLocale.locale
}