懒羊羊
2023-08-30 1ac2bc1590406d9babec036e154d8d08f34a6aa1
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
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
/**
 * Copyright 2018-2020 stylefeng & fengshuonan (https://gitee.com/stylefeng)
 * <p>
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * <p>
 * http://www.apache.org/licenses/LICENSE-2.0
 * <p>
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package cn.stylefeng.guns.base.auth.model;
 
import cn.stylefeng.roses.core.util.ToolUtil;
import lombok.Data;
import org.springframework.security.core.userdetails.UserDetails;
 
import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import java.util.Set;
 
/**
 * 当前登录用户信息
 *
 * @author fengshuonan
 * @Date 2019/7/18 22:29
 */
@Data
public class LoginUser implements UserDetails, Serializable {
 
    private static final long serialVersionUID = 1L;
 
    /**
     * 用户主键ID
     */
    private Long id;
 
    /**
     * 账号
     */
    private String account;
 
    /**
     * 姓名
     */
    private String name;
 
    /**
     * 邮箱
     */
    private String email;
 
    /**
     * 头像
     */
    private String avatar;
 
    /**
     * 部门id
     */
    private Long deptId;
 
    /**
     * 角色集
     */
    private List<Long> roleList;
 
    /**
     * 部门名称
     */
    private String deptName;
 
    /**
     * 角色名称集
     */
    private List<String> roleNames;
 
    public List<Long> getRoleList() {
        return roleList;
    }
 
    public void setRoleList(List<Long> roleList) {
        this.roleList = roleList;
    }
 
    public String getDeptName() {
        return deptName;
    }
 
    public void setDeptName(String deptName) {
        this.deptName = deptName;
    }
 
    public List<String> getRoleNames() {
        return roleNames;
    }
 
    public void setRoleNames(List<String> roleNames) {
        this.roleNames = roleNames;
    }
 
    public List<String> getRoleTips() {
        return roleTips;
    }
 
    public void setRoleTips(List<String> roleTips) {
        this.roleTips = roleTips;
    }
 
    public List<Map<String, Object>> getSystemTypes() {
        return systemTypes;
    }
 
    public void setSystemTypes(List<Map<String, Object>> systemTypes) {
        this.systemTypes = systemTypes;
    }
 
    public Set<String> getPermissions() {
        return permissions;
    }
 
    public void setPermissions(Set<String> permissions) {
        this.permissions = permissions;
    }
 
    public String getTenantCode() {
        return tenantCode;
    }
 
    public void setTenantCode(String tenantCode) {
        this.tenantCode = tenantCode;
    }
 
    public String getTenantDataSourceName() {
        return tenantDataSourceName;
    }
 
    public void setTenantDataSourceName(String tenantDataSourceName) {
        this.tenantDataSourceName = tenantDataSourceName;
    }
 
    /**
     * 角色备注(code)
     */
    private List<String> roleTips;
 
    /**
     * 系统标识集合
     */
    private List<Map<String, Object>> systemTypes;
 
    /**
     * 拥有的权限
     */
    private Set<String> permissions;
 
    /**
     * 租户编码
     */
    private String tenantCode;
 
    public static long getSerialVersionUID() {
        return serialVersionUID;
    }
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public String getAccount() {
        return account;
    }
 
    public void setAccount(String account) {
        this.account = account;
    }
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public String getEmail() {
        return email;
    }
 
    public void setEmail(String email) {
        this.email = email;
    }
 
    public String getAvatar() {
        return avatar;
    }
 
    public void setAvatar(String avatar) {
        this.avatar = avatar;
    }
 
    public Long getDeptId() {
        return deptId;
    }
 
    public void setDeptId(Long deptId) {
        this.deptId = deptId;
    }
 
    /**
     * 租户的数据源名称
     */
    private String tenantDataSourceName;
 
    @Override
    public List<MyRole> getAuthorities() {
        ArrayList<MyRole> grantedAuthorities = new ArrayList<>();
        if (ToolUtil.isNotEmpty(this.roleNames)) {
            for (String roleName : this.roleNames) {
                grantedAuthorities.add(new MyRole(roleName));
            }
        }
        return grantedAuthorities;
    }
 
    @Override
    public String getPassword() {
        return null;
    }
 
    @Override
    public String getUsername() {
        return this.account;
    }
 
    @Override
    public boolean isAccountNonExpired() {
        //能生成loginUser就是jwt解析成功,没锁定
        return true;
    }
 
    @Override
    public boolean isAccountNonLocked() {
        //能生成loginUser就是jwt解析成功,没锁定
        return true;
    }
 
    @Override
    public boolean isCredentialsNonExpired() {
        //能生成loginUser就是jwt解析成功,没锁定
        return true;
    }
 
    @Override
    public boolean isEnabled() {
        //能生成loginUser就是jwt解析成功,没锁定
        return true;
    }
}