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 org.kuali.rice.core.config.Config; |
19 |
|
import org.kuali.rice.core.config.ConfigContext; |
20 |
|
import org.kuali.rice.kim.bo.entity.dto.KimPrincipalInfo; |
21 |
|
import org.kuali.rice.kim.service.IdentityService; |
22 |
|
import org.kuali.student.common.util.security.UserWithId; |
23 |
|
import org.springframework.security.GrantedAuthority; |
24 |
|
import org.springframework.security.providers.UsernamePasswordAuthenticationToken; |
25 |
|
import org.springframework.security.userdetails.User; |
26 |
|
import org.springframework.security.userdetails.UserDetails; |
27 |
|
import org.springframework.security.userdetails.UserDetailsService; |
28 |
|
import org.springframework.security.userdetails.UsernameNotFoundException; |
29 |
|
import org.springframework.security.util.AuthorityUtils; |
30 |
|
|
31 |
|
|
32 |
|
|
33 |
|
|
34 |
|
@author |
35 |
|
|
36 |
|
|
|
|
| 0% |
Uncovered Elements: 51 (51) |
Complexity: 12 |
Complexity Density: 0.34 |
|
37 |
|
public class KSRiceDefaultUserDetailsService implements UserDetailsService{ |
38 |
|
|
39 |
|
private UserWithId ksuser = null; |
40 |
|
private String password = ""; |
41 |
|
|
42 |
|
private boolean enabled = true; |
43 |
|
private boolean nonlocked = true; |
44 |
|
|
45 |
|
private IdentityService identityService = null; |
46 |
|
|
47 |
|
|
48 |
|
|
49 |
|
private GrantedAuthority[] authorities = |
50 |
|
AuthorityUtils.commaSeparatedStringToAuthorityArray("ROLE_KS_ADMIN, ROLE_KS_USER"); |
51 |
|
|
|
|
| 0% |
Uncovered Elements: 22 (22) |
Complexity: 5 |
Complexity Density: 0.31 |
|
52 |
0
|
public UserDetails loadUserByUsername(String username) throws UsernameNotFoundException {... |
53 |
0
|
if(username==null || username.equals("")){ |
54 |
0
|
throw new UsernameNotFoundException("Username cannot be null or empty"); |
55 |
|
} |
56 |
|
|
57 |
0
|
Config config = ConfigContext.getCurrentContextConfig(); |
58 |
0
|
String ksIgnoreRiceLogin = config.getProperty("ks.ignore.rice.login"); |
59 |
|
|
60 |
|
|
61 |
|
|
62 |
0
|
if(Boolean.valueOf(ksIgnoreRiceLogin) == true){ |
63 |
0
|
return new User(username, password, enabled, true, true, nonlocked, authorities); |
64 |
|
} |
65 |
|
|
66 |
0
|
KimPrincipalInfo kimPrincipalInfo = null; |
67 |
0
|
kimPrincipalInfo = identityService.getPrincipalByPrincipalName(username); |
68 |
|
|
69 |
0
|
String userId; |
70 |
0
|
if (null != kimPrincipalInfo) { |
71 |
0
|
username = kimPrincipalInfo.getPrincipalName(); |
72 |
0
|
userId = kimPrincipalInfo.getPrincipalId(); |
73 |
|
} else { |
74 |
|
|
75 |
|
|
76 |
|
|
77 |
0
|
throw new KimUserNotFoundException("Invalid username or password"); |
78 |
|
} |
79 |
0
|
ksuser = new UserWithId(username, password, enabled, true, true, nonlocked, authorities); |
80 |
0
|
ksuser.setUserId(userId); |
81 |
0
|
return ksuser; |
82 |
|
} |
83 |
|
|
|
|
| 0% |
Uncovered Elements: 23 (23) |
Complexity: 5 |
Complexity Density: 0.29 |
|
84 |
0
|
public UserDetails loadUserByUsernameAndToken(String username, UsernamePasswordAuthenticationToken authentication) throws UsernameNotFoundException {... |
85 |
0
|
if(username==null || username.equals("")){ |
86 |
0
|
throw new UsernameNotFoundException("Username cannot be null or empty"); |
87 |
|
} |
88 |
|
|
89 |
0
|
Config config = ConfigContext.getCurrentContextConfig(); |
90 |
0
|
String ksIgnoreRiceLogin = config.getProperty("ks.ignore.rice.login"); |
91 |
|
|
92 |
|
|
93 |
|
|
94 |
0
|
if(Boolean.valueOf(ksIgnoreRiceLogin) == true){ |
95 |
0
|
return null; |
96 |
|
} |
97 |
|
|
98 |
0
|
password = (String)authentication.getCredentials(); |
99 |
|
|
100 |
0
|
KimPrincipalInfo kimPrincipalInfo = null; |
101 |
|
|
102 |
0
|
kimPrincipalInfo = identityService.getPrincipalByPrincipalNameAndPassword(username, password); |
103 |
0
|
String userId; |
104 |
0
|
if (null != kimPrincipalInfo) { |
105 |
0
|
username = kimPrincipalInfo.getPrincipalName(); |
106 |
0
|
userId = kimPrincipalInfo.getPrincipalId(); |
107 |
|
} else { |
108 |
|
|
109 |
|
|
110 |
|
|
111 |
|
|
112 |
0
|
throw new KimUserNotFoundException("Invalid username or password"); |
113 |
|
} |
114 |
0
|
ksuser = new UserWithId(username, password, enabled, true, true, nonlocked, authorities); |
115 |
0
|
ksuser.setUserId(userId); |
116 |
0
|
return ksuser; |
117 |
|
} |
118 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
119 |
0
|
public void setAuthorities(String[] roles) {... |
120 |
0
|
this.authorities = AuthorityUtils.stringArrayToAuthorityArray(roles); |
121 |
|
} |
122 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
123 |
0
|
public void setIdentityService(IdentityService identityService) {... |
124 |
0
|
this.identityService = identityService; |
125 |
|
} |
126 |
|
} |