This repository has been archived by the owner on Aug 16, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
user_signup.go
388 lines (338 loc) · 8.77 KB
/
user_signup.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
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
package interactor
import (
"bytes"
"context"
"encoding/json"
"errors"
"fmt"
htmlTmpl "html/template"
"net/http"
"net/url"
"path"
"strings"
"github.com/reearth/reearth-backend/internal/usecase/gateway"
"github.com/reearth/reearth-backend/internal/usecase/interfaces"
"github.com/reearth/reearth-backend/pkg/id"
"github.com/reearth/reearth-backend/pkg/rerror"
"github.com/reearth/reearth-backend/pkg/user"
)
func (i *User) Signup(ctx context.Context, inp interfaces.SignupParam) (*user.User, *user.Team, error) {
if inp.Password == "" {
return nil, nil, interfaces.ErrSignupInvalidPassword
}
if inp.Name == "" {
return nil, nil, interfaces.ErrSignupInvalidName
}
if err := i.verifySignupSecret(inp.Secret); err != nil {
return nil, nil, err
}
tx, err := i.transaction.Begin()
if err != nil {
return nil, nil, err
}
defer func() {
if err2 := tx.End(ctx); err == nil && err2 != nil {
err = err2
}
}()
// Check if user and team already exists
existedUser, existedTeam, err := i.userAlreadyExists(ctx, inp.User.UserID, inp.Sub, &inp.Name, inp.User.TeamID)
if err != nil {
return nil, nil, err
}
if existedUser != nil {
if existedUser.Verification() == nil || !existedUser.Verification().IsVerified() {
// if user exists but not verified -> create a new verification
if err := i.createVerification(ctx, existedUser); err != nil {
return nil, nil, err
}
return existedUser, existedTeam, nil
}
return nil, nil, interfaces.ErrUserAlreadyExists
}
// Initialize user and team
var auth *user.Auth
if inp.Sub != nil {
auth = user.AuthFromAuth0Sub(*inp.Sub).Ref()
}
u, team, err := user.Init(user.InitParams{
Email: inp.Email,
Name: inp.Name,
Sub: auth,
Password: &inp.Password,
Lang: inp.User.Lang,
Theme: inp.User.Theme,
UserID: inp.User.UserID,
TeamID: inp.User.TeamID,
})
if err != nil {
return nil, nil, err
}
if err := i.userRepo.Save(ctx, u); err != nil {
return nil, nil, err
}
if err := i.teamRepo.Save(ctx, team); err != nil {
return nil, nil, err
}
if err := i.createVerification(ctx, u); err != nil {
return nil, nil, err
}
tx.Commit()
return u, team, nil
}
func (i *User) SignupOIDC(ctx context.Context, inp interfaces.SignupOIDCParam) (u *user.User, _ *user.Team, err error) {
if err := i.verifySignupSecret(inp.Secret); err != nil {
return nil, nil, err
}
sub := inp.Sub
name := inp.Name
email := inp.Email
if sub == "" || email == "" {
ui, err := getUserInfoFromISS(ctx, inp.Issuer, inp.AccessToken)
if err != nil {
return nil, nil, err
}
sub = ui.Sub
email = ui.Email
if name == "" {
name = ui.Nickname
}
if name == "" {
name = ui.Name
}
if name == "" {
name = ui.Email
}
}
tx, err := i.transaction.Begin()
if err != nil {
return nil, nil, err
}
defer func() {
if err2 := tx.End(ctx); err == nil && err2 != nil {
err = err2
}
}()
// Check if user and team already exists
if existedUser, existedTeam, err := i.userAlreadyExists(ctx, inp.User.UserID, &sub, &name, inp.User.TeamID); err != nil {
return nil, nil, err
} else if existedUser != nil || existedTeam != nil {
return nil, nil, interfaces.ErrUserAlreadyExists
}
// Initialize user and team
u, team, err := user.Init(user.InitParams{
Email: email,
Name: name,
Sub: user.AuthFromAuth0Sub(sub).Ref(),
Lang: inp.User.Lang,
Theme: inp.User.Theme,
UserID: inp.User.UserID,
TeamID: inp.User.TeamID,
})
if err != nil {
return nil, nil, err
}
if err := i.userRepo.Save(ctx, u); err != nil {
return nil, nil, err
}
if err := i.teamRepo.Save(ctx, team); err != nil {
return nil, nil, err
}
tx.Commit()
return u, team, nil
}
func (i *User) verifySignupSecret(secret *string) error {
if i.signupSecret != "" && (secret == nil || *secret != i.signupSecret) {
return interfaces.ErrSignupInvalidSecret
}
return nil
}
func (i *User) userAlreadyExists(ctx context.Context, userID *id.UserID, sub *string, name *string, teamID *id.TeamID) (*user.User, *user.Team, error) {
// Check if user already exists
var existedUser *user.User
var err error
if userID != nil {
existedUser, err = i.userRepo.FindByID(ctx, *userID)
if err != nil && !errors.Is(err, rerror.ErrNotFound) {
return nil, nil, err
}
} else if sub != nil {
// Check if user already exists
existedUser, err = i.userRepo.FindByAuth0Sub(ctx, *sub)
if err != nil && !errors.Is(err, rerror.ErrNotFound) {
return nil, nil, err
}
} else if name != nil {
existedUser, err = i.userRepo.FindByName(ctx, *name)
if err != nil && !errors.Is(err, rerror.ErrNotFound) {
return nil, nil, err
}
}
if existedUser != nil {
team, err := i.teamRepo.FindByID(ctx, existedUser.Team())
if err != nil && !errors.Is(err, rerror.ErrNotFound) {
return nil, nil, err
}
return existedUser, team, nil
}
// Check if team already exists
if teamID != nil {
existed, err := i.teamRepo.FindByID(ctx, *teamID)
if err != nil && !errors.Is(err, rerror.ErrNotFound) {
return nil, nil, err
}
if existed != nil {
return nil, existed, nil
}
}
return nil, nil, nil
}
func getUserInfoFromISS(ctx context.Context, iss, accessToken string) (UserInfo, error) {
if accessToken == "" {
return UserInfo{}, errors.New("invalid access token")
}
if iss == "" {
return UserInfo{}, errors.New("invalid issuer")
}
var u string
c, err := getOpenIDConfiguration(ctx, iss)
if err != nil {
u2 := issToURL(iss, "/userinfo")
if u2 == nil {
return UserInfo{}, errors.New("invalid iss")
}
u = u2.String()
} else {
u = c.UserinfoEndpoint
}
return getUserInfo(ctx, u, accessToken)
}
type OpenIDConfiguration struct {
UserinfoEndpoint string `json:"userinfo_endpoint"`
}
func getOpenIDConfiguration(ctx context.Context, iss string) (c OpenIDConfiguration, err error) {
url := issToURL(iss, "/.well-known/openid-configuration")
if url == nil {
err = errors.New("invalid iss")
return
}
if ctx == nil {
ctx = context.Background()
}
req, err2 := http.NewRequestWithContext(ctx, http.MethodGet, url.String(), nil)
if err2 != nil {
err = err2
return
}
res, err2 := http.DefaultClient.Do(req)
if err2 != nil {
err = err2
return
}
if res.StatusCode != http.StatusOK {
err = errors.New("could not get user info")
return
}
if err2 := json.NewDecoder(res.Body).Decode(&c); err2 != nil {
err = fmt.Errorf("could not get user info: %w", err2)
return
}
return
}
type UserInfo struct {
Sub string `json:"sub"`
Name string `json:"name"`
Nickname string `json:"nickname"`
Email string `json:"email"`
Error string `json:"error"`
}
func getUserInfo(ctx context.Context, url, accessToken string) (ui UserInfo, err error) {
if ctx == nil {
ctx = context.Background()
}
req, err2 := http.NewRequestWithContext(ctx, http.MethodGet, url, nil)
if err2 != nil {
err = err2
return
}
req.Header.Set("Authorization", "Bearer "+accessToken)
res, err2 := http.DefaultClient.Do(req)
if err2 != nil {
err = err2
return
}
if res.StatusCode != http.StatusOK {
err = errors.New("could not get user info")
return
}
if err2 := json.NewDecoder(res.Body).Decode(&ui); err2 != nil {
err = fmt.Errorf("could not get user info: %w", err2)
return
}
if ui.Error != "" {
err = fmt.Errorf("could not get user info: %s", ui.Error)
return
}
if ui.Sub == "" {
err = fmt.Errorf("could not get user info: invalid response")
return
}
if ui.Email == "" {
err = fmt.Errorf("could not get user info: email scope missing")
return
}
return
}
func issToURL(iss, p string) *url.URL {
if iss == "" {
return nil
}
if !strings.HasPrefix(iss, "https://") && !strings.HasPrefix(iss, "http://") {
iss = "https://" + iss
}
u, err := url.Parse(iss)
if err == nil {
u.Path = path.Join(u.Path, p)
if u.Path == "/" {
u.Path = ""
}
return u
}
return nil
}
func (i *User) createVerification(ctx context.Context, u *user.User) error {
vr := user.NewVerification()
u.SetVerification(vr)
if err := i.userRepo.Save(ctx, u); err != nil {
return err
}
var text, html bytes.Buffer
link := i.authSrvUIDomain + "/?user-verification-token=" + vr.Code()
signupMailContent := mailContent{
Message: "Thank you for signing up to Re:Earth. Please verify your email address by clicking the button below.",
Suffix: "You can use this email address to log in to Re:Earth account anytime.",
ActionLabel: "Activate your account and log in",
UserName: u.Email(),
ActionURL: htmlTmpl.URL(link),
}
if err := authTextTMPL.Execute(&text, signupMailContent); err != nil {
return err
}
if err := authHTMLTMPL.Execute(&html, signupMailContent); err != nil {
return err
}
if err := i.mailer.SendMail(
[]gateway.Contact{
{
Email: u.Email(),
Name: u.Name(),
},
},
"email verification",
text.String(),
html.String(),
); err != nil {
return err
}
return nil
}