1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- package elec
- import (
- "context"
- "net/url"
- "strconv"
- "go-common/app/interface/main/app-interface/conf"
- "go-common/app/interface/main/app-interface/model/elec"
- "go-common/library/ecode"
- httpx "go-common/library/net/http/blademaster"
- "go-common/library/net/metadata"
- "github.com/pkg/errors"
- )
- const (
- _elec = "/api/elec/info/query"
- _elecMonthRank = "1"
- )
- // Dao is elec dao.
- type Dao struct {
- client *httpx.Client
- elec string
- }
- // New elec dao
- func New(c *conf.Config) (d *Dao) {
- d = &Dao{
- client: httpx.NewClient(c.HTTPClient),
- elec: c.Host.Elec + _elec,
- }
- return
- }
- func (d *Dao) Info(c context.Context, mid, paymid int64) (data *elec.Info, err error) {
- ip := metadata.String(c, metadata.RemoteIP)
- params := url.Values{}
- params.Set("mid", strconv.FormatInt(mid, 10))
- params.Set("pay_mid", strconv.FormatInt(paymid, 10))
- params.Set("type", _elecMonthRank)
- var res struct {
- Code int `json:"code"`
- Data *elec.Info `json:"data"`
- }
- if err = d.client.Get(c, d.elec, ip, params, &res); err != nil {
- return
- }
- if res.Code != ecode.OK.Code() {
- if res.Code == 500011 {
- return
- }
- err = errors.Wrap(ecode.Int(res.Code), d.elec+"?"+params.Encode())
- return
- }
- data = res.Data
- return
- }
|