forked from ory/fosite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
i18n.go
46 lines (37 loc) · 1.3 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
// Copyright © 2024 Ory Corp
// SPDX-License-Identifier: Apache-2.0
package i18n
import (
"net/http"
"golang.org/x/text/language"
)
// MessageCatalog declares the interface to get globalized messages
type MessageCatalog interface {
GetMessage(ID string, tag language.Tag, v ...interface{}) string
GetLangFromRequest(r *http.Request) language.Tag
}
// GetMessage is a helper func to get the translated message based on
// the message ID and lang. If no matching message is found, it uses
// ID as the message itself.
func GetMessage(c MessageCatalog, ID string, tag language.Tag, v ...interface{}) string {
return GetMessageOrDefault(c, ID, tag, ID, v...)
}
// GetMessageOrDefault is a helper func to get the translated message based on
// the message ID and lang. If no matching message is found, it returns the
// 'def' message.
func GetMessageOrDefault(c MessageCatalog, ID string, tag language.Tag, def string, v ...interface{}) string {
if c != nil {
if s := c.GetMessage(ID, tag, v...); s != ID {
return s
}
}
return def
}
// GetLangFromRequest is a helper func to get the language tag based on the
// HTTP request and the constructed message catalog.
func GetLangFromRequest(c MessageCatalog, r *http.Request) language.Tag {
if c != nil {
return c.GetLangFromRequest(r)
}
return language.English
}