@@ -54,17 +54,17 @@ func (a *API) loadUser(w http.ResponseWriter, r *http.Request) (context.Context,
54
54
55
55
userID , err := uuid .FromString (chi .URLParam (r , "user_id" ))
56
56
if err != nil {
57
- return nil , notFoundError (apierrors .ErrorCodeValidationFailed , "user_id must be an UUID" )
57
+ return nil , apierrors . NewNotFoundError (apierrors .ErrorCodeValidationFailed , "user_id must be an UUID" )
58
58
}
59
59
60
60
observability .LogEntrySetField (r , "user_id" , userID )
61
61
62
62
u , err := models .FindUserByID (db , userID )
63
63
if err != nil {
64
64
if models .IsNotFoundError (err ) {
65
- return nil , notFoundError (apierrors .ErrorCodeUserNotFound , "User not found" )
65
+ return nil , apierrors . NewNotFoundError (apierrors .ErrorCodeUserNotFound , "User not found" )
66
66
}
67
- return nil , internalServerError ("Database error loading user" ).WithInternalError (err )
67
+ return nil , apierrors . NewInternalServerError ("Database error loading user" ).WithInternalError (err )
68
68
}
69
69
70
70
return withUser (ctx , u ), nil
@@ -77,17 +77,17 @@ func (a *API) loadFactor(w http.ResponseWriter, r *http.Request) (context.Contex
77
77
user := getUser (ctx )
78
78
factorID , err := uuid .FromString (chi .URLParam (r , "factor_id" ))
79
79
if err != nil {
80
- return nil , notFoundError (apierrors .ErrorCodeValidationFailed , "factor_id must be an UUID" )
80
+ return nil , apierrors . NewNotFoundError (apierrors .ErrorCodeValidationFailed , "factor_id must be an UUID" )
81
81
}
82
82
83
83
observability .LogEntrySetField (r , "factor_id" , factorID )
84
84
85
85
factor , err := user .FindOwnedFactorByID (db , factorID )
86
86
if err != nil {
87
87
if models .IsNotFoundError (err ) {
88
- return nil , notFoundError (apierrors .ErrorCodeMFAFactorNotFound , "Factor not found" )
88
+ return nil , apierrors . NewNotFoundError (apierrors .ErrorCodeMFAFactorNotFound , "Factor not found" )
89
89
}
90
- return nil , internalServerError ("Database error loading factor" ).WithInternalError (err )
90
+ return nil , apierrors . NewInternalServerError ("Database error loading factor" ).WithInternalError (err )
91
91
}
92
92
return withFactor (ctx , factor ), nil
93
93
}
@@ -109,19 +109,19 @@ func (a *API) adminUsers(w http.ResponseWriter, r *http.Request) error {
109
109
110
110
pageParams , err := paginate (r )
111
111
if err != nil {
112
- return badRequestError (apierrors .ErrorCodeValidationFailed , "Bad Pagination Parameters: %v" , err ).WithInternalError (err )
112
+ return apierrors . NewBadRequestError (apierrors .ErrorCodeValidationFailed , "Bad Pagination Parameters: %v" , err ).WithInternalError (err )
113
113
}
114
114
115
115
sortParams , err := sort (r , map [string ]bool {models .CreatedAt : true }, []models.SortField {{Name : models .CreatedAt , Dir : models .Descending }})
116
116
if err != nil {
117
- return badRequestError (apierrors .ErrorCodeValidationFailed , "Bad Sort Parameters: %v" , err )
117
+ return apierrors . NewBadRequestError (apierrors .ErrorCodeValidationFailed , "Bad Sort Parameters: %v" , err )
118
118
}
119
119
120
120
filter := r .URL .Query ().Get ("filter" )
121
121
122
122
users , err := models .FindUsersInAudience (db , aud , pageParams , sortParams , filter )
123
123
if err != nil {
124
- return internalServerError ("Database error finding users" ).WithInternalError (err )
124
+ return apierrors . NewInternalServerError ("Database error finding users" ).WithInternalError (err )
125
125
}
126
126
addPaginationHeaders (w , r , pageParams )
127
127
@@ -170,7 +170,7 @@ func (a *API) adminUserUpdate(w http.ResponseWriter, r *http.Request) error {
170
170
if params .BanDuration != "none" {
171
171
duration , err = time .ParseDuration (params .BanDuration )
172
172
if err != nil {
173
- return badRequestError (apierrors .ErrorCodeValidationFailed , "invalid format for ban duration: %v" , err )
173
+ return apierrors . NewBadRequestError (apierrors .ErrorCodeValidationFailed , "invalid format for ban duration: %v" , err )
174
174
}
175
175
}
176
176
banDuration = & duration
@@ -315,7 +315,7 @@ func (a *API) adminUserUpdate(w http.ResponseWriter, r *http.Request) error {
315
315
})
316
316
317
317
if err != nil {
318
- return internalServerError ("Error updating user" ).WithInternalError (err )
318
+ return apierrors . NewInternalServerError ("Error updating user" ).WithInternalError (err )
319
319
}
320
320
321
321
return sendJSON (w , http .StatusOK , user )
@@ -339,7 +339,7 @@ func (a *API) adminUserCreate(w http.ResponseWriter, r *http.Request) error {
339
339
}
340
340
341
341
if params .Email == "" && params .Phone == "" {
342
- return badRequestError (apierrors .ErrorCodeValidationFailed , "Cannot create a user without either an email or phone" )
342
+ return apierrors . NewBadRequestError (apierrors .ErrorCodeValidationFailed , "Cannot create a user without either an email or phone" )
343
343
}
344
344
345
345
var providers []string
@@ -349,9 +349,9 @@ func (a *API) adminUserCreate(w http.ResponseWriter, r *http.Request) error {
349
349
return err
350
350
}
351
351
if user , err := models .IsDuplicatedEmail (db , params .Email , aud , nil ); err != nil {
352
- return internalServerError ("Database error checking email" ).WithInternalError (err )
352
+ return apierrors . NewInternalServerError ("Database error checking email" ).WithInternalError (err )
353
353
} else if user != nil {
354
- return unprocessableEntityError (apierrors .ErrorCodeEmailExists , DuplicateEmailMsg )
354
+ return apierrors . NewUnprocessableEntityError (apierrors .ErrorCodeEmailExists , DuplicateEmailMsg )
355
355
}
356
356
providers = append (providers , "email" )
357
357
}
@@ -362,21 +362,21 @@ func (a *API) adminUserCreate(w http.ResponseWriter, r *http.Request) error {
362
362
return err
363
363
}
364
364
if exists , err := models .IsDuplicatedPhone (db , params .Phone , aud ); err != nil {
365
- return internalServerError ("Database error checking phone" ).WithInternalError (err )
365
+ return apierrors . NewInternalServerError ("Database error checking phone" ).WithInternalError (err )
366
366
} else if exists {
367
- return unprocessableEntityError (apierrors .ErrorCodePhoneExists , "Phone number already registered by another user" )
367
+ return apierrors . NewUnprocessableEntityError (apierrors .ErrorCodePhoneExists , "Phone number already registered by another user" )
368
368
}
369
369
providers = append (providers , "phone" )
370
370
}
371
371
372
372
if params .Password != nil && params .PasswordHash != "" {
373
- return badRequestError (apierrors .ErrorCodeValidationFailed , "Only a password or a password hash should be provided" )
373
+ return apierrors . NewBadRequestError (apierrors .ErrorCodeValidationFailed , "Only a password or a password hash should be provided" )
374
374
}
375
375
376
376
if (params .Password == nil || * params .Password == "" ) && params .PasswordHash == "" {
377
377
password , err := password .Generate (64 , 10 , 0 , false , true )
378
378
if err != nil {
379
- return internalServerError ("Error generating password" ).WithInternalError (err )
379
+ return apierrors . NewInternalServerError ("Error generating password" ).WithInternalError (err )
380
380
}
381
381
params .Password = & password
382
382
}
@@ -390,18 +390,18 @@ func (a *API) adminUserCreate(w http.ResponseWriter, r *http.Request) error {
390
390
391
391
if err != nil {
392
392
if errors .Is (err , bcrypt .ErrPasswordTooLong ) {
393
- return badRequestError (apierrors .ErrorCodeValidationFailed , err .Error ())
393
+ return apierrors . NewBadRequestError (apierrors .ErrorCodeValidationFailed , err .Error ())
394
394
}
395
- return internalServerError ("Error creating user" ).WithInternalError (err )
395
+ return apierrors . NewInternalServerError ("Error creating user" ).WithInternalError (err )
396
396
}
397
397
398
398
if params .Id != "" {
399
399
customId , err := uuid .FromString (params .Id )
400
400
if err != nil {
401
- return badRequestError (apierrors .ErrorCodeValidationFailed , "ID must conform to the uuid v4 format" )
401
+ return apierrors . NewBadRequestError (apierrors .ErrorCodeValidationFailed , "ID must conform to the uuid v4 format" )
402
402
}
403
403
if customId == uuid .Nil {
404
- return badRequestError (apierrors .ErrorCodeValidationFailed , "ID cannot be a nil uuid" )
404
+ return apierrors . NewBadRequestError (apierrors .ErrorCodeValidationFailed , "ID cannot be a nil uuid" )
405
405
}
406
406
user .ID = customId
407
407
}
@@ -419,7 +419,7 @@ func (a *API) adminUserCreate(w http.ResponseWriter, r *http.Request) error {
419
419
if params .BanDuration != "none" {
420
420
duration , err = time .ParseDuration (params .BanDuration )
421
421
if err != nil {
422
- return badRequestError (apierrors .ErrorCodeValidationFailed , "invalid format for ban duration: %v" , err )
422
+ return apierrors . NewBadRequestError (apierrors .ErrorCodeValidationFailed , "invalid format for ban duration: %v" , err )
423
423
}
424
424
}
425
425
banDuration = & duration
@@ -501,7 +501,7 @@ func (a *API) adminUserCreate(w http.ResponseWriter, r *http.Request) error {
501
501
})
502
502
503
503
if err != nil {
504
- return internalServerError ("Database error creating new user" ).WithInternalError (err )
504
+ return apierrors . NewInternalServerError ("Database error creating new user" ).WithInternalError (err )
505
505
}
506
506
507
507
return sendJSON (w , http .StatusOK , user )
@@ -529,7 +529,7 @@ func (a *API) adminUserDelete(w http.ResponseWriter, r *http.Request) error {
529
529
"user_email" : user .Email ,
530
530
"user_phone" : user .Phone ,
531
531
}); terr != nil {
532
- return internalServerError ("Error recording audit log entry" ).WithInternalError (terr )
532
+ return apierrors . NewInternalServerError ("Error recording audit log entry" ).WithInternalError (terr )
533
533
}
534
534
535
535
if params .ShouldSoftDelete {
@@ -538,24 +538,24 @@ func (a *API) adminUserDelete(w http.ResponseWriter, r *http.Request) error {
538
538
return nil
539
539
}
540
540
if terr := user .SoftDeleteUser (tx ); terr != nil {
541
- return internalServerError ("Error soft deleting user" ).WithInternalError (terr )
541
+ return apierrors . NewInternalServerError ("Error soft deleting user" ).WithInternalError (terr )
542
542
}
543
543
544
544
if terr := user .SoftDeleteUserIdentities (tx ); terr != nil {
545
- return internalServerError ("Error soft deleting user identities" ).WithInternalError (terr )
545
+ return apierrors . NewInternalServerError ("Error soft deleting user identities" ).WithInternalError (terr )
546
546
}
547
547
548
548
// hard delete all associated factors
549
549
if terr := models .DeleteFactorsByUserId (tx , user .ID ); terr != nil {
550
- return internalServerError ("Error deleting user's factors" ).WithInternalError (terr )
550
+ return apierrors . NewInternalServerError ("Error deleting user's factors" ).WithInternalError (terr )
551
551
}
552
552
// hard delete all associated sessions
553
553
if terr := models .Logout (tx , user .ID ); terr != nil {
554
- return internalServerError ("Error deleting user's sessions" ).WithInternalError (terr )
554
+ return apierrors . NewInternalServerError ("Error deleting user's sessions" ).WithInternalError (terr )
555
555
}
556
556
} else {
557
557
if terr := tx .Destroy (user ); terr != nil {
558
- return internalServerError ("Database error deleting user" ).WithInternalError (terr )
558
+ return apierrors . NewInternalServerError ("Database error deleting user" ).WithInternalError (terr )
559
559
}
560
560
}
561
561
@@ -581,7 +581,7 @@ func (a *API) adminUserDeleteFactor(w http.ResponseWriter, r *http.Request) erro
581
581
return terr
582
582
}
583
583
if terr := tx .Destroy (factor ); terr != nil {
584
- return internalServerError ("Database error deleting factor" ).WithInternalError (terr )
584
+ return apierrors . NewInternalServerError ("Database error deleting factor" ).WithInternalError (terr )
585
585
}
586
586
return nil
587
587
})
@@ -619,7 +619,7 @@ func (a *API) adminUserUpdateFactor(w http.ResponseWriter, r *http.Request) erro
619
619
if params .Phone != "" && factor .IsPhoneFactor () {
620
620
phone , err := validatePhone (params .Phone )
621
621
if err != nil {
622
- return badRequestError (apierrors .ErrorCodeValidationFailed , "Invalid phone number format (E.164 required)" )
622
+ return apierrors . NewBadRequestError (apierrors .ErrorCodeValidationFailed , "Invalid phone number format (E.164 required)" )
623
623
}
624
624
if terr := factor .UpdatePhone (tx , phone ); terr != nil {
625
625
return terr
0 commit comments