realname.go 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. package realname
  2. import (
  3. "context"
  4. "fmt"
  5. "net/url"
  6. "go-common/app/interface/main/account/conf"
  7. "go-common/library/cache/memcache"
  8. "go-common/library/ecode"
  9. bm "go-common/library/net/http/blademaster"
  10. "github.com/pkg/errors"
  11. )
  12. var (
  13. telInfoURI = "/intranet/acc/telInfo/mid"
  14. )
  15. // Dao dao
  16. type Dao struct {
  17. c *conf.Config
  18. client *bm.Client
  19. mc *memcache.Pool
  20. }
  21. // New new
  22. func New(c *conf.Config) (d *Dao) {
  23. d = &Dao{
  24. c: c,
  25. client: bm.NewClient(c.HTTPClient.Normal),
  26. mc: memcache.NewPool(c.AccMemcache),
  27. }
  28. return
  29. }
  30. // TelInfo tel info.
  31. func (d *Dao) TelInfo(c context.Context, mid int64) (tel string, err error) {
  32. params := url.Values{}
  33. params.Set("mid", fmt.Sprintf("%d", mid))
  34. var resp struct {
  35. Code int `json:"code"`
  36. Data struct {
  37. Mid int64 `json:"mid"`
  38. Tel string `json:"tel"`
  39. JoinIP string `json:"join_ip"`
  40. JoinTime int64 `json:"join_time"`
  41. } `json:"data"`
  42. }
  43. if err = d.client.Get(c, d.c.Host.Passport+telInfoURI, "", params, &resp); err != nil {
  44. err = errors.Errorf("realname TelInfo d.httpClient.Do() error(%+v)", err)
  45. return
  46. }
  47. if resp.Code != 0 {
  48. err = errors.Errorf("realname TelInfo url(%s) res(%+v) err(%+v)", telInfoURI+"?"+params.Encode(), resp, ecode.Int(resp.Code))
  49. return
  50. }
  51. tel = resp.Data.Tel
  52. return
  53. }