dao.go 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. package account
  2. import (
  3. "context"
  4. "net/url"
  5. "strconv"
  6. "time"
  7. "go-common/app/interface/main/videoup/conf"
  8. accapi "go-common/app/service/main/account/api"
  9. relation "go-common/app/service/main/relation/rpc/client"
  10. "go-common/library/cache/memcache"
  11. "go-common/library/ecode"
  12. "go-common/library/log"
  13. bm "go-common/library/net/http/blademaster"
  14. )
  15. const (
  16. _addFollowingURI = "/x/internal/relation/following/add"
  17. )
  18. // Dao dao is account dao.
  19. type Dao struct {
  20. // config
  21. c *conf.Config
  22. // rpc
  23. rela *relation.Service
  24. acc accapi.AccountClient
  25. // memcache
  26. mc *memcache.Pool
  27. mcSubExp, mcLimitAddBasicExp int32
  28. client *bm.Client
  29. addFollowingURL string
  30. }
  31. // New new a account dao.
  32. func New(c *conf.Config) (d *Dao) {
  33. d = &Dao{
  34. c: c,
  35. // rpc
  36. rela: relation.New(c.RelationRPC),
  37. // access memcache
  38. mc: memcache.NewPool(c.Memcache.Account.Config),
  39. mcSubExp: int32(time.Duration(c.Memcache.Account.SubmitExpire) / time.Second),
  40. mcLimitAddBasicExp: int32(time.Duration(c.Limit.AddBasicExp) / time.Second),
  41. client: bm.NewClient(c.HTTPClient.Write),
  42. addFollowingURL: c.Host.APICo + _addFollowingURI,
  43. }
  44. var err error
  45. if d.acc, err = accapi.NewClient(c.AccClient); err != nil {
  46. panic(err)
  47. }
  48. return
  49. }
  50. // Close close resource.
  51. func (d *Dao) Close() {
  52. if d.mc != nil {
  53. d.mc.Close()
  54. }
  55. }
  56. // Ping ping success.
  57. func (d *Dao) Ping(c context.Context) (err error) {
  58. if err = d.pingMemcache(c); err != nil {
  59. return
  60. }
  61. return
  62. }
  63. // IdentifyInfo 获取用户实名认证状态
  64. func (d *Dao) IdentifyInfo(c context.Context, ip string, mid int64) (err error) {
  65. var mf *accapi.Profile
  66. if mf, err = d.Profile(c, mid, ip); err != nil {
  67. log.Error("d.Profile mid(%d),ip(%s),error(%v)", mid, ip, err)
  68. err = ecode.CreativeAccServiceErr
  69. return
  70. }
  71. if mf.Identification == 1 {
  72. return
  73. }
  74. //switch for FrontEnd return json format, return OldPhone, and newError
  75. if err = d.switchIDInfoRet(mf.TelStatus); err != nil {
  76. log.Error("switchIDInfoRet res(%v)", mf.TelStatus)
  77. return
  78. }
  79. return
  80. }
  81. func (d *Dao) switchIDInfoRet(phoneRet int32) (err error) {
  82. switch phoneRet {
  83. case 0:
  84. err = ecode.UserCheckNoPhone
  85. case 1:
  86. err = nil
  87. case 2:
  88. err = ecode.UserCheckInvalidPhone
  89. }
  90. return
  91. }
  92. // AddFollowing 添加关注
  93. func (d *Dao) AddFollowing(c context.Context, mid, fid int64, src int, ip string) (err error) {
  94. params := url.Values{}
  95. params.Set("mid", strconv.FormatInt(mid, 10))
  96. params.Set("fid", strconv.FormatInt(fid, 10))
  97. params.Set("src", strconv.Itoa(src))
  98. var res struct {
  99. Code int `json:"code"`
  100. }
  101. if err = d.client.Post(c, d.addFollowingURL, ip, params, &res); err != nil {
  102. log.Error("d.client.Do uri(%s) mid(%d) fid(%d) res(%+v) error(%v)", d.addFollowingURL+"?"+params.Encode(), mid, fid, res, err)
  103. return
  104. }
  105. log.Info("acc AddFollowing url(%s)", d.addFollowingURL+"?"+params.Encode())
  106. if res.Code != 0 {
  107. log.Error("acc AddFollowing (%+s)|(%+d)|(%+d)|(%+d)|(%s) (%+v)", d.addFollowingURL, mid, fid, src, ip, res)
  108. err = ecode.CreativeAccServiceErr
  109. return
  110. }
  111. return
  112. }