2017-10-11 00:21:54 +02:00
|
|
|
// Package i18n provides internalization and localization via middleware.
|
|
|
|
// See _examples/miscellaneous/i18n
|
2017-02-14 04:54:11 +01:00
|
|
|
package i18n
|
|
|
|
|
|
|
|
import (
|
|
|
|
"reflect"
|
|
|
|
"strings"
|
|
|
|
|
2017-10-11 00:21:54 +02:00
|
|
|
"github.com/iris-contrib/i18n"
|
Publish the new version :airplane: | Look description please!
# FAQ
### Looking for free support?
http://support.iris-go.com
https://kataras.rocket.chat/channel/iris
### Looking for previous versions?
https://github.com/kataras/iris#version
### Should I upgrade my Iris?
Developers are not forced to upgrade if they don't really need it. Upgrade whenever you feel ready.
> Iris uses the [vendor directory](https://docs.google.com/document/d/1Bz5-UB7g2uPBdOx-rw5t9MxJwkfpx90cqG9AFL0JAYo) feature, so you get truly reproducible builds, as this method guards against upstream renames and deletes.
**How to upgrade**: Open your command-line and execute this command: `go get -u github.com/kataras/iris`.
For further installation support, please click [here](http://support.iris-go.com/d/16-how-to-install-iris-web-framework).
### About our new home page
http://iris-go.com
Thanks to [Santosh Anand](https://github.com/santoshanand) the http://iris-go.com has been upgraded and it's really awesome!
[Santosh](https://github.com/santoshanand) is a freelancer, he has a great knowledge of nodejs and express js, Android, iOS, React Native, Vue.js etc, if you need a developer to find or create a solution for your problem or task, please contact with him.
The amount of the next two or three donations you'll send they will be immediately transferred to his own account balance, so be generous please!
Read more at https://github.com/kataras/iris/blob/master/HISTORY.md
Former-commit-id: eec2d71bbe011d6b48d2526eb25919e36e5ad94e
2017-06-03 22:22:52 +02:00
|
|
|
"github.com/kataras/iris/context"
|
2017-02-14 04:54:11 +01:00
|
|
|
)
|
|
|
|
|
2017-07-10 17:32:42 +02:00
|
|
|
// test file: ../../_examples/miscellaneous/i18n/main_test.go
|
2017-02-14 04:54:11 +01:00
|
|
|
type i18nMiddleware struct {
|
|
|
|
config Config
|
|
|
|
}
|
|
|
|
|
Publish the new version :airplane: | Look description please!
# FAQ
### Looking for free support?
http://support.iris-go.com
https://kataras.rocket.chat/channel/iris
### Looking for previous versions?
https://github.com/kataras/iris#version
### Should I upgrade my Iris?
Developers are not forced to upgrade if they don't really need it. Upgrade whenever you feel ready.
> Iris uses the [vendor directory](https://docs.google.com/document/d/1Bz5-UB7g2uPBdOx-rw5t9MxJwkfpx90cqG9AFL0JAYo) feature, so you get truly reproducible builds, as this method guards against upstream renames and deletes.
**How to upgrade**: Open your command-line and execute this command: `go get -u github.com/kataras/iris`.
For further installation support, please click [here](http://support.iris-go.com/d/16-how-to-install-iris-web-framework).
### About our new home page
http://iris-go.com
Thanks to [Santosh Anand](https://github.com/santoshanand) the http://iris-go.com has been upgraded and it's really awesome!
[Santosh](https://github.com/santoshanand) is a freelancer, he has a great knowledge of nodejs and express js, Android, iOS, React Native, Vue.js etc, if you need a developer to find or create a solution for your problem or task, please contact with him.
The amount of the next two or three donations you'll send they will be immediately transferred to his own account balance, so be generous please!
Read more at https://github.com/kataras/iris/blob/master/HISTORY.md
Former-commit-id: eec2d71bbe011d6b48d2526eb25919e36e5ad94e
2017-06-03 22:22:52 +02:00
|
|
|
// ServeHTTP serves the request, the actual middleware's job is here
|
|
|
|
func (i *i18nMiddleware) ServeHTTP(ctx context.Context) {
|
2017-02-14 04:54:11 +01:00
|
|
|
wasByCookie := false
|
|
|
|
|
|
|
|
language := i.config.Default
|
Publish the new version :airplane: | Look description please!
# FAQ
### Looking for free support?
http://support.iris-go.com
https://kataras.rocket.chat/channel/iris
### Looking for previous versions?
https://github.com/kataras/iris#version
### Should I upgrade my Iris?
Developers are not forced to upgrade if they don't really need it. Upgrade whenever you feel ready.
> Iris uses the [vendor directory](https://docs.google.com/document/d/1Bz5-UB7g2uPBdOx-rw5t9MxJwkfpx90cqG9AFL0JAYo) feature, so you get truly reproducible builds, as this method guards against upstream renames and deletes.
**How to upgrade**: Open your command-line and execute this command: `go get -u github.com/kataras/iris`.
For further installation support, please click [here](http://support.iris-go.com/d/16-how-to-install-iris-web-framework).
### About our new home page
http://iris-go.com
Thanks to [Santosh Anand](https://github.com/santoshanand) the http://iris-go.com has been upgraded and it's really awesome!
[Santosh](https://github.com/santoshanand) is a freelancer, he has a great knowledge of nodejs and express js, Android, iOS, React Native, Vue.js etc, if you need a developer to find or create a solution for your problem or task, please contact with him.
The amount of the next two or three donations you'll send they will be immediately transferred to his own account balance, so be generous please!
Read more at https://github.com/kataras/iris/blob/master/HISTORY.md
Former-commit-id: eec2d71bbe011d6b48d2526eb25919e36e5ad94e
2017-06-03 22:22:52 +02:00
|
|
|
|
|
|
|
langKey := ctx.Application().ConfigurationReadOnly().GetTranslateLanguageContextKey()
|
2017-11-22 00:01:45 +01:00
|
|
|
language = ctx.Values().GetString(langKey)
|
|
|
|
if language == "" {
|
2017-02-14 04:54:11 +01:00
|
|
|
// try to get by url parameter
|
|
|
|
language = ctx.URLParam(i.config.URLParameter)
|
|
|
|
if language == "" {
|
|
|
|
// then try to take the lang field from the cookie
|
Publish the new version :airplane: | Look description please!
# FAQ
### Looking for free support?
http://support.iris-go.com
https://kataras.rocket.chat/channel/iris
### Looking for previous versions?
https://github.com/kataras/iris#version
### Should I upgrade my Iris?
Developers are not forced to upgrade if they don't really need it. Upgrade whenever you feel ready.
> Iris uses the [vendor directory](https://docs.google.com/document/d/1Bz5-UB7g2uPBdOx-rw5t9MxJwkfpx90cqG9AFL0JAYo) feature, so you get truly reproducible builds, as this method guards against upstream renames and deletes.
**How to upgrade**: Open your command-line and execute this command: `go get -u github.com/kataras/iris`.
For further installation support, please click [here](http://support.iris-go.com/d/16-how-to-install-iris-web-framework).
### About our new home page
http://iris-go.com
Thanks to [Santosh Anand](https://github.com/santoshanand) the http://iris-go.com has been upgraded and it's really awesome!
[Santosh](https://github.com/santoshanand) is a freelancer, he has a great knowledge of nodejs and express js, Android, iOS, React Native, Vue.js etc, if you need a developer to find or create a solution for your problem or task, please contact with him.
The amount of the next two or three donations you'll send they will be immediately transferred to his own account balance, so be generous please!
Read more at https://github.com/kataras/iris/blob/master/HISTORY.md
Former-commit-id: eec2d71bbe011d6b48d2526eb25919e36e5ad94e
2017-06-03 22:22:52 +02:00
|
|
|
language = ctx.GetCookie(langKey)
|
2017-02-14 04:54:11 +01:00
|
|
|
|
|
|
|
if len(language) > 0 {
|
|
|
|
wasByCookie = true
|
|
|
|
} else {
|
2017-08-02 00:49:21 +02:00
|
|
|
// try to get by the request headers.
|
|
|
|
langHeader := ctx.GetHeader("Accept-Language")
|
|
|
|
if len(langHeader) > 0 {
|
|
|
|
for _, langEntry := range strings.Split(langHeader, ",") {
|
|
|
|
lc := strings.Split(langEntry, ";")[0]
|
|
|
|
if lc, ok := i18n.IsExistSimilar(lc); ok {
|
|
|
|
language = lc
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
2017-02-14 04:54:11 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// if it was not taken by the cookie, then set the cookie in order to have it
|
|
|
|
if !wasByCookie {
|
Publish the new version :airplane: | Look description please!
# FAQ
### Looking for free support?
http://support.iris-go.com
https://kataras.rocket.chat/channel/iris
### Looking for previous versions?
https://github.com/kataras/iris#version
### Should I upgrade my Iris?
Developers are not forced to upgrade if they don't really need it. Upgrade whenever you feel ready.
> Iris uses the [vendor directory](https://docs.google.com/document/d/1Bz5-UB7g2uPBdOx-rw5t9MxJwkfpx90cqG9AFL0JAYo) feature, so you get truly reproducible builds, as this method guards against upstream renames and deletes.
**How to upgrade**: Open your command-line and execute this command: `go get -u github.com/kataras/iris`.
For further installation support, please click [here](http://support.iris-go.com/d/16-how-to-install-iris-web-framework).
### About our new home page
http://iris-go.com
Thanks to [Santosh Anand](https://github.com/santoshanand) the http://iris-go.com has been upgraded and it's really awesome!
[Santosh](https://github.com/santoshanand) is a freelancer, he has a great knowledge of nodejs and express js, Android, iOS, React Native, Vue.js etc, if you need a developer to find or create a solution for your problem or task, please contact with him.
The amount of the next two or three donations you'll send they will be immediately transferred to his own account balance, so be generous please!
Read more at https://github.com/kataras/iris/blob/master/HISTORY.md
Former-commit-id: eec2d71bbe011d6b48d2526eb25919e36e5ad94e
2017-06-03 22:22:52 +02:00
|
|
|
ctx.SetCookieKV(langKey, language)
|
2017-02-14 04:54:11 +01:00
|
|
|
}
|
|
|
|
if language == "" {
|
|
|
|
language = i.config.Default
|
|
|
|
}
|
2017-07-10 17:32:42 +02:00
|
|
|
|
2017-11-22 00:01:45 +01:00
|
|
|
ctx.Values().Set(langKey, language)
|
|
|
|
}
|
2017-02-14 04:54:11 +01:00
|
|
|
locale := i18n.Locale{Lang: language}
|
2017-07-10 17:32:42 +02:00
|
|
|
|
|
|
|
// if unexpected language given, the middleware will transtlate to the default language, the language key should be
|
|
|
|
// also this language instead of the user-given
|
|
|
|
if indexLang := locale.Index(); indexLang == -1 {
|
|
|
|
locale.Lang = i.config.Default
|
|
|
|
}
|
2017-11-22 00:01:45 +01:00
|
|
|
|
Publish the new version :airplane: | Look description please!
# FAQ
### Looking for free support?
http://support.iris-go.com
https://kataras.rocket.chat/channel/iris
### Looking for previous versions?
https://github.com/kataras/iris#version
### Should I upgrade my Iris?
Developers are not forced to upgrade if they don't really need it. Upgrade whenever you feel ready.
> Iris uses the [vendor directory](https://docs.google.com/document/d/1Bz5-UB7g2uPBdOx-rw5t9MxJwkfpx90cqG9AFL0JAYo) feature, so you get truly reproducible builds, as this method guards against upstream renames and deletes.
**How to upgrade**: Open your command-line and execute this command: `go get -u github.com/kataras/iris`.
For further installation support, please click [here](http://support.iris-go.com/d/16-how-to-install-iris-web-framework).
### About our new home page
http://iris-go.com
Thanks to [Santosh Anand](https://github.com/santoshanand) the http://iris-go.com has been upgraded and it's really awesome!
[Santosh](https://github.com/santoshanand) is a freelancer, he has a great knowledge of nodejs and express js, Android, iOS, React Native, Vue.js etc, if you need a developer to find or create a solution for your problem or task, please contact with him.
The amount of the next two or three donations you'll send they will be immediately transferred to his own account balance, so be generous please!
Read more at https://github.com/kataras/iris/blob/master/HISTORY.md
Former-commit-id: eec2d71bbe011d6b48d2526eb25919e36e5ad94e
2017-06-03 22:22:52 +02:00
|
|
|
translateFuncKey := ctx.Application().ConfigurationReadOnly().GetTranslateFunctionContextKey()
|
|
|
|
ctx.Values().Set(translateFuncKey, locale.Tr)
|
2017-02-14 04:54:11 +01:00
|
|
|
ctx.Next()
|
|
|
|
}
|
|
|
|
|
|
|
|
// Translate returns the translated word from a context
|
|
|
|
// the second parameter is the key of the world or line inside the .ini file
|
|
|
|
// the third parameter is the '%s' of the world or line inside the .ini file
|
Publish the new version :airplane: | Look description please!
# FAQ
### Looking for free support?
http://support.iris-go.com
https://kataras.rocket.chat/channel/iris
### Looking for previous versions?
https://github.com/kataras/iris#version
### Should I upgrade my Iris?
Developers are not forced to upgrade if they don't really need it. Upgrade whenever you feel ready.
> Iris uses the [vendor directory](https://docs.google.com/document/d/1Bz5-UB7g2uPBdOx-rw5t9MxJwkfpx90cqG9AFL0JAYo) feature, so you get truly reproducible builds, as this method guards against upstream renames and deletes.
**How to upgrade**: Open your command-line and execute this command: `go get -u github.com/kataras/iris`.
For further installation support, please click [here](http://support.iris-go.com/d/16-how-to-install-iris-web-framework).
### About our new home page
http://iris-go.com
Thanks to [Santosh Anand](https://github.com/santoshanand) the http://iris-go.com has been upgraded and it's really awesome!
[Santosh](https://github.com/santoshanand) is a freelancer, he has a great knowledge of nodejs and express js, Android, iOS, React Native, Vue.js etc, if you need a developer to find or create a solution for your problem or task, please contact with him.
The amount of the next two or three donations you'll send they will be immediately transferred to his own account balance, so be generous please!
Read more at https://github.com/kataras/iris/blob/master/HISTORY.md
Former-commit-id: eec2d71bbe011d6b48d2526eb25919e36e5ad94e
2017-06-03 22:22:52 +02:00
|
|
|
func Translate(ctx context.Context, format string, args ...interface{}) string {
|
2017-02-14 04:54:11 +01:00
|
|
|
return ctx.Translate(format, args...)
|
|
|
|
}
|
|
|
|
|
|
|
|
// New returns a new i18n middleware
|
Publish the new version :airplane: | Look description please!
# FAQ
### Looking for free support?
http://support.iris-go.com
https://kataras.rocket.chat/channel/iris
### Looking for previous versions?
https://github.com/kataras/iris#version
### Should I upgrade my Iris?
Developers are not forced to upgrade if they don't really need it. Upgrade whenever you feel ready.
> Iris uses the [vendor directory](https://docs.google.com/document/d/1Bz5-UB7g2uPBdOx-rw5t9MxJwkfpx90cqG9AFL0JAYo) feature, so you get truly reproducible builds, as this method guards against upstream renames and deletes.
**How to upgrade**: Open your command-line and execute this command: `go get -u github.com/kataras/iris`.
For further installation support, please click [here](http://support.iris-go.com/d/16-how-to-install-iris-web-framework).
### About our new home page
http://iris-go.com
Thanks to [Santosh Anand](https://github.com/santoshanand) the http://iris-go.com has been upgraded and it's really awesome!
[Santosh](https://github.com/santoshanand) is a freelancer, he has a great knowledge of nodejs and express js, Android, iOS, React Native, Vue.js etc, if you need a developer to find or create a solution for your problem or task, please contact with him.
The amount of the next two or three donations you'll send they will be immediately transferred to his own account balance, so be generous please!
Read more at https://github.com/kataras/iris/blob/master/HISTORY.md
Former-commit-id: eec2d71bbe011d6b48d2526eb25919e36e5ad94e
2017-06-03 22:22:52 +02:00
|
|
|
func New(c Config) context.Handler {
|
2017-02-14 04:54:11 +01:00
|
|
|
if len(c.Languages) == 0 {
|
|
|
|
panic("You cannot use this middleware without set the Languages option, please try again and read the _example.")
|
|
|
|
}
|
|
|
|
i := &i18nMiddleware{config: c}
|
|
|
|
firstlanguage := ""
|
|
|
|
//load the files
|
2017-11-22 00:01:45 +01:00
|
|
|
for k, langFileOrFiles := range c.Languages {
|
|
|
|
// remove all spaces.
|
|
|
|
langFileOrFiles = strings.Replace(langFileOrFiles, " ", "", -1)
|
|
|
|
// note: if only one, then the first element is the "v".
|
|
|
|
languages := strings.Split(langFileOrFiles, ",")
|
|
|
|
|
|
|
|
for _, v := range languages { // loop each of the files separated by comma, if any.
|
|
|
|
if !strings.HasSuffix(v, ".ini") {
|
|
|
|
v += ".ini"
|
|
|
|
}
|
|
|
|
err := i18n.SetMessage(k, v)
|
|
|
|
if err != nil && err != i18n.ErrLangAlreadyExist {
|
|
|
|
panic("Failed to set locale file'" + k + "' Error:" + err.Error())
|
|
|
|
}
|
|
|
|
if firstlanguage == "" {
|
|
|
|
firstlanguage = k
|
|
|
|
}
|
2017-02-14 04:54:11 +01:00
|
|
|
}
|
|
|
|
}
|
2017-07-10 17:32:42 +02:00
|
|
|
// if not default language setted then set to the first of the i.config.Languages
|
2017-02-14 04:54:11 +01:00
|
|
|
if c.Default == "" {
|
|
|
|
c.Default = firstlanguage
|
|
|
|
}
|
|
|
|
|
|
|
|
i18n.SetDefaultLang(i.config.Default)
|
Publish the new version :airplane: | Look description please!
# FAQ
### Looking for free support?
http://support.iris-go.com
https://kataras.rocket.chat/channel/iris
### Looking for previous versions?
https://github.com/kataras/iris#version
### Should I upgrade my Iris?
Developers are not forced to upgrade if they don't really need it. Upgrade whenever you feel ready.
> Iris uses the [vendor directory](https://docs.google.com/document/d/1Bz5-UB7g2uPBdOx-rw5t9MxJwkfpx90cqG9AFL0JAYo) feature, so you get truly reproducible builds, as this method guards against upstream renames and deletes.
**How to upgrade**: Open your command-line and execute this command: `go get -u github.com/kataras/iris`.
For further installation support, please click [here](http://support.iris-go.com/d/16-how-to-install-iris-web-framework).
### About our new home page
http://iris-go.com
Thanks to [Santosh Anand](https://github.com/santoshanand) the http://iris-go.com has been upgraded and it's really awesome!
[Santosh](https://github.com/santoshanand) is a freelancer, he has a great knowledge of nodejs and express js, Android, iOS, React Native, Vue.js etc, if you need a developer to find or create a solution for your problem or task, please contact with him.
The amount of the next two or three donations you'll send they will be immediately transferred to his own account balance, so be generous please!
Read more at https://github.com/kataras/iris/blob/master/HISTORY.md
Former-commit-id: eec2d71bbe011d6b48d2526eb25919e36e5ad94e
2017-06-03 22:22:52 +02:00
|
|
|
return i.ServeHTTP
|
2017-02-14 04:54:11 +01:00
|
|
|
}
|
|
|
|
|
2017-07-10 17:32:42 +02:00
|
|
|
// TranslatedMap returns translated map[string]interface{} from i18n structure.
|
|
|
|
func TranslatedMap(ctx context.Context, sourceInterface interface{}) map[string]interface{} {
|
2017-02-14 04:54:11 +01:00
|
|
|
iType := reflect.TypeOf(sourceInterface).Elem()
|
|
|
|
result := make(map[string]interface{})
|
|
|
|
|
|
|
|
for i := 0; i < iType.NumField(); i++ {
|
|
|
|
fieldName := reflect.TypeOf(sourceInterface).Elem().Field(i).Name
|
|
|
|
fieldValue := reflect.ValueOf(sourceInterface).Elem().Field(i).String()
|
|
|
|
|
|
|
|
result[fieldName] = Translate(ctx, fieldValue)
|
|
|
|
}
|
|
|
|
|
|
|
|
return result
|
|
|
|
}
|