1 |
|
|
2 |
|
|
3 |
|
|
4 |
|
|
5 |
|
|
6 |
|
|
7 |
|
|
8 |
|
|
9 |
|
|
10 |
|
|
11 |
|
|
12 |
|
|
13 |
|
|
14 |
|
|
15 |
|
|
16 |
|
package org.kuali.rice.kew.identity.service.impl; |
17 |
|
|
18 |
|
import org.apache.commons.logging.Log; |
19 |
|
import org.apache.commons.logging.LogFactory; |
20 |
|
import org.kuali.rice.core.api.exception.RiceRuntimeException; |
21 |
|
import org.kuali.rice.kew.actionrequest.KimPrincipalRecipient; |
22 |
|
import org.kuali.rice.kew.actionrequest.Recipient; |
23 |
|
import org.kuali.rice.kew.identity.service.IdentityHelperService; |
24 |
|
import org.kuali.rice.kew.identity.PrincipalName; |
25 |
|
import org.kuali.rice.kew.user.EmplId; |
26 |
|
import org.kuali.rice.kew.user.UserId; |
27 |
|
import org.kuali.rice.kew.user.WorkflowUserId; |
28 |
|
import org.kuali.rice.kew.util.KEWConstants; |
29 |
|
import org.kuali.rice.kew.workgroup.GroupId; |
30 |
|
import org.kuali.rice.kew.workgroup.GroupNameId; |
31 |
|
import org.kuali.rice.kew.workgroup.WorkflowGroupId; |
32 |
|
import org.kuali.rice.kim.bo.Group; |
33 |
|
import org.kuali.rice.kim.bo.Person; |
34 |
|
import org.kuali.rice.kim.bo.entity.KimPrincipal; |
35 |
|
import org.kuali.rice.kim.service.KIMServiceLocator; |
36 |
|
|
37 |
|
|
38 |
|
|
39 |
|
@author |
40 |
|
|
41 |
|
|
|
|
| 0% |
Uncovered Elements: 110 (110) |
Complexity: 32 |
Complexity Density: 0.52 |
|
42 |
|
public class IdentityHelperServiceImpl implements IdentityHelperService { |
43 |
|
|
44 |
|
private static final Log logger = LogFactory.getLog(IdentityHelperServiceImpl.class); |
45 |
|
|
|
|
| 0% |
Uncovered Elements: 10 (10) |
Complexity: 3 |
Complexity Density: 0.5 |
|
46 |
0
|
public String getIdForPrincipalName(String principalName) {... |
47 |
0
|
if (principalName == null) { |
48 |
0
|
throw new IllegalArgumentException("Can't lookup a principal ID for a null principal name."); |
49 |
|
} |
50 |
0
|
KimPrincipal principal = KIMServiceLocator.getIdentityManagementService().getPrincipalByPrincipalName(principalName); |
51 |
0
|
if (principal == null) { |
52 |
0
|
throw new RiceRuntimeException("Given principal name of '" + principalName + "' was invalid. Failed to lookup a corresponding principal ID."); |
53 |
|
} |
54 |
0
|
return principal.getPrincipalId(); |
55 |
|
} |
56 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
57 |
0
|
public void validatePrincipalId(String principalId) {... |
58 |
|
|
59 |
0
|
getPrincipal(principalId); |
60 |
|
} |
61 |
|
|
|
|
| 0% |
Uncovered Elements: 6 (6) |
Complexity: 2 |
Complexity Density: 0.5 |
|
62 |
0
|
public String getIdForGroupName(String namespace, String groupName) {... |
63 |
0
|
Group group = KIMServiceLocator.getIdentityManagementService().getGroupByName(namespace, groupName); |
64 |
0
|
if (group == null) { |
65 |
0
|
throw new RiceRuntimeException("Given namespace of '" + namespace + "' and name of '" + groupName + "' was invalid. Failed to lookup a corresponding group ID."); |
66 |
|
} |
67 |
0
|
return group.getGroupId(); |
68 |
|
} |
69 |
|
|
70 |
|
|
|
|
| 0% |
Uncovered Elements: 2 (2) |
Complexity: 1 |
Complexity Density: 0.5 |
|
71 |
0
|
public Recipient getPrincipalRecipient(String principalId) {... |
72 |
0
|
KimPrincipal principal = getPrincipal(principalId); |
73 |
0
|
return new KimPrincipalRecipient(principal); |
74 |
|
} |
75 |
|
|
|
|
| 0% |
Uncovered Elements: 6 (6) |
Complexity: 2 |
Complexity Density: 0.5 |
|
76 |
0
|
public KimPrincipal getPrincipal(String principalId) {... |
77 |
0
|
KimPrincipal principal = KIMServiceLocator.getIdentityManagementService().getPrincipal(principalId); |
78 |
0
|
if (principal == null) { |
79 |
0
|
throw new RiceRuntimeException("Could not locate a principal with the given principalId of " + principalId); |
80 |
|
} |
81 |
0
|
return principal; |
82 |
|
} |
83 |
|
|
|
|
| 0% |
Uncovered Elements: 6 (6) |
Complexity: 2 |
Complexity Density: 0.5 |
|
84 |
0
|
public KimPrincipal getPrincipalByPrincipalName(String principalName) {... |
85 |
0
|
KimPrincipal principal = KIMServiceLocator.getIdentityManagementService().getPrincipalByPrincipalName(principalName); |
86 |
0
|
if (principal == null) { |
87 |
0
|
throw new RiceRuntimeException("Could not locate a principal with the given principalName of " + principalName); |
88 |
|
} |
89 |
0
|
return principal; |
90 |
|
} |
91 |
|
|
|
|
| 0% |
Uncovered Elements: 6 (6) |
Complexity: 2 |
Complexity Density: 0.5 |
|
92 |
0
|
public Group getGroupByName(String namespaceCode, String name) {... |
93 |
0
|
Group group = KIMServiceLocator.getIdentityManagementService().getGroupByName(namespaceCode, name); |
94 |
0
|
if (group == null) { |
95 |
0
|
throw new RiceRuntimeException("Could not locate a group with the given namspace of '" + namespaceCode + "' and group name of '" + name + "'"); |
96 |
|
} |
97 |
0
|
return group; |
98 |
|
} |
99 |
|
|
|
|
| 0% |
Uncovered Elements: 6 (6) |
Complexity: 2 |
Complexity Density: 0.5 |
|
100 |
0
|
public Person getPerson(String principalId) {... |
101 |
0
|
Person person = KIMServiceLocator.getPersonService().getPerson(principalId); |
102 |
0
|
if (person == null) { |
103 |
0
|
throw new RiceRuntimeException("Could not locate a person with the given principal id of " + principalId); |
104 |
|
} |
105 |
0
|
return person; |
106 |
|
} |
107 |
|
|
|
|
| 0% |
Uncovered Elements: 6 (6) |
Complexity: 2 |
Complexity Density: 0.5 |
|
108 |
0
|
public Person getPersonByPrincipalName(String principalName) {... |
109 |
0
|
Person person = KIMServiceLocator.getPersonService().getPersonByPrincipalName(principalName); |
110 |
0
|
if (person == null) { |
111 |
0
|
throw new RiceRuntimeException("Could not locate a person with the given principal name of " + principalName); |
112 |
|
} |
113 |
0
|
return person; |
114 |
|
} |
115 |
|
|
|
|
| 0% |
Uncovered Elements: 6 (6) |
Complexity: 2 |
Complexity Density: 0.5 |
|
116 |
0
|
public Person getPersonByEmployeeId(String employeeId) {... |
117 |
0
|
Person person = KIMServiceLocator.getPersonService().getPersonByEmployeeId(employeeId); |
118 |
0
|
if (person == null) { |
119 |
0
|
throw new RiceRuntimeException("Could not locate a person with the given employee id of " + employeeId); |
120 |
|
} |
121 |
0
|
return person; |
122 |
|
} |
123 |
|
|
124 |
|
|
|
|
| 0% |
Uncovered Elements: 6 (6) |
Complexity: 2 |
Complexity Density: 0.5 |
|
125 |
0
|
public Group getGroup(String groupId) {... |
126 |
0
|
Group group = KIMServiceLocator.getIdentityManagementService().getGroup(groupId); |
127 |
0
|
if (group == null) { |
128 |
0
|
throw new RiceRuntimeException("Could not locate a group with the given groupId of " + groupId); |
129 |
|
} |
130 |
0
|
return group; |
131 |
|
} |
132 |
|
|
|
|
| 0% |
Uncovered Elements: 13 (13) |
Complexity: 5 |
Complexity Density: 0.71 |
|
133 |
0
|
public Group getGroup(GroupId groupId) {... |
134 |
0
|
if (groupId == null || groupId.isEmpty()) { |
135 |
0
|
return null; |
136 |
0
|
} else if (groupId instanceof WorkflowGroupId) { |
137 |
0
|
return KIMServiceLocator.getIdentityManagementService().getGroup(""+((WorkflowGroupId)groupId).getGroupId()); |
138 |
0
|
} else if (groupId instanceof GroupNameId) { |
139 |
0
|
return KIMServiceLocator.getIdentityManagementService().getGroupByName(((GroupNameId)groupId).getNamespace(), ((GroupNameId)groupId).getNameId()); |
140 |
|
} |
141 |
0
|
throw new IllegalArgumentException("Invalid GroupId type was passed: " + groupId); |
142 |
|
} |
143 |
|
|
|
|
| 0% |
Uncovered Elements: 21 (21) |
Complexity: 5 |
Complexity Density: 0.38 |
|
144 |
0
|
public KimPrincipal getPrincipal(UserId userId) {... |
145 |
0
|
if (userId == null) { |
146 |
0
|
return null; |
147 |
0
|
} else if (userId instanceof WorkflowUserId) { |
148 |
0
|
String principalId = ((WorkflowUserId)userId).getWorkflowId(); |
149 |
0
|
return KIMServiceLocator.getIdentityManagementService().getPrincipal(principalId); |
150 |
0
|
} else if (userId instanceof PrincipalName) { |
151 |
0
|
String principalName = ((PrincipalName)userId).getId(); |
152 |
0
|
return KIMServiceLocator.getIdentityManagementService().getPrincipalByPrincipalName(principalName); |
153 |
0
|
} else if (userId instanceof EmplId) { |
154 |
0
|
String employeeId = ((EmplId)userId).getEmplId(); |
155 |
0
|
Person person = getPersonByEmployeeId(employeeId); |
156 |
0
|
return getPrincipal(person.getPrincipalId()); |
157 |
|
} |
158 |
0
|
throw new IllegalArgumentException("Invalid UserIdDTO type was passed: " + userId); |
159 |
|
} |
160 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
161 |
0
|
public KimPrincipal getSystemPrincipal() {... |
162 |
0
|
return getPrincipalByPrincipalName(KEWConstants.SYSTEM_USER); |
163 |
|
} |
164 |
|
|
165 |
|
} |