blob: 2d602fc9fd3a50216f70405c009b04f50e09833c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
// Google re-captcha package tweaked from http://github.com/haisum/recaptcha
package recaptcha
import (
"encoding/json"
"io/ioutil"
"net/http"
"net/url"
"time"
)
// R type represents an object of Recaptcha and has public property Secret,
// which is secret obtained from google recaptcha tool admin interface
type R struct {
URL string
Secret string
lastError []string
}
// Struct for parsing json in google's response
type googleResponse struct {
Success bool
ErrorCodes []string `json:"error-codes"`
}
// VerifyResponse is a method similar to `Verify`; but doesn't parse the form for you. Useful if
// you're receiving the data as a JSON object from a javascript app or similar.
func (r *R) VerifyResponse(response string) bool {
r.lastError = make([]string, 1)
client := &http.Client{Timeout: 20 * time.Second}
resp, err := client.PostForm(r.URL,
url.Values{"secret": {r.Secret}, "response": {response}})
if err != nil {
r.lastError = append(r.lastError, err.Error())
return false
}
defer resp.Body.Close()
body, err := ioutil.ReadAll(resp.Body)
if err != nil {
r.lastError = append(r.lastError, err.Error())
return false
}
gr := new(googleResponse)
err = json.Unmarshal(body, gr)
if err != nil {
r.lastError = append(r.lastError, err.Error())
return false
}
if !gr.Success {
r.lastError = append(r.lastError, gr.ErrorCodes...)
}
return gr.Success
}
// LastError returns errors occurred in last re-captcha validation attempt
func (r R) LastError() []string {
return r.lastError
}
|