dao.go 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. package space
  2. import (
  3. "context"
  4. "encoding/json"
  5. "net/url"
  6. "strconv"
  7. "go-common/app/interface/main/app-interface/conf"
  8. "go-common/app/interface/main/app-interface/model/space"
  9. "go-common/library/ecode"
  10. "go-common/library/log"
  11. httpx "go-common/library/net/http/blademaster"
  12. "go-common/library/net/metadata"
  13. "github.com/pkg/errors"
  14. )
  15. const (
  16. _space = "/x/internal/space/setting"
  17. _video = "/api/member/getVideo"
  18. _uploadTopPhotoURL = "/api/member/getUploadTopPhoto"
  19. _report = "/api/report/add"
  20. _blacklist = "/x/internal/space/blacklist"
  21. )
  22. // Dao is space dao
  23. type Dao struct {
  24. client *httpx.Client
  25. clientSync *httpx.Client
  26. space string
  27. video string
  28. report string
  29. // space api
  30. uploadTop string
  31. blacklist string
  32. }
  33. // New initial space dao
  34. func New(c *conf.Config) (d *Dao) {
  35. d = &Dao{
  36. client: httpx.NewClient(c.HTTPClient),
  37. clientSync: httpx.NewClient(c.HTTPWrite),
  38. space: c.Host.APICo + _space,
  39. video: c.Host.Space + _video,
  40. report: c.Host.Space + _report,
  41. uploadTop: c.Host.Space + _uploadTopPhotoURL,
  42. blacklist: c.Host.APICo + _blacklist,
  43. }
  44. return
  45. }
  46. // Setting get setting data from api.
  47. func (d *Dao) Setting(c context.Context, mid int64) (setting *space.Setting, err error) {
  48. ip := metadata.String(c, metadata.RemoteIP)
  49. params := url.Values{}
  50. params.Set("mid", strconv.FormatInt(mid, 10))
  51. var res struct {
  52. Code int `json:"code"`
  53. Data struct {
  54. Privacy *space.Setting `json:"privacy"`
  55. } `json:"data"`
  56. }
  57. if err = d.client.Get(c, d.space, ip, params, &res); err != nil {
  58. return
  59. }
  60. if res.Code != ecode.OK.Code() {
  61. err = errors.Wrap(ecode.Int(res.Code), d.space+"?"+params.Encode())
  62. }
  63. setting = res.Data.Privacy
  64. return
  65. }
  66. // SpaceMob space mobile
  67. func (d *Dao) SpaceMob(c context.Context, mid, vmid int64, platform, device string) (us *space.Mob, err error) {
  68. ip := metadata.String(c, metadata.RemoteIP)
  69. params := url.Values{}
  70. params.Set("mid", strconv.FormatInt(mid, 10))
  71. params.Set("vmid", strconv.FormatInt(vmid, 10))
  72. params.Set("platform", platform)
  73. params.Set("device", device)
  74. var res struct {
  75. Code int `json:"code"`
  76. Data *space.Mob `json:"data"`
  77. }
  78. if err = d.client.Get(c, d.uploadTop, ip, params, &res); err != nil {
  79. return
  80. }
  81. if res.Code != ecode.OK.Code() {
  82. err = errors.Wrap(ecode.Int(res.Code), d.uploadTop+"?"+params.Encode())
  83. return
  84. }
  85. us = res.Data
  86. return
  87. }
  88. // Report report
  89. func (d *Dao) Report(c context.Context, mid int64, reason, ak string) (err error) {
  90. ip := metadata.String(c, metadata.RemoteIP)
  91. params := url.Values{}
  92. params.Set("access_key", ak)
  93. params.Set("mid", strconv.FormatInt(mid, 10))
  94. params.Set("reason", reason)
  95. var res struct {
  96. Code int `json:"code"`
  97. }
  98. if err = d.client.Post(c, d.report, ip, params, &res); err != nil {
  99. return
  100. }
  101. if res.Code != ecode.OK.Code() {
  102. err = errors.Wrap(ecode.Int(res.Code), d.report+"?"+params.Encode())
  103. }
  104. return
  105. }
  106. // Blacklist is.
  107. func (d *Dao) Blacklist(c context.Context) (list map[int64]struct{}, err error) {
  108. var res struct {
  109. Code int `json:"code"`
  110. Data map[int64]struct{} `json:"data"`
  111. }
  112. if err = d.clientSync.Get(c, d.blacklist, "", nil, &res); err != nil {
  113. err = errors.Wrap(ecode.Int(res.Code), d.blacklist)
  114. return
  115. }
  116. b, _ := json.Marshal(res)
  117. log.Error("Blacklist url(%s) response(%s)", d.blacklist, b)
  118. list = res.Data
  119. return
  120. }