You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
62 lines
1.8 KiB
62 lines
1.8 KiB
package dao |
|
|
|
import ( |
|
"context" |
|
"net/url" |
|
"strconv" |
|
|
|
"go-common/app/interface/main/space/model" |
|
"go-common/library/ecode" |
|
"go-common/library/log" |
|
"go-common/library/net/metadata" |
|
) |
|
|
|
const ( |
|
_shopURI = "/mall-shop/merchant/enter/service/shop/info" |
|
_shopLinkURI = "/mall-shop/merchant/enter/service/shop/get" |
|
) |
|
|
|
// ShopInfo get shop info data for pc. |
|
func (d *Dao) ShopInfo(c context.Context, mid int64) (data *model.ShopInfo, err error) { |
|
params := url.Values{} |
|
params.Set("mid", strconv.FormatInt(mid, 10)) |
|
var res struct { |
|
Code int `json:"code"` |
|
Data struct { |
|
Shop *model.ShopInfo `json:"shop"` |
|
} `json:"data"` |
|
} |
|
if err = d.httpR.Get(c, d.shopURL, metadata.String(c, metadata.RemoteIP), params, &res); err != nil { |
|
log.Error("ShopInfo(%s) mid(%d) error(%v)", d.shopURL+params.Encode(), mid, err) |
|
return |
|
} |
|
if res.Code != ecode.OK.Code() { |
|
log.Error("ShopInfo(%s) mid(%d) code(%d) error", d.shopURL+params.Encode(), mid, res.Code) |
|
err = ecode.SpaceNoShop |
|
return |
|
} |
|
data = res.Data.Shop |
|
return |
|
} |
|
|
|
// ShopLink only get simply data for h5. |
|
func (d *Dao) ShopLink(c context.Context, mid int64, platform int) (data *model.ShopLinkInfo, err error) { |
|
params := url.Values{} |
|
params.Set("mid", strconv.FormatInt(mid, 10)) |
|
params.Set("type", strconv.Itoa(platform)) |
|
var res struct { |
|
Code int `json:"code"` |
|
Data *model.ShopLinkInfo `json:"data"` |
|
} |
|
if err = d.httpR.Get(c, d.shopLinkURL, metadata.String(c, metadata.RemoteIP), params, &res); err != nil { |
|
log.Error("ShopLink(%s) mid(%d) error(%v)", d.shopLinkURL+params.Encode(), mid, err) |
|
return |
|
} |
|
if res.Code != ecode.OK.Code() { |
|
log.Error("ShopLink(%s) mid(%d) code(%d) error", d.shopLinkURL+params.Encode(), mid, res.Code) |
|
err = ecode.SpaceNoShop |
|
return |
|
} |
|
data = res.Data |
|
return |
|
}
|
|
|