passport.go 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. package passport
  2. import (
  3. "context"
  4. "net/url"
  5. "strconv"
  6. "go-common/app/interface/main/account/conf"
  7. "go-common/app/interface/main/account/dao/account"
  8. "go-common/app/interface/main/account/model"
  9. "go-common/library/ecode"
  10. "go-common/library/log"
  11. bm "go-common/library/net/http/blademaster"
  12. )
  13. var (
  14. fastRegUri = "/intranet/acc/user/source"
  15. useridUri = "/intranet/acc/userid"
  16. testUsername = "/api/reg/testUserName"
  17. queryByMidUri = "/intranet/acc/queryByMid"
  18. updateName = "/intranet/acc/updateUname"
  19. )
  20. // Dao dao
  21. type Dao struct {
  22. c *conf.Config
  23. client *bm.Client
  24. }
  25. // New new
  26. func New(c *conf.Config) (d *Dao) {
  27. d = &Dao{
  28. c: c,
  29. client: bm.NewClient(c.HTTPClient.Normal),
  30. }
  31. return
  32. }
  33. func (d *Dao) FastReg(c context.Context, mid int64, ip string) (isRegFast bool, err error) {
  34. params := url.Values{}
  35. params.Set("mid", strconv.FormatInt(mid, 10))
  36. var res struct {
  37. Code int `json:"code"`
  38. Data struct {
  39. FastReg bool `json:"fastReg"`
  40. } `json:"data"`
  41. Message string `json:"message"`
  42. }
  43. if err = d.client.Get(c, d.c.Host.Passport+fastRegUri, ip, params, &res); err != nil {
  44. log.Error("fastReg url(%s) error(%v)", fastRegUri+"?"+params.Encode(), err)
  45. return
  46. }
  47. if res.Code != 0 {
  48. log.Error("fastReg url(%s) res(%v)", fastRegUri+"?"+params.Encode(), res)
  49. err = ecode.Int(res.Code)
  50. return
  51. }
  52. isRegFast = res.Data.FastReg
  53. return
  54. }
  55. //UserID user id.
  56. func (d *Dao) UserID(c context.Context, mid int64, ip string) (userID string, err error) {
  57. params := url.Values{}
  58. params.Set("mid", strconv.FormatInt(mid, 10))
  59. var res struct {
  60. Code int `json:"code"`
  61. Data struct {
  62. UserID string `json:"userid"`
  63. } `json:"data"`
  64. Message string `json:"message"`
  65. }
  66. if err = d.client.Get(c, d.c.Host.Passport+useridUri, ip, params, &res); err != nil {
  67. log.Error("UserID url(%s) error(%v)", useridUri+"?"+params.Encode(), err)
  68. return
  69. }
  70. if res.Code != 0 {
  71. log.Error("userID url(%s) res(%v)", useridUri+"?"+params.Encode(), res)
  72. err = ecode.Int(res.Code)
  73. return
  74. }
  75. userID = res.Data.UserID
  76. return
  77. }
  78. // TestUserName is.
  79. func (d *Dao) TestUserName(c context.Context, name string, mid int64, ip string) error {
  80. params := url.Values{}
  81. params.Set("user_name", name)
  82. params.Set("mid", strconv.FormatInt(mid, 10))
  83. var res struct {
  84. Code int `json:"code"`
  85. }
  86. if err := d.client.Get(c, d.c.Host.Passport+testUsername, ip, params, &res); err != nil {
  87. log.Error("Failed to test username: %+v: %+v", params, err)
  88. return err
  89. }
  90. if res.Code != 0 {
  91. log.Error("Failed to test username with code: %+v: %d", params, res.Code)
  92. return account.ParseJavaCode(res.Code)
  93. }
  94. return nil
  95. }
  96. // QueryByMid is.
  97. func (d *Dao) QueryByMid(c context.Context, mid int64, ip string) (*model.PassportProfile, error) {
  98. params := url.Values{}
  99. params.Set("mid", strconv.FormatInt(mid, 10))
  100. var res struct {
  101. Code int `json:"code"`
  102. Data *model.PassportProfile `json:"data"`
  103. }
  104. if err := d.client.Get(c, d.c.Host.Passport+queryByMidUri, ip, params, &res); err != nil {
  105. log.Error("Failed to query by mid: %+v: %+v", params, err)
  106. return nil, err
  107. }
  108. if res.Code != 0 {
  109. log.Error("Failed to query by mid with code: %+v: %d", params, res.Code)
  110. return nil, account.ParseJavaCode(res.Code)
  111. }
  112. return res.Data, nil
  113. }
  114. // UpdateName is.
  115. func (d *Dao) UpdateName(c context.Context, mid int64, name, ip string) error {
  116. params := url.Values{}
  117. params.Set("mid", strconv.FormatInt(mid, 10))
  118. params.Set("uname", name)
  119. var res struct {
  120. Code int `json:"code"`
  121. }
  122. if err := d.client.Post(c, d.c.Host.Passport+updateName, ip, params, &res); err != nil {
  123. log.Error("Failed to update uname params: %+v: %v", params, err)
  124. return err
  125. }
  126. if res.Code != 0 {
  127. log.Error("Failed to update uname, params: %+v,code: %d", params, res.Code)
  128. return account.ParseJavaCode(res.Code)
  129. }
  130. return nil
  131. }