aboutsummaryrefslogtreecommitdiff
path: root/user/service.go
diff options
context:
space:
mode:
authorVidhu Kant Sharma <vidhukant@vidhukant.com>2023-09-09 10:20:31 +0530
committerVidhu Kant Sharma <vidhukant@vidhukant.com>2023-09-09 10:20:31 +0530
commit8f2180401fd05ba63633d9559dc156f5ca1573ba (patch)
treef3d2f59b04d5940bc5028904d6ce9d551aace86a /user/service.go
parentcba9f19ba50c60576a5961e89c24caefca52d740 (diff)
logging in with either username or emailv0.0.6
Diffstat (limited to 'user/service.go')
-rw-r--r--user/service.go19
1 files changed, 19 insertions, 0 deletions
diff --git a/user/service.go b/user/service.go
index 5e0632b..4544cb4 100644
--- a/user/service.go
+++ b/user/service.go
@@ -27,6 +27,25 @@ func (u *User) Create() error {
return res.Error
}
+func GetUserWithAccountName(user *User, accountName, method string) error {
+ if method != "username" && method != "email" {
+ return e.ErrInvalidLoginMethod
+ }
+
+ res := db.Where(method + " = ?", accountName).Find(&user)
+
+ // TODO: handle potential errors
+ if res.Error != nil {
+ return res.Error
+ }
+
+ if res.RowsAffected == 0 {
+ return e.ErrNotFound
+ }
+
+ return nil
+}
+
func GetUser(user *User, id uint) error {
res := db.Find(&user, id)