-
Notifications
You must be signed in to change notification settings - Fork 22
/
i18n.go
98 lines (85 loc) · 2.54 KB
/
i18n.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
package i18n
import (
"github.com/gin-gonic/gin"
"golang.org/x/text/language"
)
// newI18n ...
func newI18n(opts ...Option) GinI18n {
// init ins
ins := &ginI18nImpl{}
// set ins property from opts
for _, opt := range opts {
opt(ins)
}
// if bundle isn't constructed then assign it from default
if ins.bundle == nil {
ins.SetBundle(defaultBundleConfig)
}
// if getLngHandler isn't constructed then assign it from default
if ins.getLngHandler == nil {
ins.getLngHandler = defaultGetLngHandler
}
return ins
}
// Localize ...
func Localize(opts ...Option) gin.HandlerFunc {
atI18n := newI18n(opts...)
return func(context *gin.Context) {
context.Set("i18n", atI18n)
}
}
// GetMessage get the i18n message with error handling
// param is one of these type: messageID, *i18n.LocalizeConfig
// Example:
// GetMessage(context, "hello") // messageID is hello
//
// GetMessage(context, &i18n.LocalizeConfig{
// MessageID: "welcomeWithName",
// TemplateData: map[string]string{
// "name": context.Param("name"),
// },
// })
func GetMessage(context *gin.Context, param interface{}) (string, error) {
atI18n := context.Value("i18n").(GinI18n)
return atI18n.GetMessage(context, param)
}
// MustGetMessage get the i18n message without error handling
// param is one of these type: messageID, *i18n.LocalizeConfig
// Example:
// MustGetMessage(context, "hello") // messageID is hello
//
// MustGetMessage(context, &i18n.LocalizeConfig{
// MessageID: "welcomeWithName",
// TemplateData: map[string]string{
// "name": context.Param("name"),
// },
// })
func MustGetMessage(context *gin.Context, param interface{}) string {
atI18n := context.MustGet("i18n").(GinI18n)
return atI18n.MustGetMessage(context, param)
}
// HasLang check all i18n lang exists
// Example:
// HasLang(context, "ZH-cn") // return false or true
func HasLang(context *gin.Context, language string) bool {
atI18n := context.MustGet("i18n").(GinI18n)
return atI18n.HasLang(language)
}
// GetDefaultLanguage get the default language
// Example:
// GetDefaultLanguage(context)
func GetDefaultLanguage(context *gin.Context) language.Tag {
atI18n := context.MustGet("i18n").(GinI18n)
return atI18n.GetDefaultLanguage()
}
// GetCurrentLanguage get the current language
// Example:
// GetCurrentLanguage(context)
func GetCurrentLanguage(context *gin.Context) language.Tag {
atI18n := context.MustGet("i18n").(GinI18n)
return atI18n.GetCurrentLanguage(context)
}
// I18n get GinI18n from gin.Context
func I18n(context *gin.Context) GinI18n {
return context.MustGet("i18n").(GinI18n)
}