-
-
Notifications
You must be signed in to change notification settings - Fork 126
/
login.go
96 lines (79 loc) · 2.94 KB
/
login.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
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
package user
import (
"net/http"
"math/rand"
"encoding/json"
"go.mongodb.org/mongo-driver/mongo"
"golang.org/x/crypto/bcrypt"
"time"
"github.com/azukaar/cosmos-server/src/utils"
)
type LoginRequestJSON struct {
Nickname string `validate:"required,min=3,max=32,alphanum"`
Password string `validate:"required,min=8,max=128,containsany=~!@#$%^&*()_+=-{[}]:;"'<>.?/,containsany=ABCDEFGHIJKLMNOPQRSTUVWXYZ,containsany=abcdefghijklmnopqrstuvwxyz,containsany=0123456789"`
}
func UserLogin(w http.ResponseWriter, req *http.Request) {
if(req.Method == "POST") {
time.Sleep(time.Duration(rand.Float64()*2)*time.Second)
var request LoginRequestJSON
err1 := json.NewDecoder(req.Body).Decode(&request)
if err1 != nil {
utils.Error("UserLogin: Invalid User Request", err1)
utils.HTTPError(w, "User Login Error", http.StatusInternalServerError, "UL001")
return
}
c, errCo := utils.GetCollection(utils.GetRootAppId(), "users")
if errCo != nil {
utils.Error("Database Connect", errCo)
utils.HTTPError(w, "Database Error", http.StatusInternalServerError, "DB001")
return
}
nickname := utils.Sanitize(request.Nickname)
password := request.Password
user := utils.User{}
utils.Debug("UserLogin: Logging user " + nickname)
err3 := c.FindOne(nil, map[string]interface{}{
"Nickname": nickname,
}).Decode(&user)
if err3 == mongo.ErrNoDocuments {
bcrypt.CompareHashAndPassword([]byte("$2a$14$4nzsVwEnR3.jEbMTME7kqeCo4gMgR/Tuk7ivNExvXjr73nKvLgHka"), []byte("dummyPassword"))
utils.Error("UserLogin: User not found", err3)
utils.HTTPError(w, "User Logging Error", http.StatusInternalServerError, "UL001")
return
} else if err3 != nil {
bcrypt.CompareHashAndPassword([]byte("$2a$14$4nzsVwEnR3.jEbMTME7kqeCo4gMgR/Tuk7ivNExvXjr73nKvLgHka"), []byte("dummyPassword"))
utils.Error("UserLogin: Error while finding user", err3)
utils.HTTPError(w, "User Logging Error", http.StatusInternalServerError, "UL001")
return
} else if user.Password == "" {
utils.Error("UserLogin: User not registered", nil)
utils.HTTPError(w, "User not registered", http.StatusUnauthorized, "UL002")
return
} else {
err2 := bcrypt.CompareHashAndPassword([]byte(user.Password), []byte(password))
if err2 != nil {
utils.Error("UserLogin: Encryption error", err2)
utils.HTTPError(w, "User Logging Error", http.StatusUnauthorized, "UL001")
return
}
SendUserToken(w, req, user, false)
json.NewEncoder(w).Encode(map[string]interface{}{
"status": "OK",
})
_, errE := c.UpdateOne(nil, map[string]interface{}{
"Nickname": nickname,
}, map[string]interface{}{
"$set": map[string]interface{}{
"LastLogin": time.Now(),
},
})
if errE != nil {
utils.Error("UserLogin: Error while updating user last login", errE)
}
}
} else {
utils.Error("UserLogin: Method not allowed" + req.Method, nil)
utils.HTTPError(w, "Method not allowed", http.StatusMethodNotAllowed, "HTTP001")
return
}
}