6
0

Compare commits

...

6 Commits

Author SHA1 Message Date
9aa5924b97 更新 game 按版本获取配置接口 2025-07-25 17:20:51 +08:00
liguanjie
66ee953f5f 【cs服务】faq缓存清理 2025-07-25 11:07:35 +08:00
liguanjie
4b13de26bd 【cs服务】更新cs api域名 2025-07-22 20:02:50 +08:00
liguanjie
e6d4532874 Merge branch 'master' into develop/lgj/order 2025-07-22 20:00:24 +08:00
huangqz
e30ecac33b gameInfo新增字段 2025-07-21 17:07:12 +08:00
liguanjie
699a113863 【cs服务】faq详情,返回模板code 2025-07-15 16:24:22 +08:00
5 changed files with 206 additions and 33 deletions

View File

@ -11,7 +11,7 @@ const (
) )
var HOST = requests.Host{ var HOST = requests.Host{
Default: "cs", Default: "cs.api.gaore.com",
} }
type Client struct { type Client struct {
@ -132,3 +132,21 @@ func (client *Client) GetHotFaqList(req *GetHotFaqRequest) (resp *GetHotFaqRespo
err = client.DoAction(req, resp) err = client.DoAction(req, resp)
return return
} }
func (client *Client) ClearFaqListCache(req *ClearFaqListCacheRequest) (resp *ClearFaqListCacheResponse, err error) {
resp = CreateClearFaqListCacheResponse()
err = client.DoAction(req, resp)
return
}
func (client *Client) ClearFaqDetailCache(req *ClearFaqDetailCacheRequest) (resp *ClearFaqDetailCacheResponse, err error) {
resp = CreateClearFaqDetailCacheResponse()
err = client.DoAction(req, resp)
return
}
func (client *Client) ClearHotFaqCache(req *ClearHotFaqCacheRequest) (resp *ClearHotFaqCacheResponse, err error) {
resp = CreateClearHotFaqCacheResponse()
err = client.DoAction(req, resp)
return
}

View File

@ -404,3 +404,56 @@ func TestGetFaqHotList(t *testing.T) {
} }
fmt.Printf(fmt.Sprintf("%v", res)) fmt.Printf(fmt.Sprintf("%v", res))
} }
// 清理faq列表缓存
func TestClearFaqListCache(t *testing.T) {
client, newErr := NewClient()
if newErr != nil {
panic(newErr)
}
req := CreateClearFaqListCacheRequest()
res, err := client.ClearFaqListCache(req)
if err != nil {
t.Error(err)
}
if res.Code != 0 {
t.Error("清理faq列表缓存失败")
}
fmt.Printf(fmt.Sprintf("%v", res))
}
// 清理faq详情缓存
func TestClearFaqDetailCache(t *testing.T) {
client, newErr := NewClient()
if newErr != nil {
panic(newErr)
}
req := CreateClearFaqDetailCacheRequest(FaqDetailRequest{
Id: int64(30),
})
res, err := client.ClearFaqDetailCache(req)
if err != nil {
t.Error(err)
}
if res.Code != 0 {
t.Error("清理faq详情缓存失败")
}
fmt.Printf(fmt.Sprintf("%v", res))
}
// 清理热门faq缓存
func TestClearHotFaqCache(t *testing.T) {
client, newErr := NewClient()
if newErr != nil {
panic(newErr)
}
req := CreateClearHotFaqCacheRequest()
res, err := client.ClearHotFaqCache(req)
if err != nil {
t.Error(err)
}
if res.Code != 0 {
t.Error("清理热门faq缓存失败")
}
fmt.Printf(fmt.Sprintf("%v", res))
}

View File

