设置用户新游戏授权
This commit is contained in:
parent
1faace6bce
commit
4b55160177
@ -33,3 +33,9 @@ func (c *Client) SyncGameServerList(req *SyncGameServerListReq) (resp *SyncGameS
|
||||
|
||||
return
|
||||
}
|
||||
|
||||
func (c *Client) SetUserNewGameAuth(req *SetUserNewGameAuthReq) (resp *SetUserNewGameAuthResp, err error) {
|
||||
resp = CreateSetUserNewGameAuthResp()
|
||||
err = c.DoAction(req, resp)
|
||||
return
|
||||
}
|
||||
|
@ -34,3 +34,21 @@ func TestSyncGameServerList(t *testing.T) {
|
||||
|
||||
fmt.Println(resp.Code, resp.Msg, resp.Count)
|
||||
}
|
||||
|
||||
func TestClient_SetUserNewGameAuth(t *testing.T) {
|
||||
client, err := NewClient()
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
req := CreateSetUserNewGameAuthReq(map[string]string{
|
||||
"game_sign": "qwldy",
|
||||
"game_id": "7275",
|
||||
})
|
||||
|
||||
resp, err := client.SetUserNewGameAuth(req)
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
|
||||
fmt.Println(resp.Code, resp.Msg, resp.Data.Result)
|
||||
}
|
||||
|
59
services/stat/user.go
Normal file
59
services/stat/user.go
Normal file
@ -0,0 +1,59 @@
|
||||
package stat
|
||||
|
||||
import (
|
||||
"crypto/md5"
|
||||
"encoding/hex"
|
||||
"fmt"
|
||||
"golib.gaore.com/GaoreGo/gaore-common-sdk-go/sdk/requests"
|
||||
"golib.gaore.com/GaoreGo/gaore-common-sdk-go/sdk/responses"
|
||||
"time"
|
||||
)
|
||||
|
||||
type SetUserNewGameAuthReq struct {
|
||||
*requests.RpcRequest
|
||||
}
|
||||
|
||||
type SetUserNewGameAuthResp struct {
|
||||
*responses.BaseResponse
|
||||
Code int `json:"code"`
|
||||
Msg string `json:"msg"`
|
||||
Data Data `json:"data"`
|
||||
}
|
||||
|
||||
type Data struct {
|
||||
Result string `json:"result"`
|
||||
}
|
||||
|
||||
const key = "gr_new_game"
|
||||
|
||||
// CreateSetUserNewGameAuthReq 设置用户新游戏授权
|
||||
func CreateSetUserNewGameAuthReq(data map[string]string) *SetUserNewGameAuthReq {
|
||||
req := &SetUserNewGameAuthReq{
|
||||
&requests.RpcRequest{},
|
||||
}
|
||||
|
||||
ts := time.Now().Unix()
|
||||
hash := md5.New()
|
||||
hash.Write([]byte(fmt.Sprintf("%v%v", ts, key)))
|
||||
hashBytes := hash.Sum(nil)
|
||||
|
||||
token := hex.EncodeToString(hashBytes)
|
||||
|
||||
req.InitWithApiInfo(HOST, VERSION, "/user/setUserNewGameAuth")
|
||||
req.Method = requests.POST
|
||||
|
||||
req.FormParams = data
|
||||
if req.FormParams == nil {
|
||||
req.FormParams = make(map[string]string)
|
||||
}
|
||||
req.FormParams["sign"] = token
|
||||
req.FormParams["time"] = fmt.Sprintf("%v", ts)
|
||||
return req
|
||||
}
|
||||
|
||||
// CreateSetUserNewGameAuthResp 创建设置用户新游戏授权响应
|
||||
func CreateSetUserNewGameAuthResp() *SetUserNewGameAuthResp {
|
||||
return &SetUserNewGameAuthResp{
|
||||
BaseResponse: &responses.BaseResponse{},
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user