http.go 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. package dao
  2. import (
  3. "context"
  4. "fmt"
  5. "net/url"
  6. "strconv"
  7. model "go-common/app/interface/main/credit/model"
  8. "go-common/library/ecode"
  9. "go-common/library/log"
  10. "go-common/library/net/metadata"
  11. "go-common/library/xstr"
  12. "github.com/pkg/errors"
  13. )
  14. // SendSysMsg send msg.
  15. func (dao *Dao) SendSysMsg(c context.Context, mid int64, title string, context string) (err error) {
  16. params := url.Values{}
  17. params.Set("mc", "2_1_13")
  18. params.Set("title", title)
  19. params.Set("data_type", "4")
  20. params.Set("context", context)
  21. params.Set("mid_list", fmt.Sprintf("%d", mid))
  22. var res struct {
  23. Code int `json:"code"`
  24. Data *struct {
  25. Status int8 `json:"status"`
  26. Remark string `json:"remark"`
  27. } `json:"data"`
  28. }
  29. if err = dao.client.Post(c, dao.sendMsgURL, metadata.String(c, metadata.RemoteIP), params, &res); err != nil {
  30. log.Error("SendSysMsg(%s) error(%v)", dao.sendMsgURL+"?"+params.Encode(), err)
  31. return
  32. }
  33. if res.Code != 0 {
  34. log.Error("SendSysMsg(%s) error(%v)", dao.sendMsgURL+"?"+params.Encode(), res.Code)
  35. err = ecode.Int(res.Code)
  36. return
  37. }
  38. return
  39. }
  40. // GetQS get question from big data.
  41. func (dao *Dao) GetQS(c context.Context, mid int64) (qs *model.AIQsID, err error) {
  42. qs = &model.AIQsID{}
  43. params := url.Values{}
  44. params.Set("mid", strconv.FormatInt(mid, 10))
  45. var res struct {
  46. Code int `json:"code"`
  47. Data *model.AIQsID `json:"data"`
  48. }
  49. if err = dao.client.Get(c, dao.getQSURL, metadata.String(c, metadata.RemoteIP), params, &res); err != nil {
  50. log.Error("GetQS(%s) error(%v)", dao.getQSURL+"?"+params.Encode(), err)
  51. return
  52. }
  53. if res.Code != 0 {
  54. log.Error("GetQS(%s) error(%v)", dao.getQSURL+"?"+params.Encode(), res.Code)
  55. err = ecode.Int(res.Code)
  56. return
  57. }
  58. qs = res.Data
  59. return
  60. }
  61. // ReplysCount get reply count.
  62. func (dao *Dao) ReplysCount(c context.Context, oid []int64) (counts map[string]int64, err error) {
  63. params := url.Values{}
  64. params.Set("oid", xstr.JoinInts(oid))
  65. params.Set("type", "6")
  66. var res struct {
  67. Data map[string]int64 `json:"data"`
  68. }
  69. if err = dao.client.Get(c, dao.replyCountURL, metadata.String(c, metadata.RemoteIP), params, &res); err != nil {
  70. log.Error("ReplysCount(%s) err(%v)", dao.replyCountURL+"?"+params.Encode(), err)
  71. return
  72. }
  73. counts = res.Data
  74. return
  75. }
  76. // SendMedal send mdal.
  77. func (dao *Dao) SendMedal(c context.Context, mid int64, nid int64) (err error) {
  78. params := url.Values{}
  79. params.Set("nid", strconv.FormatInt(nid, 10))
  80. params.Set("mid", strconv.FormatInt(mid, 10))
  81. var res struct {
  82. Code int `json:"code"`
  83. }
  84. if err = dao.client.Post(c, dao.sendMedalURL, "", params, &res); err != nil {
  85. return
  86. }
  87. if res.Code != 0 {
  88. err = errors.WithStack(ecode.Int(res.Code))
  89. }
  90. return
  91. }