-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathauth.service.impl.go
66 lines (53 loc) · 1.67 KB
/
auth.service.impl.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
package services
import (
"context"
"errors"
"strings"
"time"
"github.com/wpcodevo/golang-mongodb/models"
"github.com/wpcodevo/golang-mongodb/utils"
"go.mongodb.org/mongo-driver/bson"
"go.mongodb.org/mongo-driver/mongo"
"go.mongodb.org/mongo-driver/mongo/options"
)
type AuthServiceImpl struct {
collection *mongo.Collection
ctx context.Context
}
func NewAuthService(collection *mongo.Collection, ctx context.Context) AuthService {
return &AuthServiceImpl{collection, ctx}
}
func (uc *AuthServiceImpl) SignUpUser(user *models.SignUpInput) (*models.DBResponse, error) {
user.CreatedAt = time.Now()
user.UpdatedAt = user.CreatedAt
user.Email = strings.ToLower(user.Email)
user.PasswordConfirm = ""
user.Verified = false
user.Role = "user"
hashedPassword, _ := utils.HashPassword(user.Password)
user.Password = hashedPassword
res, err := uc.collection.InsertOne(uc.ctx, &user)
if err != nil {
if er, ok := err.(mongo.WriteException); ok && er.WriteErrors[0].Code == 11000 {
return nil, errors.New("user with that email already exist")
}
return nil, err
}
// Create a unique index for the email field
opt := options.Index()
opt.SetUnique(true)
index := mongo.IndexModel{Keys: bson.M{"email": 1}, Options: opt}
if _, err := uc.collection.Indexes().CreateOne(uc.ctx, index); err != nil {
return nil, errors.New("could not create index for email")
}
var newUser *models.DBResponse
query := bson.M{"_id": res.InsertedID}
err = uc.collection.FindOne(uc.ctx, query).Decode(&newUser)
if err != nil {
return nil, err
}
return newUser, nil
}
func (uc *AuthServiceImpl) SignInUser(*models.SignInInput) (*models.DBResponse, error) {
return nil, nil
}