-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuser.go
64 lines (54 loc) · 1.41 KB
/
user.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
package main
import (
"crypto/md5"
"encoding/json"
"fmt"
"io"
"net/http"
"time"
"golang.org/x/crypto/bcrypt"
)
// User .
type User struct {
Model
Email, AuthKey, PasswordHash string
Username string `json:"username"`
OrganizationID uint
Password string `gorm:"-" json:"password"`
}
// HashPassword .
func (u *User) HashPassword() error {
bytes, err := bcrypt.GenerateFromPassword([]byte(u.Password), 14)
u.PasswordHash = string(bytes)
return err
}
// CheckPasswordHash .
func (u *User) CheckPasswordHash() bool {
err := bcrypt.CompareHashAndPassword([]byte(u.PasswordHash), []byte(u.Password))
return err == nil
}
// GenerateAuthKey .
func (u *User) GenerateAuthKey() {
h := md5.New()
io.WriteString(h, time.Now().String())
u.AuthKey = fmt.Sprintf("%x", h.Sum(nil))
}
// UserAuth .
func UserAuth(w http.ResponseWriter, r *http.Request) {
decoder := json.NewDecoder(r.Body)
var user User
decoder.Decode(&user)
if user.Username == "" || user.Password == "" {
http.Error(w, "Email or password field can't be empty.", http.StatusBadRequest)
return
}
Db.First(&user, "username = ?", user.Username)
if user.ID == 0 || !user.CheckPasswordHash() {
http.Error(w, "Wrong email and password combination", http.StatusBadRequest)
return
}
keyJSON, _ := json.Marshal(struct {
Key string `json:"key"`
}{user.AuthKey})
fmt.Fprint(w, string(keyJSON))
}