user.go
6.4 KB
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
package domain
import (
"fmt"
"gitlab.fjmaimaimai.com/allied-creation/allied-creation-user/pkg/constant"
"time"
)
const (
DefaultAdminUserCode = "ADMIN01"
)
// 用户类型
const (
UserTypeEmployee = 1
UserTypeCooperation = 2
UserTypeCompanyAdmin = 1024
)
// 用户状态
const (
UserStatusEnable UserStatus = 1
UserStatusDisable UserStatus = 2
UserStatusDestroy UserStatus = 3
)
// 用户
type User struct {
// 用户Id 用户唯一标识
UserId int64 `json:"userId,omitempty"`
// 企业id
CompanyId int64 `json:"companyId,omitempty"`
// 用户基础数据id
UserBaseId int64 `json:"userBaseId,omitempty"`
// 用户类型 1:企业内部用户(内部添加) 2:共创用户 1024:企业注册用户(注册添加)
UserType int `json:"userType,omitempty"`
// 用户编号 企业内标识
UserCode string `json:"userCode,omitempty"`
// 组织机构
OrganizationId int64 `json:"organizationId,omitempty"`
// 所属部门
DepartmentId int64 `json:"departmentId,omitempty"`
// 用户关联的组织
UserOrg []*Org `json:"userOrg,omitempty"`
// 用户关联的角色
UserRole []*Role `json:"userRole,omitempty"`
// 收藏的菜单(工作台)(菜单编码列表)
FavoriteMenus []string `json:"favoriteMenus,omitempty"`
// 共创信息 (共创用户有效)
CooperationInfo *CooperationInfo `json:"cooperationInfo,omitempty"`
// 状态(1:启用 2:禁用 3:注销)
EnableStatus int `json:"enableStatus,omitempty"`
// 扩展数据
Ext *Ext `json:"ext,omitempty"`
// 创建时间
CreatedAt time.Time `json:"createdAt,omitempty"`
// 更新时间
UpdatedAt time.Time `json:"updatedAt,omitempty"`
// 用户信息 (冗余,数据存在userBase里面)
UserInfo *UserInfo `json:"userInfo,omitempty"`
// 企业id
Company *Company `json:"company,omitempty"`
// 组织机构
Organization *Org `json:"org,omitempty"`
// 部门
Department *Department `json:"department,omitempty"`
}
type UserRepository interface {
Save(user *User) (*User, error)
Remove(user *User) (*User, error)
FindOne(queryOptions map[string]interface{}) (*User, error)
Find(queryOptions map[string]interface{}) (int64, []*User, error)
}
func (user *User) Identify() interface{} {
if user.UserId == 0 {
return nil
}
return user.UserId
}
func (user *User) Update(data map[string]interface{}) error {
//if companyId, ok := data["companyId"]; ok {
// user.CompanyId = companyId.(int64)
//}
if userBaseId, ok := data["userBaseId"]; ok {
user.UserBaseId = userBaseId.(int64)
}
//if userType, ok := data["userType"]; ok {
// user.UserType = userType.(int)
//}
//if userCode, ok := data["userCode"]; ok {
// user.UserCode = userCode.(string)
//}
if organizationId, ok := data["organizationId"]; ok {
user.OrganizationId = organizationId.(int64)
}
if departmentId, ok := data["departmentId"]; ok {
user.DepartmentId = departmentId.(int64)
}
//if userName, ok := data["userName"]; ok {
// user.UserInfo.UserName = userName.(string)
//}
//if phone, ok := data["phone"]; ok {
// user.UserInfo.Phone = phone.(string)
//}
//if avatar, ok := data["avatar"]; ok {
// user.UserInfo.Avatar = avatar.(string)
//}
//if email, ok := data["email"]; ok {
// user.UserInfo.Email = email.(string)
//}
if userOrg, ok := data["userOrg"]; ok {
user.UserOrg = userOrg.([]*Org)
}
if userRole, ok := data["userRole"]; ok {
user.UserRole = userRole.([]*Role)
}
if favoriteMenus, ok := data["favoriteMenus"]; ok {
user.FavoriteMenus = favoriteMenus.([]string)
}
if cooperationCompany, ok := data["cooperationCompany"]; ok {
user.CooperationInfo.CooperationCompany = cooperationCompany.(string)
}
if cooperationDeadline, ok := data["cooperationDeadline"]; ok {
user.CooperationInfo.CooperationDeadline = cooperationDeadline.(time.Time)
}
if enableStatus, ok := data["enableStatus"]; ok {
user.EnableStatus = enableStatus.(int)
}
if userName, ok := data["userName"]; ok {
user.Ext.UserName = userName.(string)
}
if orgName, ok := data["orgName"]; ok {
user.Ext.OrgName = orgName.(string)
}
if phone, ok := data["phone"]; ok {
user.Ext.Phone = phone.(string)
}
if depName, ok := data["depName"]; ok {
user.Ext.DepName = depName.(string)
}
if parentDepName, ok := data["parentDepName"]; ok {
user.Ext.ParentDepName = parentDepName.(string)
}
if updatedAt, ok := data["updatedAt"]; ok {
user.UpdatedAt = updatedAt.(time.Time)
}
return nil
}
type UserStatus int
/***** 1.基础模块函数 *****/
// DestroyAccount 注销账号
//
// accountAfter 变更后的账号
func (user *User) DestroyAccount(accountAfter string) error {
if err := user.SetEnableStatus(int(UserStatusDestroy)); err != nil {
return err
}
user.Ext.Phone = accountAfter
return nil
}
func (user *User) SetEnableStatus(enableStatus int) error {
userStatus := UserStatus(user.EnableStatus)
if userStatus == UserStatusDestroy {
return fmt.Errorf("账号已注销")
}
if user.EnableStatus == enableStatus {
return nil //fmt.Errorf("重复设置状态")
}
if !(enableStatus == int(UserStatusEnable) || enableStatus == int(UserStatusDisable) || enableStatus == int(UserStatusDestroy)) {
return fmt.Errorf("非法启用状态")
}
user.EnableStatus = enableStatus
return nil
}
func (user *User) UserOrgIds() []int64 {
var orgIds = make([]int64, len(user.UserOrg))
for i := range user.UserOrg {
orgIds[i] = user.UserOrg[i].OrgId
}
return orgIds
}
func (user *User) UserRoleIds() []int64 {
var roleIds = make([]int64, len(user.UserRole))
for i := range user.UserRole {
roleIds[i] = user.UserRole[i].RoleId
}
return roleIds
}
// ExistsUserRole 用户是否已经拥有角色
//
// roleId 角色ID
func (user *User) ExistsUserRole(roleId int64) bool {
for i := range user.UserRole {
if user.UserRole[i].RoleId == roleId {
return true
}
}
return false
}
// RemoveUserRole 移除用户拥有的角色
//
// roleId 角色ID
func (user *User) RemoveUserRole(roleId int64) bool {
var res bool = false
if user.ExistsUserRole(roleId) {
var roles []*Role
for i := range user.UserRole {
if user.UserRole[i].RoleId != roleId {
roles = append(roles, user.UserRole[i])
} else {
res = true
}
}
user.UserRole = roles
return res
}
return res
}
/***** 2.缓存模块 *****/
func (user *User) CacheKeyFunc() string {
if constant.DISABLE_REPOSITORY_CACHE {
return ""
}
if user.UserId == 0 {
return ""
}
return fmt.Sprintf("%v:cache:users:id:%v", constant.CACHE_PREFIX, user.UserId)
}