From 869f50db2fbc24826762fb61d35e5f8de79296c1 Mon Sep 17 00:00:00 2001 From: Gabriel Arakaki Giovanini Date: Fri, 25 Aug 2023 22:35:47 +0200 Subject: feat: Handle login error --- pkg/database/sql/user.go | 28 ++++++++++++++++++---------- 1 file changed, 18 insertions(+), 10 deletions(-) (limited to 'pkg/database/sql/user.go') diff --git a/pkg/database/sql/user.go b/pkg/database/sql/user.go index 6b1cf0f..2ec8622 100644 --- a/pkg/database/sql/user.go +++ b/pkg/database/sql/user.go @@ -2,6 +2,7 @@ package sql import ( "context" + "errors" "golang.org/x/crypto/bcrypt" "gorm.io/gorm" @@ -82,7 +83,7 @@ func (self *UserRepository) List(ctx context.Context) ([]*repository.User, error Find(&users) if result.Error != nil { - return nil, result.Error + return nil, wrapError(result.Error) } return users.ToModel(), nil @@ -95,7 +96,7 @@ func (self *UserRepository) Get(ctx context.Context, id uint) (*repository.User, First(user) if result.Error != nil { - return nil, result.Error + return nil, wrapError(result.Error) } return user, nil @@ -113,7 +114,7 @@ func (self *UserRepository) GetIDByUsername(ctx context.Context, username string First(&userID) if result.Error != nil { - return 0, result.Error + return 0, wrapError(result.Error) } return userID.ID, nil @@ -131,7 +132,7 @@ func (self *UserRepository) GetPassword(ctx context.Context, id uint) ([]byte, e First(&userPassword) if result.Error != nil { - return nil, result.Error + return nil, wrapError(result.Error) } return userPassword.Password, nil @@ -150,7 +151,7 @@ func (self *UserRepository) Create(ctx context.Context, createUser *repository.C WithContext(ctx). Create(user) if result.Error != nil { - return 0, result.Error + return 0, wrapError(result.Error) } return user.Model.ID, nil @@ -172,7 +173,7 @@ func (self *UserRepository) Update(ctx context.Context, id uint, update *reposit Omit("password"). Updates(user) if result.Error != nil { - return result.Error + return wrapError(result.Error) } return nil @@ -189,7 +190,7 @@ func (self *UserRepository) Delete(ctx context.Context, id uint) error { WithContext(ctx). Delete(user) if result.Error != nil { - return result.Error + return wrapError(result.Error) } return nil } @@ -203,7 +204,7 @@ func (u *UserRepository) Any(ctx context.Context) (bool, error) { Find(&exists) if result.Error != nil { - return false, result.Error + return false, wrapError(result.Error) } return exists, nil @@ -220,7 +221,7 @@ func (u *UserRepository) GetPathFromUserID(ctx context.Context, id uint) (string First(&userPath) if result.Error != nil { - return "", result.Error + return "", wrapError(result.Error) } return userPath, nil @@ -233,5 +234,12 @@ func (u *UserRepository) UpdatePassword(ctx context.Context, id uint, password [ Where("id = ?", id). Update("password", password) - return result.Error + return wrapError(result.Error) +} + +func wrapError(err error) error { + if errors.Is(err, gorm.ErrRecordNotFound) { + return repository.ErrRecordNotFound + } + return err } -- cgit v1.2.3