alipay.go 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. package realname
  2. import (
  3. "context"
  4. "net/http"
  5. "net/url"
  6. "go-common/app/interface/main/account/conf"
  7. "go-common/library/log"
  8. "github.com/pkg/errors"
  9. )
  10. type respAlipay struct {
  11. Code string `json:"code"`
  12. Msg string `json:"msg"`
  13. SubCode string `json:"sub_code"`
  14. SubMsg string `json:"sub_msg"`
  15. }
  16. func (r *respAlipay) Error() error {
  17. if r.Code == "10000" {
  18. return nil
  19. }
  20. return errors.Errorf("alipay response failed , code : %s, msg : %s, sub_code : %s, sub_msg : %s", r.Code, r.Msg, r.SubCode, r.SubMsg)
  21. }
  22. // AlipayInit .
  23. func (d *Dao) AlipayInit(c context.Context, param url.Values) (bizno string, err error) {
  24. var (
  25. req *http.Request
  26. )
  27. url := conf.Conf.Realname.Alipay.Gateway + "?" + param.Encode()
  28. if req, err = http.NewRequest("GET", url, nil); err != nil {
  29. err = errors.Wrapf(err, "http.NewRequest(GET,%s)", url)
  30. return
  31. }
  32. var resp struct {
  33. Resp struct {
  34. respAlipay
  35. Bizno string `json:"biz_no"`
  36. } `json:"zhima_customer_certification_initialize_response"`
  37. Sign string `json:"sign"`
  38. }
  39. if err = d.client.Do(c, req, &resp); err != nil {
  40. return
  41. }
  42. log.Info("Realname alipay init \n\tparam : %+v \n\tresp : %+v", param, resp)
  43. if err = resp.Resp.Error(); err != nil {
  44. return
  45. }
  46. bizno = resp.Resp.Bizno
  47. return
  48. }
  49. // AlipayQuery .
  50. func (d *Dao) AlipayQuery(c context.Context, param url.Values) (pass bool, reason string, err error) {
  51. var (
  52. req *http.Request
  53. )
  54. url := conf.Conf.Realname.Alipay.Gateway + "?" + param.Encode()
  55. if req, err = http.NewRequest("GET", url, nil); err != nil {
  56. err = errors.Wrapf(err, "http.NewRequest(GET,%s)", url)
  57. return
  58. }
  59. var resp struct {
  60. Resp struct {
  61. respAlipay
  62. Passed string `json:"passed"`
  63. FailedReason string `json:"failed_reason"`
  64. IdentityInfo string `json:"identity_info"`
  65. AttributeInfo string `json:"attribute_info"`
  66. ChannelStatuses string `json:"channel_statuses"`
  67. } `json:"zhima_customer_certification_query_response"`
  68. Sign string `json:"sign"`
  69. }
  70. if err = d.client.Do(c, req, &resp); err != nil {
  71. return
  72. }
  73. log.Info("Realname alipay query \n\tparam : %+v \n\tresp : %+v", param, resp)
  74. if err = resp.Resp.Error(); err != nil {
  75. return
  76. }
  77. if resp.Resp.Passed == "true" {
  78. pass = true
  79. } else {
  80. pass = false
  81. }
  82. reason = resp.Resp.FailedReason
  83. return
  84. }