-
Notifications
You must be signed in to change notification settings - Fork 60
/
user.go
248 lines (229 loc) · 6.5 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
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
package uadmin
import (
"fmt"
"strings"
"time"
"golang.org/x/crypto/bcrypt"
)
// User !
type User struct {
Model
Username string `uadmin:"required;filter;search"`
FirstName string `uadmin:"filter;search"`
LastName string `uadmin:"filter;search"`
Password string `uadmin:"required;password;help:To reset password, clear the field and type a new password.;list_exclude"`
Email string `uadmin:"email;search"`
Active bool `uadmin:"filter"`
Admin bool `uadmin:"filter"`
RemoteAccess bool `uadmin:"filter"`
UserGroup UserGroup `uadmin:"filter"`
UserGroupID uint
Photo string `uadmin:"image"`
//Language []Language `gorm:"many2many:user_languages" listExclude:"true"`
LastLogin *time.Time `uadmin:"read_only"`
ExpiresOn *time.Time
OTPRequired bool
OTPSeed string `uadmin:"list_exclude;hidden;read_only"`
}
// String return string
func (u User) String() string {
return fmt.Sprintf("%s %s", u.FirstName, u.LastName)
}
// Save !
func (u *User) Save() {
if !strings.HasPrefix(u.Password, "$2a$") && len(u.Password) != 60 {
u.Password = hashPass(u.Password)
}
if u.OTPSeed == "" {
u.OTPSeed, _ = generateOTPSeed(OTPDigits, OTPAlgorithm, OTPSkew, OTPPeriod, u)
} else if u.ID != 0 {
oldUser := User{}
Get(&oldUser, "id = ?", u.ID)
if !oldUser.OTPRequired && u.OTPRequired {
u.OTPSeed, _ = generateOTPSeed(OTPDigits, OTPAlgorithm, OTPSkew, OTPPeriod, u)
}
}
u.Username = strings.ToLower(u.Username)
Save(u)
}
// GetActiveSession !
func (u *User) GetActiveSession() *Session {
s := Session{}
Get(&s, "`user_id` = ? AND `active` = ?", u.ID, true)
if s.ID == 0 {
return nil
}
return &s
}
// Login Logs in user using password and otp. If there is no OTP, just pass an empty string
func (u *User) Login(pass string, otp string) *Session {
if u == nil {
return nil
}
password := []byte(pass + Salt)
hashedPassword := []byte(u.Password)
err := bcrypt.CompareHashAndPassword(hashedPassword, password)
if err == nil && u.ID != 0 {
s := u.GetActiveSession()
if s == nil {
s = &Session{}
s.Active = true
s.UserID = u.ID
s.LoginTime = time.Now()
s.GenerateKey()
if CookieTimeout > -1 {
ExpiresOn := s.LoginTime.Add(time.Second * time.Duration(CookieTimeout))
s.ExpiresOn = &ExpiresOn
}
}
s.LastLogin = time.Now()
if u.OTPRequired {
if otp == "" {
s.PendingOTP = true
} else {
s.PendingOTP = !u.VerifyOTP(otp)
}
}
u.LastLogin = &s.LastLogin
u.Save()
s.Save()
return s
}
return nil
}
// GetDashboardMenu !
func (u *User) GetDashboardMenu() (menus []DashboardMenu) {
allItems := []DashboardMenu{}
All(&allItems)
userItems := []UserPermission{}
Filter(&userItems, "user_id = ?", u.ID)
groupItems := []GroupPermission{}
Filter(&groupItems, "user_group_id = ?", u.UserGroupID)
var groupItemIndex int
var userItemIndex int
dashboardItems := []DashboardMenu{}
for _, item := range allItems {
groupItemIndex = -1
userItemIndex = -1
for i, groupItem := range groupItems {
if groupItem.DashboardMenuID == item.ID {
groupItemIndex = i
break
}
}
for i, userItem := range userItems {
if userItem.DashboardMenuID == item.ID {
userItemIndex = i
break
}
}
// Permission exists for group and user: overide group with user
if groupItemIndex != -1 && userItemIndex != -1 {
groupItems[groupItemIndex].Read = userItems[userItemIndex].Read
groupItems[groupItemIndex].Add = userItems[userItemIndex].Add
groupItems[groupItemIndex].Edit = userItems[userItemIndex].Edit
groupItems[groupItemIndex].Delete = userItems[userItemIndex].Delete
}
// User permission exists but no group, add it to permessions
if groupItemIndex == -1 && userItemIndex != -1 {
groupItems = append(groupItems, GroupPermission{
DashboardMenuID: userItems[userItemIndex].DashboardMenuID,
Read: userItems[userItemIndex].Read,
Add: userItems[userItemIndex].Add,
Edit: userItems[userItemIndex].Edit,
Delete: userItems[userItemIndex].Delete,
})
groupItemIndex = len(groupItems) - 1
}
// Reconstruct the dashboard list
if u.Admin || groupItemIndex != -1 || userItemIndex != -1 {
if u.Admin || groupItems[groupItemIndex].Read {
dashboardItems = append(dashboardItems, item)
}
}
}
return dashboardItems
}
// HasAccess returns the user level permission to a model. The modelName
// the the URL of the model
func (u *User) HasAccess(modelName string) UserPermission {
Trail(WARNING, "User.HasAccess will be deprecated in version 0.6.0. Use User.GetAccess instead.")
return u.hasAccess(modelName)
}
// hasAccess returns the user level permission to a model. The modelName
// the the URL of the model
func (u *User) hasAccess(modelName string) UserPermission {
up := UserPermission{}
dm := DashboardMenu{}
if CachePermissions {
modelID := uint(0)
for _, m := range cachedModels {
if m.URL == modelName {
modelID = m.ID
break
}
}
for _, p := range cacheUserPerms {
if p.UserID == u.ID && p.DashboardMenuID == modelID {
up = p
break
}
}
} else {
Get(&dm, "url = ?", modelName)
Get(&up, "user_id = ? and dashboard_menu_id = ?", u.ID, dm.ID)
}
return up
}
// GetAccess returns the user's permission to a dashboard menu based on
// their admin status, group and user permissions
func (u *User) GetAccess(modelName string) UserPermission {
// Check if the user has permission to a model
if u.UserGroup.ID != u.UserGroupID {
Preload(u)
}
uPerm := u.hasAccess(modelName)
gPerm := u.UserGroup.hasAccess(modelName)
perm := UserPermission{}
if gPerm.ID != 0 {
perm.Read = gPerm.Read
perm.Edit = gPerm.Edit
perm.Add = gPerm.Add
perm.Delete = gPerm.Delete
perm.Approval = gPerm.Approval
}
if uPerm.ID != 0 {
perm.Read = uPerm.Read
perm.Edit = uPerm.Edit
perm.Add = uPerm.Add
perm.Delete = uPerm.Delete
perm.Approval = uPerm.Approval
}
if u.Admin {
perm.Read = true
perm.Edit = true
perm.Add = true
perm.Delete = true
perm.Approval = true
}
return perm
}
// Validate user when saving from uadmin
func (u User) Validate() (ret map[string]string) {
ret = map[string]string{}
if u.ID == 0 {
Get(&u, "username=?", u.Username)
if u.ID > 0 {
ret["Username"] = "Username is already Taken."
}
}
return
}
// GetOTP !
func (u *User) GetOTP() string {
return getOTP(u.OTPSeed, OTPDigits, OTPAlgorithm, OTPSkew, OTPPeriod)
}
// VerifyOTP !
func (u *User) VerifyOTP(pass string) bool {
return verifyOTP(pass, u.OTPSeed, OTPDigits, OTPAlgorithm, OTPSkew, OTPPeriod)
}