appeal.go 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. package dao
  2. import (
  3. "context"
  4. "net/url"
  5. "strconv"
  6. "go-common/app/interface/main/credit/model"
  7. "go-common/library/ecode"
  8. "go-common/library/log"
  9. "go-common/library/net/metadata"
  10. "github.com/pkg/errors"
  11. )
  12. // AddAppeal add appeal.
  13. func (d *Dao) AddAppeal(c context.Context, tid, btid, oid, mid, business int64, content, reason string) (err error) {
  14. params := url.Values{}
  15. params.Set("tid", strconv.FormatInt(tid, 10))
  16. params.Set("oid", strconv.FormatInt(oid, 10))
  17. params.Set("mid", strconv.FormatInt(mid, 10))
  18. params.Set("business_mid", strconv.FormatInt(mid, 10))
  19. params.Set("business_typeid", strconv.FormatInt(btid, 10))
  20. params.Set("business", strconv.FormatInt(business, 10))
  21. params.Set("business_content", content)
  22. params.Set("description", reason)
  23. var res struct {
  24. Code int `json:"code"`
  25. Data *struct {
  26. ChallengeNo int64 `json:"challengeNo"`
  27. } `json:"data"`
  28. }
  29. if err = d.client.Post(c, d.addAppealURL, metadata.String(c, metadata.RemoteIP), params, &res); err != nil {
  30. err = errors.Wrapf(err, "AddAppeal url(%s) res(%v)", d.addAppealURL+"?"+params.Encode(), res)
  31. return
  32. }
  33. if res.Code != 0 {
  34. log.Warn("add appeal url(%s) mid(%d) res(%v)", d.addAppealURL+"?"+params.Encode(), mid, res)
  35. err = ecode.Int(res.Code)
  36. }
  37. return
  38. }
  39. // AppealList appeal list .
  40. func (d *Dao) AppealList(c context.Context, mid int64, business int) (as []*model.Appeal, err error) {
  41. params := url.Values{}
  42. params.Set("mid", strconv.FormatInt(mid, 10))
  43. params.Set("business", strconv.Itoa(business))
  44. var res struct {
  45. Code int `json:"code"`
  46. Data []*model.Appeal `json:"data"`
  47. }
  48. if err = d.client.Get(c, d.appealListURL, metadata.String(c, metadata.RemoteIP), params, &res); err != nil {
  49. err = errors.Wrapf(err, "AppealList url(%s) res(%v)", d.appealListURL+"?"+params.Encode(), res)
  50. return
  51. }
  52. if res.Code != 0 {
  53. log.Warn("appeal list url(%s) mid(%d) res(%v)", d.appealListURL+"?"+params.Encode(), mid, res)
  54. err = ecode.Int(res.Code)
  55. return
  56. }
  57. as = res.Data
  58. return
  59. }