-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample.go
112 lines (101 loc) · 3.86 KB
/
example.go
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
// example.go
//
// A simple HTTP server which presents a reCaptcha input form and evaulates the result,
// using the github.com/dpapathanasiou/go-recaptcha package.
//
// See the main() function for usage.
package main
import (
"fmt"
"log"
"net/http"
"os"
"path/filepath"
recaptcha "gitlab.ir7.com.br/r7/go-recaptcha"
)
var recaptchaPublicKey string
const (
pageTop = `<!DOCTYPE HTML><html><head>
<style>.error{color:#ff0000;} .ack{color:#0000ff;}</style><title>Recaptcha Test</title></head>
<body><div style="width:100%"><div style="width: 50%;margin: 0 auto;">
<h3>Recaptcha Test</h3>
<p>This is a token generator</p>`
form = `
<script src='https://www.google.com/recaptcha/api.js?render=%s'></script>
<script>
grecaptcha.ready(function() {
grecaptcha.execute('%s', {action: 'action_name'})
.then(function(token) {
document.getElementById("g-recaptcha-response-holder").innerHTML= token
});
});
function generateToken() {
grecaptcha.execute('%s', {action: 'action_name'})
.then(function(token) {
document.getElementById("g-recaptcha-response-holder").innerHTML= token
});
}
</script>
<textarea id="g-recaptcha-response-holder" style="margin: 0px; width: 600px; height: 100px;"></textarea>
</br>
<button id="g-recaptcha-generate" onclick="generateToken()">Generate new token</button>`
pageBottom = `</div></div></body></html>`
anError = `<p class="error">%s</p>`
anAck = `<p class="ack">%s</p>`
)
// processRequest accepts the http.Request object, finds the reCaptcha form variables which
// were input and sent by HTTP POST to the server, then calls the recaptcha package's Confirm()
// method, which returns a boolean indicating whether or not the client answered the form correctly.
func processRequest(request *http.Request) (result bool) {
recaptchaResponse, responseFound := request.Form["g-recaptcha-response"]
if responseFound {
result, err := recaptcha.Confirm(recaptchaResponse[0])
if err != nil {
log.Println("recaptcha server error", err)
}
return result
}
return false
}
// homePage is a simple HTTP handler which produces a basic HTML page
// (as defined by the pageTop and pageBottom constants), including
// an input form with a reCaptcha challenge.
// If the http.Request object indicates the form input has been posted,
// it calls processRequest() and displays a message indicating whether or not
// the reCaptcha form was input correctly.
// Either way, it writes HTML output through the http.ResponseWriter.
func homePage(writer http.ResponseWriter, request *http.Request) {
err := request.ParseForm() // Must be called before writing response
fmt.Fprint(writer, pageTop)
if err != nil {
fmt.Fprintf(writer, fmt.Sprintf(anError, err))
} else {
_, buttonClicked := request.Form["button"]
if buttonClicked {
if processRequest(request) {
// fmt.Fprint(writer, fmt.Sprintf(anAck, "Recaptcha was correct!"))
} else {
// fmt.Fprintf(writer, fmt.Sprintf(anError, "Recaptcha was incorrect; try again."))
}
}
}
fmt.Fprint(writer, fmt.Sprintf(form, recaptchaPublicKey, recaptchaPublicKey, recaptchaPublicKey))
fmt.Fprint(writer, pageBottom)
}
// main expects two command-line arguments: the reCaptcha public key for producing the HTML form,
// and the reCaptcha private key, to pass to recaptcha.Init() so the recaptcha package can check the input.
// It launches a simple web server on port 9001 which produces the reCaptcha input form and checks the client
// input if the form is posted.
func main() {
if len(os.Args) != 2 {
fmt.Printf("usage: %s <reCaptcha public key>\n", filepath.Base(os.Args[0]))
os.Exit(1)
} else {
recaptchaPublicKey = os.Args[1]
// recaptcha.Init(os.Args[2], 0.5)
http.HandleFunc("/", homePage)
if err := http.ListenAndServe(":9001", nil); err != nil {
log.Fatal("failed to start server", err)
}
}
}