Bläddra i källkod

Merge branch 'feature/google_translate' into debug

xiexiaoyuan 2 år sedan
förälder
incheckning
568e8e5296
2 ändrade filer med 32 tillägg och 1 borttagningar
  1. 7 1
      controllers/english_report.go
  2. 25 0
      services/english_policy_report.go

+ 7 - 1
controllers/english_report.go

@@ -26,7 +26,13 @@ func (c *EnglishReportController) PublishNotify()  {
 		c.FailWithMessage("请输入id")
 		return
 	}
-	go services.PullEnglishPolicyReportSingle(id)
+	if utils.RunMode == "debug" {
+		go services.PullEnglishPolicyReportSingle(id)
+	} else {
+		//暂不上线,走测试环境
+		services.TestDebugEnglishPolicyReport(id)
+	}
+
 	c.Ok()
 	return
 }

+ 25 - 0
services/english_policy_report.go

@@ -2,6 +2,7 @@ package services
 
 import (
 	"encoding/json"
+	"errors"
 	"fmt"
 	"github.com/PuerkitoBio/goquery"
 	"github.com/rdlucklib/rdluck_tools/http"
@@ -427,4 +428,28 @@ func GetReportContentSub(content string) (contentSub string, err error) {
 		}
 	})
 	return
+}
+
+type ApiDebugResponse struct {
+	Code   int    `json:"code"`
+	Msg    string `json:"msg"`
+	ErrMsg string `json:"err_msg"`
+}
+
+func TestDebugEnglishPolicyReport(id int) (err error) {
+	url := fmt.Sprintf("http://8.136.199.33:8608/api/en/report/publish/notify?id=%d", id)
+	ret, err := http.Get(url)
+	if err != nil {
+		return
+	}
+	var resp ApiDebugResponse
+	err = json.Unmarshal(ret, &resp)
+	if err != nil {
+		return
+	}
+	if resp.Code != 200 {
+		err = errors.New(resp.Msg)
+		return
+	}
+	return
 }