|
@@ -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
|
|
|
}
|