|
@@ -280,7 +280,7 @@ func DayNewTranslateContent() (err error) {
|
|
var ups []interface{}
|
|
var ups []interface{}
|
|
for _, v := range list {
|
|
for _, v := range list {
|
|
//如果单条翻译的字符数超过1000,则直接翻译,否则批量翻译
|
|
//如果单条翻译的字符数超过1000,则直接翻译,否则批量翻译
|
|
- //if len(v.Content) > 1000 {
|
|
|
|
|
|
+ if len(v.Content) > 1000 {
|
|
en, e := AliTranslate(v.Content)
|
|
en, e := AliTranslate(v.Content)
|
|
if e != nil {
|
|
if e != nil {
|
|
err = e
|
|
err = e
|
|
@@ -289,7 +289,7 @@ func DayNewTranslateContent() (err error) {
|
|
needChangeIds += strconv.Itoa(int(v.Id)) + ","
|
|
needChangeIds += strconv.Itoa(int(v.Id)) + ","
|
|
multi += ` WHEN `+strconv.Itoa(int(v.Id))+` THEN ?`
|
|
multi += ` WHEN `+strconv.Itoa(int(v.Id))+` THEN ?`
|
|
ups = append(ups, en)
|
|
ups = append(ups, en)
|
|
- /*}else{
|
|
|
|
|
|
+ }else{
|
|
if count >= 50 { //待翻译的条数不能超过50; 单条翻译字符数不能超过1000字符
|
|
if count >= 50 { //待翻译的条数不能超过50; 单条翻译字符数不能超过1000字符
|
|
contentEnMap, err = batchTranslateHandler(contentMap)
|
|
contentEnMap, err = batchTranslateHandler(contentMap)
|
|
if err != nil {
|
|
if err != nil {
|
|
@@ -304,9 +304,9 @@ func DayNewTranslateContent() (err error) {
|
|
contentMap = make(map[string]string, 0)
|
|
contentMap = make(map[string]string, 0)
|
|
count = 0
|
|
count = 0
|
|
}
|
|
}
|
|
- contentMap[strconv.Itoa(int(v.Id))] = dealPunctuationToEn(strings.Trim(v.Content, " "))+`{end}`
|
|
|
|
|
|
+ contentMap[strconv.Itoa(int(v.Id))] = v.Content
|
|
count += 1
|
|
count += 1
|
|
- }*/
|
|
|
|
|
|
+ }
|
|
}
|
|
}
|
|
//剩余不满50条的content
|
|
//剩余不满50条的content
|
|
if count > 0 {
|
|
if count > 0 {
|
|
@@ -334,63 +334,37 @@ func DayNewTranslateContent() (err error) {
|
|
}
|
|
}
|
|
|
|
|
|
func batchTranslateHandler(contentMap map[string]string) (contentEnMap map[string]string, err error) {
|
|
func batchTranslateHandler(contentMap map[string]string) (contentEnMap map[string]string, err error) {
|
|
|
|
+ contentEnMap = make(map[string]string , 0)
|
|
bytes, err := json.Marshal(contentMap)
|
|
bytes, err := json.Marshal(contentMap)
|
|
if err != nil {
|
|
if err != nil {
|
|
err = errors.New("未翻译的内容json.Marshal失败"+err.Error())
|
|
err = errors.New("未翻译的内容json.Marshal失败"+err.Error())
|
|
return
|
|
return
|
|
}
|
|
}
|
|
content := string(bytes)
|
|
content := string(bytes)
|
|
- en, err := AliTranslate(content)
|
|
|
|
- if err != nil {
|
|
|
|
- return
|
|
|
|
- }
|
|
|
|
- //json转为map数据结构
|
|
|
|
- err = json.Unmarshal([]byte(en), &contentEnMap)
|
|
|
|
|
|
+ contentEnList, err := AliTranslateBatch(content)
|
|
if err != nil {
|
|
if err != nil {
|
|
- err = errors.New("翻译后的内容json.Unmarshal失败"+err.Error())
|
|
|
|
return
|
|
return
|
|
}
|
|
}
|
|
- for k, v := range contentEnMap {
|
|
|
|
- v = strings.ReplaceAll(v,`{end}`, "")
|
|
|
|
- contentEnMap[k] = strings.ReplaceAll(v,`{quot}`, `"`)
|
|
|
|
|
|
+ for _, v := range contentEnList {
|
|
|
|
+ index := ""
|
|
|
|
+ en := ""
|
|
|
|
+ errorMsg := ""
|
|
|
|
+ for key, item := range v {
|
|
|
|
+ if key == "index" {
|
|
|
|
+ index = item.(string)
|
|
|
|
+ }else if key == "errorMsg" {
|
|
|
|
+ errorMsg = item.(string)
|
|
|
|
+ }else if key == "code" && item != "200"{
|
|
|
|
+ err = errors.New("序号"+index+" 翻译失败,errCode: "+item.(string)+" errMsg: "+errorMsg+" ")
|
|
|
|
+ return
|
|
|
|
+ }else if key == "translated" {
|
|
|
|
+ en = item.(string)
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ if index != "" && en != "" {
|
|
|
|
+ contentEnMap[index] = en
|
|
|
|
+ }
|
|
}
|
|
}
|
|
return
|
|
return
|
|
}
|
|
}
|
|
|
|
|
|
-var punctuationMap = map[rune]rune{
|
|
|
|
-
|
|
|
|
- 8216: 34, // '
|
|
|
|
-
|
|
|
|
- 8217: 34, // '
|
|
|
|
-
|
|
|
|
- 8220: 34, // " //把“符号转换成
|
|
|
|
-
|
|
|
|
- 8221: 34, // " //把”符号转换成
|
|
|
|
-
|
|
|
|
- 12298: 34, // " //把《 符号转换成
|
|
|
|
-
|
|
|
|
- 12299: 34, // " //把 》符号转换成
|
|
|
|
-
|
|
|
|
- 12304: 91, // [ //把【 符号转换成
|
|
|
|
-
|
|
|
|
- 12305: 93, // ] //把 】符号转换成
|
|
|
|
-
|
|
|
|
- 12302: 91, // [ //把『符号转换成
|
|
|
|
-
|
|
|
|
- 12303: 93, // ] //把 』符号转换成
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-func dealPunctuationToEn(text string) string {
|
|
|
|
- text = strings.Map(func(r rune) rune {
|
|
|
|
-
|
|
|
|
- if v, ok := punctuationMap[r]; ok {
|
|
|
|
- return v
|
|
|
|
-
|
|
|
|
- }
|
|
|
|
- return r
|
|
|
|
-
|
|
|
|
- }, text)
|
|
|
|
- text = strings.ReplaceAll(text,`"`,`{quot}`)
|
|
|
|
- return text
|
|
|
|
-}
|
|
|
|
-
|
|
|