-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathauth_user.go
More file actions
477 lines (397 loc) · 11.7 KB
/
auth_user.go
File metadata and controls
477 lines (397 loc) · 11.7 KB
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
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
package auth
import (
"context"
"database/sql"
"errors"
"log/slog"
"time"
"github.com/yaitoo/sqle"
"github.com/yaitoo/sqle/shardid"
)
// QueryUsers queries the users from the database based on the provided conditions and returns a limited result.
// It takes a context, a where clause builder, and a limit as input parameters.
// The function returns a LimitResult of User objects and an error if any.
func (a *Auth) QueryUsers(ctx context.Context, where *sqle.WhereBuilder, limit int) ([]User, error) {
query := sqle.NewQuery[User](a.db)
b := a.createBuilder().Select("<prefix>user")
b.WithWhere(where)
items, err := query.QueryLimit(ctx, b, nil, limit)
if err != nil {
a.logger.Error("auth: QueryUsers",
slog.String("tag", "db"),
slog.Any("err", err))
return nil, ErrBadDatabase
}
return items, nil
}
func (a *Auth) QueryUsersCount(ctx context.Context, where *sqle.WhereBuilder) (int64, error) {
query := sqle.NewQuery[User](a.db)
b := a.createBuilder().
Select("<prefix>user", "count(id) as c")
b.WithWhere(where)
total, err := query.Count(ctx, b)
if err != nil {
a.logger.Error("auth: QueryUserCount",
slog.String("tag", "db"),
slog.Any("err", err))
return 0, ErrBadDatabase
}
return total, nil
}
func (a *Auth) GetUserByEmail(ctx context.Context, email string) (User, error) {
var u User
h := generateHash(a.hash(), email, "")
db, err := a.db.OnDHT(h, a.dhtEmail)
if err != nil {
return u, err
}
var userID shardid.ID
err = db.
QueryRowBuilder(ctx, a.createBuilder().
Select("<prefix>user_email", "user_id").
Where("hash = {hash}").
Param("hash", generateHash(a.hash(), email, ""))).
Scan(&userID)
if err != nil {
if errors.Is(err, sql.ErrNoRows) {
return u, ErrEmailNotFound
}
a.logger.Error("auth: GetUserByEmail",
slog.String("tag", "db"),
slog.String("email", email),
slog.Any("err", err))
return u, ErrBadDatabase
}
err = a.db.On(userID).
QueryRowBuilder(ctx, a.createBuilder().
Select("<prefix>user").
Where("id = {id}").Param("id", userID)).
Bind(&u)
if err != nil {
// email exists, but user_id can't be found. so data should be corrupted.
if errors.Is(err, sql.ErrNoRows) {
a.logger.Error("auth: GetUserByEmail:User",
slog.String("tag", "db"),
slog.String("email", email),
slog.Int64("user_id", userID.Int64),
slog.Any("err", "email/user is corrupted"))
return u, ErrBadDatabase
}
a.logger.Error("auth: GetUserByEmail",
slog.String("pos", "user"),
slog.String("tag", "db"),
slog.String("email", email),
slog.Any("err", err))
return u, ErrBadDatabase
}
return u, nil
}
func (a *Auth) GetUserByMobile(ctx context.Context, mobile string) (User, error) {
var u User
h := generateHash(a.hash(), mobile, "")
db, err := a.db.OnDHT(h, a.dhtMobile)
if err != nil {
return u, err
}
var userID shardid.ID
err = db.
QueryRowBuilder(ctx, a.createBuilder().
Select("<prefix>user_mobile", "user_id").
Where("hash = {hash}").
Param("hash", generateHash(a.hash(), mobile, ""))).
Scan(&userID)
if err != nil {
if errors.Is(err, sql.ErrNoRows) {
return u, ErrMobileNotFound
}
a.logger.Error("auth: GetUserByMobile",
slog.String("pos", "user_mobile"),
slog.String("tag", "db"),
slog.String("mobile", mobile),
slog.Any("err", err))
return u, ErrBadDatabase
}
err = a.db.On(userID).
QueryRowBuilder(ctx, a.createBuilder().
Select("<prefix>user").
Where("id = {id}").Param("id", userID)).
Bind(&u)
if err != nil {
// mobile exists, but user_id can't be found. so data should be corrupted.
if errors.Is(err, sql.ErrNoRows) {
a.logger.Error("auth: GetUserByMobile",
slog.String("pos", "user"),
slog.String("tag", "db"),
slog.String("mobile", mobile),
slog.Int64("user_id", userID.Int64),
slog.Any("err", "mobile/user is corrupted"))
return u, ErrBadDatabase
}
a.logger.Error("auth: GetUserByMobile",
slog.String("pos", "user"),
slog.String("tag", "db"),
slog.String("mobile", mobile),
slog.Any("err", err))
return u, ErrBadDatabase
}
return u, nil
}
// GetUsersByRole get users by role id
func (a *Auth) GetUsersByRole(ctx context.Context, rid int) ([]int64, error) {
var items [][]int64
rows, err := a.db.
QueryBuilder(ctx, a.createBuilder().
Select("<prefix>role_user", "user_id").
Where("role_id = {role_id}").
Param("role_id", rid))
if err != nil {
a.logger.Error("auth: GetUsersByRole",
slog.String("tag", "db"),
slog.Int("role_id", rid),
slog.Any("err", err))
return nil, ErrBadDatabase
}
err = rows.Bind(&items)
if err != nil {
a.logger.Error("auth: GetUsersByRole:Bind",
slog.String("tag", "db"),
slog.Int("role_id", rid),
slog.Any("err", err))
return nil, ErrBadDatabase
}
var ids []int64
for _, it := range items {
ids = append(ids, it[0])
}
return ids, nil
}
// GetUserRoles get roles by user id
func (a *Auth) GetUserRoles(ctx context.Context, uid int64) ([]Role, error) {
var items []Role
rows, err := a.db.
QueryBuilder(ctx, a.createBuilder().
SQL(`SELECT <prefix>role.* FROM <prefix>role_user
JOIN <prefix>role on <prefix>role_user.role_id = <prefix>role.id
WHERE <prefix>role_user.user_id = {user_id}`).
Param("user_id", uid))
if err != nil {
a.logger.Error("auth: GetRolesByUser",
slog.String("tag", "db"),
slog.Int64("user_id", uid),
slog.Any("err", err))
return nil, ErrBadDatabase
}
err = rows.Bind(&items)
if err != nil {
a.logger.Error("auth: GetRolesByUser:Bind",
slog.String("tag", "db"),
slog.Int64("user_id", uid),
slog.Any("err", err))
return nil, ErrBadDatabase
}
return items, nil
}
// CreateUser creates a new user with the provided information.
// It generates a unique user ID, hashes the email and mobile numbers,
// and stores the user details in the database.
// The function returns the created user and any error encountered during the process.
func (a *Auth) CreateUser(ctx context.Context, status UserStatus, email, mobile, passwd, firstName, lastName string) (User, error) {
var (
hashEmail, hashMobile string
u User
)
dtc := sqle.NewDTC(ctx, nil)
id := a.genUser.Next()
now := time.Now()
if email != "" {
hashEmail = generateHash(a.hash(), email, "")
dbEmail, err := a.db.OnDHT(hashEmail, a.dhtEmail)
if err != nil {
return u, err
}
dtc.Prepare(dbEmail, func(ctx context.Context, conn sqle.Connector) error {
err := a.createEmail(ctx, conn, id, email, hashEmail, now)
if err != nil {
a.logger.Error("auth: CreateUser:Email",
slog.String("tag", "db"),
slog.String("email", email),
slog.Any("err", err))
return ErrBadDatabase
}
return nil
}, func(ctx context.Context, conn sqle.Connector) error {
err = a.deleteEmail(ctx, conn, id, hashEmail)
if err != nil {
a.logger.Error("auth: CreateUser:Email:Revert",
slog.String("tag", "db"),
slog.String("email", email),
slog.Any("err", err))
return ErrBadDatabase
}
return nil
})
}
if mobile != "" {
hashMobile = generateHash(a.hash(), mobile, "")
dbMobile, err := a.db.OnDHT(hashMobile, a.dhtMobile)
if err != nil {
return u, err
}
dtc.Prepare(dbMobile, func(ctx context.Context, conn sqle.Connector) error {
err = a.createMobile(ctx, conn, id, mobile, hashMobile, now)
if err != nil {
a.logger.Error("auth: CreateUser:Mobile",
slog.String("tag", "db"),
slog.String("mobile", mobile),
slog.Any("err", err))
return ErrBadDatabase
}
return nil
}, func(ctx context.Context, conn sqle.Connector) error {
err = a.deleteMobile(ctx, conn, id, hashMobile)
if err != nil {
a.logger.Error("auth: CreateUser:Mobile:Revert",
slog.String("tag", "db"),
slog.String("mobile", mobile),
slog.Any("err", err))
return ErrBadDatabase
}
return nil
})
}
dtc.Prepare(a.db.On(id), func(ctx context.Context, conn sqle.Connector) error {
var err error
u, err = a.createUser(ctx, conn, id, status, passwd, firstName, lastName, email, mobile, now)
if err != nil {
return err
}
_, err = a.createProfile(ctx, conn, id, email, mobile, now)
if err != nil {
return err
}
return nil
}, nil)
err := dtc.Commit()
if err != nil {
a.logger.Error("auth: CreateUser:Commit",
slog.String("tag", "db"),
slog.Int64("user_id", id.Int64),
slog.String("email", email),
slog.String("mobile", mobile),
slog.Any("err", err))
errs := dtc.Rollback()
if len(errs) > 0 {
a.logger.Error("auth: CreateUser:Rollback",
slog.String("tag", "db"),
slog.Int64("user_id", id.Int64),
slog.String("email", email),
slog.String("mobile", mobile),
slog.Any("err", errs))
}
return u, ErrBadDatabase
}
return u, nil
}
// UpdateUser updates the user with the specified ID in the database.
// It sets the first name, last name, and status of the user.
// If an error occurs during the update, it logs the error and returns ErrBadDatabase.
func (a *Auth) UpdateUser(ctx context.Context, id int64, status UserStatus, firstName, lastName string) error {
uid := shardid.Parse(id)
_, err := a.db.On(uid).ExecBuilder(ctx, a.createBuilder().
Update("<prefix>user").
Set("first_name", firstName).
Set("last_name", lastName).
Set("status", status).
Where("id = {id}").
Param("id", id))
if err != nil {
a.logger.Error("auth: UpdateUser",
slog.String("tag", "db"),
slog.Int64("id", id),
slog.Any("err", err))
return ErrBadDatabase
}
return nil
}
// DeleteUser deletes a user from the authentication system.
// It takes a context and the ID of the user to be deleted as parameters.
// It returns an error if any error occurs during the deletion process.
func (a *Auth) DeleteUser(ctx context.Context, id int64) error {
var (
hashEmail string
hashMobile string
)
uid := shardid.Parse(id)
dbUser := a.db.On(uid)
pd, err := a.getProfileData(ctx, dbUser, id)
if err != nil {
return err
}
dtc := sqle.NewDTC(ctx, nil)
now := time.Now()
if pd.Email != "" {
hashEmail = generateHash(a.hash(), pd.Email, "")
dbEmail, err := a.db.OnDHT(hashEmail, a.dhtEmail)
if err != nil {
return err
}
dtc.Prepare(dbEmail, func(ctx context.Context, conn sqle.Connector) error {
return a.deleteEmail(ctx, conn, uid, hashEmail)
}, func(ctx context.Context, conn sqle.Connector) error {
err = a.createEmail(ctx, conn, uid, pd.Email, hashEmail, now)
if err != nil {
a.logger.Error("auth: DeleteUser:Email:Revert",
slog.String("tag", "db"),
slog.Int64("user_id", id),
slog.String("email", pd.Email),
slog.Any("err", err))
return ErrBadDatabase
}
return nil
})
}
if pd.Mobile != "" {
hashMobile = generateHash(a.hash(), pd.Mobile, "")
dbMobile, err := a.db.OnDHT(hashMobile, a.dhtMobile)
if err != nil {
return err
}
dtc.Prepare(dbMobile, func(ctx context.Context, conn sqle.Connector) error {
return a.deleteMobile(ctx, conn, uid, hashMobile)
}, func(ctx context.Context, conn sqle.Connector) error {
err := a.createMobile(ctx, conn, uid, pd.Mobile, hashMobile, now)
if err != nil {
a.logger.Error("auth: DeleteUser:Mobile:Revert",
slog.String("tag", "db"),
slog.Int64("user_id", id),
slog.String("mobile", pd.Mobile),
slog.Any("err", err))
return ErrBadDatabase
}
return nil
})
}
dtc.Prepare(dbUser, func(ctx context.Context, conn sqle.Connector) error {
err := a.deleteUser(ctx, conn, uid)
if err != nil {
return err
}
return a.deleteProfile(ctx, conn, uid)
}, nil)
err = dtc.Commit()
if err != nil {
a.logger.Error("auth: DeleteUser:Commit",
slog.String("tag", "db"),
slog.Int64("user_id", id),
slog.Any("err", err))
errs := dtc.Rollback()
if len(errs) > 0 {
a.logger.Error("auth: DeleteUser:Rollback",
slog.String("tag", "db"),
slog.Int64("user_id", id),
slog.Any("err", errs))
}
return ErrBadDatabase
}
return nil
}