package future_good import ( "encoding/json" "fmt" "hongze/hongze_yb/global" "hongze/hongze_yb/utils" "io/ioutil" "net/http" "strings" ) type RefreshResponse struct { Ret int Msg string ErrMsg string ErrCode string Data interface{} Success bool `description:"true 执行成功,false 执行失败"` IsSendEmail bool `json:"-" description:"true 发送邮件,false 不发送邮件"` IsAddLog bool `json:"-" description:"true 新增操作日志,false 不新增操作日志" ` } // RefreshEdbData 刷新指标数据 func RefreshEdbData(futureGoodEdbInfoId int, futureGoodEdbCode, startDate string) (resp *RefreshResponse, err error) { param := make(map[string]interface{}) param["FutureGoodEdbCode"] = futureGoodEdbCode param["FutureGoodEdbInfoId"] = futureGoodEdbInfoId param["StartDate"] = startDate urlStr := `future_good/refresh` resp, err = postRefreshEdbData(param, urlStr) return } // RefreshEdbRelation 刷新商品期货指标相关的数据 func RefreshEdbRelation(futureGoodEdbInfoId int) (resp *RefreshResponse, err error) { param := make(map[string]interface{}) param["FutureGoodEdbInfoId"] = futureGoodEdbInfoId urlStr := `future_good/relation/refresh` resp, err = postRefreshEdbData(param, urlStr) return } // postRefreshEdbData 刷新指标数据 func postRefreshEdbData(param map[string]interface{}, urlStr string) (resp *RefreshResponse, err error) { edbLibUrl := "" if global.CONFIG.Serve.RunMode == "release" { edbLibUrl = "http://172.19.173.232:8300/edbapi/" } else { edbLibUrl = "http://8.136.199.33:8300/edbapi/" } postUrl := edbLibUrl + urlStr postData, err := json.Marshal(param) if err != nil { return } result, err := HttpPost(postUrl, string(postData), "application/json") if err != nil { return } //utils.FileLog.Info("postRefreshEdbData:" + postUrl + ";" + string(postData) + ";result:" + string(result)) err = json.Unmarshal(result, &resp) if err != nil { return } return resp, nil } func HttpPost(url, postData string, params ...string) ([]byte, error) { body := ioutil.NopCloser(strings.NewReader(postData)) client := &http.Client{} req, err := http.NewRequest("POST", url, body) if err != nil { return nil, err } contentType := "application/x-www-form-urlencoded;charset=utf-8" if len(params) > 0 && params[0] != "" { contentType = params[0] } req.Header.Set("Content-Type", contentType) req.Header.Set("authorization", utils.MD5(utils.APP_EDB_LIB_NAME_EN+utils.EDB_LIB_Md5_KEY)) resp, err := client.Do(req) defer resp.Body.Close() b, err := ioutil.ReadAll(resp.Body) fmt.Println("HttpPost:" + string(b)) return b, err }