Compare commits
5 Commits
Author | SHA1 | Date | |
---|---|---|---|
78d60083f7 | |||
bee78a0b12 | |||
c582fbf8ed | |||
|
14551a66b4 | ||
d8528ecbe8 |
7
go.mod
7
go.mod
@ -1,3 +1,10 @@
|
|||||||
module golib.gaore.com/GaoreGo/gaore-common-sdk-go
|
module golib.gaore.com/GaoreGo/gaore-common-sdk-go
|
||||||
|
|
||||||
go 1.19
|
go 1.19
|
||||||
|
|
||||||
|
require github.com/json-iterator/go v1.1.12
|
||||||
|
|
||||||
|
require (
|
||||||
|
github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421 // indirect
|
||||||
|
github.com/modern-go/reflect2 v1.0.2 // indirect
|
||||||
|
)
|
||||||
|
15
go.sum
Normal file
15
go.sum
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
|
||||||
|
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
|
||||||
|
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
|
||||||
|
github.com/google/gofuzz v1.0.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg=
|
||||||
|
github.com/json-iterator/go v1.1.12 h1:PV8peI4a0ysnczrg+LtxykD8LfKY9ML6u2jnxaEnrnM=
|
||||||
|
github.com/json-iterator/go v1.1.12/go.mod h1:e30LSqwooZae/UwlEbR2852Gd8hjQvJoHmT4TnhNGBo=
|
||||||
|
github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421 h1:ZqeYNhU3OHLH3mGKHDcjJRFFRrJa6eAM5H+CtDdOsPc=
|
||||||
|
github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q=
|
||||||
|
github.com/modern-go/reflect2 v1.0.2 h1:xBagoLtFs94CBntxluKeaWgTMpvLxC4ur3nMaC9Gz0M=
|
||||||
|
github.com/modern-go/reflect2 v1.0.2/go.mod h1:yWuevngMOJpCy52FWWMvUC8ws7m/LJsjYzDa0/r8luk=
|
||||||
|
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
|
||||||
|
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
|
||||||
|
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
|
||||||
|
github.com/stretchr/testify v1.3.0 h1:TivCn/peBQ7UY8ooIcPgZFpTNSz0Q2U6UrFlUfqbe0Q=
|
||||||
|
github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI=
|
@ -5,6 +5,7 @@ import (
|
|||||||
"context"
|
"context"
|
||||||
"crypto/tls"
|
"crypto/tls"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"github.com/json-iterator/go/extra"
|
||||||
"golib.gaore.com/GaoreGo/gaore-common-sdk-go/sdk/auth"
|
"golib.gaore.com/GaoreGo/gaore-common-sdk-go/sdk/auth"
|
||||||
"golib.gaore.com/GaoreGo/gaore-common-sdk-go/sdk/auth/credentials"
|
"golib.gaore.com/GaoreGo/gaore-common-sdk-go/sdk/auth/credentials"
|
||||||
"golib.gaore.com/GaoreGo/gaore-common-sdk-go/sdk/requests"
|
"golib.gaore.com/GaoreGo/gaore-common-sdk-go/sdk/requests"
|
||||||
@ -18,6 +19,7 @@ import (
|
|||||||
"regexp"
|
"regexp"
|
||||||
"runtime"
|
"runtime"
|
||||||
"strings"
|
"strings"
|
||||||
|
"sync"
|
||||||
"time"
|
"time"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -359,3 +361,10 @@ func (client *Client) getNoProxy(scheme string) []string {
|
|||||||
func hookDo(fn func(req *http.Request) (*http.Response, error)) func(req *http.Request) (*http.Response, error) {
|
func hookDo(fn func(req *http.Request) (*http.Response, error)) func(req *http.Request) (*http.Response, error) {
|
||||||
return fn
|
return fn
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func init() {
|
||||||
|
once := sync.Once{}
|
||||||
|
once.Do(func() {
|
||||||
|
extra.RegisterFuzzyDecoders()
|
||||||
|
})
|
||||||
|
}
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
package responses
|
package responses
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"encoding/json"
|
|
||||||
"errors"
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"github.com/json-iterator/go"
|
||||||
"golib.gaore.com/GaoreGo/gaore-common-sdk-go/sdk/requests"
|
"golib.gaore.com/GaoreGo/gaore-common-sdk-go/sdk/requests"
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
"net/http"
|
"net/http"
|
||||||
@ -97,7 +97,10 @@ func Unmarshal(response AcsResponse, httpResponse *http.Response, format string)
|
|||||||
if contentType, ok := response.GetHttpHeaders()["Content-Type"]; ok {
|
if contentType, ok := response.GetHttpHeaders()["Content-Type"]; ok {
|
||||||
for _, v := range contentType {
|
for _, v := range contentType {
|
||||||
if strings.Contains(v, requests.Json) {
|
if strings.Contains(v, requests.Json) {
|
||||||
json.Unmarshal(response.GetHttpContentBytes(), response)
|
err = jsoniter.Unmarshal(response.GetHttpContentBytes(), response)
|
||||||
|
if err != nil {
|
||||||
|
return errors.New("json Unmarshal:" + err.Error())
|
||||||
|
}
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -108,7 +111,7 @@ func Unmarshal(response AcsResponse, httpResponse *http.Response, format string)
|
|||||||
}
|
}
|
||||||
|
|
||||||
if format != "xml" {
|
if format != "xml" {
|
||||||
err = json.Unmarshal(response.GetHttpContentBytes(), response)
|
err = jsoniter.Unmarshal(response.GetHttpContentBytes(), response)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return errors.New("json Unmarshal:" + err.Error())
|
return errors.New("json Unmarshal:" + err.Error())
|
||||||
}
|
}
|
||||||
|
43
services/game/channel.go
Normal file
43
services/game/channel.go
Normal file
@ -0,0 +1,43 @@
|
|||||||
|
package game
|
||||||
|
|
||||||
|
import (
|
||||||
|
"golib.gaore.com/GaoreGo/gaore-common-sdk-go/sdk/requests"
|
||||||
|
"golib.gaore.com/GaoreGo/gaore-common-sdk-go/sdk/responses"
|
||||||
|
)
|
||||||
|
|
||||||
|
type ChannelInfoReq struct {
|
||||||
|
*requests.RpcRequest
|
||||||
|
ChannelId int64 `position:"Body" field:"channelId"`
|
||||||
|
ChannelKey string `position:"Body" field:"channelKey"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type ChannelInfoResp struct {
|
||||||
|
*responses.BaseResponse
|
||||||
|
Code int `json:"code"`
|
||||||
|
Msg string `json:"msg"`
|
||||||
|
Data map[int64]struct {
|
||||||
|
Id int64 `json:"id"`
|
||||||
|
PlatKey string `json:"plat_key"`
|
||||||
|
PlatName string `json:"plat_name"`
|
||||||
|
PlatCompany string `json:"plat_company"`
|
||||||
|
PlatUrl string `json:"plat_url"`
|
||||||
|
Company string `json:"company"`
|
||||||
|
PlatCategoryId int64 `json:"plat_category_id"`
|
||||||
|
CategoryName string `json:"category_name"`
|
||||||
|
} `json:"data"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func CreateChannelInfoReq() *ChannelInfoReq {
|
||||||
|
req := &ChannelInfoReq{
|
||||||
|
RpcRequest: &requests.RpcRequest{},
|
||||||
|
}
|
||||||
|
req.InitWithApiInfo(HOST, VERSION, "/api/channel/getChannelInfo")
|
||||||
|
return req
|
||||||
|
}
|
||||||
|
|
||||||
|
func CreateChannelInfoResp() *ChannelInfoResp {
|
||||||
|
resp := &ChannelInfoResp{
|
||||||
|
BaseResponse: &responses.BaseResponse{},
|
||||||
|
}
|
||||||
|
return resp
|
||||||
|
}
|
@ -6,7 +6,7 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
VERSION = "2020-11-16"
|
VERSION = "2025-04-27"
|
||||||
)
|
)
|
||||||
|
|
||||||
var HOST = requests.Host{
|
var HOST = requests.Host{
|
||||||
@ -29,3 +29,28 @@ func (c *Client) GetGameOsInfo(req *GetGameOsInfoReq) (resp *GetGameOsInfoResp,
|
|||||||
err = c.DoAction(req, resp)
|
err = c.DoAction(req, resp)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// GetGameInfo 获取游戏信息
|
||||||
|
func (c *Client) GetGameInfo(req *GetGameInfoReq) (resp *GetGameInfoResp, err error) {
|
||||||
|
resp = CreateGetGameInfoByIdResp()
|
||||||
|
err = c.DoAction(req, resp)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
func (c *Client) GetChannelInfo(req *ChannelInfoReq) (resp *ChannelInfoResp, err error) {
|
||||||
|
resp = CreateChannelInfoResp()
|
||||||
|
err = c.DoAction(req, resp)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
func (c *Client) GetLoginInfoById(req *GetLoginInfoByIdReq) (resp *GetLoginInfoByIdResp, err error) {
|
||||||
|
resp = CreateGetLoginInfoByIdResp()
|
||||||
|
err = c.DoAction(req, resp)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
func (c *Client) GetProtocolByGameId(req *GetProtocolByGameIdRep) (resp *GetProtocolByGameIdResp, err error) {
|
||||||
|
resp = CreateGetProtocolByGameIdResp()
|
||||||
|
err = c.DoAction(req, resp)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
@ -20,3 +20,60 @@ func TestGetGameOsInfo(t *testing.T) {
|
|||||||
|
|
||||||
fmt.Println(resp.Code, resp.Msg, resp.Data.OsList, resp.Data.OsRelList2)
|
fmt.Println(resp.Code, resp.Msg, resp.Data.OsList, resp.Data.OsRelList2)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestGetGameInfo(t *testing.T) {
|
||||||
|
client, err := NewClient()
|
||||||
|
if err != nil {
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
resp, err := client.GetGameInfo(CreateGetGameInfoByIdReq(8362, 1))
|
||||||
|
if err != nil {
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
fmt.Println(resp.Code, resp.Msg, resp.Data)
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestChannelInfo(t *testing.T) {
|
||||||
|
client, err := NewClient()
|
||||||
|
if err != nil {
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
req := CreateChannelInfoReq()
|
||||||
|
req.ChannelKey = "GRSDK"
|
||||||
|
resp, err := client.GetChannelInfo(req)
|
||||||
|
if err != nil {
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
fmt.Println(resp)
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestLoginInfoById(t *testing.T) {
|
||||||
|
client, err := NewClient()
|
||||||
|
if err != nil {
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
req := CreateGetLoginInfoByIdReq(7349, "1.0.0")
|
||||||
|
info, err := client.GetLoginInfoById(req)
|
||||||
|
if err != nil {
|
||||||
|
t.Error(err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
fmt.Println(info)
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestGetProtocolByGameId(t *testing.T) {
|
||||||
|
client, err := NewClient()
|
||||||
|
if err != nil {
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
req := CreateGetProtocolByGameIdRep()
|
||||||
|
req.GameId = 8088
|
||||||
|
req.GameVersion = "1.1.0"
|
||||||
|
req.Type = 1
|
||||||
|
info, err := client.GetProtocolByGameId(req)
|
||||||
|
if err != nil {
|
||||||
|
t.Error(err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
fmt.Println(info)
|
||||||
|
}
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
package game
|
package game
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"fmt"
|
||||||
"golib.gaore.com/GaoreGo/gaore-common-sdk-go/sdk/requests"
|
"golib.gaore.com/GaoreGo/gaore-common-sdk-go/sdk/requests"
|
||||||
"golib.gaore.com/GaoreGo/gaore-common-sdk-go/sdk/responses"
|
"golib.gaore.com/GaoreGo/gaore-common-sdk-go/sdk/responses"
|
||||||
)
|
)
|
||||||
@ -47,3 +48,117 @@ func CreateGetGameOsInfoResp() *GetGameOsInfoResp {
|
|||||||
BaseResponse: &responses.BaseResponse{},
|
BaseResponse: &responses.BaseResponse{},
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type GetGameInfoReq struct {
|
||||||
|
*requests.RpcRequest
|
||||||
|
}
|
||||||
|
|
||||||
|
type GetGameInfoResp struct {
|
||||||
|
*responses.BaseResponse
|
||||||
|
Code int `json:"code"`
|
||||||
|
Msg string `json:"msg"`
|
||||||
|
Data GameInfoData `json:"data"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type GetGameInfoReqData struct {
|
||||||
|
GameId int
|
||||||
|
NoCache int
|
||||||
|
}
|
||||||
|
|
||||||
|
type GameInfoData struct {
|
||||||
|
AcceptRelatedGame int `json:"accept_related_game"`
|
||||||
|
ActCodeState int `json:"act_code_state"`
|
||||||
|
AgentSign string `json:"agent_sign"`
|
||||||
|
AppId string `json:"app_id"`
|
||||||
|
AppName string `json:"app_name"`
|
||||||
|
Autologin int `json:"autologin"`
|
||||||
|
BName string `json:"b_name"`
|
||||||
|
BackResult int `json:"back_result"`
|
||||||
|
BusinessPurpose int `json:"business_purpose"`
|
||||||
|
ChannelShow int `json:"channel_show"`
|
||||||
|
ClientType int `json:"client_type"`
|
||||||
|
Company string `json:"company"`
|
||||||
|
CreatedAt string `json:"created_at"`
|
||||||
|
CreatedRealname string `json:"created_realname"`
|
||||||
|
CreatedUsername string `json:"created_username"`
|
||||||
|
DisableBack int `json:"disable_back"`
|
||||||
|
DisablePay int `json:"disable_pay"`
|
||||||
|
DisableRegister int `json:"disable_register"`
|
||||||
|
DisableRelatedBack int `json:"disable_related_back"`
|
||||||
|
DisableUnrelatedLogin int `json:"disable_unrelated_login"`
|
||||||
|
Discount int `json:"discount"`
|
||||||
|
Divide int `json:"divide"`
|
||||||
|
DownloadDomain string `json:"download_domain"`
|
||||||
|
DownloadId int `json:"download_id"`
|
||||||
|
ExchangeRate int `json:"exchange_rate"`
|
||||||
|
ExtData string `json:"ext_data"`
|
||||||
|
Fcmathod int `json:"fcmathod"`
|
||||||
|
FirstLetter string `json:"first_letter"`
|
||||||
|
FlashAuthId string `json:"flash_auth_id"`
|
||||||
|
FlashAuthKey string `json:"flash_auth_key"`
|
||||||
|
FlashAuthLogo string `json:"flash_auth_logo"`
|
||||||
|
FlashAuthName string `json:"flash_auth_name"`
|
||||||
|
FlashAuthStatus int `json:"flash_auth_status"`
|
||||||
|
GameByname string `json:"game_byname"`
|
||||||
|
GameIconImg string `json:"game_icon_img"`
|
||||||
|
GameSign string `json:"game_sign"`
|
||||||
|
GameTsUrl string `json:"game_ts_url"`
|
||||||
|
GameVersion string `json:"game_version"`
|
||||||
|
GameZsUrl string `json:"game_zs_url"`
|
||||||
|
GetRoleUrl string `json:"get_role_url"`
|
||||||
|
HideRedButton int `json:"hide_red_button"`
|
||||||
|
Icon string `json:"icon"`
|
||||||
|
Icp string `json:"icp"`
|
||||||
|
IcpUrl string `json:"icp_url"`
|
||||||
|
Id int `json:"id"`
|
||||||
|
IsAugment int `json:"is_augment"`
|
||||||
|
IsOpen int `json:"is_open"`
|
||||||
|
IsSync int `json:"is_sync"`
|
||||||
|
MarketName string `json:"market_name"`
|
||||||
|
MediaAbbr string `json:"media_abbr"`
|
||||||
|
MobileLoginState int `json:"mobile_login_state"`
|
||||||
|
MobileRegState int `json:"mobile_reg_state"`
|
||||||
|
Name string `json:"name"`
|
||||||
|
ObjectiveId int `json:"objective_id"`
|
||||||
|
OpenGame int `json:"open_game"`
|
||||||
|
Os int `json:"os"`
|
||||||
|
OsTwo int `json:"os_two"`
|
||||||
|
Owner int `json:"owner"`
|
||||||
|
PackageNameId int `json:"package_name_id"`
|
||||||
|
PayUrl string `json:"pay_url"`
|
||||||
|
PlatId int `json:"plat_id"`
|
||||||
|
Platform int `json:"platform"`
|
||||||
|
ProtocolPreState int `json:"protocol_pre_state"`
|
||||||
|
Rank int `json:"rank"`
|
||||||
|
RegisterProtocolState int `json:"register_protocol_state"`
|
||||||
|
RelateGame string `json:"relate_game"`
|
||||||
|
ReleaseState int `json:"release_state"`
|
||||||
|
Remark string `json:"remark"`
|
||||||
|
RequestDomain string `json:"request_domain"`
|
||||||
|
ResultCode string `json:"result_code"`
|
||||||
|
ScreenType int `json:"screen_type"`
|
||||||
|
ServerGroupId int `json:"server_group_id"`
|
||||||
|
ServerSign int `json:"server_sign"`
|
||||||
|
SimId int `json:"sim_id"`
|
||||||
|
SpareRequestDomain string `json:"spare_request_domain"`
|
||||||
|
TwOs int `json:"tw_os"`
|
||||||
|
TwPlatId int `json:"tw_plat_id"`
|
||||||
|
UpdatedAt string `json:"updated_at"`
|
||||||
|
UpdatedRealname string `json:"updated_realname"`
|
||||||
|
UpdatedUsername string `json:"updated_username"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func CreateGetGameInfoByIdReq(gameId, noCache int) *GetGameInfoReq {
|
||||||
|
req := &GetGameInfoReq{
|
||||||
|
RpcRequest: &requests.RpcRequest{},
|
||||||
|
}
|
||||||
|
req.InitWithApiInfo(HOST, VERSION, fmt.Sprintf("/api/game/getGameById/%d?no_cache=%d", gameId, noCache))
|
||||||
|
req.Method = requests.GET
|
||||||
|
return req
|
||||||
|
}
|
||||||
|
|
||||||
|
func CreateGetGameInfoByIdResp() *GetGameInfoResp {
|
||||||
|
return &GetGameInfoResp{
|
||||||
|
BaseResponse: &responses.BaseResponse{},
|
||||||
|
}
|
||||||
|
}
|
||||||
|
69
services/game/login.go
Normal file
69
services/game/login.go
Normal file
@ -0,0 +1,69 @@
|
|||||||
|
package game
|
||||||
|
|
||||||
|
import (
|
||||||
|
"golib.gaore.com/GaoreGo/gaore-common-sdk-go/sdk/requests"
|
||||||
|
"golib.gaore.com/GaoreGo/gaore-common-sdk-go/sdk/responses"
|
||||||
|
)
|
||||||
|
|
||||||
|
type GetLoginInfoByIdReq struct {
|
||||||
|
*requests.RpcRequest
|
||||||
|
GameId int `position:"Body" field:"game_id"`
|
||||||
|
GameVersion string `position:"Body" field:"game_version"`
|
||||||
|
Uid int `position:"Body" field:"uid"`
|
||||||
|
UserName string `position:"Body" field:"uname"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type GetLoginInfoByIdResp struct {
|
||||||
|
*responses.BaseResponse
|
||||||
|
Code int `json:"code"`
|
||||||
|
Msg string `json:"msg"`
|
||||||
|
Data struct {
|
||||||
|
AppName string `json:"app_name"`
|
||||||
|
AppID string `json:"app_id"`
|
||||||
|
LoginURL string `json:"login_url"`
|
||||||
|
PayURL string `json:"pay_url"`
|
||||||
|
GameURL string `json:"game_url"`
|
||||||
|
PayCallbackURL string `json:"pay_callback_url"`
|
||||||
|
IsH5Logout int `json:"is_h5_logout"`
|
||||||
|
HideWindow int `json:"hidewindow"`
|
||||||
|
GameVersion string `json:"version"`
|
||||||
|
GameSign string `json:"game_sign"`
|
||||||
|
GameSignName string `json:"game_sign_name"`
|
||||||
|
GameSignID string `json:"game_sign_id"`
|
||||||
|
IsYsdk int `json:"is_ysdk"`
|
||||||
|
Company string `json:"company"`
|
||||||
|
CompanyKf string `json:"company_kf"`
|
||||||
|
CompanyProto string `json:"company_proto"`
|
||||||
|
CompanySms string `json:"company_sms"`
|
||||||
|
KfStatus string `json:"kf_status"`
|
||||||
|
PopupTime int `json:"popup_time"`
|
||||||
|
PayInfo struct {
|
||||||
|
HiddenAlipay int `json:"hide_alipay"`
|
||||||
|
HiddenWx int `json:"hide_wx"`
|
||||||
|
HiddenUnionPay int `json:"hide_union_pay"`
|
||||||
|
} `json:"pay_info"`
|
||||||
|
GameID string `json:"game_id"`
|
||||||
|
ScreenType string `json:"screen_type"`
|
||||||
|
GameSwitch int `json:"game_switch"` // 根据上下文,0 或 1 的整数表示布尔值
|
||||||
|
ExtData map[string]any `json:"ext_data"`
|
||||||
|
OsName string `json:"os_name"`
|
||||||
|
} `json:"data"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func CreateGetLoginInfoByIdReq(gameId int, gameVersion string) *GetLoginInfoByIdReq {
|
||||||
|
req := &GetLoginInfoByIdReq{
|
||||||
|
RpcRequest: &requests.RpcRequest{},
|
||||||
|
}
|
||||||
|
req.GameId = gameId
|
||||||
|
req.GameVersion = gameVersion
|
||||||
|
req.InitWithApiInfo(HOST, VERSION, "/api/login/getInfoById")
|
||||||
|
req.Method = requests.POST
|
||||||
|
return req
|
||||||
|
}
|
||||||
|
|
||||||
|
func CreateGetLoginInfoByIdResp() *GetLoginInfoByIdResp {
|
||||||
|
resp := &GetLoginInfoByIdResp{
|
||||||
|
BaseResponse: &responses.BaseResponse{},
|
||||||
|
}
|
||||||
|
return resp
|
||||||
|
}
|
37
services/game/news.go
Normal file
37
services/game/news.go
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
package game
|
||||||
|
|
||||||
|
import (
|
||||||
|
"golib.gaore.com/GaoreGo/gaore-common-sdk-go/sdk/requests"
|
||||||
|
"golib.gaore.com/GaoreGo/gaore-common-sdk-go/sdk/responses"
|
||||||
|
)
|
||||||
|
|
||||||
|
type GetProtocolByGameIdRep struct {
|
||||||
|
*requests.RpcRequest
|
||||||
|
GameId int `position:"Query" field:"game_id"`
|
||||||
|
GameVersion string `position:"Query" field:"game_version"`
|
||||||
|
Type int `position:"Query" field:"type"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type GetProtocolByGameIdResp struct {
|
||||||
|
*responses.BaseResponse
|
||||||
|
Code int `json:"code"`
|
||||||
|
Msg string `json:"msg"`
|
||||||
|
Data struct {
|
||||||
|
Content string `json:"content"`
|
||||||
|
} `json:"data"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func CreateGetProtocolByGameIdRep() *GetProtocolByGameIdRep {
|
||||||
|
req := &GetProtocolByGameIdRep{
|
||||||
|
RpcRequest: &requests.RpcRequest{},
|
||||||
|
}
|
||||||
|
req.InitWithApiInfo(HOST, VERSION, "/api/news/getProtocolByGameId")
|
||||||
|
req.Method = requests.GET
|
||||||
|
return req
|
||||||
|
}
|
||||||
|
|
||||||
|
func CreateGetProtocolByGameIdResp() *GetProtocolByGameIdResp {
|
||||||
|
return &GetProtocolByGameIdResp{
|
||||||
|
BaseResponse: &responses.BaseResponse{},
|
||||||
|
}
|
||||||
|
}
|
@ -9,7 +9,7 @@ type ComplaintCompleteRequest struct {
|
|||||||
*requests.RpcRequest
|
*requests.RpcRequest
|
||||||
MchId string `position:"Body" field:"mch_id" default:"" `
|
MchId string `position:"Body" field:"mch_id" default:"" `
|
||||||
ComplaintId string `position:"Body" field:"complaint_id" default:"" `
|
ComplaintId string `position:"Body" field:"complaint_id" default:"" `
|
||||||
ExtData map[string]string `position:"Body" field:"ext_data" default:"" `
|
ExtData string `position:"Body" field:"ext_data" default:"" `
|
||||||
}
|
}
|
||||||
|
|
||||||
type ComplaintCompleteResponse struct {
|
type ComplaintCompleteResponse struct {
|
||||||
|
Loading…
Reference in New Issue
Block a user