mirror of
https://github.com/OwO-Network/DeepLX.git
synced 2025-06-08 18:03:25 +00:00
style(main.go): make it like golang code format
This commit is contained in:
parent
48151fec8f
commit
81c94afb55
112
main.go
112
main.go
@ -15,6 +15,10 @@ import (
|
|||||||
"github.com/tidwall/gjson"
|
"github.com/tidwall/gjson"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
func init() {
|
||||||
|
log.SetFlags(log.LstdFlags | log.Lshortfile)
|
||||||
|
}
|
||||||
|
|
||||||
type Lang struct {
|
type Lang struct {
|
||||||
SourceLangUserSelected string `json:"source_lang_user_selected"`
|
SourceLangUserSelected string `json:"source_lang_user_selected"`
|
||||||
TargetLang string `json:"target_lang"`
|
TargetLang string `json:"target_lang"`
|
||||||
@ -46,15 +50,15 @@ type PostData struct {
|
|||||||
Params Params `json:"params"`
|
Params Params `json:"params"`
|
||||||
}
|
}
|
||||||
|
|
||||||
func init_data(source_lang string, target_lang string) *PostData {
|
func initData(sourceLang string, targetLang string) *PostData {
|
||||||
return &PostData{
|
return &PostData{
|
||||||
Jsonrpc: "2.0",
|
Jsonrpc: "2.0",
|
||||||
Method: "LMT_handle_texts",
|
Method: "LMT_handle_texts",
|
||||||
Params: Params{
|
Params: Params{
|
||||||
Splitting: "newlines",
|
Splitting: "newlines",
|
||||||
Lang: Lang{
|
Lang: Lang{
|
||||||
SourceLangUserSelected: source_lang,
|
SourceLangUserSelected: sourceLang,
|
||||||
TargetLang: target_lang,
|
TargetLang: targetLang,
|
||||||
},
|
},
|
||||||
CommonJobParams: CommonJobParams{
|
CommonJobParams: CommonJobParams{
|
||||||
WasSpoken: false,
|
WasSpoken: false,
|
||||||
@ -65,8 +69,8 @@ func init_data(source_lang string, target_lang string) *PostData {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func get_i_count(translate_text string) int64 {
|
func getICount(translateText string) int64 {
|
||||||
return int64(strings.Count(translate_text, "i"))
|
return int64(strings.Count(translateText, "i"))
|
||||||
}
|
}
|
||||||
|
|
||||||
func getRandomNumber() int64 {
|
func getRandomNumber() int64 {
|
||||||
@ -75,21 +79,20 @@ func getRandomNumber() int64 {
|
|||||||
return num * 1000
|
return num * 1000
|
||||||
}
|
}
|
||||||
|
|
||||||
func getTimeStamp(i_count int64) int64 {
|
func getTimeStamp(iCount int64) int64 {
|
||||||
ts := time.Now().UnixMilli()
|
ts := time.Now().UnixMilli()
|
||||||
if i_count != 0 {
|
if iCount != 0 {
|
||||||
i_count = i_count + 1
|
iCount = iCount + 1
|
||||||
return ts - ts%i_count + i_count
|
return ts - ts%iCount + iCount
|
||||||
} else {
|
} else {
|
||||||
return ts
|
return ts
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
type ResData struct {
|
type ResData struct {
|
||||||
Trans_Text string `json:"text"`
|
TransText string `json:"text"`
|
||||||
Source_Lang string `json:"source_lang"`
|
SourceLang string `json:"source_lang"`
|
||||||
Target_Lang string `json:"target_lang"`
|
TargetLang string `json:"target_lang"`
|
||||||
}
|
}
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
@ -115,41 +118,47 @@ func main() {
|
|||||||
r.POST("/translate", func(c *gin.Context) {
|
r.POST("/translate", func(c *gin.Context) {
|
||||||
reqj := ResData{}
|
reqj := ResData{}
|
||||||
c.BindJSON(&reqj)
|
c.BindJSON(&reqj)
|
||||||
source_lang := reqj.Source_Lang
|
|
||||||
target_lang := reqj.Target_Lang
|
sourceLang := reqj.SourceLang
|
||||||
if source_lang == "" {
|
targetLang := reqj.TargetLang
|
||||||
source_lang = "ZH"
|
if sourceLang == "" {
|
||||||
|
sourceLang = "ZH"
|
||||||
}
|
}
|
||||||
if target_lang == "" {
|
if targetLang == "" {
|
||||||
target_lang = "EN"
|
targetLang = "EN"
|
||||||
}
|
}
|
||||||
translate_text := reqj.Trans_Text
|
translateText := reqj.TransText
|
||||||
// fmt.Printf("%v", translate_text)
|
// fmt.Printf("%v", translateText)
|
||||||
if translate_text != "" {
|
if translateText == "" {
|
||||||
|
c.JSON(http.StatusNotFound, gin.H{
|
||||||
|
"code": http.StatusNotFound,
|
||||||
|
"message": "No Translate Text Found",
|
||||||
|
})
|
||||||
|
} else {
|
||||||
url := "https://www2.deepl.com/jsonrpc"
|
url := "https://www2.deepl.com/jsonrpc"
|
||||||
id = id + 1
|
id = id + 1
|
||||||
post_data := init_data(source_lang, target_lang)
|
postData := initData(sourceLang, targetLang)
|
||||||
text := Text{
|
text := Text{
|
||||||
Text: translate_text,
|
Text: translateText,
|
||||||
RequestAlternatives: 3,
|
RequestAlternatives: 3,
|
||||||
}
|
}
|
||||||
// set id
|
// set id
|
||||||
post_data.ID = id
|
postData.ID = id
|
||||||
// set text
|
// set text
|
||||||
post_data.Params.Texts = append(post_data.Params.Texts, text)
|
postData.Params.Texts = append(postData.Params.Texts, text)
|
||||||
// set timestamp
|
// set timestamp
|
||||||
post_data.Params.Timestamp = getTimeStamp(get_i_count(translate_text))
|
postData.Params.Timestamp = getTimeStamp(getICount(translateText))
|
||||||
post_byte, _ := json.Marshal(post_data)
|
post_byte, _ := json.Marshal(postData)
|
||||||
post_str := string(post_byte)
|
postStr := string(post_byte)
|
||||||
|
|
||||||
// add space if necessary
|
// add space if necessary
|
||||||
if (id+5)%29 == 0 || (id+3)%13 == 0 {
|
if (id+5)%29 == 0 || (id+3)%13 == 0 {
|
||||||
post_str = strings.Replace(post_str, "\"method\":\"", "\"method\" : \"", -1)
|
postStr = strings.Replace(postStr, "\"method\":\"", "\"method\" : \"", -1)
|
||||||
} else {
|
} else {
|
||||||
post_str = strings.Replace(post_str, "\"method\":\"", "\"method\": \"", -1)
|
postStr = strings.Replace(postStr, "\"method\":\"", "\"method\": \"", -1)
|
||||||
}
|
}
|
||||||
|
|
||||||
post_byte = []byte(post_str)
|
post_byte = []byte(postStr)
|
||||||
reader := bytes.NewReader(post_byte)
|
reader := bytes.NewReader(post_byte)
|
||||||
request, err := http.NewRequest("POST", url, reader)
|
request, err := http.NewRequest("POST", url, reader)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
@ -177,38 +186,33 @@ func main() {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
defer resp.Body.Close()
|
defer resp.Body.Close()
|
||||||
|
|
||||||
body, _ := io.ReadAll(resp.Body)
|
body, _ := io.ReadAll(resp.Body)
|
||||||
res := gjson.ParseBytes(body)
|
res := gjson.ParseBytes(body)
|
||||||
// display response
|
// display response
|
||||||
// fmt.Println(res)
|
// fmt.Println(res)
|
||||||
if res.Get("error.code").String() == "-32600" {
|
if res.Get("error.code").String() == "-32600" {
|
||||||
log.Println(res.Get("error").String())
|
log.Println(res.Get("error").String())
|
||||||
c.JSON(406, gin.H{
|
c.JSON(http.StatusNotAcceptable, gin.H{
|
||||||
"code": 406,
|
"code": http.StatusNotAcceptable,
|
||||||
"msg": "Invalid target_lang",
|
"msg": "Invalid targetLang",
|
||||||
})
|
})
|
||||||
return
|
return
|
||||||
} else {
|
|
||||||
if resp.StatusCode == 429 {
|
|
||||||
c.JSON(429, gin.H{
|
|
||||||
"code": 429,
|
|
||||||
"message": "Too Many Requests",
|
|
||||||
})
|
|
||||||
} else {
|
|
||||||
c.JSON(200, gin.H{
|
|
||||||
"code": 200,
|
|
||||||
"id": id,
|
|
||||||
"data": res.Get("result.texts.0.text").String(),
|
|
||||||
})
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
} else {
|
|
||||||
c.JSON(404, gin.H{
|
if resp.StatusCode == http.StatusTooManyRequests {
|
||||||
"code": 404,
|
c.JSON(http.StatusTooManyRequests, gin.H{
|
||||||
"message": "No Text Found",
|
"code": http.StatusTooManyRequests,
|
||||||
})
|
"message": "Too Many Requests",
|
||||||
|
})
|
||||||
|
} else {
|
||||||
|
c.JSON(http.StatusOK, gin.H{
|
||||||
|
"code": http.StatusOK,
|
||||||
|
"id": id,
|
||||||
|
"data": res.Get("result.texts.0.text").String(),
|
||||||
|
})
|
||||||
|
}
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
r.Run(":1188") // listen and serve on 0.0.0.0:1188
|
r.Run(":1188") // listen and serve on 0.0.0.0:1188
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user