add tranlation

This commit is contained in:
TangBin
2018-11-20 15:27:17 +08:00
parent 73d99074e6
commit 26cd847262
+44 -2
View File
@@ -2,7 +2,6 @@ package httperrors
import (
"fmt"
"yunion.io/x/onecloud/pkg/util/httputils"
)
@@ -11,13 +10,56 @@ func NewJsonClientError(code int, title string, msg string, error httputils.Erro
return &err
}
func msgToTemplate(msg string) string {
// 将%s %d之类格式化字符串转换成{0}、{1}格式
// 注意: 1.不支持复杂类型的转换例如%.2f , %[1]d, % x
// 2.原始msg中如果包含{0},{1}形式的字符串同样会引发错误。
// 在抛出error msg时应注意避免
fmtstr := false
lst := []rune(msg)
lastIndex := len(lst) - 1
temp := []rune{}
index := 0
for i, c := range lst {
switch c {
case '%':
if fmtstr || i == lastIndex {
temp = append(temp, c)
fmtstr = false
} else {
fmtstr = true
}
case 'v', 'T', 't', 'b', 'c', 'd', 'o', 'q', 'x', 'X', 'U', 'e', 'E', 'f', 'F', 'g', 'G', 's', 'p':
if fmtstr {
i := []rune(fmt.Sprintf("%d", index))
temp = append(temp, '{')
temp = append(temp, i...)
temp = append(temp, '}')
index++
fmtstr = false
} else {
temp = append(temp, c)
}
default:
if fmtstr {
temp = append(temp, '%')
}
temp = append(temp, c)
fmtstr = false
}
}
return string(temp)
}
func errorMessage(msg string, params ...interface{}) (string, httputils.Error) {
fields := make([]string, len(params))
for i, v := range params {
fields[i] = fmt.Sprint(v)
}
error := httputils.Error{Id: msg, Fields: fields}
error := httputils.Error{Id: msgToTemplate(msg), Fields: fields}
if len(params) > 0 {
msg = fmt.Sprintf(msg, params...)
}