forked from lastlogin-net/obligator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
email.go
288 lines (236 loc) · 5.85 KB
/
email.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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
package main
import (
"crypto/rand"
"errors"
"fmt"
"html/template"
"io"
"math/big"
"net/http"
"net/smtp"
"os"
"sync"
"time"
)
type Auth struct {
storage Storage
pendingAuthRequests map[string]*PendingAuthRequest
mut *sync.Mutex
}
type AuthRequest struct {
Type string `json:"type"`
Email string `json:"email"`
}
type PendingAuthRequest struct {
email string
code string
}
func (h *EmailHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
h.mux.ServeHTTP(w, r)
}
func NewEmailAuth(storage Storage) *Auth {
pendingAuthRequests := make(map[string]*PendingAuthRequest)
mut := &sync.Mutex{}
return &Auth{
storage,
pendingAuthRequests,
mut,
}
}
type EmailHandler struct {
mux *http.ServeMux
}
func NewEmailHander(storage Storage) *EmailHandler {
mux := http.NewServeMux()
h := &EmailHandler{
mux: mux,
}
tmpl, err := template.ParseFS(fs, "templates/*.tmpl")
if err != nil {
fmt.Fprintln(os.Stderr, err.Error())
os.Exit(1)
}
emailAuth := NewEmailAuth(storage)
mux.HandleFunc("/login-email", func(w http.ResponseWriter, r *http.Request) {
r.ParseForm()
if r.Method != "POST" {
w.WriteHeader(405)
io.WriteString(w, "Invalid method")
return
}
requestId := r.Form.Get("request_id")
templateData := struct {
RequestId string
}{
RequestId: requestId,
}
err := tmpl.ExecuteTemplate(w, "login-email.tmpl", templateData)
if err != nil {
w.WriteHeader(400)
io.WriteString(w, err.Error())
return
}
})
mux.HandleFunc("/email-code", func(w http.ResponseWriter, r *http.Request) {
r.ParseForm()
if r.Method != "POST" {
w.WriteHeader(405)
io.WriteString(w, "Invalid method")
return
}
email := r.Form.Get("email")
if email == "" {
w.WriteHeader(400)
io.WriteString(w, "email param missing")
return
}
requestId := r.Form.Get("request_id")
emailRequestId, err := genRandomKey()
if err != nil {
w.WriteHeader(500)
io.WriteString(w, err.Error())
return
}
users, err := storage.GetUsers()
if err != nil {
w.WriteHeader(500)
io.WriteString(w, err.Error())
return
}
if storage.GetPublic() || validUser(email, users) {
// run in goroutine so the user can't use timing to determine whether the account exists
go func() {
_ = emailAuth.StartEmailValidation(email, emailRequestId)
}()
}
data := struct {
RequestId string
EmailRequestId string
}{
RequestId: requestId,
EmailRequestId: emailRequestId,
}
err = tmpl.ExecuteTemplate(w, "email-code.tmpl", data)
if err != nil {
w.WriteHeader(400)
io.WriteString(w, err.Error())
return
}
})
mux.HandleFunc("/complete-email-login", func(w http.ResponseWriter, r *http.Request) {
if r.Method != "POST" {
w.WriteHeader(405)
io.WriteString(w, "Invalid method")
return
}
r.ParseForm()
requestId := r.Form.Get("request_id")
request, err := storage.GetRequest(requestId)
if err != nil {
w.WriteHeader(500)
io.WriteString(w, err.Error())
return
}
emailRequestId := r.Form.Get("email_request_id")
if emailRequestId == "" {
w.WriteHeader(400)
io.WriteString(w, "email_request_id param missing")
return
}
code := r.Form.Get("code")
if code == "" {
w.WriteHeader(400)
io.WriteString(w, "code param missing")
return
}
_, email, err := emailAuth.CompleteEmailValidation(emailRequestId, code)
if err != nil {
w.WriteHeader(400)
io.WriteString(w, err.Error())
return
}
cookieValue := ""
loginKeyCookie, err := r.Cookie(storage.GetLoginKeyName())
if err == nil {
cookieValue = loginKeyCookie.Value
}
cookie, err := generateCookie(storage, email, "Email", email, cookieValue)
if err != nil {
w.WriteHeader(500)
fmt.Fprintf(os.Stderr, err.Error())
return
}
http.SetCookie(w, cookie)
redirUrl := fmt.Sprintf("%s/auth?%s", storage.GetRootUri(), request.RawQuery)
http.Redirect(w, r, redirUrl, http.StatusSeeOther)
})
return h
}
func (a *Auth) StartEmailValidation(email, requestId string) error {
code, err := genCode()
if err != nil {
return err
}
bodyTemplate := "From: %s <%s>\r\n" +
"To: %s\r\n" +
"Subject: Email Validation\r\n" +
"\r\n" +
"This is an email validation request from %s. Use the following code to prove you control %s:\r\n" +
"\r\n" +
"%s\r\n"
smtpConfig, err := a.storage.GetSmtpConfig()
if err != nil {
return err
}
fromText := fmt.Sprintf("%s email validator", smtpConfig.SenderName)
fromEmail := smtpConfig.Sender
emailBody := fmt.Sprintf(bodyTemplate, fromText, fromEmail, email, smtpConfig.SenderName, email, code)
emailAuth := smtp.PlainAuth("", smtpConfig.Username, smtpConfig.Password, smtpConfig.Server)
srv := fmt.Sprintf("%s:%d", smtpConfig.Server, smtpConfig.Port)
msg := []byte(emailBody)
err = smtp.SendMail(srv, emailAuth, fromEmail, []string{email}, msg)
if err != nil {
return err
}
a.mut.Lock()
a.pendingAuthRequests[requestId] = &PendingAuthRequest{
email: email,
code: code,
}
a.mut.Unlock()
// Requests expire after a certain time
go func() {
time.Sleep(60 * time.Second)
a.mut.Lock()
delete(a.pendingAuthRequests, requestId)
a.mut.Unlock()
}()
return nil
}
func (a *Auth) CompleteEmailValidation(requestId, code string) (string, string, error) {
a.mut.Lock()
req, exists := a.pendingAuthRequests[requestId]
delete(a.pendingAuthRequests, requestId)
a.mut.Unlock()
if exists && req.code == code {
token, err := genRandomKey()
if err != nil {
return "", "", err
}
//a.db.SetKeyring(token, req.keyring)
return token, req.email, nil
}
return "", "", errors.New("Failed email validation")
}
func genCode() (string, error) {
const chars string = "0123456789"
id := ""
for i := 0; i < 6; i++ {
randIndex, err := rand.Int(rand.Reader, big.NewInt(int64(len(chars))))
if err != nil {
return "", err
}
id += string(chars[randIndex.Int64()])
}
return id, nil
}