|
|
package service_gateway
|
|
|
|
|
|
import (
|
|
|
"bytes"
|
|
|
"crypto/sha1"
|
|
|
"encoding/json"
|
|
|
"fmt"
|
|
|
"io/ioutil"
|
|
|
"net/http"
|
|
|
"net/url"
|
|
|
"time"
|
|
|
|
|
|
"gitlab.fjmaimaimai.com/mmm-go/partnermg/pkg/constant"
|
|
|
)
|
|
|
|
|
|
type UCenterCommonMsg struct {
|
|
|
Code int `json:"code"`
|
|
|
Msg string `json:"msg"`
|
|
|
}
|
|
|
|
|
|
func (msg UCenterCommonMsg) IsOK() error {
|
|
|
if msg.Code != 0 {
|
|
|
return fmt.Errorf("统一用户中心响应数据异常,code:%d,msg:%s", msg.Code, msg.Msg)
|
|
|
}
|
|
|
return nil
|
|
|
}
|
|
|
|
|
|
type MmmUserCenterServiceGateway struct {
|
|
|
httplibBaseServiceGateway
|
|
|
baseURL string
|
|
|
}
|
|
|
|
|
|
func NewMmmUserCenterServiceGateway() *MmmUserCenterServiceGateway {
|
|
|
return &MmmUserCenterServiceGateway{
|
|
|
httplibBaseServiceGateway{
|
|
|
baseURL: constant.UCENTER_HOST,
|
|
|
connectTimeout: 100 * time.Second,
|
|
|
readWriteTimeout: 30 * time.Second,
|
|
|
}}
|
|
|
}
|
|
|
}
|
|
|
|
|
|
func (gateway MmmUserCenterServiceGateway) buildHeader() http.Header {
|
...
|
...
|
@@ -37,9 +50,34 @@ func (gateway MmmUserCenterServiceGateway) buildHeader() http.Header { |
|
|
return h
|
|
|
}
|
|
|
|
|
|
func (gateway MmmUserCenterServiceGateway) httpDo(reqURL string, mathod string, bodyData interface{}) ([]byte, error) {
|
|
|
httpclient := http.Client{
|
|
|
Timeout: 60 * time.Second, //请求超时时间60秒
|
|
|
}
|
|
|
bt := &bytes.Buffer{}
|
|
|
if bodyData != nil {
|
|
|
enc := json.NewEncoder(bt)
|
|
|
enc.Encode(bodyData)
|
|
|
}
|
|
|
req, err := http.NewRequest(mathod, reqURL, bt)
|
|
|
if err != nil {
|
|
|
return nil, err
|
|
|
}
|
|
|
req.Header = gateway.buildHeader()
|
|
|
resp, err := httpclient.Do(req)
|
|
|
if err != nil {
|
|
|
return nil, err
|
|
|
}
|
|
|
defer resp.Body.Close()
|
|
|
body, err := ioutil.ReadAll(resp.Body)
|
|
|
if err != nil {
|
|
|
return nil, err
|
|
|
}
|
|
|
return body, nil
|
|
|
}
|
|
|
|
|
|
type ResponseLogin struct {
|
|
|
Code int `json:"code"`
|
|
|
Msg string `json:"msg"`
|
|
|
UCenterCommonMsg
|
|
|
Data struct {
|
|
|
Id int64 `json:"id"` //统一用户中心的id,对应本系统中users表的open_id
|
|
|
Phone string `json:"phone"`
|
...
|
...
|
@@ -53,13 +91,18 @@ type ResponseLogin struct { |
|
|
} `json:"data"`
|
|
|
}
|
|
|
|
|
|
//RequestUCenterLoginBySecret 使用密钥方式登录统一用户中心
|
|
|
func (gateway MmmUserCenterServiceGateway) RequestUCenterLoginBySecret(secret string) (*ResponseLogin, error) {
|
|
|
// param := map[string]interface{}{
|
|
|
// "type": 3, //登录方式 固定值
|
|
|
// "secret": url.QueryEscape(secret), //必要的转换
|
|
|
// }
|
|
|
// url := "/auth/serverLogin"
|
|
|
// httpRequest := gateway.createRequest(url, "post")
|
|
|
// httpRequest.
|
|
|
return nil, nil
|
|
|
param := map[string]interface{}{
|
|
|
"type": 3, //登录方式 固定值
|
|
|
"secret": url.QueryEscape(secret), //必要的转换
|
|
|
}
|
|
|
url := constant.UCENTER_HOST + "/auth/serverLogin"
|
|
|
byteData, err := gateway.httpDo(url, "post", param)
|
|
|
if err != nil {
|
|
|
return nil, err
|
|
|
}
|
|
|
respData := &ResponseLogin{}
|
|
|
err = json.Unmarshal(byteData, respData)
|
|
|
return respData, err
|
|
|
} |
...
|
...
|
|