-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
91 lines (73 loc) · 1.77 KB
/
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
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
package main
import (
"bufio"
"fmt"
"os"
"time"
"github.com/ivoras/gomagiclink"
"github.com/ivoras/gomagiclink/storage"
)
var consoleReader *bufio.Reader
func readLine(prompt string) (s string) {
fmt.Print(prompt)
s, err := consoleReader.ReadString('\n')
if err != nil {
panic(err)
}
return
}
func main() {
consoleReader = bufio.NewReader(os.Stdin)
fsStorage, err := storage.NewFileSystemStorage(".")
if err != nil {
panic(err)
}
magicLinkController, err := gomagiclink.NewAuthMagicLinkController(
[]byte("Lorem ipsum dolor sit amet, consectetur adipiscing elit."), // Our secret key
time.Hour, // User change (i.e. magic link) expiration
time.Hour*24, // Session ID (i.e. cookied) expiration
fsStorage, // Storage engine for user data
)
if err != nil {
panic(err)
}
email := readLine("Input e-mail address: ")
challenge, err := magicLinkController.GenerateChallenge(email)
if err != nil {
panic(err)
}
var user *gomagiclink.AuthUserRecord
fmt.Println("Challenge: ", challenge)
user, err = magicLinkController.VerifyChallenge(challenge)
if err != nil {
panic(err)
}
user.CustomData = "data"
err = magicLinkController.StoreUser(user)
if err != nil {
panic(err)
}
sessionId, err := magicLinkController.GenerateSessionId(user)
if err != nil {
panic(err)
}
fmt.Println("Session Id:", sessionId)
user2, err := magicLinkController.VerifySessionId(sessionId)
if err != nil {
panic(err)
}
if user.ID != user2.ID {
panic("user.ID != user2.ID")
}
if (user2.CustomData).(string) != "data" {
panic("CustomData mismatch")
}
t0 := time.Now()
for i := 0; i < 10000; i++ {
_, err = magicLinkController.VerifySessionId(sessionId)
if err != nil {
panic(err)
}
}
fmt.Println("10k session verifications took", time.Since(t0))
}