geetest.go 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. package realname
  2. import (
  3. "context"
  4. "net/http"
  5. "net/url"
  6. "strconv"
  7. "strings"
  8. "time"
  9. "go-common/app/interface/main/account/conf"
  10. "go-common/library/log"
  11. "go-common/library/net/metadata"
  12. "github.com/pkg/errors"
  13. )
  14. // RealnameCaptchaGTRegister register a geetest apply
  15. func (d *Dao) RealnameCaptchaGTRegister(c context.Context, mid int64, ip, clientType string, newCaptcha int) (challenge string, err error) {
  16. var (
  17. params = url.Values{}
  18. req *http.Request
  19. url = conf.Conf.Realname.Geetest.RegisterURL
  20. )
  21. params.Set("user_id", strconv.FormatInt(mid, 10))
  22. params.Set("new_captcha", strconv.Itoa(newCaptcha))
  23. params.Set("ip_address", ip)
  24. params.Set("client_type", clientType)
  25. params.Set("gt", conf.Conf.Realname.Geetest.CaptchaID)
  26. if req, err = http.NewRequest("GET", url+"?"+params.Encode(), nil); err != nil {
  27. err = errors.Wrapf(err, "dao.RealnameCaptchaGTRegister url(%s) params(%s)", url, params.Encode())
  28. return
  29. }
  30. req.Header.Set("Content-Type", "application/x-www-form-urlencoded")
  31. var challengeBytes []byte
  32. if challengeBytes, err = d.client.Raw(c, req); err != nil {
  33. return
  34. }
  35. challenge = string(challengeBytes)
  36. if len(challenge) != 32 {
  37. log.Error("dao.RealnameCaptchaGTRegister challenge : %s ,length not equate 32bit", challenge)
  38. }
  39. return
  40. }
  41. // RealnameCaptchaGTRegisterValidate recheck the challenge code and get to seccode
  42. func (d *Dao) RealnameCaptchaGTRegisterValidate(c context.Context, challenge, seccode, clientType, ip, captchaID string, mid int64) (realSeccode string, err error) {
  43. var (
  44. params = url.Values{}
  45. req *http.Request
  46. url = conf.Conf.Realname.Geetest.ValidateURL
  47. )
  48. params.Set("seccode", seccode)
  49. params.Set("challenge", challenge)
  50. params.Set("captchaid", captchaID)
  51. params.Set("client_type", clientType)
  52. params.Set("ip_address", metadata.String(c, metadata.RemoteIP))
  53. params.Set("json_format", "1")
  54. params.Set("sdk", "golang_3.0.0")
  55. params.Set("user_id", strconv.FormatInt(mid, 10))
  56. params.Set("timestamp", strconv.FormatInt(time.Now().Unix(), 10))
  57. log.Info("gt validate url : %s , params : %s", url, params.Encode())
  58. if req, err = http.NewRequest("POST", url, strings.NewReader(params.Encode())); err != nil {
  59. err = errors.Wrapf(err, "dao.RealnameCaptchaGTRegister url(%s) params(%s)", url, params.Encode())
  60. return
  61. }
  62. req.Header.Set("Content-Type", "application/x-www-form-urlencoded")
  63. var resp struct {
  64. Seccode string `json:"seccode"`
  65. }
  66. if err = d.client.Do(c, req, &resp); err != nil {
  67. return
  68. }
  69. realSeccode = resp.Seccode
  70. return
  71. }