1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
package org.kuali.student.security.spring; |
17 | |
|
18 | |
import java.util.ArrayList; |
19 | |
|
20 | |
import org.kuali.rice.core.config.Config; |
21 | |
import org.kuali.rice.core.config.ConfigContext; |
22 | |
import org.kuali.rice.kim.bo.entity.dto.KimPrincipalInfo; |
23 | |
import org.kuali.rice.kim.service.IdentityService; |
24 | |
import org.kuali.rice.kim.service.RoleService; |
25 | |
import org.kuali.student.common.rice.StudentIdentityConstants; |
26 | |
import org.kuali.student.common.util.security.UserWithId; |
27 | |
import org.springframework.security.GrantedAuthority; |
28 | |
import org.springframework.security.userdetails.UserDetails; |
29 | |
import org.springframework.security.userdetails.UserDetailsService; |
30 | |
import org.springframework.security.userdetails.UsernameNotFoundException; |
31 | |
import org.springframework.security.util.AuthorityUtils; |
32 | |
|
33 | |
|
34 | |
|
35 | |
|
36 | |
|
37 | |
|
38 | |
|
39 | |
|
40 | 0 | public class KSDefaultUserDetailsService implements UserDetailsService{ |
41 | |
|
42 | |
|
43 | 0 | protected boolean enabled = true; |
44 | 0 | protected boolean nonlocked = true; |
45 | |
|
46 | 0 | protected Config config = null; |
47 | |
|
48 | 0 | protected IdentityService identityService = null; |
49 | 0 | protected RoleService roleService = null; |
50 | |
|
51 | |
|
52 | |
|
53 | |
|
54 | |
public UserDetails loadUserByUsername(String username) throws UsernameNotFoundException { |
55 | |
String password; |
56 | |
|
57 | 0 | if(username==null || username.equals("")){ |
58 | 0 | throw new UsernameNotFoundException("Username cannot be null or empty"); |
59 | |
} |
60 | |
|
61 | |
|
62 | 0 | password = username; |
63 | |
|
64 | 0 | KimPrincipalInfo kimPrincipalInfo = null; |
65 | 0 | kimPrincipalInfo = identityService.getPrincipalByPrincipalName(username); |
66 | |
|
67 | |
String userId; |
68 | 0 | if (null != kimPrincipalInfo) { |
69 | 0 | username = kimPrincipalInfo.getPrincipalName(); |
70 | 0 | userId = kimPrincipalInfo.getPrincipalId(); |
71 | |
} else { |
72 | |
|
73 | |
|
74 | |
|
75 | |
|
76 | 0 | throw new KimUserNotFoundException("Invalid username or password"); |
77 | |
} |
78 | 0 | UserWithId ksuser = new UserWithId(username, password, enabled, true, true, nonlocked, getGrantedAuthority(userId)); |
79 | 0 | ksuser.setUserId(userId); |
80 | |
|
81 | 0 | return ksuser; |
82 | |
} |
83 | |
|
84 | |
protected GrantedAuthority[] getGrantedAuthority(String principalId){ |
85 | |
|
86 | 0 | String springRoles = ""; |
87 | |
|
88 | 0 | ArrayList<String> adminRoleIdList = new ArrayList<String>(); |
89 | 0 | String adminRoleId = roleService.getRoleByName(StudentIdentityConstants.KS_NAMESPACE_CD, StudentIdentityConstants.KSCM_ADMIN_ROLE_NAME).getRoleId(); |
90 | 0 | adminRoleIdList.add(adminRoleId); |
91 | |
|
92 | 0 | ArrayList<String> ksUserRoleIdList = new ArrayList<String>(); |
93 | 0 | String ksUserRoleId = roleService.getRoleByName(StudentIdentityConstants.KS_NAMESPACE_CD, StudentIdentityConstants.KSCM_USER_ROLE_NAME).getRoleId(); |
94 | 0 | ksUserRoleIdList.add(ksUserRoleId); |
95 | |
|
96 | 0 | if(roleService.principalHasRole(principalId, adminRoleIdList, null)){ |
97 | 0 | springRoles += "ROLE_KS_ADMIN"; |
98 | |
} |
99 | 0 | if(roleService.principalHasRole(principalId, ksUserRoleIdList, null)){ |
100 | 0 | if(!"".equals(springRoles)){ |
101 | 0 | springRoles += ", "; |
102 | |
} |
103 | 0 | springRoles += "ROLE_KS_USER"; |
104 | |
} |
105 | |
|
106 | 0 | if (enableBackdoorLogin()) { |
107 | 0 | if(!"".equals(springRoles)){ |
108 | 0 | springRoles += ", "; |
109 | |
} |
110 | 0 | springRoles += "ROLE_KS_BACKDOOR"; |
111 | |
} |
112 | |
|
113 | 0 | return AuthorityUtils.commaSeparatedStringToAuthorityArray(springRoles); |
114 | |
|
115 | |
} |
116 | |
|
117 | |
public Config getConfig() { |
118 | 0 | if(this.config == null){ |
119 | 0 | this.config = ConfigContext.getCurrentContextConfig(); |
120 | |
} |
121 | 0 | return config; |
122 | |
} |
123 | |
|
124 | |
public void setConfig(Config config) { |
125 | 0 | this.config = config; |
126 | 0 | } |
127 | |
|
128 | |
public void setIdentityService(IdentityService identityService) { |
129 | 0 | this.identityService = identityService; |
130 | 0 | } |
131 | |
|
132 | |
protected boolean enableBackdoorLogin() { |
133 | 0 | return "true".equalsIgnoreCase(getConfig().getProperty("enableKSBackdoorLogin")); |
134 | |
} |
135 | |
|
136 | |
public RoleService getRoleService() { |
137 | 0 | return roleService; |
138 | |
} |
139 | |
|
140 | |
public void setRoleService(RoleService roleService) { |
141 | 0 | this.roleService = roleService; |
142 | 0 | } |
143 | |
|
144 | |
public IdentityService getIdentityService() { |
145 | 0 | return identityService; |
146 | |
} |
147 | |
} |