-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
49 lines (45 loc) · 856 Bytes
/
main.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
package main
import (
"app/otp"
"crypto/rand"
"html/template"
"io"
"net/http"
"time"
"github.com/gin-gonic/gin"
)
func randomBytes() []byte {
var buf [20]byte
_, err := io.ReadFull(rand.Reader, buf[:])
if err != nil {
panic(err)
}
return buf[:]
}
func main() {
key := randomBytes()
o := otp.New(key)
e := gin.Default()
e.LoadHTMLGlob("templates/*")
e.POST("/", func(c *gin.Context) {
type request struct {
Code string `json:"code"`
}
req := &request{}
if err := c.ShouldBindJSON(req); err != nil {
c.Status(400)
return
}
if req.Code != o.TOTP(time.Now(), 6) {
c.Status(403)
return
}
c.Status(200)
})
e.GET("/", func(c *gin.Context) {
c.HTML(http.StatusOK, "index.html", &struct {
URL template.URL
}{template.URL(o.URL("AppName", "[email protected]"))})
})
_ = http.ListenAndServe(":8080", e)
}