You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
1.7 KiB
67 lines
1.7 KiB
package geetest |
|
|
|
import ( |
|
"context" |
|
"net/http" |
|
"net/url" |
|
"strconv" |
|
"strings" |
|
"time" |
|
|
|
"go-common/app/interface/main/videoup/conf" |
|
"go-common/app/interface/main/videoup/model/geetest" |
|
"go-common/library/ecode" |
|
"go-common/library/log" |
|
httpx "go-common/library/net/http/blademaster" |
|
"go-common/library/net/metadata" |
|
) |
|
|
|
const ( |
|
_validate = "/validate.php" |
|
) |
|
|
|
// Dao is account dao. |
|
type Dao struct { |
|
c *conf.Config |
|
// url |
|
validateURI string |
|
// http client |
|
clientX *httpx.Client |
|
} |
|
|
|
// New new a dao. |
|
func New(c *conf.Config) (d *Dao) { |
|
d = &Dao{ |
|
c: c, |
|
validateURI: c.Host.Geetest + _validate, |
|
clientX: httpx.NewClient(c.HTTPClient.Read), |
|
} |
|
return |
|
} |
|
|
|
// Validate recheck the challenge code and get to seccode |
|
func (d *Dao) Validate(c context.Context, challenge, seccode, clientType, captchaID string, mid int64) (res *geetest.ValidateRes, err error) { |
|
params := url.Values{} |
|
params.Set("seccode", seccode) |
|
params.Set("challenge", challenge) |
|
params.Set("captchaid", captchaID) |
|
params.Set("client_type", clientType) |
|
params.Set("ip_address", metadata.String(c, metadata.RemoteIP)) |
|
params.Set("json_format", "1") |
|
params.Set("sdk", "golang_3.0.0") |
|
params.Set("user_id", strconv.FormatInt(mid, 10)) |
|
params.Set("timestamp", strconv.FormatInt(time.Now().Unix(), 10)) |
|
req, err := http.NewRequest("POST", d.validateURI, strings.NewReader(params.Encode())) |
|
if err != nil { |
|
log.Error("http.NewRequest error(%v) | uri(%s) params(%s)", err, d.validateURI, params.Encode()) |
|
err = ecode.CreativeGeetestAPIErr |
|
return |
|
} |
|
req.Header.Set("Content-Type", "application/x-www-form-urlencoded") |
|
if err = d.clientX.Do(c, req, &res); err != nil { |
|
log.Error("d.client.Do error(%v)", err) |
|
err = ecode.CreativeGeetestAPIErr |
|
return |
|
} |
|
return |
|
}
|
|
|