1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
package org.kuali.rice.kim.workflow.attribute; |
17 | |
|
18 | |
import org.apache.commons.lang.StringUtils; |
19 | |
import org.apache.log4j.Logger; |
20 | |
import org.kuali.rice.core.api.mo.common.Attributes; |
21 | |
import org.kuali.rice.core.util.AttributeSet; |
22 | |
import org.kuali.rice.kew.engine.RouteContext; |
23 | |
import org.kuali.rice.kim.api.group.Group; |
24 | |
import org.kuali.rice.kim.api.services.KimApiServiceLocator; |
25 | |
import org.kuali.rice.kim.api.type.KimType; |
26 | |
import org.kuali.rice.kim.api.type.KimTypeInfoService; |
27 | |
import org.kuali.rice.kim.bo.role.dto.RoleMembershipInfo; |
28 | |
import org.kuali.rice.kim.bo.ui.KimDocumentRoleMember; |
29 | |
import org.kuali.rice.kim.bo.ui.PersonDocumentGroup; |
30 | |
import org.kuali.rice.kim.bo.ui.PersonDocumentRole; |
31 | |
import org.kuali.rice.kim.document.IdentityManagementGroupDocument; |
32 | |
import org.kuali.rice.kim.document.IdentityManagementPersonDocument; |
33 | |
import org.kuali.rice.kim.document.IdentityManagementRoleDocument; |
34 | |
import org.kuali.rice.kim.api.group.GroupService; |
35 | |
import org.kuali.rice.kim.service.KIMServiceLocatorWeb; |
36 | |
import org.kuali.rice.kim.service.RoleService; |
37 | |
import org.kuali.rice.kim.service.support.KimTypeService; |
38 | |
import org.kuali.rice.kim.util.KimConstants; |
39 | |
import org.kuali.rice.krad.document.Document; |
40 | |
import org.kuali.rice.krad.workflow.attribute.QualifierResolverBase; |
41 | |
|
42 | |
import java.util.ArrayList; |
43 | |
import java.util.Collections; |
44 | |
import java.util.HashMap; |
45 | |
import java.util.List; |
46 | |
import java.util.Map; |
47 | |
|
48 | |
|
49 | |
|
50 | |
|
51 | |
|
52 | |
|
53 | |
|
54 | 0 | public class KimTypeQualifierResolver extends QualifierResolverBase { |
55 | 0 | private static final Logger LOG = Logger.getLogger(KimTypeQualifierResolver.class); |
56 | |
|
57 | |
protected static final String GROUP_ROUTE_LEVEL = "GroupType"; |
58 | |
protected static final String ROLE_ROUTE_LEVEL = "RoleType"; |
59 | |
|
60 | |
private static KimTypeInfoService kimTypeInfoService; |
61 | |
private static GroupService groupService; |
62 | |
private static RoleService roleService; |
63 | |
|
64 | 0 | protected static Map<String,KimTypeService> typeServices = new HashMap<String, KimTypeService>(); |
65 | |
|
66 | |
|
67 | |
|
68 | |
|
69 | |
|
70 | |
|
71 | |
public List<AttributeSet> resolve(RouteContext context) { |
72 | 0 | String routeLevel = context.getNodeInstance().getName(); |
73 | 0 | Document document = getDocument(context); |
74 | 0 | List<AttributeSet> qualifiers = new ArrayList<AttributeSet>(); |
75 | 0 | String customDocTypeName = null; |
76 | |
|
77 | 0 | if ( document instanceof IdentityManagementGroupDocument ) { |
78 | 0 | customDocTypeName = handleGroupDocument(qualifiers, (IdentityManagementGroupDocument)document, routeLevel); |
79 | 0 | } else if ( document instanceof IdentityManagementRoleDocument ) { |
80 | 0 | customDocTypeName = handleRoleDocument(qualifiers, (IdentityManagementRoleDocument)document, routeLevel); |
81 | 0 | } else if ( document instanceof IdentityManagementPersonDocument ) { |
82 | 0 | customDocTypeName = handlePersonDocument(qualifiers, (IdentityManagementPersonDocument)document, routeLevel); |
83 | |
} |
84 | |
|
85 | 0 | decorateWithCommonQualifiers(qualifiers, context, customDocTypeName); |
86 | |
|
87 | 0 | return qualifiers; |
88 | |
} |
89 | |
|
90 | |
protected KimTypeService getTypeService( String typeId ) { |
91 | 0 | KimTypeService typeService = typeServices.get(typeId); |
92 | 0 | if ( typeService == null ) { |
93 | 0 | KimType typeInfo = getKimTypeInfoService().getKimType(typeId); |
94 | 0 | if ( typeInfo != null ) { |
95 | 0 | typeService = KIMServiceLocatorWeb.getKimTypeService(typeInfo); |
96 | 0 | typeServices.put(typeId, typeService); |
97 | |
} else { |
98 | 0 | LOG.warn( "Unable to retrieve KIM Type Info object for id: " + typeId ); |
99 | |
} |
100 | |
} |
101 | 0 | return typeService; |
102 | |
} |
103 | |
|
104 | |
@Deprecated |
105 | |
protected void putMatchingAttributesIntoQualifier( AttributeSet qualifier, AttributeSet itemAttributes, List<String> routingAttributes ) { |
106 | 0 | if ( routingAttributes != null && !routingAttributes.isEmpty() ) { |
107 | |
|
108 | 0 | for ( String attribName : routingAttributes ) { |
109 | 0 | qualifier.put( attribName, itemAttributes.get(attribName)); |
110 | |
} |
111 | |
} |
112 | 0 | } |
113 | |
|
114 | |
protected void putMatchingAttributesIntoQualifier( AttributeSet qualifier, Attributes itemAttributes, List<String> routingAttributes ) { |
115 | 0 | if ( routingAttributes != null && !routingAttributes.isEmpty() ) { |
116 | |
|
117 | 0 | for ( String attribName : routingAttributes ) { |
118 | 0 | qualifier.put( attribName, itemAttributes.get(attribName)); |
119 | |
} |
120 | |
} |
121 | 0 | } |
122 | |
|
123 | |
protected String handleGroupDocument( List<AttributeSet> qualifiers, IdentityManagementGroupDocument groupDoc, String routeLevel ) { |
124 | |
|
125 | 0 | String typeId = groupDoc.getGroupTypeId(); |
126 | 0 | qualifiers.add( getGroupQualifier(groupDoc.getGroupId(), typeId, groupDoc.getQualifiersAsAttributes(), routeLevel) ); |
127 | |
|
128 | 0 | return null; |
129 | |
} |
130 | |
|
131 | |
protected String handleRoleDocument( List<AttributeSet> qualifiers, IdentityManagementRoleDocument roleDoc, String routeLevel ) { |
132 | 0 | String customDocTypeName = null; |
133 | |
|
134 | |
|
135 | |
|
136 | 0 | String typeId = roleDoc.getRoleTypeId(); |
137 | 0 | KimTypeService typeService = getTypeService(typeId); |
138 | 0 | if ( typeService != null ) { |
139 | |
|
140 | |
|
141 | 0 | List<RoleMembershipInfo> currentRoleMembers = KimApiServiceLocator.getRoleService().getRoleMembers( Collections.singletonList( roleDoc.getRoleId() ), null ); |
142 | |
|
143 | 0 | for ( KimDocumentRoleMember rm : roleDoc.getMembers() ) { |
144 | 0 | boolean foundMember = false; |
145 | 0 | for ( RoleMembershipInfo rmi : currentRoleMembers ) { |
146 | 0 | if ( rmi.getRoleMemberId().equals( rm.getRoleMemberId() ) ) { |
147 | 0 | foundMember = true; |
148 | 0 | if ( !rm.isActive() ) { |
149 | |
|
150 | |
|
151 | 0 | qualifiers.add( getRoleQualifier(rm.getRoleId(), typeId, typeService, rm.getQualifierAsAttributeSet(), routeLevel) ); |
152 | |
} |
153 | |
break; |
154 | |
} |
155 | |
} |
156 | 0 | if ( !foundMember ) { |
157 | 0 | qualifiers.add( getRoleQualifier(rm.getRoleId(), typeId, typeService, rm.getQualifierAsAttributeSet(), routeLevel) ); |
158 | |
} |
159 | 0 | } |
160 | |
|
161 | 0 | customDocTypeName = typeService.getWorkflowDocumentTypeName(); |
162 | |
} |
163 | 0 | return customDocTypeName; |
164 | |
} |
165 | |
|
166 | |
protected String handlePersonDocument( List<AttributeSet> qualifiers, IdentityManagementPersonDocument personDoc, String routeLevel ) { |
167 | |
|
168 | 0 | String principalId = personDoc.getPrincipalId(); |
169 | 0 | if ( GROUP_ROUTE_LEVEL.equals(routeLevel) ) { |
170 | |
|
171 | |
|
172 | |
|
173 | 0 | List<String> currentGroups = getGroupService().getDirectGroupIdsForPrincipal(principalId); |
174 | 0 | List<PersonDocumentGroup> groups = personDoc.getGroups(); |
175 | 0 | for ( PersonDocumentGroup group : groups ) { |
176 | |
|
177 | 0 | if ( group.isActive() && !currentGroups.contains( group.getGroupId() ) ) { |
178 | |
|
179 | 0 | Group kimGroup = getGroupService().getGroup(group.getGroupId()); |
180 | 0 | qualifiers.add( getGroupQualifier( group.getGroupId(), kimGroup.getKimTypeId(), kimGroup.getAttributes(), routeLevel ) ); |
181 | 0 | } |
182 | |
} |
183 | |
|
184 | |
|
185 | 0 | for ( String groupId : currentGroups ) { |
186 | 0 | for ( PersonDocumentGroup group : groups ) { |
187 | 0 | if ( !group.isActive() ) { |
188 | 0 | Group kimGroup = getGroupService().getGroup(groupId); |
189 | 0 | qualifiers.add( getGroupQualifier( groupId, kimGroup.getKimTypeId(), kimGroup.getAttributes(), routeLevel ) ); |
190 | 0 | } |
191 | |
} |
192 | |
} |
193 | 0 | } else if ( ROLE_ROUTE_LEVEL.equals(routeLevel) ) { |
194 | |
|
195 | 0 | for ( PersonDocumentRole pdr : personDoc.getRoles() ) { |
196 | 0 | KimTypeService typeService = getTypeService(pdr.getKimTypeId()); |
197 | 0 | for ( KimDocumentRoleMember rm : pdr.getRolePrncpls() ) { |
198 | 0 | boolean foundMember = false; |
199 | 0 | for ( RoleMembershipInfo rmi : getRoleService().getRoleMembers( Collections.singletonList( rm.getRoleId() ), null ) ) { |
200 | 0 | if ( StringUtils.equals( rmi.getRoleMemberId(), rm.getRoleMemberId() ) ) { |
201 | 0 | foundMember = true; |
202 | 0 | if ( !rm.isActive() ) { |
203 | |
|
204 | |
|
205 | 0 | qualifiers.add( getRoleQualifier(rm.getRoleId(), pdr.getKimRoleType().getId(), typeService, rm.getQualifierAsAttributeSet(), routeLevel) ); |
206 | |
} |
207 | |
break; |
208 | |
} |
209 | |
} |
210 | 0 | if ( !foundMember ) { |
211 | 0 | qualifiers.add( getRoleQualifier(rm.getRoleId(), pdr.getKimRoleType().getId(), typeService, rm.getQualifierAsAttributeSet(), routeLevel) ); |
212 | |
} |
213 | 0 | } |
214 | 0 | } |
215 | |
|
216 | |
|
217 | |
|
218 | |
|
219 | |
} |
220 | |
|
221 | 0 | return null; |
222 | |
} |
223 | |
|
224 | |
protected AttributeSet getGroupQualifier( String groupId, String kimTypeId, Attributes groupAttributes, String routeLevel ) { |
225 | 0 | AttributeSet qualifier = new AttributeSet(); |
226 | |
|
227 | 0 | qualifier.put(KimConstants.PrimaryKeyConstants.KIM_TYPE_ID, kimTypeId); |
228 | 0 | qualifier.put(KimConstants.AttributeConstants.QUALIFIER_RESOLVER_PROVIDED_IDENTIFIER, kimTypeId); |
229 | 0 | qualifier.put(KimConstants.PrimaryKeyConstants.GROUP_ID, groupId); |
230 | 0 | KimTypeService typeService = getTypeService(kimTypeId); |
231 | 0 | if ( typeService != null ) { |
232 | |
|
233 | 0 | String customDocTypeName = typeService.getWorkflowDocumentTypeName(); |
234 | 0 | if ( StringUtils.isNotBlank(customDocTypeName)) { |
235 | 0 | qualifier.put(KIM_ATTRIBUTE_DOCUMENT_TYPE_NAME, customDocTypeName ); |
236 | |
} |
237 | 0 | putMatchingAttributesIntoQualifier(qualifier, groupAttributes, typeService.getWorkflowRoutingAttributes(routeLevel) ); |
238 | |
} |
239 | 0 | return qualifier; |
240 | |
} |
241 | |
|
242 | |
protected AttributeSet getRoleQualifier( String roleId, String kimTypeId, KimTypeService typeService, AttributeSet roleAttributes, String routeLevel ) { |
243 | 0 | AttributeSet qualifier = new AttributeSet(); |
244 | |
|
245 | 0 | qualifier.put(KimConstants.PrimaryKeyConstants.KIM_TYPE_ID, kimTypeId); |
246 | 0 | qualifier.put(KimConstants.AttributeConstants.QUALIFIER_RESOLVER_PROVIDED_IDENTIFIER, kimTypeId); |
247 | 0 | qualifier.put(KimConstants.PrimaryKeyConstants.ROLE_ID, roleId); |
248 | |
|
249 | 0 | String customDocTypeName = typeService.getWorkflowDocumentTypeName(); |
250 | 0 | if ( StringUtils.isNotBlank(customDocTypeName)) { |
251 | 0 | qualifier.put(KIM_ATTRIBUTE_DOCUMENT_TYPE_NAME, customDocTypeName ); |
252 | |
} |
253 | 0 | putMatchingAttributesIntoQualifier(qualifier, roleAttributes, typeService.getWorkflowRoutingAttributes(routeLevel) ); |
254 | 0 | return qualifier; |
255 | |
} |
256 | |
|
257 | |
public KimTypeInfoService getKimTypeInfoService() { |
258 | 0 | if ( kimTypeInfoService == null ) { |
259 | 0 | kimTypeInfoService = KimApiServiceLocator.getKimTypeInfoService(); |
260 | |
} |
261 | 0 | return kimTypeInfoService; |
262 | |
} |
263 | |
|
264 | |
public static GroupService getGroupService() { |
265 | 0 | if ( groupService == null ) { |
266 | 0 | groupService = KimApiServiceLocator.getGroupService(); |
267 | |
} |
268 | 0 | return groupService; |
269 | |
} |
270 | |
|
271 | |
public static RoleService getRoleService() { |
272 | 0 | if ( roleService == null ) { |
273 | 0 | roleService = KimApiServiceLocator.getRoleService(); |
274 | |
} |
275 | 0 | return roleService; |
276 | |
} |
277 | |
} |