@ -56,6 +56,7 @@ type FaqDetail struct {
Type int64 `json:"type"` Type int64 `json:"type"`
WorkOrderTemplateId int64 `json:"work_order_template_id"` WorkOrderTemplateId int64 `json:"work_order_template_id"`
ProcessFlow string `json:"process_flow"` ProcessFlow string `json:"process_flow"`
WorkOrderTemplateCode string `json:"work_order_template_code"`
} }
type GetFaqDetailRequest struct { type GetFaqDetailRequest struct {
*requests.JsonRequest *requests.JsonRequest
@ -118,3 +119,83 @@ func CreateGetHotFaqResponse() (response *GetHotFaqResponse) {
} }
return return
} }
// 清理faq树缓存
type ClearFaqListCacheRequest struct {
*requests.JsonRequest
}
type ClearFaqListCacheResponse struct {
*responses.BaseResponse
Code int `json:"code"`
Msg string `json:"msg"`
}
func CreateClearFaqListCacheRequest() (req *ClearFaqListCacheRequest) {
req = &ClearFaqListCacheRequest{
JsonRequest: &requests.JsonRequest{},
}
req.InitWithApiInfo(HOST, VERSION, "/v1/faq/clear_list_cache")
req.Method = requests.POST
return
}
func CreateClearFaqListCacheResponse() (response *ClearFaqListCacheResponse) {
response = &ClearFaqListCacheResponse{
BaseResponse: &responses.BaseResponse{},
}
return
}
// 清理faq详情缓存
type ClearFaqDetailCacheRequest struct {
*requests.JsonRequest
Id int64 `position:"Json" field:"id"`
}
type ClearFaqDetailCacheResponse struct {
*responses.BaseResponse
Code int `json:"code"`
Msg string `json:"msg"`
}
func CreateClearFaqDetailCacheRequest(param FaqDetailRequest) (req *ClearFaqDetailCacheRequest) {
req = &ClearFaqDetailCacheRequest{
JsonRequest: &requests.JsonRequest{},
Id: param.Id,
}
req.InitWithApiInfo(HOST, VERSION, "/v1/faq/clear_detail_cache")
req.Method = requests.POST
return
}
func CreateClearFaqDetailCacheResponse() (response *ClearFaqDetailCacheResponse) {
response = &ClearFaqDetailCacheResponse{
BaseResponse: &responses.BaseResponse{},
}
return
}
// 清理热门faq缓存
type ClearHotFaqCacheRequest struct {
*requests.JsonRequest
}
type ClearHotFaqCacheResponse struct {
*responses.BaseResponse
Code int `json:"code"`
Msg string `json:"msg"`
}
func CreateClearHotFaqCacheRequest() (req *ClearHotFaqCacheRequest) {
req = &ClearHotFaqCacheRequest{
JsonRequest: &requests.JsonRequest{},
}
req.InitWithApiInfo(HOST, VERSION, "/v1/faq/clear_hot_list_cache")
req.Method = requests.POST
return
}
func CreateClearHotFaqCacheResponse() (response *ClearHotFaqCacheResponse) {
response = &ClearHotFaqCacheResponse{
BaseResponse: &responses.BaseResponse{},
}
return
}

View File

@ -26,11 +26,11 @@ func TestGetGameInfo(t *testing.T) {
if err != nil { if err != nil {
panic(err) panic(err)
} }
resp, err := client.GetGameInfo(CreateGetGameInfoByIdReq(8362, 1)) resp, err := client.GetGameInfo(CreateGetGameInfoByIdReq(797, 1))
if err != nil { if err != nil {
panic(err) panic(err)
} }
fmt.Println(resp.Code, resp.Msg, resp.Data) fmt.Println(resp.Code, resp.Msg, resp.Data.GameHomeShortImage)
} }
func TestChannelInfo(t *testing.T) { func TestChannelInfo(t *testing.T) {
@ -179,3 +179,18 @@ func TestGetGameRealAuthInfo(t *testing.T) {
} }
t.Log(isBlockOutIos) t.Log(isBlockOutIos)
} }
func TestGetGameVersion(t *testing.T) {
client, err := NewClient()
if err != nil {
t.Error(err)
return
}
req := CreateGetGameVersionReq(8071, "1.0.6")
resp, err := client.GetGameVersion(req)
if err != nil {
t.Error(err)
return
}
t.Log(resp)
}

View File

@ -103,6 +103,9 @@ type GameInfoData struct {
FlashPassKey string `json:"flash_pass_key"` FlashPassKey string `json:"flash_pass_key"`
GameByname string `json:"game_byname"` GameByname string `json:"game_byname"`
GameIconImg string `json:"game_icon_img"` GameIconImg string `json:"game_icon_img"`
GameImage string `json:"game_image"`
GameHomeImage string `json:"game_home_image"`
GameHomeShortImage string `json:"game_home_short_image"`
GameSign string `json:"game_sign"` GameSign string `json:"game_sign"`
GameTsUrl string `json:"game_ts_url"` GameTsUrl string `json:"game_ts_url"`
GameVersion string `json:"game_version"` GameVersion string `json:"game_version"`
@ -284,6 +287,9 @@ type GameVersion struct {
ExtData map[string]any `json:"ext_data"` ExtData map[string]any `json:"ext_data"`
VersionStatus int `json:"version_status"` VersionStatus int `json:"version_status"`
VersionTime int `json:"version_time"` VersionTime int `json:"version_time"`
RequestDomain string `json:"request_domain"`
SpareRequestDomain string `json:"spare_request_domain"`
OtherRequestDomain string `json:"other_request_domain"`
} }
type GetGameVersionReq struct { type GetGameVersionReq struct {