1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
|
17 | |
package org.kuali.rice.kim.service.impl; |
18 | |
|
19 | |
import org.apache.commons.collections.CollectionUtils; |
20 | |
import org.apache.commons.lang.StringUtils; |
21 | |
import org.apache.log4j.Logger; |
22 | |
import org.kuali.rice.core.api.config.property.ConfigContext; |
23 | |
import org.kuali.rice.core.xml.dto.AttributeSet; |
24 | |
import org.kuali.rice.kim.bo.Group; |
25 | |
import org.kuali.rice.kim.bo.Person; |
26 | |
import org.kuali.rice.kim.bo.Role; |
27 | |
import org.kuali.rice.kim.bo.entity.KimEntityAddress; |
28 | |
import org.kuali.rice.kim.bo.entity.KimEntityAffiliation; |
29 | |
import org.kuali.rice.kim.bo.entity.KimEntityEmail; |
30 | |
import org.kuali.rice.kim.bo.entity.KimEntityPhone; |
31 | |
import org.kuali.rice.kim.bo.entity.KimEntityPrivacyPreferences; |
32 | |
import org.kuali.rice.kim.bo.entity.KimPrincipal; |
33 | |
import org.kuali.rice.kim.bo.entity.dto.KimEntityAddressInfo; |
34 | |
import org.kuali.rice.kim.bo.entity.dto.KimEntityAffiliationInfo; |
35 | |
import org.kuali.rice.kim.bo.entity.dto.KimEntityEmailInfo; |
36 | |
import org.kuali.rice.kim.bo.entity.dto.KimEntityEmploymentInformationInfo; |
37 | |
import org.kuali.rice.kim.bo.entity.dto.KimEntityEntityTypeInfo; |
38 | |
import org.kuali.rice.kim.bo.entity.dto.KimEntityInfo; |
39 | |
import org.kuali.rice.kim.bo.entity.dto.KimEntityNameInfo; |
40 | |
import org.kuali.rice.kim.bo.entity.dto.KimEntityPhoneInfo; |
41 | |
import org.kuali.rice.kim.bo.entity.dto.KimPrincipalInfo; |
42 | |
import org.kuali.rice.kim.bo.entity.impl.KimEntityAddressImpl; |
43 | |
import org.kuali.rice.kim.bo.entity.impl.KimEntityAffiliationImpl; |
44 | |
import org.kuali.rice.kim.bo.entity.impl.KimEntityEmailImpl; |
45 | |
import org.kuali.rice.kim.bo.entity.impl.KimEntityEmploymentInformationImpl; |
46 | |
import org.kuali.rice.kim.bo.entity.impl.KimEntityEntityTypeImpl; |
47 | |
import org.kuali.rice.kim.bo.entity.impl.KimEntityImpl; |
48 | |
import org.kuali.rice.kim.bo.entity.impl.KimEntityNameImpl; |
49 | |
import org.kuali.rice.kim.bo.entity.impl.KimEntityPhoneImpl; |
50 | |
import org.kuali.rice.kim.bo.entity.impl.KimEntityPrivacyPreferencesImpl; |
51 | |
import org.kuali.rice.kim.bo.entity.impl.KimPrincipalImpl; |
52 | |
import org.kuali.rice.kim.bo.group.dto.GroupInfo; |
53 | |
import org.kuali.rice.kim.bo.group.dto.GroupMembershipInfo; |
54 | |
import org.kuali.rice.kim.bo.group.impl.GroupAttributeDataImpl; |
55 | |
import org.kuali.rice.kim.bo.group.impl.GroupMemberImpl; |
56 | |
import org.kuali.rice.kim.bo.impl.GroupImpl; |
57 | |
import org.kuali.rice.kim.bo.impl.RoleImpl; |
58 | |
import org.kuali.rice.kim.bo.role.dto.KimRoleInfo; |
59 | |
import org.kuali.rice.kim.bo.role.dto.RoleMembershipInfo; |
60 | |
import org.kuali.rice.kim.bo.role.impl.KimDelegationImpl; |
61 | |
import org.kuali.rice.kim.bo.role.impl.KimDelegationMemberAttributeDataImpl; |
62 | |
import org.kuali.rice.kim.bo.role.impl.KimDelegationMemberImpl; |
63 | |
import org.kuali.rice.kim.bo.role.impl.RoleMemberAttributeDataImpl; |
64 | |
import org.kuali.rice.kim.bo.role.impl.RoleMemberImpl; |
65 | |
import org.kuali.rice.kim.bo.role.impl.RolePermissionImpl; |
66 | |
import org.kuali.rice.kim.bo.role.impl.RoleResponsibilityActionImpl; |
67 | |
import org.kuali.rice.kim.bo.role.impl.RoleResponsibilityImpl; |
68 | |
import org.kuali.rice.kim.bo.types.dto.AttributeDefinitionMap; |
69 | |
import org.kuali.rice.kim.bo.types.dto.KimTypeAttributeInfo; |
70 | |
import org.kuali.rice.kim.bo.types.dto.KimTypeInfo; |
71 | |
import org.kuali.rice.kim.bo.ui.GroupDocumentMember; |
72 | |
import org.kuali.rice.kim.bo.ui.GroupDocumentQualifier; |
73 | |
import org.kuali.rice.kim.bo.ui.KimDocumentRoleMember; |
74 | |
import org.kuali.rice.kim.bo.ui.KimDocumentRolePermission; |
75 | |
import org.kuali.rice.kim.bo.ui.KimDocumentRoleQualifier; |
76 | |
import org.kuali.rice.kim.bo.ui.KimDocumentRoleResponsibility; |
77 | |
import org.kuali.rice.kim.bo.ui.KimDocumentRoleResponsibilityAction; |
78 | |
import org.kuali.rice.kim.bo.ui.PersonDocumentAddress; |
79 | |
import org.kuali.rice.kim.bo.ui.PersonDocumentAffiliation; |
80 | |
import org.kuali.rice.kim.bo.ui.PersonDocumentEmail; |
81 | |
import org.kuali.rice.kim.bo.ui.PersonDocumentEmploymentInfo; |
82 | |
import org.kuali.rice.kim.bo.ui.PersonDocumentGroup; |
83 | |
import org.kuali.rice.kim.bo.ui.PersonDocumentName; |
84 | |
import org.kuali.rice.kim.bo.ui.PersonDocumentPhone; |
85 | |
import org.kuali.rice.kim.bo.ui.PersonDocumentPrivacy; |
86 | |
import org.kuali.rice.kim.bo.ui.PersonDocumentRole; |
87 | |
import org.kuali.rice.kim.bo.ui.RoleDocumentDelegation; |
88 | |
import org.kuali.rice.kim.bo.ui.RoleDocumentDelegationMember; |
89 | |
import org.kuali.rice.kim.bo.ui.RoleDocumentDelegationMemberQualifier; |
90 | |
import org.kuali.rice.kim.document.IdentityManagementGroupDocument; |
91 | |
import org.kuali.rice.kim.document.IdentityManagementPersonDocument; |
92 | |
import org.kuali.rice.kim.document.IdentityManagementRoleDocument; |
93 | |
import org.kuali.rice.kim.service.GroupService; |
94 | |
import org.kuali.rice.kim.service.IdentityManagementNotificationService; |
95 | |
import org.kuali.rice.kim.service.IdentityManagementService; |
96 | |
import org.kuali.rice.kim.service.IdentityService; |
97 | |
import org.kuali.rice.kim.service.KIMServiceLocator; |
98 | |
import org.kuali.rice.kim.service.KIMServiceLocatorInternal; |
99 | |
import org.kuali.rice.kim.service.KIMServiceLocatorWeb; |
100 | |
import org.kuali.rice.kim.service.KimTypeInfoService; |
101 | |
import org.kuali.rice.kim.service.ResponsibilityService; |
102 | |
import org.kuali.rice.kim.service.RoleManagementService; |
103 | |
import org.kuali.rice.kim.service.RoleService; |
104 | |
import org.kuali.rice.kim.service.UiDocumentService; |
105 | |
import org.kuali.rice.kim.service.support.KimTypeService; |
106 | |
import org.kuali.rice.kim.util.KIMPropertyConstants; |
107 | |
import org.kuali.rice.kim.util.KimCommonUtilsInternal; |
108 | |
import org.kuali.rice.kim.util.KimConstants; |
109 | |
import org.kuali.rice.kim.util.KimConstants.KimGroupMemberTypes; |
110 | |
import org.kuali.rice.kns.bo.BusinessObject; |
111 | |
import org.kuali.rice.kns.bo.PersistableBusinessObject; |
112 | |
import org.kuali.rice.kns.datadictionary.AttributeDefinition; |
113 | |
import org.kuali.rice.kns.datadictionary.KimDataDictionaryAttributeDefinition; |
114 | |
import org.kuali.rice.kns.datadictionary.KimNonDataDictionaryAttributeDefinition; |
115 | |
import org.kuali.rice.kns.datadictionary.control.ControlDefinition; |
116 | |
import org.kuali.rice.kns.datadictionary.control.TextControlDefinition; |
117 | |
import org.kuali.rice.kns.document.Document; |
118 | |
import org.kuali.rice.kns.service.BusinessObjectService; |
119 | |
import org.kuali.rice.kns.service.DocumentHelperService; |
120 | |
import org.kuali.rice.kns.service.KNSServiceLocator; |
121 | |
import org.kuali.rice.kns.service.KNSServiceLocatorWeb; |
122 | |
import org.kuali.rice.kns.util.ObjectUtils; |
123 | |
import org.kuali.rice.ksb.service.KSBServiceLocator; |
124 | |
|
125 | |
import javax.xml.namespace.QName; |
126 | |
import java.sql.Timestamp; |
127 | |
import java.util.ArrayList; |
128 | |
import java.util.Collection; |
129 | |
import java.util.Collections; |
130 | |
import java.util.Comparator; |
131 | |
import java.util.HashMap; |
132 | |
import java.util.HashSet; |
133 | |
import java.util.List; |
134 | |
import java.util.Map; |
135 | |
import java.util.Set; |
136 | |
|
137 | |
|
138 | |
|
139 | |
|
140 | |
|
141 | |
|
142 | |
|
143 | 0 | public class UiDocumentServiceImpl implements UiDocumentService { |
144 | 0 | private static final Logger LOG = Logger.getLogger(UiDocumentServiceImpl.class); |
145 | |
private static final String SHOW_BLANK_QUALIFIERS = "kim.show.blank.qualifiers"; |
146 | |
|
147 | |
private RoleService roleService; |
148 | |
private RoleManagementService roleManagementService; |
149 | |
private BusinessObjectService businessObjectService; |
150 | |
private IdentityService identityService; |
151 | |
private IdentityManagementService identityManagementService; |
152 | |
private GroupService groupService; |
153 | |
private ResponsibilityService responsibilityService; |
154 | |
private KimTypeInfoService kimTypeInfoService; |
155 | |
private DocumentHelperService documentHelperService; |
156 | |
|
157 | |
|
158 | |
|
159 | |
|
160 | |
|
161 | |
public void saveEntityPerson( |
162 | |
IdentityManagementPersonDocument identityManagementPersonDocument) { |
163 | 0 | KimEntityImpl kimEntity = new KimEntityImpl(); |
164 | 0 | KimEntityImpl origEntity = getEntityImpl(identityManagementPersonDocument.getEntityId()); |
165 | 0 | boolean creatingNew = true; |
166 | 0 | if (origEntity == null) { |
167 | 0 | origEntity = new KimEntityImpl(); |
168 | 0 | kimEntity.setActive(true); |
169 | |
} else { |
170 | |
|
171 | |
|
172 | |
|
173 | 0 | kimEntity.setActive(origEntity.isActive()); |
174 | 0 | kimEntity.setVersionNumber(origEntity.getVersionNumber()); |
175 | 0 | creatingNew = false; |
176 | |
} |
177 | |
|
178 | 0 | kimEntity.setEntityId(identityManagementPersonDocument.getEntityId()); |
179 | 0 | String initiatorPrincipalId = getInitiatorPrincipalId(identityManagementPersonDocument); |
180 | 0 | boolean inactivatingPrincipal = false; |
181 | 0 | if(canModifyEntity(initiatorPrincipalId, identityManagementPersonDocument.getPrincipalId())){ |
182 | 0 | inactivatingPrincipal = setupPrincipal(identityManagementPersonDocument, kimEntity, origEntity.getPrincipals()); |
183 | 0 | setupAffiliation(identityManagementPersonDocument, kimEntity, origEntity.getAffiliations(), origEntity.getEmploymentInformation()); |
184 | 0 | setupName(identityManagementPersonDocument, kimEntity, origEntity.getNames()); |
185 | |
|
186 | 0 | List<KimEntityEntityTypeImpl> entityTypes = new ArrayList<KimEntityEntityTypeImpl>(); |
187 | 0 | KimEntityEntityTypeImpl entityType = new KimEntityEntityTypeImpl(); |
188 | 0 | entityType.setEntityId(identityManagementPersonDocument.getEntityId()); |
189 | 0 | entityType.setEntityTypeCode(KimConstants.EntityTypes.PERSON); |
190 | 0 | entityType.setActive(true); |
191 | 0 | entityTypes.add(entityType); |
192 | 0 | KimEntityEntityTypeImpl origEntityType = new KimEntityEntityTypeImpl(); |
193 | 0 | for (KimEntityEntityTypeImpl type : origEntity.getEntityTypes()) { |
194 | |
|
195 | 0 | if (type.getEntityTypeCode()!=null && StringUtils.equals(type.getEntityTypeCode(), entityType.getEntityTypeCode())) { |
196 | 0 | origEntityType = type; |
197 | 0 | entityType.setVersionNumber(type.getVersionNumber()); |
198 | 0 | entityType.setActive(type.isActive()); |
199 | |
} |
200 | |
} |
201 | 0 | kimEntity.setEntityTypes(entityTypes); |
202 | 0 | setupPhone(identityManagementPersonDocument, entityType, origEntityType.getPhoneNumbers()); |
203 | 0 | setupEmail(identityManagementPersonDocument, entityType, origEntityType.getEmailAddresses()); |
204 | 0 | setupAddress(identityManagementPersonDocument, entityType, origEntityType.getAddresses()); |
205 | 0 | } else{ |
206 | 0 | if(ObjectUtils.isNotNull(origEntity.getExternalIdentifiers())) |
207 | 0 | kimEntity.setExternalIdentifiers(origEntity.getExternalIdentifiers()); |
208 | 0 | if(ObjectUtils.isNotNull(origEntity.getEmploymentInformation())) |
209 | 0 | kimEntity.setEmploymentInformation(origEntity.getEmploymentInformation()); |
210 | 0 | if(ObjectUtils.isNotNull(origEntity.getAffiliations())) |
211 | 0 | kimEntity.setAffiliations(origEntity.getAffiliations()); |
212 | 0 | if(ObjectUtils.isNotNull(origEntity.getNames())) |
213 | 0 | kimEntity.setNames(origEntity.getNames()); |
214 | 0 | if(ObjectUtils.isNotNull(origEntity.getEntityTypes())) |
215 | 0 | kimEntity.setEntityTypes(origEntity.getEntityTypes()); |
216 | |
} |
217 | 0 | if(creatingNew || canOverrideEntityPrivacyPreferences(getInitiatorPrincipalId(identityManagementPersonDocument), identityManagementPersonDocument.getPrincipalId())) { |
218 | 0 | setupPrivacy(identityManagementPersonDocument, kimEntity, origEntity.getPrivacyPreferences()); |
219 | |
} else { |
220 | 0 | if(ObjectUtils.isNotNull(origEntity.getPrivacyPreferences())) { |
221 | 0 | kimEntity.setPrivacyPreferences(origEntity.getPrivacyPreferences()); |
222 | |
} |
223 | |
} |
224 | 0 | List <GroupMemberImpl> groupPrincipals = populateGroupMembers(identityManagementPersonDocument); |
225 | 0 | List <RoleMemberImpl> rolePrincipals = populateRoleMembers(identityManagementPersonDocument); |
226 | 0 | List <KimDelegationImpl> personDelegations = populateDelegations(identityManagementPersonDocument); |
227 | 0 | List <PersistableBusinessObject> bos = new ArrayList<PersistableBusinessObject>(); |
228 | 0 | List <RoleResponsibilityActionImpl> roleRspActions = populateRoleRspActions(identityManagementPersonDocument); |
229 | 0 | List <RoleMemberAttributeDataImpl> blankRoleMemberAttrs = getBlankRoleMemberAttrs(rolePrincipals); |
230 | 0 | bos.add(kimEntity); |
231 | |
|
232 | |
|
233 | 0 | bos.addAll(groupPrincipals); |
234 | 0 | bos.addAll(rolePrincipals); |
235 | 0 | bos.addAll(roleRspActions); |
236 | 0 | bos.addAll(personDelegations); |
237 | |
|
238 | 0 | getBusinessObjectService().save(bos); |
239 | |
|
240 | |
|
241 | 0 | IdentityManagementNotificationService service = (IdentityManagementNotificationService)KSBServiceLocator.getMessageHelper().getServiceAsynchronously(new QName("KIM", "kimIdentityManagementNotificationService")); |
242 | 0 | service.principalUpdated(); |
243 | |
|
244 | 0 | if (!blankRoleMemberAttrs.isEmpty()) { |
245 | 0 | getBusinessObjectService().delete(blankRoleMemberAttrs); |
246 | |
} |
247 | 0 | if ( inactivatingPrincipal ) { |
248 | |
|
249 | 0 | KIMServiceLocator.getRoleManagementService().principalInactivated(identityManagementPersonDocument.getPrincipalId()); |
250 | |
} |
251 | 0 | } |
252 | |
|
253 | |
private String getInitiatorPrincipalId(Document document){ |
254 | |
try{ |
255 | 0 | return document.getDocumentHeader().getWorkflowDocument().getInitiatorPrincipalId(); |
256 | 0 | } catch(Exception ex){ |
257 | 0 | return null; |
258 | |
} |
259 | |
} |
260 | |
|
261 | |
|
262 | |
|
263 | |
|
264 | |
public Map<String,Object> getAttributeEntries( AttributeDefinitionMap definitions ) { |
265 | 0 | Map<String,Object> attributeEntries = new HashMap<String,Object>(); |
266 | 0 | if(definitions!=null){ |
267 | 0 | for (String key : definitions.keySet()) { |
268 | 0 | AttributeDefinition definition = definitions.get(key); |
269 | 0 | Map<String,Object> attribute = new HashMap<String,Object>(); |
270 | 0 | if (definition instanceof KimDataDictionaryAttributeDefinition) { |
271 | |
|
272 | |
|
273 | 0 | ControlDefinition control = definition.getControl(); |
274 | 0 | if (control.isSelect() |
275 | |
|| control.isRadio()) { |
276 | 0 | Map<String,Object> controlMap = new HashMap<String,Object>(); |
277 | 0 | if (control.isSelect()) { |
278 | 0 | controlMap.put("select", "true"); |
279 | |
} else { |
280 | 0 | controlMap.put("radio", "true"); |
281 | |
} |
282 | 0 | controlMap.put("valuesFinder", control.getValuesFinderClass()); |
283 | 0 | if (control.getBusinessObjectClass() != null) { |
284 | 0 | controlMap.put("businessObject", control.getBusinessObjectClass()); |
285 | |
} |
286 | 0 | if (StringUtils.isNotEmpty(control.getKeyAttribute())) { |
287 | 0 | controlMap.put("keyAttribute", control.getKeyAttribute()); |
288 | |
} |
289 | 0 | if (StringUtils.isNotEmpty(control.getLabelAttribute())) { |
290 | 0 | controlMap.put("labelAttribute", control.getLabelAttribute()); |
291 | |
} |
292 | 0 | if (control.getIncludeKeyInLabel() != null) { |
293 | 0 | controlMap.put("includeKeyInLabel", control.getIncludeKeyInLabel().toString()); |
294 | |
} |
295 | 0 | attribute.put("control", controlMap); |
296 | 0 | } else { |
297 | |
|
298 | |
|
299 | 0 | attribute.put("control", definition.getControl()); |
300 | |
} |
301 | 0 | attribute.put("name", definition.getName()); |
302 | 0 | attribute.put("label", definition.getLabel()); |
303 | 0 | attribute.put("shortLabel", definition.getShortLabel()); |
304 | 0 | attribute.put("maxLength", definition.getMaxLength()); |
305 | 0 | attribute.put("required", definition.isRequired()); |
306 | 0 | attributeEntries.put(definition.getName(),attribute); |
307 | 0 | } else { |
308 | 0 | TextControlDefinition control = new TextControlDefinition(); |
309 | 0 | control.setSize(10); |
310 | 0 | attribute.put("name", definition.getName()); |
311 | 0 | attribute.put("control", control); |
312 | 0 | attribute.put("label", definition.getLabel()); |
313 | 0 | attribute.put("maxLength", 20); |
314 | 0 | attribute.put("required", true); |
315 | 0 | attribute.put("shortLabel", definition.getLabel()); |
316 | 0 | attributeEntries.put(definition.getName(),attribute); |
317 | |
} |
318 | 0 | } |
319 | |
} |
320 | 0 | return attributeEntries; |
321 | |
} |
322 | |
|
323 | |
|
324 | |
|
325 | |
|
326 | |
|
327 | |
|
328 | |
public void loadEntityToPersonDoc(IdentityManagementPersonDocument identityManagementPersonDocument, String principalId) { |
329 | 0 | KimPrincipalInfo principal = this.getIdentityService().getPrincipal(principalId); |
330 | 0 | if(principal==null) |
331 | 0 | throw new RuntimeException("Principal does not exist for principal id:"+principalId); |
332 | |
|
333 | 0 | identityManagementPersonDocument.setPrincipalId(principal.getPrincipalId()); |
334 | 0 | identityManagementPersonDocument.setPrincipalName(principal.getPrincipalName()); |
335 | 0 | identityManagementPersonDocument.setPassword(principal.getPassword()); |
336 | 0 | identityManagementPersonDocument.setActive(principal.isActive()); |
337 | 0 | KimEntityInfo kimEntity = this.getIdentityService().getEntityInfo(principal.getEntityId()); |
338 | 0 | identityManagementPersonDocument.setEntityId(kimEntity.getEntityId()); |
339 | 0 | if ( ObjectUtils.isNotNull( kimEntity.getPrivacyPreferences() ) ) { |
340 | 0 | identityManagementPersonDocument.setPrivacy(loadPrivacyReferences(kimEntity.getPrivacyPreferences())); |
341 | |
} |
342 | |
|
343 | 0 | identityManagementPersonDocument.setAffiliations(loadAffiliations(kimEntity.getAffiliations(),kimEntity.getEmploymentInformation())); |
344 | 0 | identityManagementPersonDocument.setNames(loadNames( identityManagementPersonDocument, principalId, kimEntity.getNames(), identityManagementPersonDocument.getPrivacy().isSuppressName() )); |
345 | 0 | KimEntityEntityTypeInfo entityType = null; |
346 | 0 | for (KimEntityEntityTypeInfo type : kimEntity.getEntityTypes()) { |
347 | 0 | if (KimConstants.EntityTypes.PERSON.equals(type.getEntityTypeCode())) { |
348 | 0 | entityType = type; |
349 | |
} |
350 | |
} |
351 | |
|
352 | 0 | if(entityType!=null){ |
353 | 0 | identityManagementPersonDocument.setEmails(loadEmails(identityManagementPersonDocument, principalId, entityType.getEmailAddresses(), identityManagementPersonDocument.getPrivacy().isSuppressEmail())); |
354 | 0 | identityManagementPersonDocument.setPhones(loadPhones(identityManagementPersonDocument, principalId, entityType.getPhoneNumbers(), identityManagementPersonDocument.getPrivacy().isSuppressPhone())); |
355 | 0 | identityManagementPersonDocument.setAddrs(loadAddresses(identityManagementPersonDocument, principalId, entityType.getAddresses(), identityManagementPersonDocument.getPrivacy().isSuppressAddress())); |
356 | |
} |
357 | |
|
358 | 0 | List<? extends Group> groups = getGroupsByIds(getGroupService().getDirectGroupIdsForPrincipal(identityManagementPersonDocument.getPrincipalId())); |
359 | 0 | loadGroupToPersonDoc(identityManagementPersonDocument, groups); |
360 | 0 | loadRoleToPersonDoc(identityManagementPersonDocument); |
361 | 0 | loadDelegationsToPersonDoc(identityManagementPersonDocument); |
362 | 0 | } |
363 | |
|
364 | |
@SuppressWarnings("unchecked") |
365 | |
public List<KimDelegationImpl> getPersonDelegations(String principalId){ |
366 | 0 | if(principalId==null) |
367 | 0 | return new ArrayList<KimDelegationImpl>(); |
368 | 0 | Map<String,String> criteria = new HashMap<String,String>(1); |
369 | 0 | criteria.put(KimConstants.PrimaryKeyConstants.MEMBER_ID, principalId); |
370 | 0 | criteria.put( KIMPropertyConstants.DelegationMember.MEMBER_TYPE_CODE, Role.PRINCIPAL_MEMBER_TYPE ); |
371 | 0 | List<KimDelegationMemberImpl> delegationMembers = (List<KimDelegationMemberImpl>)getBusinessObjectService().findMatching(KimDelegationMemberImpl.class, criteria); |
372 | 0 | List<KimDelegationImpl> delegations = new ArrayList<KimDelegationImpl>(); |
373 | 0 | List<String> delegationIds = new ArrayList<String>(); |
374 | 0 | if(ObjectUtils.isNotNull(delegationMembers)){ |
375 | 0 | for(KimDelegationMemberImpl delegationMember: delegationMembers){ |
376 | 0 | if(!delegationIds.contains(delegationMember.getDelegationId())){ |
377 | 0 | delegationIds.add(delegationMember.getDelegationId()); |
378 | 0 | criteria = new HashMap<String,String>(1); |
379 | 0 | criteria.put(KimConstants.PrimaryKeyConstants.DELEGATION_ID, delegationMember.getDelegationId()); |
380 | 0 | delegations.add((KimDelegationImpl)getBusinessObjectService().findByPrimaryKey(KimDelegationImpl.class, criteria)); |
381 | |
} |
382 | |
} |
383 | |
} |
384 | 0 | return delegations; |
385 | |
} |
386 | |
|
387 | |
|
388 | |
protected void loadDelegationsToPersonDoc(IdentityManagementPersonDocument identityManagementPersonDocument){ |
389 | 0 | List<RoleDocumentDelegation> delList = new ArrayList<RoleDocumentDelegation>(); |
390 | |
RoleDocumentDelegation documentDelegation; |
391 | 0 | List<KimDelegationImpl> origDelegations = getPersonDelegations(identityManagementPersonDocument.getPrincipalId()); |
392 | 0 | if(ObjectUtils.isNotNull(origDelegations)){ |
393 | 0 | for(KimDelegationImpl del: origDelegations){ |
394 | 0 | if(del.isActive()){ |
395 | 0 | documentDelegation = new RoleDocumentDelegation(); |
396 | 0 | documentDelegation.setActive(del.isActive()); |
397 | 0 | documentDelegation.setDelegationId(del.getDelegationId()); |
398 | 0 | documentDelegation.setDelegationTypeCode(del.getDelegationTypeCode()); |
399 | 0 | documentDelegation.setKimTypeId(del.getKimTypeId()); |
400 | 0 | documentDelegation.setMembers( |
401 | |
loadDelegationMembers(identityManagementPersonDocument, |
402 | |
del.getMembers(), (RoleImpl)getMember(KimConstants.KimUIConstants.MEMBER_TYPE_ROLE_CODE, del.getRoleId()))); |
403 | 0 | documentDelegation.setRoleId(del.getRoleId()); |
404 | 0 | documentDelegation.setEdit(true); |
405 | 0 | delList.add(documentDelegation); |
406 | |
} |
407 | |
} |
408 | |
} |
409 | 0 | identityManagementPersonDocument.setDelegations(delList); |
410 | 0 | setDelegationMembersInDocument(identityManagementPersonDocument); |
411 | 0 | } |
412 | |
|
413 | |
public void setDelegationMembersInDocument(IdentityManagementPersonDocument identityManagementPersonDocument){ |
414 | 0 | if(CollectionUtils.isNotEmpty(identityManagementPersonDocument.getDelegations())){ |
415 | 0 | for(RoleDocumentDelegation delegation: identityManagementPersonDocument.getDelegations()){ |
416 | 0 | if(CollectionUtils.isNotEmpty(delegation.getMembers())){ |
417 | 0 | for(RoleDocumentDelegationMember member: delegation.getMembers()){ |
418 | 0 | if (StringUtils.equals(member.getMemberId(), identityManagementPersonDocument.getPrincipalId())) |
419 | |
{ |
420 | 0 | member.setDelegationTypeCode(delegation.getDelegationTypeCode()); |
421 | 0 | identityManagementPersonDocument.getDelegationMembers().add(member); |
422 | |
} |
423 | |
} |
424 | |
} |
425 | |
} |
426 | |
} |
427 | 0 | } |
428 | |
|
429 | |
protected List<RoleDocumentDelegationMember> loadDelegationMembers( |
430 | |
IdentityManagementPersonDocument identityManagementPersonDocument, List<KimDelegationMemberImpl> members, RoleImpl roleImpl){ |
431 | 0 | List<RoleDocumentDelegationMember> pndMembers = new ArrayList<RoleDocumentDelegationMember>(); |
432 | 0 | RoleDocumentDelegationMember pndMember = new RoleDocumentDelegationMember(); |
433 | |
RoleMemberImpl roleMember; |
434 | 0 | if(ObjectUtils.isNotNull(members)){ |
435 | 0 | for(KimDelegationMemberImpl member: members){ |
436 | 0 | pndMember = new RoleDocumentDelegationMember(); |
437 | 0 | pndMember.setActiveFromDate(member.getActiveFromDate()); |
438 | 0 | pndMember.setActiveToDate(member.getActiveToDate()); |
439 | 0 | pndMember.setActive(member.isActive()); |
440 | 0 | pndMember.setRoleImpl(roleImpl); |
441 | 0 | if(pndMember.isActive()){ |
442 | 0 | KimCommonUtilsInternal.copyProperties(pndMember, member); |
443 | 0 | pndMember.setRoleMemberId(member.getRoleMemberId()); |
444 | 0 | roleMember = getRoleMemberForRoleMemberId(member.getRoleMemberId()); |
445 | 0 | if(roleMember!=null){ |
446 | 0 | pndMember.setRoleMemberName(getMemberName(roleMember.getMemberTypeCode(), roleMember.getMemberId())); |
447 | 0 | pndMember.setRoleMemberNamespaceCode(getMemberNamespaceCode(roleMember.getMemberTypeCode(), roleMember.getMemberId())); |
448 | |
} |
449 | 0 | pndMember.setMemberNamespaceCode(getMemberNamespaceCode(member.getMemberTypeCode(), member.getMemberId())); |
450 | 0 | pndMember.setMemberName(getMemberName(member.getMemberTypeCode(), member.getMemberId())); |
451 | 0 | pndMember.setEdit(true); |
452 | 0 | pndMember.setQualifiers(loadDelegationMemberQualifiers(identityManagementPersonDocument, pndMember.getAttributesHelper().getDefinitions(), member.getAttributes())); |
453 | 0 | pndMembers.add(pndMember); |
454 | |
} |
455 | |
} |
456 | |
} |
457 | 0 | return pndMembers; |
458 | |
} |
459 | |
|
460 | |
protected List<RoleDocumentDelegationMemberQualifier> loadDelegationMemberQualifiers(IdentityManagementPersonDocument identityManagementPersonDocument, |
461 | |
AttributeDefinitionMap origAttributeDefinitions, List<KimDelegationMemberAttributeDataImpl> attributeDataList){ |
462 | 0 | List<RoleDocumentDelegationMemberQualifier> pndMemberRoleQualifiers = new ArrayList<RoleDocumentDelegationMemberQualifier>(); |
463 | 0 | RoleDocumentDelegationMemberQualifier pndMemberRoleQualifier = new RoleDocumentDelegationMemberQualifier(); |
464 | 0 | boolean attributePresent = false; |
465 | |
String origAttributeId; |
466 | 0 | if(origAttributeDefinitions!=null){ |
467 | 0 | for(String key: origAttributeDefinitions.keySet()) { |
468 | 0 | origAttributeId = identityManagementPersonDocument.getKimAttributeDefnId(origAttributeDefinitions.get(key)); |
469 | 0 | if(ObjectUtils.isNotNull(attributeDataList)){ |
470 | 0 | for(KimDelegationMemberAttributeDataImpl memberRoleQualifier: attributeDataList){ |
471 | 0 | if(StringUtils.equals(origAttributeId, memberRoleQualifier.getKimAttribute().getKimAttributeId())){ |
472 | 0 | pndMemberRoleQualifier = new RoleDocumentDelegationMemberQualifier(); |
473 | 0 | pndMemberRoleQualifier.setAttrDataId(memberRoleQualifier.getAttributeDataId()); |
474 | 0 | pndMemberRoleQualifier.setAttrVal(memberRoleQualifier.getAttributeValue()); |
475 | 0 | pndMemberRoleQualifier.setDelegationMemberId(memberRoleQualifier.getDelegationMemberId()); |
476 | 0 | pndMemberRoleQualifier.setKimTypId(memberRoleQualifier.getKimTypeId()); |
477 | 0 | pndMemberRoleQualifier.setKimAttrDefnId(memberRoleQualifier.getKimAttributeId()); |
478 | 0 | pndMemberRoleQualifier.setKimAttribute(memberRoleQualifier.getKimAttribute()); |
479 | 0 | pndMemberRoleQualifiers.add(pndMemberRoleQualifier); |
480 | 0 | attributePresent = true; |
481 | |
} |
482 | |
} |
483 | |
} |
484 | 0 | if(!attributePresent){ |
485 | 0 | pndMemberRoleQualifier = new RoleDocumentDelegationMemberQualifier(); |
486 | 0 | pndMemberRoleQualifier.setKimAttrDefnId(origAttributeId); |
487 | 0 | pndMemberRoleQualifiers.add(pndMemberRoleQualifier); |
488 | |
} |
489 | 0 | attributePresent = false; |
490 | |
} |
491 | |
} |
492 | 0 | return pndMemberRoleQualifiers; |
493 | |
} |
494 | |
|
495 | |
|
496 | |
|
497 | |
|
498 | |
|
499 | |
|
500 | |
|
501 | |
|
502 | |
protected void loadGroupToPersonDoc(IdentityManagementPersonDocument identityManagementPersonDocument, List<? extends Group> groups) { |
503 | 0 | List <PersonDocumentGroup> docGroups = new ArrayList <PersonDocumentGroup>(); |
504 | 0 | if(ObjectUtils.isNotNull(groups)){ |
505 | |
List<String> directMemberPrincipalIds; |
506 | |
Collection<GroupMembershipInfo> groupMemberships; |
507 | 0 | for (Group group: groups) { |
508 | 0 | directMemberPrincipalIds = getGroupService().getDirectMemberPrincipalIds(group.getGroupId()); |
509 | 0 | if(ObjectUtils.isNotNull(directMemberPrincipalIds)){ |
510 | 0 | directMemberPrincipalIds = new ArrayList<String>(new HashSet<String>(directMemberPrincipalIds)); |
511 | 0 | for (String memberId: directMemberPrincipalIds) { |
512 | |
|
513 | |
|
514 | 0 | if (StringUtils.equals(memberId, identityManagementPersonDocument.getPrincipalId())) { |
515 | 0 | List<String> groupIds = new ArrayList<String>(); |
516 | 0 | groupIds.add(group.getGroupId()); |
517 | 0 | groupMemberships = getGroupService().getGroupMembers(groupIds); |
518 | 0 | if(ObjectUtils.isNotNull(groupMemberships)){ |
519 | 0 | for (GroupMembershipInfo groupMember: groupMemberships) { |
520 | 0 | if (groupMember.isActive() && StringUtils.equals(groupMember.getMemberId(), identityManagementPersonDocument.getPrincipalId()) && |
521 | |
StringUtils.equals(groupMember.getMemberTypeCode(), KimGroupMemberTypes.PRINCIPAL_MEMBER_TYPE)) { |
522 | |
|
523 | 0 | PersonDocumentGroup docGroup = new PersonDocumentGroup(); |
524 | 0 | docGroup.setGroupId(group.getGroupId()); |
525 | 0 | docGroup.setGroupName(group.getGroupName()); |
526 | 0 | docGroup.setNamespaceCode(group.getNamespaceCode()); |
527 | 0 | docGroup.setPrincipalId(memberId); |
528 | 0 | docGroup.setGroupMemberId(groupMember.getGroupMemberId()); |
529 | 0 | if (groupMember.getActiveFromDate() != null) { |
530 | 0 | docGroup.setActiveFromDate(new Timestamp(groupMember.getActiveFromDate().getTime())); |
531 | |
} |
532 | 0 | if (groupMember.getActiveToDate() != null) { |
533 | 0 | docGroup.setActiveToDate(new Timestamp(groupMember.getActiveToDate().getTime())); |
534 | |
} |
535 | 0 | docGroup.setEdit(true); |
536 | 0 | docGroups.add(docGroup); |
537 | 0 | } |
538 | |
} |
539 | |
} |
540 | 0 | } |
541 | |
} |
542 | |
} |
543 | |
} |
544 | |
} |
545 | 0 | identityManagementPersonDocument.setGroups(docGroups); |
546 | 0 | } |
547 | |
|
548 | |
protected void loadRoleToPersonDoc(IdentityManagementPersonDocument identityManagementPersonDocument) { |
549 | 0 | List <PersonDocumentRole> docRoles = new ArrayList <PersonDocumentRole>(); |
550 | 0 | List<RoleImpl> roles = getRolesForPrincipal(identityManagementPersonDocument.getPrincipalId()); |
551 | 0 | List<String> roleIds = new ArrayList<String>(); |
552 | 0 | if(ObjectUtils.isNotNull(roles)){ |
553 | 0 | for (RoleImpl role : roles) { |
554 | 0 | if (!roleIds.contains(role.getRoleId())) { |
555 | 0 | PersonDocumentRole docRole = new PersonDocumentRole(); |
556 | 0 | docRole.setKimTypeId(role.getKimTypeId()); |
557 | 0 | docRole.setActive(role.isActive()); |
558 | 0 | docRole.setNamespaceCode(role.getNamespaceCode()); |
559 | 0 | docRole.setEdit(true); |
560 | 0 | docRole.setRoleId(role.getRoleId()); |
561 | 0 | docRole.setRoleName(role.getRoleName()); |
562 | 0 | docRole.setRolePrncpls(populateDocRolePrncpl(role.getMembers(), identityManagementPersonDocument.getPrincipalId(), getAttributeDefinitionsForRole(docRole))); |
563 | 0 | docRole.refreshReferenceObject("assignedResponsibilities"); |
564 | 0 | if(docRole.getRolePrncpls()!=null && !docRole.getRolePrncpls().isEmpty()){ |
565 | 0 | docRoles.add(docRole); |
566 | 0 | roleIds.add(role.getRoleId()); |
567 | |
} |
568 | 0 | } |
569 | |
} |
570 | |
} |
571 | 0 | for (PersonDocumentRole role : docRoles) { |
572 | 0 | role.setDefinitions(getAttributeDefinitionsForRole(role)); |
573 | |
|
574 | 0 | role.setNewRolePrncpl(new KimDocumentRoleMember()); |
575 | 0 | if(role.getDefinitions()!=null){ |
576 | 0 | for (String key : role.getDefinitions().keySet()) { |
577 | 0 | KimDocumentRoleQualifier qualifier = new KimDocumentRoleQualifier(); |
578 | |
|
579 | 0 | setAttrDefnIdForQualifier(qualifier,role.getDefinitions().get(key)); |
580 | 0 | role.getNewRolePrncpl().getQualifiers().add(qualifier); |
581 | 0 | } |
582 | |
} |
583 | 0 | loadRoleRstAction(role); |
584 | 0 | role.setAttributeEntry( getAttributeEntries( role.getDefinitions() ) ); |
585 | |
} |
586 | |
|
587 | |
|
588 | 0 | identityManagementPersonDocument.setRoles(docRoles); |
589 | 0 | } |
590 | |
|
591 | |
protected AttributeDefinitionMap getAttributeDefinitionsForRole(PersonDocumentRole role) { |
592 | 0 | KimTypeService kimTypeService = KIMServiceLocatorWeb.getKimTypeService(role.getKimRoleType()); |
593 | |
|
594 | |
|
595 | |
try { |
596 | 0 | if ( kimTypeService != null ) { |
597 | 0 | return kimTypeService.getAttributeDefinitions(role.getKimTypeId()); |
598 | |
} |
599 | 0 | } catch (Exception ex) { |
600 | 0 | LOG.warn("Not able to retrieve KimTypeService from remote system for KIM Role Type: " + role.getKimRoleType(), ex); |
601 | 0 | } |
602 | 0 | return new AttributeDefinitionMap(); |
603 | |
} |
604 | |
|
605 | |
protected void loadRoleRstAction(PersonDocumentRole role) { |
606 | 0 | if(role!=null && CollectionUtils.isNotEmpty(role.getRolePrncpls())){ |
607 | 0 | for (KimDocumentRoleMember roleMbr : role.getRolePrncpls()) { |
608 | 0 | List<RoleResponsibilityActionImpl> actions = getRoleRspActions( roleMbr.getRoleMemberId()); |
609 | 0 | if(ObjectUtils.isNotNull(actions)){ |
610 | 0 | for (RoleResponsibilityActionImpl entRoleRspAction :actions) { |
611 | 0 | KimDocumentRoleResponsibilityAction roleRspAction = new KimDocumentRoleResponsibilityAction(); |
612 | 0 | roleRspAction.setRoleResponsibilityId(entRoleRspAction.getRoleResponsibilityId()); |
613 | 0 | roleRspAction.setActionTypeCode(entRoleRspAction.getActionTypeCode()); |
614 | 0 | roleRspAction.setActionPolicyCode(entRoleRspAction.getActionPolicyCode()); |
615 | 0 | roleRspAction.setPriorityNumber(entRoleRspAction.getPriorityNumber()); |
616 | 0 | roleRspAction.setRoleResponsibilityActionId(entRoleRspAction.getRoleResponsibilityActionId()); |
617 | 0 | roleRspAction.refreshReferenceObject("roleResponsibility"); |
618 | 0 | roleMbr.getRoleRspActions().add(roleRspAction); |
619 | 0 | } |
620 | |
} |
621 | 0 | } |
622 | |
} |
623 | 0 | } |
624 | |
|
625 | |
protected void setAttrDefnIdForQualifier(KimDocumentRoleQualifier qualifier, AttributeDefinition definition) { |
626 | 0 | qualifier.setKimAttrDefnId(getAttributeDefnId(definition)); |
627 | 0 | qualifier.refreshReferenceObject("kimAttribute"); |
628 | 0 | } |
629 | |
|
630 | |
protected String getAttributeDefnId(AttributeDefinition definition) { |
631 | 0 | if (definition instanceof KimDataDictionaryAttributeDefinition) { |
632 | 0 | return ((KimDataDictionaryAttributeDefinition)definition).getKimAttrDefnId(); |
633 | |
} |
634 | 0 | return ((KimNonDataDictionaryAttributeDefinition)definition).getKimAttrDefnId(); |
635 | |
} |
636 | |
|
637 | |
private KimPrincipalImpl getPrincipalImpl(String principalId) { |
638 | 0 | Map<String,String> criteria = new HashMap<String,String>(1); |
639 | 0 | criteria.put(KIMPropertyConstants.Principal.PRINCIPAL_ID, principalId); |
640 | 0 | return (KimPrincipalImpl)getBusinessObjectService().findByPrimaryKey(KimPrincipalImpl.class, criteria); |
641 | |
} |
642 | |
|
643 | |
public List<KimEntityEmploymentInformationInfo> getEntityEmploymentInformationInfo(String entityId) { |
644 | 0 | KimEntityImpl entityImpl = getEntityImpl(entityId); |
645 | 0 | List<KimEntityEmploymentInformationInfo> empInfos = new ArrayList<KimEntityEmploymentInformationInfo>(); |
646 | |
KimEntityEmploymentInformationInfo empInfo; |
647 | 0 | if(ObjectUtils.isNotNull(entityImpl) && CollectionUtils.isNotEmpty(entityImpl.getEmploymentInformation())){ |
648 | 0 | for(KimEntityEmploymentInformationImpl empImpl: entityImpl.getEmploymentInformation()){ |
649 | 0 | empInfo = new KimEntityEmploymentInformationInfo(empImpl); |
650 | 0 | empInfos.add(empInfo); |
651 | |
} |
652 | |
} |
653 | 0 | return empInfos; |
654 | |
} |
655 | |
|
656 | |
private KimEntityImpl getEntityImpl(String entityId) { |
657 | 0 | KimEntityImpl entityImpl = (KimEntityImpl)getBusinessObjectService().findBySinglePrimaryKey(KimEntityImpl.class, entityId); |
658 | |
|
659 | 0 | if(entityImpl!=null && entityImpl.getEntityTypes() != null) { |
660 | 0 | for (KimEntityEntityTypeImpl et : entityImpl.getEntityTypes()) { |
661 | 0 | et.refresh(); |
662 | |
} |
663 | |
} |
664 | 0 | return entityImpl; |
665 | |
} |
666 | |
|
667 | |
@SuppressWarnings("unchecked") |
668 | |
protected List<RoleImpl> getRolesForPrincipal(String principalId) { |
669 | 0 | if ( principalId == null ) { |
670 | 0 | return new ArrayList<RoleImpl>(); |
671 | |
} |
672 | 0 | Map<String,String> criteria = new HashMap<String,String>( 2 ); |
673 | 0 | criteria.put("members.memberId", principalId); |
674 | 0 | criteria.put("members.memberTypeCode", RoleImpl.PRINCIPAL_MEMBER_TYPE); |
675 | 0 | return (List<RoleImpl>)getBusinessObjectService().findMatching(RoleImpl.class, criteria); |
676 | |
} |
677 | |
|
678 | |
@SuppressWarnings("unchecked") |
679 | |
protected List<RoleMemberImpl> getRoleMembersForPrincipal(String principalId) { |
680 | 0 | if ( principalId == null ) { |
681 | 0 | return new ArrayList<RoleMemberImpl>(); |
682 | |
} |
683 | 0 | Map<String,String> criteria = new HashMap<String,String>( 2 ); |
684 | 0 | criteria.put("memberId", principalId); |
685 | 0 | criteria.put("memberTypeCode", RoleImpl.PRINCIPAL_MEMBER_TYPE); |
686 | 0 | return (List<RoleMemberImpl>)getBusinessObjectService().findMatching(RoleMemberImpl.class, criteria); |
687 | |
} |
688 | |
|
689 | |
public RoleMemberImpl getRoleMember(String roleMemberId) { |
690 | 0 | if ( roleMemberId == null ) { |
691 | 0 | return null; |
692 | |
} |
693 | 0 | Map<String,String> criteria = new HashMap<String,String>( 2 ); |
694 | 0 | criteria.put("roleMemberId", roleMemberId); |
695 | 0 | return (RoleMemberImpl)getBusinessObjectService().findByPrimaryKey(RoleMemberImpl.class, criteria); |
696 | |
} |
697 | |
|
698 | |
@SuppressWarnings("unchecked") |
699 | |
protected List<RoleResponsibilityActionImpl> getRoleRspActions(String roleMemberId) { |
700 | 0 | Map<String,String> criteria = new HashMap<String,String>( 1 ); |
701 | 0 | criteria.put(KIMPropertyConstants.RoleMember.ROLE_MEMBER_ID, roleMemberId); |
702 | 0 | return (List<RoleResponsibilityActionImpl>)getBusinessObjectService().findMatching(RoleResponsibilityActionImpl.class, criteria); |
703 | |
} |
704 | |
|
705 | |
protected List<KimDocumentRoleMember> populateDocRolePrncpl(List <RoleMemberImpl> roleMembers, String principalId, AttributeDefinitionMap definitions) { |
706 | 0 | List <KimDocumentRoleMember> docRoleMembers = new ArrayList <KimDocumentRoleMember>(); |
707 | 0 | if(ObjectUtils.isNotNull(roleMembers)){ |
708 | 0 | for (RoleMemberImpl rolePrincipal : roleMembers) { |
709 | 0 | if (rolePrincipal.isActive() && RoleImpl.PRINCIPAL_MEMBER_TYPE.equals(rolePrincipal.getMemberTypeCode()) && |
710 | |
StringUtils.equals(rolePrincipal.getMemberId(), principalId)) { |
711 | 0 | KimDocumentRoleMember docRolePrncpl = new KimDocumentRoleMember(); |
712 | 0 | docRolePrncpl.setMemberId(rolePrincipal.getMemberId()); |
713 | 0 | docRolePrncpl.setRoleMemberId(rolePrincipal.getRoleMemberId()); |
714 | 0 | docRolePrncpl.setActive(rolePrincipal.isActive()); |
715 | 0 | docRolePrncpl.setRoleId(rolePrincipal.getRoleId()); |
716 | 0 | docRolePrncpl.setActiveFromDate(rolePrincipal.getActiveFromDate()); |
717 | 0 | docRolePrncpl.setActiveToDate(rolePrincipal.getActiveToDate()); |
718 | 0 | docRolePrncpl.setQualifiers(populateDocRoleQualifier(rolePrincipal.getAttributes(), definitions)); |
719 | 0 | docRolePrncpl.setEdit(true); |
720 | 0 | docRoleMembers.add(docRolePrncpl); |
721 | 0 | } |
722 | |
} |
723 | |
} |
724 | 0 | return docRoleMembers; |
725 | |
} |
726 | |
|
727 | |
|
728 | |
|
729 | |
|
730 | |
protected List<KimDocumentRoleQualifier> populateDocRoleQualifier(List <RoleMemberAttributeDataImpl> qualifiers, AttributeDefinitionMap definitions) { |
731 | 0 | List <KimDocumentRoleQualifier> docRoleQualifiers = new ArrayList <KimDocumentRoleQualifier>(); |
732 | 0 | if(definitions!=null){ |
733 | 0 | for (String key : definitions.keySet()) { |
734 | 0 | AttributeDefinition definition = definitions.get(key); |
735 | 0 | String attrDefId=null; |
736 | 0 | if (definition instanceof KimDataDictionaryAttributeDefinition) { |
737 | 0 | attrDefId = ((KimDataDictionaryAttributeDefinition)definition).getKimAttrDefnId(); |
738 | |
} else { |
739 | 0 | attrDefId = ((KimNonDataDictionaryAttributeDefinition)definition).getKimAttrDefnId(); |
740 | |
} |
741 | 0 | boolean qualifierFound = false; |
742 | 0 | if(ObjectUtils.isNotNull(qualifiers)){ |
743 | 0 | for (RoleMemberAttributeDataImpl qualifier : qualifiers) { |
744 | 0 | if (attrDefId!=null && StringUtils.equals(attrDefId, qualifier.getKimAttributeId())) { |
745 | 0 | KimDocumentRoleQualifier docRoleQualifier = new KimDocumentRoleQualifier(); |
746 | 0 | docRoleQualifier.setAttrDataId(qualifier.getAttributeDataId()); |
747 | 0 | docRoleQualifier.setAttrVal(qualifier.getAttributeValue()); |
748 | 0 | docRoleQualifier.setKimAttrDefnId(qualifier.getKimAttributeId()); |
749 | 0 | docRoleQualifier.setKimAttribute(qualifier.getKimAttribute()); |
750 | 0 | docRoleQualifier.setKimTypId(qualifier.getKimTypeId()); |
751 | 0 | docRoleQualifier.setRoleMemberId(qualifier.getRoleMemberId()); |
752 | 0 | docRoleQualifier.setEdit(true); |
753 | 0 | formatAttrValIfNecessary(docRoleQualifier); |
754 | 0 | docRoleQualifiers.add(docRoleQualifier); |
755 | 0 | qualifierFound = true; |
756 | 0 | break; |
757 | |
} |
758 | |
} |
759 | |
} |
760 | 0 | if (!qualifierFound) { |
761 | 0 | KimDocumentRoleQualifier docRoleQualifier = new KimDocumentRoleQualifier(); |
762 | 0 | docRoleQualifier.setAttrVal(""); |
763 | 0 | docRoleQualifier.setKimAttrDefnId(attrDefId); |
764 | 0 | docRoleQualifier.refreshReferenceObject("kimAttribute"); |
765 | 0 | docRoleQualifiers.add(docRoleQualifier); |
766 | |
} |
767 | 0 | } |
768 | |
|
769 | |
|
770 | |
|
771 | 0 | if (!Boolean.valueOf(ConfigContext.getCurrentContextConfig().getProperty(SHOW_BLANK_QUALIFIERS))) { |
772 | 0 | int qualCount = 0; |
773 | 0 | for (KimDocumentRoleQualifier qual : docRoleQualifiers){ |
774 | 0 | if (StringUtils.isEmpty(qual.getAttrVal())){ |
775 | 0 | qualCount++; |
776 | |
} |
777 | |
} |
778 | 0 | if (qualCount == docRoleQualifiers.size()){ |
779 | 0 | return new ArrayList <KimDocumentRoleQualifier>(); |
780 | |
} |
781 | |
} |
782 | |
} |
783 | 0 | return docRoleQualifiers; |
784 | |
} |
785 | |
|
786 | |
protected List<PersonDocumentName> loadNames( IdentityManagementPersonDocument personDoc, String principalId, List <KimEntityNameInfo> names, boolean suppressDisplay ) { |
787 | 0 | List<PersonDocumentName> docNames = new ArrayList<PersonDocumentName>(); |
788 | 0 | if(ObjectUtils.isNotNull(names)){ |
789 | 0 | for (KimEntityNameInfo name: names) { |
790 | 0 | if(name.isActive()){ |
791 | 0 | PersonDocumentName docName = new PersonDocumentName(); |
792 | 0 | docName.setNameTypeCode(name.getNameTypeCode()); |
793 | |
|
794 | |
|
795 | 0 | docName.setFirstName(name.getFirstNameUnmasked()); |
796 | 0 | docName.setLastName(name.getLastNameUnmasked()); |
797 | 0 | docName.setMiddleName(name.getMiddleNameUnmasked()); |
798 | 0 | docName.setTitle(name.getTitleUnmasked()); |
799 | 0 | docName.setSuffix(name.getSuffixUnmasked()); |
800 | |
|
801 | 0 | docName.setActive(name.isActive()); |
802 | 0 | docName.setDflt(name.isDefaultValue()); |
803 | 0 | docName.setEdit(true); |
804 | 0 | docName.setEntityNameId(name.getEntityNameId()); |
805 | 0 | docNames.add(docName); |
806 | 0 | } |
807 | |
} |
808 | |
} |
809 | 0 | return docNames; |
810 | |
} |
811 | |
|
812 | |
public boolean canModifyEntity( String currentUserPrincipalId, String toModifyPrincipalId ){ |
813 | 0 | return (StringUtils.isNotBlank(currentUserPrincipalId) && StringUtils.isNotBlank(toModifyPrincipalId) && |
814 | |
currentUserPrincipalId.equals(toModifyPrincipalId)) || |
815 | |
getIdentityManagementService().isAuthorized( |
816 | |
currentUserPrincipalId, |
817 | |
KimConstants.NAMESPACE_CODE, |
818 | |
KimConstants.PermissionNames.MODIFY_ENTITY, |
819 | |
null, |
820 | |
new AttributeSet(KimConstants.AttributeConstants.PRINCIPAL_ID, currentUserPrincipalId)); |
821 | |
} |
822 | |
|
823 | |
public boolean canOverrideEntityPrivacyPreferences( String currentUserPrincipalId, String toModifyPrincipalId ){ |
824 | 0 | return (StringUtils.isNotBlank(currentUserPrincipalId) && StringUtils.isNotBlank(toModifyPrincipalId) && |
825 | |
currentUserPrincipalId.equals(toModifyPrincipalId)) || |
826 | |
getIdentityManagementService().isAuthorized( |
827 | |
currentUserPrincipalId, |
828 | |
KimConstants.NAMESPACE_CODE, |
829 | |
KimConstants.PermissionNames.OVERRIDE_ENTITY_PRIVACY_PREFERENCES, |
830 | |
null, |
831 | |
new AttributeSet(KimConstants.AttributeConstants.PRINCIPAL_ID, currentUserPrincipalId) ); |
832 | |
} |
833 | |
|
834 | |
protected boolean canAssignToRole(IdentityManagementRoleDocument document, String initiatorPrincipalId){ |
835 | 0 | boolean rulePassed = true; |
836 | 0 | Map<String,String> additionalPermissionDetails = new HashMap<String,String>(); |
837 | 0 | additionalPermissionDetails.put(KimConstants.AttributeConstants.NAMESPACE_CODE, document.getRoleNamespace()); |
838 | 0 | additionalPermissionDetails.put(KimConstants.AttributeConstants.ROLE_NAME, document.getRoleName()); |
839 | 0 | if(!getDocumentHelperService().getDocumentAuthorizer(document).isAuthorizedByTemplate( |
840 | |
document, KimConstants.NAMESPACE_CODE, KimConstants.PermissionTemplateNames.ASSIGN_ROLE, |
841 | |
initiatorPrincipalId, additionalPermissionDetails, null)){ |
842 | 0 | rulePassed = false; |
843 | |
} |
844 | 0 | return rulePassed; |
845 | |
} |
846 | |
|
847 | |
protected List<PersonDocumentAffiliation> loadAffiliations(List <KimEntityAffiliationInfo> affiliations, List<KimEntityEmploymentInformationInfo> empInfos) { |
848 | 0 | List<PersonDocumentAffiliation> docAffiliations = new ArrayList<PersonDocumentAffiliation>(); |
849 | 0 | if(ObjectUtils.isNotNull(affiliations)){ |
850 | 0 | for (KimEntityAffiliation affiliation: affiliations) { |
851 | 0 | if(affiliation.isActive()){ |
852 | 0 | PersonDocumentAffiliation docAffiliation = new PersonDocumentAffiliation(); |
853 | 0 | docAffiliation.setAffiliationTypeCode(affiliation.getAffiliationTypeCode()); |
854 | 0 | docAffiliation.setCampusCode(affiliation.getCampusCode()); |
855 | 0 | docAffiliation.setActive(affiliation.isActive()); |
856 | 0 | docAffiliation.setDflt(affiliation.isDefaultValue()); |
857 | 0 | docAffiliation.setEntityAffiliationId(affiliation.getEntityAffiliationId()); |
858 | 0 | docAffiliation.refreshReferenceObject("affiliationType"); |
859 | |
|
860 | 0 | docAffiliations.add(docAffiliation); |
861 | 0 | docAffiliation.setEdit(true); |
862 | |
|
863 | 0 | List<PersonDocumentEmploymentInfo> docEmploymentInformations = new ArrayList<PersonDocumentEmploymentInfo>(); |
864 | 0 | if(ObjectUtils.isNotNull(empInfos)){ |
865 | 0 | for (KimEntityEmploymentInformationInfo empInfo: empInfos) { |
866 | 0 | if (empInfo.isActive() && StringUtils.equals(docAffiliation.getEntityAffiliationId(), empInfo.getEntityAffiliationId())) { |
867 | 0 | PersonDocumentEmploymentInfo docEmpInfo = new PersonDocumentEmploymentInfo(); |
868 | 0 | docEmpInfo.setEntityEmploymentId(empInfo.getEntityEmploymentId()); |
869 | 0 | docEmpInfo.setEmployeeId(empInfo.getEmployeeId()); |
870 | 0 | docEmpInfo.setEmploymentRecordId(empInfo.getEmploymentRecordId()); |
871 | 0 | docEmpInfo.setBaseSalaryAmount(empInfo.getBaseSalaryAmount()); |
872 | 0 | docEmpInfo.setPrimaryDepartmentCode(empInfo.getPrimaryDepartmentCode()); |
873 | 0 | docEmpInfo.setEmploymentStatusCode(empInfo.getEmployeeStatusCode()); |
874 | 0 | docEmpInfo.setEmploymentTypeCode(empInfo.getEmployeeTypeCode()); |
875 | 0 | docEmpInfo.setActive(empInfo.isActive()); |
876 | 0 | docEmpInfo.setPrimary(empInfo.isPrimary()); |
877 | 0 | docEmpInfo.setEntityAffiliationId(empInfo.getEntityAffiliationId()); |
878 | |
|
879 | |
|
880 | 0 | docEmpInfo.setEdit(true); |
881 | 0 | docEmpInfo.refreshReferenceObject("employmentType"); |
882 | 0 | docEmploymentInformations.add(docEmpInfo); |
883 | 0 | } |
884 | |
} |
885 | |
} |
886 | 0 | docAffiliation.setEmpInfos(docEmploymentInformations); |
887 | 0 | } |
888 | |
} |
889 | |
} |
890 | 0 | return docAffiliations; |
891 | |
|
892 | |
} |
893 | |
|
894 | |
protected boolean setupPrincipal(IdentityManagementPersonDocument identityManagementPersonDocument, KimEntityImpl kimEntity, List<KimPrincipalImpl> origPrincipals) { |
895 | 0 | boolean inactivatingPrincipal = false; |
896 | 0 | List<KimPrincipalImpl> principals = new ArrayList<KimPrincipalImpl>(); |
897 | 0 | KimPrincipalImpl principal = new KimPrincipalImpl(); |
898 | 0 | principal.setPrincipalId(identityManagementPersonDocument.getPrincipalId()); |
899 | 0 | principal.setPrincipalName(identityManagementPersonDocument.getPrincipalName()); |
900 | 0 | principal.setPassword(identityManagementPersonDocument.getPassword()); |
901 | 0 | principal.setActive(identityManagementPersonDocument.isActive()); |
902 | 0 | principal.setEntityId(identityManagementPersonDocument.getEntityId()); |
903 | 0 | if(ObjectUtils.isNotNull(origPrincipals)){ |
904 | 0 | for (KimPrincipalImpl prncpl : origPrincipals) { |
905 | 0 | if (prncpl.getPrincipalId()!=null && StringUtils.equals(prncpl.getPrincipalId(), principal.getPrincipalId())) { |
906 | 0 | principal.setVersionNumber(prncpl.getVersionNumber()); |
907 | |
|
908 | 0 | if ( prncpl.isActive() && !principal.isActive() ) { |
909 | 0 | inactivatingPrincipal = true; |
910 | |
} |
911 | |
} |
912 | |
} |
913 | |
} |
914 | 0 | principals.add(principal); |
915 | |
|
916 | 0 | kimEntity.setPrincipals(principals); |
917 | 0 | return inactivatingPrincipal; |
918 | |
} |
919 | |
|
920 | |
protected void setupPrivacy(IdentityManagementPersonDocument identityManagementPersonDocument, KimEntityImpl kimEntity, KimEntityPrivacyPreferencesImpl origPrivacy) { |
921 | 0 | KimEntityPrivacyPreferencesImpl privacyPreferences = new KimEntityPrivacyPreferencesImpl(); |
922 | 0 | privacyPreferences.setEntityId(identityManagementPersonDocument.getEntityId()); |
923 | 0 | privacyPreferences.setSuppressAddress(identityManagementPersonDocument.getPrivacy().isSuppressAddress()); |
924 | 0 | privacyPreferences.setSuppressEmail(identityManagementPersonDocument.getPrivacy().isSuppressEmail()); |
925 | 0 | privacyPreferences.setSuppressName(identityManagementPersonDocument.getPrivacy().isSuppressName()); |
926 | 0 | privacyPreferences.setSuppressPhone(identityManagementPersonDocument.getPrivacy().isSuppressPhone()); |
927 | 0 | privacyPreferences.setSuppressPersonal(identityManagementPersonDocument.getPrivacy().isSuppressPersonal()); |
928 | 0 | if (ObjectUtils.isNotNull(origPrivacy)) { |
929 | 0 | privacyPreferences.setVersionNumber(origPrivacy.getVersionNumber()); |
930 | |
} |
931 | 0 | kimEntity.setPrivacyPreferences(privacyPreferences); |
932 | 0 | } |
933 | |
protected PersonDocumentPrivacy loadPrivacyReferences(KimEntityPrivacyPreferences privacyPreferences) { |
934 | 0 | PersonDocumentPrivacy docPrivacy = new PersonDocumentPrivacy(); |
935 | 0 | docPrivacy.setSuppressAddress(privacyPreferences.isSuppressAddress()); |
936 | 0 | docPrivacy.setSuppressEmail(privacyPreferences.isSuppressEmail()); |
937 | 0 | docPrivacy.setSuppressName(privacyPreferences.isSuppressName()); |
938 | 0 | docPrivacy.setSuppressPhone(privacyPreferences.isSuppressPhone()); |
939 | 0 | docPrivacy.setSuppressPersonal(privacyPreferences.isSuppressPersonal()); |
940 | 0 | docPrivacy.setEdit(true); |
941 | 0 | return docPrivacy; |
942 | |
} |
943 | |
|
944 | |
protected void setupName(IdentityManagementPersonDocument identityManagementPersonDocument, KimEntityImpl kimEntity, List<KimEntityNameImpl> origNames) { |
945 | 0 | if ( !identityManagementPersonDocument.getPrivacy().isSuppressName() || |
946 | |
canOverrideEntityPrivacyPreferences( getInitiatorPrincipalId(identityManagementPersonDocument), identityManagementPersonDocument.getPrincipalId() ) ) { |
947 | 0 | List<KimEntityNameImpl> entityNames = new ArrayList<KimEntityNameImpl>(); |
948 | 0 | if(CollectionUtils.isNotEmpty(identityManagementPersonDocument.getNames())){ |
949 | 0 | for (PersonDocumentName name : identityManagementPersonDocument.getNames()) { |
950 | 0 | KimEntityNameImpl entityName = new KimEntityNameImpl(); |
951 | 0 | entityName.setNameTypeCode(name.getNameTypeCode()); |
952 | 0 | entityName.setFirstName(name.getFirstName()); |
953 | 0 | entityName.setLastName(name.getLastName()); |
954 | 0 | entityName.setMiddleName(name.getMiddleName()); |
955 | 0 | entityName.setTitle(name.getTitle()); |
956 | 0 | entityName.setSuffix(name.getSuffix()); |
957 | 0 | entityName.setActive(name.isActive()); |
958 | 0 | entityName.setDefaultValue(name.isDflt()); |
959 | 0 | entityName.setEntityNameId(name.getEntityNameId()); |
960 | 0 | entityName.setEntityId(identityManagementPersonDocument.getEntityId()); |
961 | 0 | if(ObjectUtils.isNotNull(origNames)){ |
962 | 0 | for (KimEntityNameImpl origName : origNames) { |
963 | 0 | if (origName.getEntityNameId()!=null && StringUtils.equals(origName.getEntityNameId(), entityName.getEntityNameId())) { |
964 | 0 | entityName.setVersionNumber(origName.getVersionNumber()); |
965 | |
} |
966 | |
|
967 | |
} |
968 | |
} |
969 | 0 | entityNames.add(entityName); |
970 | 0 | } |
971 | |
} |
972 | 0 | kimEntity.setNames(entityNames); |
973 | |
} |
974 | 0 | } |
975 | |
|
976 | |
protected void setupAffiliation(IdentityManagementPersonDocument identityManagementPersonDocument, KimEntityImpl kimEntity,List<KimEntityAffiliationImpl> origAffiliations, List<KimEntityEmploymentInformationImpl> origEmpInfos) { |
977 | 0 | List<KimEntityAffiliationImpl> entityAffiliations = new ArrayList<KimEntityAffiliationImpl>(); |
978 | |
|
979 | 0 | List<KimEntityEmploymentInformationImpl> entityEmploymentInformations = new ArrayList<KimEntityEmploymentInformationImpl>(); |
980 | 0 | if(CollectionUtils.isNotEmpty(identityManagementPersonDocument.getAffiliations())){ |
981 | 0 | for (PersonDocumentAffiliation affiliation : identityManagementPersonDocument.getAffiliations()) { |
982 | 0 | KimEntityAffiliationImpl entityAffiliation = new KimEntityAffiliationImpl(); |
983 | 0 | entityAffiliation.setAffiliationTypeCode(affiliation.getAffiliationTypeCode()); |
984 | 0 | entityAffiliation.setCampusCode(affiliation.getCampusCode()); |
985 | 0 | entityAffiliation.setActive(affiliation.isActive()); |
986 | 0 | entityAffiliation.setDefaultValue(affiliation.isDflt()); |
987 | 0 | entityAffiliation.setEntityId(identityManagementPersonDocument.getEntityId()); |
988 | 0 | entityAffiliation.setEntityAffiliationId(affiliation.getEntityAffiliationId()); |
989 | 0 | if(ObjectUtils.isNotNull(origAffiliations)){ |
990 | |
|
991 | 0 | for (KimEntityAffiliationImpl origAffiliation : origAffiliations) { |
992 | 0 | if(isSameAffiliation(origAffiliation, entityAffiliation)){ |
993 | 0 | entityAffiliation.setEntityAffiliationId(origAffiliation.getEntityAffiliationId()); |
994 | |
} |
995 | 0 | if (origAffiliation.getEntityAffiliationId()!=null && StringUtils.equals(origAffiliation.getEntityAffiliationId(), entityAffiliation.getEntityAffiliationId())) { |
996 | 0 | entityAffiliation.setVersionNumber(origAffiliation.getVersionNumber()); |
997 | |
} |
998 | |
} |
999 | |
} |
1000 | 0 | entityAffiliations.add(entityAffiliation); |
1001 | 0 | int employeeRecordCounter = origEmpInfos==null?0:origEmpInfos.size(); |
1002 | 0 | if(CollectionUtils.isNotEmpty(affiliation.getEmpInfos())){ |
1003 | 0 | for (PersonDocumentEmploymentInfo empInfo : affiliation.getEmpInfos()) { |
1004 | 0 | KimEntityEmploymentInformationImpl entityEmpInfo = new KimEntityEmploymentInformationImpl(); |
1005 | 0 | entityEmpInfo.setEntityEmploymentId(empInfo.getEntityEmploymentId()); |
1006 | 0 | entityEmpInfo.setEmployeeId(empInfo.getEmployeeId()); |
1007 | 0 | entityEmpInfo.setEmploymentRecordId(empInfo.getEmploymentRecordId()); |
1008 | 0 | entityEmpInfo.setBaseSalaryAmount(empInfo.getBaseSalaryAmount()); |
1009 | 0 | entityEmpInfo.setPrimaryDepartmentCode(empInfo.getPrimaryDepartmentCode()); |
1010 | 0 | entityEmpInfo.setEmployeeStatusCode(empInfo.getEmploymentStatusCode()); |
1011 | 0 | entityEmpInfo.setEmployeeTypeCode(empInfo.getEmploymentTypeCode()); |
1012 | 0 | entityEmpInfo.setActive(empInfo.isActive()); |
1013 | 0 | entityEmpInfo.setPrimary(empInfo.isPrimary()); |
1014 | 0 | entityEmpInfo.setEntityId(identityManagementPersonDocument.getEntityId()); |
1015 | 0 | entityEmpInfo.setEntityAffiliationId(empInfo.getEntityAffiliationId()); |
1016 | 0 | if(ObjectUtils.isNotNull(origEmpInfos)){ |
1017 | 0 | for (KimEntityEmploymentInformationImpl origEmpInfo : origEmpInfos) { |
1018 | 0 | if(isSameEmpInfo(origEmpInfo, entityEmpInfo)){ |
1019 | 0 | entityEmpInfo.setEntityEmploymentId(entityEmpInfo.getEntityEmploymentId()); |
1020 | |
} |
1021 | |
|
1022 | 0 | if (origEmpInfo.getEntityEmploymentId()!=null && StringUtils.equals(origEmpInfo.getEntityEmploymentId(), entityEmpInfo.getEntityEmploymentId())) { |
1023 | 0 | entityEmpInfo.setVersionNumber(origEmpInfo.getVersionNumber()); |
1024 | 0 | entityEmpInfo.setEmploymentRecordId(empInfo.getEmploymentRecordId()); |
1025 | |
} |
1026 | |
} |
1027 | |
} |
1028 | 0 | if(StringUtils.isEmpty(entityEmpInfo.getEmploymentRecordId())){ |
1029 | 0 | employeeRecordCounter++; |
1030 | 0 | entityEmpInfo.setEmploymentRecordId(employeeRecordCounter+""); |
1031 | |
} |
1032 | 0 | entityEmploymentInformations.add(entityEmpInfo); |
1033 | 0 | } |
1034 | |
} |
1035 | 0 | } |
1036 | |
} |
1037 | 0 | kimEntity.setEmploymentInformation(entityEmploymentInformations); |
1038 | 0 | kimEntity.setAffiliations(entityAffiliations); |
1039 | 0 | } |
1040 | |
|
1041 | |
private boolean isSameAffiliation(KimEntityAffiliationImpl origAffiliation, KimEntityAffiliationImpl entityAffiliation){ |
1042 | |
|
1043 | |
|
1044 | |
|
1045 | 0 | return (origAffiliation!=null && entityAffiliation!=null) && |
1046 | |
(StringUtils.isNotEmpty(origAffiliation.getCampusCode()) && StringUtils.equals(origAffiliation.getCampusCode(), entityAffiliation.getCampusCode())) |
1047 | |
&& |
1048 | |
(StringUtils.isNotEmpty(origAffiliation.getAffiliationTypeCode()) && StringUtils.equals(origAffiliation.getAffiliationTypeCode(), entityAffiliation.getAffiliationTypeCode())) |
1049 | |
&& |
1050 | |
(StringUtils.isNotEmpty(origAffiliation.getEntityId()) && StringUtils.equals(origAffiliation.getEntityId(), entityAffiliation.getEntityId())); |
1051 | |
} |
1052 | |
|
1053 | |
private boolean isSameEmpInfo(KimEntityEmploymentInformationImpl origEmpInfo, KimEntityEmploymentInformationImpl entityEmpInfo){ |
1054 | |
|
1055 | |
|
1056 | |
|
1057 | |
|
1058 | 0 | return (origEmpInfo!=null && entityEmpInfo!=null) |
1059 | |
&& (StringUtils.isNotEmpty(origEmpInfo.getEmploymentRecordId()) |
1060 | |
&& StringUtils.equals(origEmpInfo.getEmploymentRecordId(), entityEmpInfo.getEmploymentRecordId() ) |
1061 | |
) |
1062 | |
&& StringUtils.equals( origEmpInfo.getEntityId(),entityEmpInfo.getEntityId()); |
1063 | |
} |
1064 | |
|
1065 | |
protected void setupPhone(IdentityManagementPersonDocument identityManagementPersonDocument, KimEntityEntityTypeImpl entityType, List<KimEntityPhone> origPhones) { |
1066 | 0 | if ( !identityManagementPersonDocument.getPrivacy().isSuppressPhone() || canOverrideEntityPrivacyPreferences(getInitiatorPrincipalId(identityManagementPersonDocument), identityManagementPersonDocument.getPrincipalId()) ) { |
1067 | 0 | List<KimEntityPhone> entityPhones = new ArrayList<KimEntityPhone>(); |
1068 | 0 | if(CollectionUtils.isNotEmpty(identityManagementPersonDocument.getPhones())){ |
1069 | 0 | for (PersonDocumentPhone phone : identityManagementPersonDocument.getPhones()) { |
1070 | 0 | KimEntityPhoneImpl entityPhone = new KimEntityPhoneImpl(); |
1071 | 0 | entityPhone.setPhoneTypeCode(phone.getPhoneTypeCode()); |
1072 | 0 | entityPhone.setEntityId(identityManagementPersonDocument.getEntityId()); |
1073 | 0 | entityPhone.setEntityPhoneId(phone.getEntityPhoneId()); |
1074 | 0 | entityPhone.setEntityTypeCode(entityType.getEntityTypeCode()); |
1075 | 0 | entityPhone.setPhoneNumber(phone.getPhoneNumber()); |
1076 | 0 | entityPhone.setCountryCode(phone.getCountryCode()); |
1077 | 0 | entityPhone.setExtension(phone.getExtension()); |
1078 | 0 | entityPhone.setExtensionNumber(phone.getExtensionNumber()); |
1079 | 0 | entityPhone.setActive(phone.isActive()); |
1080 | 0 | entityPhone.setDefaultValue(phone.isDflt()); |
1081 | 0 | if(ObjectUtils.isNotNull(origPhones)){ |
1082 | 0 | for (KimEntityPhone origPhone : origPhones) { |
1083 | 0 | if (origPhone.getEntityPhoneId()!=null && StringUtils.equals(origPhone.getEntityPhoneId(), entityPhone.getEntityPhoneId())) { |
1084 | 0 | entityPhone.setVersionNumber(((KimEntityPhoneImpl)origPhone).getVersionNumber()); |
1085 | |
} |
1086 | |
} |
1087 | |
} |
1088 | 0 | entityPhone.setEntityPhoneId(phone.getEntityPhoneId()); |
1089 | 0 | entityPhones.add(entityPhone); |
1090 | 0 | } |
1091 | |
} |
1092 | 0 | entityType.setPhoneNumbers(entityPhones); |
1093 | |
} |
1094 | 0 | } |
1095 | |
|
1096 | |
protected List<PersonDocumentPhone> loadPhones(IdentityManagementPersonDocument identityManagementPersonDocument, String principalId, List<KimEntityPhoneInfo> entityPhones, boolean suppressDisplay ) { |
1097 | 0 | List<PersonDocumentPhone> docPhones = new ArrayList<PersonDocumentPhone>(); |
1098 | 0 | if(ObjectUtils.isNotNull(entityPhones)){ |
1099 | 0 | for (KimEntityPhone phone: entityPhones) { |
1100 | 0 | if(phone.isActive()){ |
1101 | 0 | PersonDocumentPhone docPhone = new PersonDocumentPhone(); |
1102 | 0 | docPhone.setPhoneTypeCode(phone.getPhoneTypeCode()); |
1103 | |
|
1104 | 0 | docPhone.setEntityTypeCode(phone.getEntityTypeCode()); |
1105 | |
|
1106 | 0 | docPhone.setPhoneNumber(phone.getPhoneNumberUnmasked()); |
1107 | 0 | docPhone.setCountryCode(phone.getCountryCodeUnmasked()); |
1108 | 0 | docPhone.setExtensionNumber(phone.getExtensionNumberUnmasked()); |
1109 | |
|
1110 | 0 | docPhone.setActive(phone.isActive()); |
1111 | 0 | docPhone.setDflt(phone.isDefaultValue()); |
1112 | 0 | docPhone.setEntityPhoneId(phone.getEntityPhoneId()); |
1113 | 0 | docPhone.setEdit(true); |
1114 | 0 | docPhones.add(docPhone); |
1115 | 0 | } |
1116 | |
} |
1117 | |
} |
1118 | 0 | return docPhones; |
1119 | |
|
1120 | |
} |
1121 | |
|
1122 | |
protected void setupEmail( |
1123 | |
IdentityManagementPersonDocument identityManagementPersonDocument, |
1124 | |
KimEntityEntityTypeImpl entityType, List<KimEntityEmail> origEmails) { |
1125 | 0 | if ( !identityManagementPersonDocument.getPrivacy().isSuppressEmail() || canOverrideEntityPrivacyPreferences(getInitiatorPrincipalId(identityManagementPersonDocument), identityManagementPersonDocument.getPrincipalId()) ) { |
1126 | 0 | List<KimEntityEmail> entityEmails = new ArrayList<KimEntityEmail>(); |
1127 | 0 | if(CollectionUtils.isNotEmpty(identityManagementPersonDocument.getEmails())){ |
1128 | 0 | for (PersonDocumentEmail email : identityManagementPersonDocument.getEmails()) { |
1129 | 0 | KimEntityEmailImpl entityEmail = new KimEntityEmailImpl(); |
1130 | 0 | entityEmail.setEntityId(identityManagementPersonDocument.getEntityId()); |
1131 | 0 | entityEmail.setEntityTypeCode(entityType.getEntityTypeCode()); |
1132 | 0 | entityEmail.setEmailTypeCode(email.getEmailTypeCode()); |
1133 | 0 | entityEmail.setEmailAddress(email.getEmailAddress()); |
1134 | 0 | entityEmail.setActive(email.isActive()); |
1135 | 0 | entityEmail.setDefaultValue(email.isDflt()); |
1136 | 0 | entityEmail.setEntityEmailId(email.getEntityEmailId()); |
1137 | 0 | if(ObjectUtils.isNotNull(origEmails)){ |
1138 | 0 | for (KimEntityEmail origEmail : origEmails) { |
1139 | 0 | if (origEmail.getEntityEmailId()!=null && StringUtils.equals(origEmail.getEntityEmailId(), entityEmail.getEntityEmailId())) { |
1140 | 0 | entityEmail.setVersionNumber(((KimEntityEmailImpl)origEmail).getVersionNumber()); |
1141 | |
} |
1142 | |
} |
1143 | |
} |
1144 | 0 | entityEmails.add(entityEmail); |
1145 | 0 | } |
1146 | |
} |
1147 | 0 | entityType.setEmailAddresses(entityEmails); |
1148 | |
} |
1149 | 0 | } |
1150 | |
protected List<PersonDocumentEmail> loadEmails(IdentityManagementPersonDocument identityManagementPersonDocument, String principalId, List<KimEntityEmailInfo> entityEmails, boolean suppressDisplay ) { |
1151 | 0 | List<PersonDocumentEmail> emails = new ArrayList<PersonDocumentEmail>(); |
1152 | 0 | if(ObjectUtils.isNotNull(entityEmails)){ |
1153 | 0 | for (KimEntityEmail email: entityEmails) { |
1154 | 0 | if(email.isActive()){ |
1155 | 0 | PersonDocumentEmail docEmail = new PersonDocumentEmail(); |
1156 | |
|
1157 | 0 | docEmail.setEntityTypeCode(email.getEntityTypeCode()); |
1158 | 0 | docEmail.setEmailTypeCode(email.getEmailTypeCode()); |
1159 | |
|
1160 | |
|
1161 | |
|
1162 | 0 | docEmail.setEmailAddress(email.getEmailAddressUnmasked()); |
1163 | |
|
1164 | 0 | docEmail.setActive(email.isActive()); |
1165 | 0 | docEmail.setDflt(email.isDefaultValue()); |
1166 | 0 | docEmail.setEntityEmailId(email.getEntityEmailId()); |
1167 | 0 | docEmail.setEdit(true); |
1168 | 0 | emails.add(docEmail); |
1169 | 0 | } |
1170 | |
} |
1171 | |
} |
1172 | 0 | return emails; |
1173 | |
} |
1174 | |
|
1175 | |
protected void setupAddress( |
1176 | |
IdentityManagementPersonDocument identityManagementPersonDocument, |
1177 | |
KimEntityEntityTypeImpl entityType, List<KimEntityAddress> origAddresses) { |
1178 | 0 | if ( !identityManagementPersonDocument.getPrivacy().isSuppressAddress() || canOverrideEntityPrivacyPreferences(getInitiatorPrincipalId(identityManagementPersonDocument), identityManagementPersonDocument.getPrincipalId()) ) { |
1179 | 0 | List<KimEntityAddress> entityAddresses = new ArrayList<KimEntityAddress>(); |
1180 | 0 | if(CollectionUtils.isNotEmpty(identityManagementPersonDocument.getAddrs())){ |
1181 | 0 | for (PersonDocumentAddress address : identityManagementPersonDocument.getAddrs()) { |
1182 | 0 | KimEntityAddressImpl entityAddress = new KimEntityAddressImpl(); |
1183 | 0 | entityAddress.setEntityId(identityManagementPersonDocument.getEntityId()); |
1184 | 0 | entityAddress.setEntityTypeCode(entityType.getEntityTypeCode()); |
1185 | 0 | entityAddress.setAddressTypeCode(address.getAddressTypeCode()); |
1186 | 0 | entityAddress.setLine1(address.getLine1()); |
1187 | 0 | entityAddress.setLine2(address.getLine2()); |
1188 | 0 | entityAddress.setLine3(address.getLine3()); |
1189 | 0 | entityAddress.setStateCode(address.getStateCode()); |
1190 | 0 | entityAddress.setPostalCode(address.getPostalCode()); |
1191 | 0 | entityAddress.setCountryCode(address.getCountryCode()); |
1192 | 0 | entityAddress.setCityName(address.getCityName()); |
1193 | 0 | entityAddress.setActive(address.isActive()); |
1194 | 0 | entityAddress.setDefaultValue(address.isDflt()); |
1195 | 0 | entityAddress.setEntityAddressId(address.getEntityAddressId()); |
1196 | 0 | if(ObjectUtils.isNotNull(origAddresses)){ |
1197 | 0 | for (KimEntityAddress origAddress : origAddresses) { |
1198 | 0 | if (origAddress.getEntityAddressId()!=null && StringUtils.equals(origAddress.getEntityAddressId(), entityAddress.getEntityAddressId())) { |
1199 | 0 | entityAddress.setVersionNumber(((KimEntityAddressImpl)origAddress).getVersionNumber()); |
1200 | |
} |
1201 | |
} |
1202 | |
} |
1203 | 0 | entityAddresses.add(entityAddress); |
1204 | 0 | } |
1205 | |
} |
1206 | 0 | entityType.setAddresses(entityAddresses); |
1207 | |
} |
1208 | 0 | } |
1209 | |
|
1210 | |
protected List<PersonDocumentAddress> loadAddresses(IdentityManagementPersonDocument identityManagementPersonDocument, String principalId, List<KimEntityAddressInfo> entityAddresses, boolean suppressDisplay ) { |
1211 | 0 | List<PersonDocumentAddress> docAddresses = new ArrayList<PersonDocumentAddress>(); |
1212 | 0 | if(ObjectUtils.isNotNull(entityAddresses)){ |
1213 | 0 | for (KimEntityAddress address: entityAddresses) { |
1214 | 0 | if(address.isActive()){ |
1215 | 0 | PersonDocumentAddress docAddress = new PersonDocumentAddress(); |
1216 | 0 | docAddress.setEntityTypeCode(address.getEntityTypeCode()); |
1217 | 0 | docAddress.setAddressTypeCode(address.getAddressTypeCode()); |
1218 | |
|
1219 | |
|
1220 | 0 | docAddress.setLine1(address.getLine1Unmasked()); |
1221 | 0 | docAddress.setLine2(address.getLine2Unmasked()); |
1222 | 0 | docAddress.setLine3(address.getLine3Unmasked()); |
1223 | 0 | docAddress.setStateCode(address.getStateCodeUnmasked()); |
1224 | 0 | docAddress.setPostalCode(address.getPostalCodeUnmasked()); |
1225 | 0 | docAddress.setCountryCode(address.getCountryCodeUnmasked()); |
1226 | 0 | docAddress.setCityName(address.getCityNameUnmasked()); |
1227 | |
|
1228 | 0 | docAddress.setActive(address.isActive()); |
1229 | 0 | docAddress.setDflt(address.isDefaultValue()); |
1230 | 0 | docAddress.setEntityAddressId(address.getEntityAddressId()); |
1231 | 0 | docAddress.setEdit(true); |
1232 | 0 | docAddresses.add(docAddress); |
1233 | 0 | } |
1234 | |
} |
1235 | |
} |
1236 | 0 | return docAddresses; |
1237 | |
} |
1238 | |
|
1239 | |
|
1240 | |
protected List <GroupMemberImpl> populateGroupMembers(IdentityManagementPersonDocument identityManagementPersonDocument) { |
1241 | 0 | List <GroupMemberImpl> groupPrincipals = new ArrayList<GroupMemberImpl>(); |
1242 | |
|
1243 | 0 | if(CollectionUtils.isNotEmpty(identityManagementPersonDocument.getGroups())){ |
1244 | 0 | for (PersonDocumentGroup group : identityManagementPersonDocument.getGroups()) { |
1245 | 0 | GroupMemberImpl groupPrincipalImpl = new GroupMemberImpl(); |
1246 | 0 | groupPrincipalImpl.setGroupId(group.getGroupId()); |
1247 | 0 | if (group.getActiveFromDate() != null) { |
1248 | 0 | groupPrincipalImpl.setActiveFromDate(new java.sql.Timestamp(group.getActiveFromDate().getTime())); |
1249 | |
} |
1250 | 0 | if (group.getActiveToDate() != null) { |
1251 | 0 | groupPrincipalImpl.setActiveToDate(new java.sql.Timestamp(group.getActiveToDate().getTime())); |
1252 | |
} |
1253 | 0 | groupPrincipalImpl.setGroupMemberId(group.getGroupMemberId()); |
1254 | 0 | groupPrincipalImpl.setMemberId(identityManagementPersonDocument.getPrincipalId()); |
1255 | 0 | groupPrincipalImpl.setMemberTypeCode(KimGroupMemberTypes.PRINCIPAL_MEMBER_TYPE); |
1256 | |
|
1257 | |
|
1258 | |
|
1259 | 0 | Collection<GroupMembershipInfo> currGroupMembers = getGroupService().getGroupMembersOfGroup(group.getGroupId()); |
1260 | 0 | if(ObjectUtils.isNotNull(currGroupMembers)){ |
1261 | 0 | for (GroupMembershipInfo origGroupMember: currGroupMembers) { |
1262 | 0 | if(origGroupMember.getGroupMemberId()!=null && StringUtils.equals(origGroupMember.getGroupMemberId(), group.getGroupMemberId())){ |
1263 | 0 | groupPrincipalImpl.setVersionNumber(origGroupMember.getVersionNumber()); |
1264 | |
} |
1265 | |
} |
1266 | |
} |
1267 | |
|
1268 | 0 | groupPrincipals.add(groupPrincipalImpl); |
1269 | |
|
1270 | 0 | } |
1271 | |
} |
1272 | 0 | return groupPrincipals; |
1273 | |
} |
1274 | |
|
1275 | |
protected List<RoleMemberImpl> populateRoleMembers(IdentityManagementPersonDocument identityManagementPersonDocument) { |
1276 | 0 | List<RoleImpl> origRoles = getRolesForPrincipal(identityManagementPersonDocument.getPrincipalId()); |
1277 | |
|
1278 | 0 | List <RoleMemberImpl> roleMembers = new ArrayList<RoleMemberImpl>(); |
1279 | 0 | if(CollectionUtils.isNotEmpty(identityManagementPersonDocument.getRoles())){ |
1280 | 0 | for (PersonDocumentRole role : identityManagementPersonDocument.getRoles()) { |
1281 | |
|
1282 | 0 | List<RoleMemberImpl> origRoleMembers = new ArrayList<RoleMemberImpl>(); |
1283 | 0 | if(ObjectUtils.isNotNull(origRoles)){ |
1284 | 0 | for (RoleImpl origRole : origRoles) { |
1285 | 0 | if (origRole.getRoleId()!=null && StringUtils.equals(origRole.getRoleId(), role.getRoleId())) { |
1286 | 0 | origRoleMembers = origRole.getMembers(); |
1287 | 0 | break; |
1288 | |
} |
1289 | |
} |
1290 | |
} |
1291 | 0 | if (role.getRolePrncpls().isEmpty()) { |
1292 | 0 | if (!role.getDefinitions().isEmpty()) { |
1293 | 0 | RoleMemberImpl roleMemberImpl = new RoleMemberImpl(); |
1294 | 0 | roleMemberImpl.setRoleId(role.getRoleId()); |
1295 | 0 | roleMemberImpl.setMemberId(identityManagementPersonDocument.getPrincipalId()); |
1296 | 0 | roleMemberImpl.setMemberTypeCode(Role.PRINCIPAL_MEMBER_TYPE); |
1297 | 0 | roleMembers.add(roleMemberImpl); |
1298 | 0 | } |
1299 | |
} else { |
1300 | 0 | for (KimDocumentRoleMember roleMember : role.getRolePrncpls()) { |
1301 | 0 | RoleMemberImpl roleMemberImpl = new RoleMemberImpl(); |
1302 | 0 | roleMemberImpl.setRoleId(role.getRoleId()); |
1303 | |
|
1304 | 0 | roleMemberImpl.setMemberId(identityManagementPersonDocument.getPrincipalId()); |
1305 | 0 | roleMemberImpl.setMemberTypeCode(Role.PRINCIPAL_MEMBER_TYPE); |
1306 | 0 | roleMemberImpl.setRoleMemberId(roleMember.getRoleMemberId()); |
1307 | 0 | if (roleMember.getActiveFromDate() != null) { |
1308 | 0 | roleMemberImpl.setActiveFromDate(new java.sql.Timestamp(roleMember.getActiveFromDate().getTime())); |
1309 | |
} |
1310 | 0 | if (roleMember.getActiveToDate() != null) { |
1311 | 0 | roleMemberImpl.setActiveToDate(new java.sql.Timestamp(roleMember.getActiveToDate().getTime())); |
1312 | |
} |
1313 | 0 | List<RoleMemberAttributeDataImpl> origAttributes = new ArrayList<RoleMemberAttributeDataImpl>(); |
1314 | 0 | if(ObjectUtils.isNotNull(origRoleMembers)){ |
1315 | 0 | for (RoleMemberImpl origMember : origRoleMembers) { |
1316 | 0 | if (origMember.getRoleMemberId()!=null && StringUtils.equals(origMember.getRoleMemberId(), roleMember.getRoleMemberId())) { |
1317 | 0 | origAttributes = origMember.getAttributes(); |
1318 | 0 | roleMemberImpl.setVersionNumber(origMember.getVersionNumber()); |
1319 | |
} |
1320 | |
} |
1321 | |
} |
1322 | 0 | List<RoleMemberAttributeDataImpl> attributes = new ArrayList<RoleMemberAttributeDataImpl>(); |
1323 | 0 | if(CollectionUtils.isNotEmpty(roleMember.getQualifiers())){ |
1324 | 0 | for (KimDocumentRoleQualifier qualifier : roleMember.getQualifiers()) { |
1325 | |
|
1326 | 0 | RoleMemberAttributeDataImpl attribute = new RoleMemberAttributeDataImpl(); |
1327 | 0 | attribute.setAttributeDataId(qualifier.getAttrDataId()); |
1328 | 0 | attribute.setAttributeValue(qualifier.getAttrVal()); |
1329 | 0 | attribute.setKimAttributeId(qualifier.getKimAttrDefnId()); |
1330 | 0 | attribute.setRoleMemberId(qualifier.getRoleMemberId()); |
1331 | 0 | attribute.setKimTypeId(qualifier.getKimTypId()); |
1332 | |
|
1333 | 0 | updateAttrValIfNecessary(attribute); |
1334 | |
|
1335 | 0 | if(ObjectUtils.isNotNull(origAttributes)){ |
1336 | 0 | for (RoleMemberAttributeDataImpl origAttribute : origAttributes) { |
1337 | 0 | if (origAttribute.getAttributeDataId()!=null && StringUtils.equals(origAttribute.getAttributeDataId(), qualifier.getAttrDataId())) { |
1338 | 0 | attribute.setVersionNumber(origAttribute.getVersionNumber()); |
1339 | |
} |
1340 | |
} |
1341 | |
} |
1342 | 0 | if (attribute.getVersionNumber() != null || StringUtils.isNotBlank(qualifier.getAttrVal())) { |
1343 | 0 | attributes.add(attribute); |
1344 | |
} |
1345 | |
|
1346 | 0 | } |
1347 | |
} |
1348 | 0 | roleMemberImpl.setAttributes(attributes); |
1349 | 0 | roleMembers.add(roleMemberImpl); |
1350 | 0 | } |
1351 | |
} |
1352 | |
|
1353 | 0 | } |
1354 | |
} |
1355 | 0 | return roleMembers; |
1356 | |
} |
1357 | |
|
1358 | |
protected List<KimDelegationImpl> populateDelegations(IdentityManagementPersonDocument identityManagementPersonDocument){ |
1359 | 0 | List<KimDelegationImpl> origDelegations = getPersonDelegations(identityManagementPersonDocument.getPrincipalId()); |
1360 | 0 | List<KimDelegationImpl> kimDelegations = new ArrayList<KimDelegationImpl>(); |
1361 | |
KimDelegationImpl newKimDelegation; |
1362 | 0 | KimDelegationImpl origDelegationImplTemp = null; |
1363 | 0 | List<KimDelegationMemberImpl> origMembers = new ArrayList<KimDelegationMemberImpl>(); |
1364 | 0 | boolean activatingInactive = false; |
1365 | 0 | String newDelegationIdAssigned = ""; |
1366 | 0 | if(CollectionUtils.isNotEmpty(identityManagementPersonDocument.getDelegations())){ |
1367 | 0 | for(RoleDocumentDelegation roleDocumentDelegation: identityManagementPersonDocument.getDelegations()){ |
1368 | 0 | newKimDelegation = new KimDelegationImpl(); |
1369 | 0 | KimCommonUtilsInternal.copyProperties(newKimDelegation, roleDocumentDelegation); |
1370 | 0 | newKimDelegation.setRoleId(roleDocumentDelegation.getRoleId()); |
1371 | 0 | if(ObjectUtils.isNotNull(origDelegations)){ |
1372 | 0 | for(KimDelegationImpl origDelegationImpl: origDelegations){ |
1373 | 0 | if((origDelegationImpl.getRoleId()!=null && StringUtils.equals(origDelegationImpl.getRoleId(), newKimDelegation.getRoleId())) && |
1374 | |
(origDelegationImpl.getDelegationId()!=null && StringUtils.equals(origDelegationImpl.getDelegationId(), newKimDelegation.getDelegationId()))){ |
1375 | |
|
1376 | 0 | newDelegationIdAssigned = newKimDelegation.getDelegationId(); |
1377 | 0 | newKimDelegation.setDelegationId(origDelegationImpl.getDelegationId()); |
1378 | 0 | activatingInactive = true; |
1379 | |
} |
1380 | 0 | if(origDelegationImpl.getDelegationId()!=null && StringUtils.equals(origDelegationImpl.getDelegationId(), newKimDelegation.getDelegationId())){ |
1381 | 0 | newKimDelegation.setVersionNumber(origDelegationImpl.getVersionNumber()); |
1382 | 0 | origDelegationImplTemp = origDelegationImpl; |
1383 | |
} |
1384 | |
} |
1385 | |
} |
1386 | 0 | origMembers = (origDelegationImplTemp==null || origDelegationImplTemp.getMembers()==null)? |
1387 | |
new ArrayList<KimDelegationMemberImpl>():origDelegationImplTemp.getMembers(); |
1388 | 0 | newKimDelegation.setMembers(getDelegationMembers(roleDocumentDelegation.getMembers(), origMembers, activatingInactive, newDelegationIdAssigned)); |
1389 | 0 | kimDelegations.add(newKimDelegation); |
1390 | 0 | activatingInactive = false; |
1391 | |
} |
1392 | |
} |
1393 | 0 | return kimDelegations; |
1394 | |
} |
1395 | |
|
1396 | |
protected List <RoleMemberAttributeDataImpl> getBlankRoleMemberAttrs(List <RoleMemberImpl> rolePrncpls) { |
1397 | |
|
1398 | 0 | List <RoleMemberAttributeDataImpl> blankRoleMemberAttrs = new ArrayList<RoleMemberAttributeDataImpl>(); |
1399 | 0 | if(ObjectUtils.isNotNull(rolePrncpls)){ |
1400 | 0 | for (RoleMemberImpl roleMbr : rolePrncpls) { |
1401 | 0 | List <RoleMemberAttributeDataImpl> roleMemberAttrs = new ArrayList<RoleMemberAttributeDataImpl>(); |
1402 | 0 | if (CollectionUtils.isNotEmpty(roleMbr.getAttributes())) { |
1403 | 0 | for (RoleMemberAttributeDataImpl attr : roleMbr.getAttributes()) { |
1404 | 0 | if (StringUtils.isBlank(attr.getAttributeValue())) { |
1405 | 0 | roleMemberAttrs.add(attr); |
1406 | |
} |
1407 | |
} |
1408 | 0 | if (!roleMemberAttrs.isEmpty()) { |
1409 | 0 | roleMbr.getAttributes().removeAll(roleMemberAttrs); |
1410 | 0 | blankRoleMemberAttrs.addAll(roleMemberAttrs); |
1411 | |
} |
1412 | |
|
1413 | |
} |
1414 | 0 | } |
1415 | |
} |
1416 | |
|
1417 | 0 | return blankRoleMemberAttrs; |
1418 | |
|
1419 | |
} |
1420 | |
|
1421 | |
protected List <RoleResponsibilityActionImpl> populateRoleRspActions(IdentityManagementPersonDocument identityManagementPersonDocument) { |
1422 | |
|
1423 | |
|
1424 | 0 | List <RoleResponsibilityActionImpl> roleRspActions = new ArrayList<RoleResponsibilityActionImpl>(); |
1425 | 0 | if(CollectionUtils.isNotEmpty(identityManagementPersonDocument.getRoles())){ |
1426 | 0 | for (PersonDocumentRole role : identityManagementPersonDocument.getRoles()) { |
1427 | 0 | if(CollectionUtils.isNotEmpty(role.getRolePrncpls())){ |
1428 | 0 | for (KimDocumentRoleMember roleMbr : role.getRolePrncpls()) { |
1429 | 0 | if(CollectionUtils.isNotEmpty(roleMbr.getRoleRspActions())){ |
1430 | 0 | for (KimDocumentRoleResponsibilityAction roleRspAction : roleMbr.getRoleRspActions()) { |
1431 | 0 | RoleResponsibilityActionImpl entRoleRspAction = new RoleResponsibilityActionImpl(); |
1432 | 0 | entRoleRspAction.setRoleResponsibilityActionId(roleRspAction.getRoleResponsibilityActionId()); |
1433 | 0 | entRoleRspAction.setActionPolicyCode(roleRspAction.getActionPolicyCode()); |
1434 | 0 | entRoleRspAction.setActionTypeCode(roleRspAction.getActionTypeCode()); |
1435 | 0 | entRoleRspAction.setPriorityNumber(roleRspAction.getPriorityNumber()); |
1436 | 0 | entRoleRspAction.setRoleMemberId(roleRspAction.getRoleMemberId()); |
1437 | 0 | entRoleRspAction.setRoleResponsibilityActionId(roleRspAction.getRoleResponsibilityActionId()); |
1438 | 0 | entRoleRspAction.setRoleResponsibilityId(roleRspAction.getRoleResponsibilityId()); |
1439 | 0 | List<RoleResponsibilityActionImpl> actions = getRoleRspActions( roleMbr.getRoleMemberId()); |
1440 | 0 | if(ObjectUtils.isNotNull(actions)){ |
1441 | 0 | for(RoleResponsibilityActionImpl orgRspAction : actions) { |
1442 | 0 | if (orgRspAction.getRoleResponsibilityActionId()!=null && StringUtils.equals(orgRspAction.getRoleResponsibilityActionId(), roleRspAction.getRoleResponsibilityActionId())) { |
1443 | 0 | entRoleRspAction.setVersionNumber(orgRspAction.getVersionNumber()); |
1444 | |
} |
1445 | |
} |
1446 | |
} |
1447 | 0 | roleRspActions.add(entRoleRspAction); |
1448 | 0 | } |
1449 | |
} |
1450 | |
} |
1451 | |
} |
1452 | |
} |
1453 | |
} |
1454 | 0 | return roleRspActions; |
1455 | |
|
1456 | |
} |
1457 | |
|
1458 | |
protected BusinessObjectService getBusinessObjectService() { |
1459 | 0 | if ( businessObjectService == null ) { |
1460 | 0 | businessObjectService = KNSServiceLocator.getBusinessObjectService(); |
1461 | |
} |
1462 | 0 | return businessObjectService; |
1463 | |
} |
1464 | |
|
1465 | |
protected IdentityManagementService getIdentityManagementService() { |
1466 | 0 | if ( identityManagementService == null ) { |
1467 | 0 | identityManagementService = KIMServiceLocator.getIdentityManagementService(); |
1468 | |
} |
1469 | 0 | return identityManagementService; |
1470 | |
} |
1471 | |
|
1472 | |
protected IdentityService getIdentityService() { |
1473 | 0 | if ( identityService == null ) { |
1474 | 0 | identityService = KIMServiceLocator.getIdentityService(); |
1475 | |
} |
1476 | 0 | return identityService; |
1477 | |
} |
1478 | |
|
1479 | |
protected GroupService getGroupService() { |
1480 | 0 | if ( groupService == null ) { |
1481 | 0 | groupService = KIMServiceLocator.getGroupService(); |
1482 | |
} |
1483 | 0 | return groupService; |
1484 | |
} |
1485 | |
|
1486 | |
protected DocumentHelperService getDocumentHelperService() { |
1487 | 0 | if ( documentHelperService == null ) { |
1488 | 0 | documentHelperService = KNSServiceLocatorWeb.getDocumentHelperService(); |
1489 | |
} |
1490 | 0 | return this.documentHelperService; |
1491 | |
} |
1492 | |
|
1493 | |
protected RoleService getRoleService() { |
1494 | 0 | if(roleService == null){ |
1495 | 0 | roleService = KIMServiceLocator.getRoleService(); |
1496 | |
} |
1497 | 0 | return roleService; |
1498 | |
} |
1499 | |
|
1500 | |
protected RoleManagementService getRoleManagementService() { |
1501 | 0 | if(roleManagementService == null){ |
1502 | 0 | roleManagementService = KIMServiceLocator.getRoleManagementService(); |
1503 | |
} |
1504 | 0 | return roleManagementService; |
1505 | |
} |
1506 | |
|
1507 | |
public void setRoleService(RoleService roleService) { |
1508 | 0 | this.roleService = roleService; |
1509 | 0 | } |
1510 | |
|
1511 | |
protected ResponsibilityService getResponsibilityService() { |
1512 | 0 | if ( responsibilityService == null ) { |
1513 | 0 | responsibilityService = KIMServiceLocator.getResponsibilityService(); |
1514 | |
} |
1515 | 0 | return responsibilityService; |
1516 | |
} |
1517 | |
|
1518 | |
public void setResponsibilityService(ResponsibilityService responsibilityService) { |
1519 | 0 | this.responsibilityService = responsibilityService; |
1520 | 0 | } |
1521 | |
|
1522 | |
|
1523 | |
|
1524 | |
@SuppressWarnings("unchecked") |
1525 | |
public void loadRoleDoc(IdentityManagementRoleDocument identityManagementRoleDocument, KimRoleInfo kimRole){ |
1526 | 0 | KimRoleInfo kimRoleInfo = (KimRoleInfo)kimRole; |
1527 | 0 | Map<String, String> criteria = new HashMap<String, String>(); |
1528 | 0 | criteria.put(KIMPropertyConstants.Role.ROLE_ID, kimRoleInfo.getRoleId()); |
1529 | 0 | RoleImpl kimRoleImpl = (RoleImpl) |
1530 | |
getBusinessObjectService().findByPrimaryKey(RoleImpl.class, criteria); |
1531 | 0 | identityManagementRoleDocument.setRoleId(kimRoleImpl.getRoleId()); |
1532 | 0 | identityManagementRoleDocument.setKimType(kimRoleImpl.getKimRoleType()); |
1533 | 0 | identityManagementRoleDocument.setRoleTypeName(kimRoleImpl.getKimRoleType().getName()); |
1534 | 0 | identityManagementRoleDocument.setRoleTypeId(kimRoleImpl.getKimTypeId()); |
1535 | 0 | identityManagementRoleDocument.setRoleName(kimRoleImpl.getRoleName()); |
1536 | 0 | identityManagementRoleDocument.setRoleDescription(kimRoleImpl.getRoleDescription()); |
1537 | 0 | identityManagementRoleDocument.setActive(kimRoleImpl.isActive()); |
1538 | 0 | identityManagementRoleDocument.setRoleNamespace(kimRoleImpl.getNamespaceCode()); |
1539 | 0 | identityManagementRoleDocument.setEditing(true); |
1540 | |
|
1541 | 0 | identityManagementRoleDocument.setPermissions(loadPermissions((List<RolePermissionImpl>)getBusinessObjectService().findMatching(RolePermissionImpl.class, criteria))); |
1542 | 0 | identityManagementRoleDocument.setResponsibilities(loadResponsibilities((List<RoleResponsibilityImpl>)getBusinessObjectService().findMatching(RoleResponsibilityImpl.class, criteria))); |
1543 | 0 | loadResponsibilityRoleRspActions(identityManagementRoleDocument); |
1544 | 0 | identityManagementRoleDocument.setMembers(loadRoleMembers(identityManagementRoleDocument, kimRoleImpl.getMembers())); |
1545 | 0 | loadMemberRoleRspActions(identityManagementRoleDocument); |
1546 | 0 | identityManagementRoleDocument.setDelegations(loadRoleDocumentDelegations(identityManagementRoleDocument, getRoleDelegations(kimRoleImpl.getRoleId()))); |
1547 | |
|
1548 | 0 | setDelegationMembersInDocument(identityManagementRoleDocument); |
1549 | 0 | identityManagementRoleDocument.setKimType(kimRoleImpl.getKimRoleType()); |
1550 | 0 | } |
1551 | |
|
1552 | |
public void setDelegationMembersInDocument(IdentityManagementRoleDocument identityManagementRoleDocument){ |
1553 | 0 | if(CollectionUtils.isNotEmpty(identityManagementRoleDocument.getDelegations())){ |
1554 | 0 | for(RoleDocumentDelegation delegation: identityManagementRoleDocument.getDelegations()){ |
1555 | 0 | if(CollectionUtils.isNotEmpty(delegation.getMembers())){ |
1556 | 0 | for(RoleDocumentDelegationMember member: delegation.getMembers()){ |
1557 | 0 | member.setDelegationTypeCode(delegation.getDelegationTypeCode()); |
1558 | 0 | identityManagementRoleDocument.getDelegationMembers().add(member); |
1559 | |
} |
1560 | |
} |
1561 | |
} |
1562 | |
} |
1563 | 0 | } |
1564 | |
|
1565 | |
protected List<KimDocumentRoleResponsibility> loadResponsibilities(List<RoleResponsibilityImpl> roleResponsibilities){ |
1566 | 0 | List<KimDocumentRoleResponsibility> documentRoleResponsibilities = new ArrayList<KimDocumentRoleResponsibility>(); |
1567 | 0 | if(ObjectUtils.isNotNull(roleResponsibilities)){ |
1568 | 0 | for(RoleResponsibilityImpl roleResponsibility: roleResponsibilities){ |
1569 | 0 | if(roleResponsibility.isActive()) { |
1570 | 0 | KimDocumentRoleResponsibility roleResponsibilityCopy = new KimDocumentRoleResponsibility(); |
1571 | 0 | KimCommonUtilsInternal.copyProperties(roleResponsibilityCopy, roleResponsibility); |
1572 | 0 | roleResponsibilityCopy.setEdit(true); |
1573 | 0 | documentRoleResponsibilities.add(roleResponsibilityCopy); |
1574 | 0 | } |
1575 | |
} |
1576 | |
} |
1577 | 0 | return documentRoleResponsibilities; |
1578 | |
} |
1579 | |
|
1580 | |
protected List<KimDocumentRolePermission> loadPermissions(List<RolePermissionImpl> rolePermissions){ |
1581 | 0 | List<KimDocumentRolePermission> documentRolePermissions = new ArrayList<KimDocumentRolePermission>(); |
1582 | |
KimDocumentRolePermission rolePermissionCopy; |
1583 | 0 | if(ObjectUtils.isNotNull(rolePermissions)){ |
1584 | 0 | for(RolePermissionImpl rolePermission: rolePermissions){ |
1585 | 0 | if ( rolePermission.isActive() ) { |
1586 | 0 | rolePermissionCopy = new KimDocumentRolePermission(); |
1587 | 0 | rolePermissionCopy.setRolePermissionId(rolePermission.getRolePermissionId()); |
1588 | 0 | rolePermissionCopy.setRoleId(rolePermission.getRoleId()); |
1589 | 0 | rolePermissionCopy.setPermissionId(rolePermission.getPermissionId()); |
1590 | 0 | rolePermissionCopy.setKimPermission(rolePermission.getKimPermission().toSimpleInfo()); |
1591 | 0 | rolePermissionCopy.setEdit(true); |
1592 | 0 | documentRolePermissions.add(rolePermissionCopy); |
1593 | |
} |
1594 | |
} |
1595 | |
} |
1596 | 0 | return documentRolePermissions; |
1597 | |
} |
1598 | |
|
1599 | |
protected List<KimDocumentRoleMember> loadRoleMembers( |
1600 | |
IdentityManagementRoleDocument identityManagementRoleDocument, List<RoleMemberImpl> members){ |
1601 | 0 | List<KimDocumentRoleMember> pndMembers = new ArrayList<KimDocumentRoleMember>(); |
1602 | 0 | KimDocumentRoleMember pndMember = new KimDocumentRoleMember(); |
1603 | 0 | if(ObjectUtils.isNotNull(members)){ |
1604 | 0 | for(RoleMemberImpl member: members){ |
1605 | 0 | pndMember = new KimDocumentRoleMember(); |
1606 | 0 | pndMember.setActiveFromDate(member.getActiveFromDate()); |
1607 | 0 | pndMember.setActiveToDate(member.getActiveToDate()); |
1608 | 0 | pndMember.setActive(member.isActive()); |
1609 | 0 | if(pndMember.isActive()){ |
1610 | 0 | pndMember.setRoleMemberId(member.getRoleMemberId()); |
1611 | 0 | pndMember.setRoleId(member.getRoleId()); |
1612 | 0 | pndMember.setMemberId(member.getMemberId()); |
1613 | 0 | pndMember.setMemberNamespaceCode(getMemberNamespaceCode(member.getMemberTypeCode(), member.getMemberId())); |
1614 | 0 | pndMember.setMemberName(getMemberName(member.getMemberTypeCode(), member.getMemberId())); |
1615 | 0 | pndMember.setMemberFullName(getMemberFullName(member.getMemberTypeCode(), member.getMemberId())); |
1616 | 0 | pndMember.setMemberTypeCode(member.getMemberTypeCode()); |
1617 | 0 | pndMember.setQualifiers(loadRoleMemberQualifiers(identityManagementRoleDocument, member.getAttributes())); |
1618 | 0 | pndMember.setEdit(true); |
1619 | 0 | pndMembers.add(pndMember); |
1620 | |
} |
1621 | |
} |
1622 | |
} |
1623 | 0 | Collections.sort(pndMembers, identityManagementRoleDocument.getMemberMetaDataType()); |
1624 | 0 | return pndMembers; |
1625 | |
} |
1626 | |
|
1627 | |
protected void loadResponsibilityRoleRspActions(IdentityManagementRoleDocument identityManagementRoleDocument){ |
1628 | 0 | if(CollectionUtils.isNotEmpty(identityManagementRoleDocument.getResponsibilities())){ |
1629 | 0 | for(KimDocumentRoleResponsibility responsibility: identityManagementRoleDocument.getResponsibilities()){ |
1630 | 0 | responsibility.getRoleRspActions().addAll(loadKimDocumentRoleRespActions( |
1631 | |
getRoleResponsibilityActionImpls(responsibility.getRoleResponsibilityId()))); |
1632 | |
} |
1633 | |
} |
1634 | 0 | } |
1635 | |
|
1636 | |
@SuppressWarnings("unchecked") |
1637 | |
protected List<RoleResponsibilityActionImpl> getRoleResponsibilityActionImpls(String roleResponsibilityId){ |
1638 | 0 | Map<String, String> criteria = new HashMap<String, String>(); |
1639 | 0 | criteria.put(KimConstants.PrimaryKeyConstants.ROLE_MEMBER_ID, "*"); |
1640 | 0 | criteria.put(KimConstants.PrimaryKeyConstants.ROLE_RESPONSIBILITY_ID, roleResponsibilityId); |
1641 | 0 | return (List<RoleResponsibilityActionImpl>) |
1642 | |
getBusinessObjectService().findMatching(RoleResponsibilityActionImpl.class, criteria); |
1643 | |
} |
1644 | |
|
1645 | |
@SuppressWarnings("unchecked") |
1646 | |
public List<RoleResponsibilityActionImpl> getRoleMemberResponsibilityActionImpls(String roleMemberId){ |
1647 | 0 | Map<String, String> criteria = new HashMap<String, String>(1); |
1648 | 0 | criteria.put(KimConstants.PrimaryKeyConstants.ROLE_MEMBER_ID, roleMemberId); |
1649 | 0 | return (List<RoleResponsibilityActionImpl>) |
1650 | |
getBusinessObjectService().findMatching(RoleResponsibilityActionImpl.class, criteria); |
1651 | |
} |
1652 | |
|
1653 | |
protected void loadMemberRoleRspActions(IdentityManagementRoleDocument identityManagementRoleDocument){ |
1654 | 0 | if(CollectionUtils.isNotEmpty(identityManagementRoleDocument.getMembers())){ |
1655 | 0 | for(KimDocumentRoleMember member: identityManagementRoleDocument.getMembers()){ |
1656 | 0 | member.getRoleRspActions().addAll(loadKimDocumentRoleRespActions( |
1657 | |
getRoleMemberResponsibilityActionImpls(member.getRoleMemberId()) ) ); |
1658 | |
} |
1659 | |
} |
1660 | 0 | } |
1661 | |
|
1662 | |
protected List<KimDocumentRoleResponsibilityAction> loadKimDocumentRoleRespActions( |
1663 | |
List<RoleResponsibilityActionImpl> roleRespActionImpls){ |
1664 | 0 | List<KimDocumentRoleResponsibilityAction> documentRoleRespActions = new ArrayList<KimDocumentRoleResponsibilityAction>(); |
1665 | |
KimDocumentRoleResponsibilityAction documentRoleRespAction; |
1666 | 0 | if(ObjectUtils.isNotNull(roleRespActionImpls)){ |
1667 | 0 | for(RoleResponsibilityActionImpl roleRespActionImpl: roleRespActionImpls){ |
1668 | 0 | documentRoleRespAction = new KimDocumentRoleResponsibilityAction(); |
1669 | 0 | KimCommonUtilsInternal.copyProperties(documentRoleRespAction, roleRespActionImpl); |
1670 | |
|
1671 | 0 | if ( ObjectUtils.isNotNull(roleRespActionImpl.getRoleResponsibility()) ) { |
1672 | 0 | documentRoleRespAction.setKimResponsibility(roleRespActionImpl.getRoleResponsibility().getKimResponsibility()); |
1673 | |
} |
1674 | 0 | documentRoleRespActions.add(documentRoleRespAction); |
1675 | |
} |
1676 | |
} |
1677 | 0 | return documentRoleRespActions; |
1678 | |
} |
1679 | |
|
1680 | |
public BusinessObject getMember(String memberTypeCode, String memberId){ |
1681 | 0 | Class<? extends BusinessObject> roleMemberTypeClass = null; |
1682 | 0 | String roleMemberIdName = ""; |
1683 | 0 | if(KimConstants.KimUIConstants.MEMBER_TYPE_PRINCIPAL_CODE.equals(memberTypeCode)){ |
1684 | 0 | roleMemberTypeClass = KimPrincipalImpl.class; |
1685 | 0 | roleMemberIdName = KimConstants.PrimaryKeyConstants.PRINCIPAL_ID; |
1686 | 0 | KimPrincipalInfo principalInfo = null; |
1687 | 0 | principalInfo = getIdentityManagementService().getPrincipal(memberId); |
1688 | 0 | if (principalInfo != null) { |
1689 | |
|
1690 | |
} |
1691 | 0 | } else if(KimConstants.KimUIConstants.MEMBER_TYPE_GROUP_CODE.equals(memberTypeCode)){ |
1692 | 0 | roleMemberTypeClass = GroupImpl.class; |
1693 | 0 | roleMemberIdName = KimConstants.PrimaryKeyConstants.GROUP_ID; |
1694 | 0 | GroupInfo groupInfo = null; |
1695 | 0 | groupInfo = getGroupService().getGroupInfo(memberId); |
1696 | 0 | if (groupInfo != null) { |
1697 | |
|
1698 | |
} |
1699 | 0 | } else if(KimConstants.KimUIConstants.MEMBER_TYPE_ROLE_CODE.equals(memberTypeCode)){ |
1700 | 0 | roleMemberTypeClass = RoleImpl.class; |
1701 | 0 | roleMemberIdName = KimConstants.PrimaryKeyConstants.ROLE_ID; |
1702 | 0 | KimRoleInfo roleInfo = null; |
1703 | 0 | roleInfo = getRoleService().getRole(memberId); |
1704 | 0 | if (roleInfo != null) { |
1705 | |
|
1706 | |
} |
1707 | |
} |
1708 | 0 | Map<String, String> criteria = new HashMap<String, String>(); |
1709 | 0 | criteria.put(roleMemberIdName, memberId); |
1710 | 0 | return getBusinessObjectService().findByPrimaryKey(roleMemberTypeClass, criteria); |
1711 | |
} |
1712 | |
|
1713 | |
public String getMemberName(String memberTypeCode, String memberId){ |
1714 | 0 | if(StringUtils.isEmpty(memberTypeCode) || StringUtils.isEmpty(memberId)) return ""; |
1715 | 0 | BusinessObject member = getMember(memberTypeCode, memberId); |
1716 | 0 | if (member == null) { |
1717 | 0 | String fakeName = ""; |
1718 | 0 | KimPrincipal kp = KIMServiceLocator.getIdentityManagementService().getPrincipal(memberId); |
1719 | 0 | if(kp != null && kp.getPrincipalName() != null && !"".equals(kp.getPrincipalName())){ |
1720 | 0 | fakeName = kp.getPrincipalName(); |
1721 | |
} |
1722 | |
|
1723 | 0 | return fakeName; |
1724 | |
} |
1725 | 0 | return getMemberName(memberTypeCode, member); |
1726 | |
} |
1727 | |
|
1728 | |
public String getMemberFullName(String memberTypeCode, String memberId){ |
1729 | 0 | if(StringUtils.isEmpty(memberTypeCode) || StringUtils.isEmpty(memberId)) return ""; |
1730 | 0 | String memberFullName = ""; |
1731 | 0 | if(KimConstants.KimUIConstants.MEMBER_TYPE_PRINCIPAL_CODE.equals(memberTypeCode)){ |
1732 | 0 | KimPrincipalInfo principalInfo = null; |
1733 | 0 | principalInfo = getIdentityManagementService().getPrincipal(memberId); |
1734 | 0 | if (principalInfo != null) { |
1735 | 0 | String principalName = principalInfo.getPrincipalName(); |
1736 | 0 | Person psn = KIMServiceLocator.getPersonService().getPersonByPrincipalName(principalName); |
1737 | 0 | memberFullName = psn.getFirstName() + " " + psn.getLastName(); |
1738 | |
} |
1739 | 0 | } else if(KimConstants.KimUIConstants.MEMBER_TYPE_GROUP_CODE.equals(memberTypeCode)){ |
1740 | 0 | GroupInfo groupInfo = null; |
1741 | 0 | groupInfo = getIdentityManagementService().getGroup(memberId); |
1742 | 0 | if (groupInfo != null) { |
1743 | 0 | memberFullName = groupInfo.getGroupName(); |
1744 | |
} |
1745 | |
|
1746 | 0 | } else if(KimConstants.KimUIConstants.MEMBER_TYPE_ROLE_CODE.equals(memberTypeCode)){ |
1747 | 0 | KimRoleInfo roleInfo = null; |
1748 | 0 | roleInfo = getRoleService().getRole(memberId); |
1749 | 0 | memberFullName = roleInfo.getRoleName(); |
1750 | |
} |
1751 | 0 | return memberFullName; |
1752 | |
} |
1753 | |
|
1754 | |
public String getMemberNamespaceCode(String memberTypeCode, String memberId){ |
1755 | 0 | if(StringUtils.isEmpty(memberTypeCode) || StringUtils.isEmpty(memberId)) return ""; |
1756 | 0 | String roleMemberNamespaceCode = ""; |
1757 | 0 | if(KimConstants.KimUIConstants.MEMBER_TYPE_PRINCIPAL_CODE.equals(memberTypeCode)){ |
1758 | 0 | roleMemberNamespaceCode = ""; |
1759 | 0 | } else if(KimConstants.KimUIConstants.MEMBER_TYPE_GROUP_CODE.equals(memberTypeCode)){ |
1760 | 0 | GroupInfo groupInfo = getIdentityManagementService().getGroup(memberId); |
1761 | 0 | if (groupInfo!= null) { |
1762 | 0 | roleMemberNamespaceCode = groupInfo.getNamespaceCode(); |
1763 | |
} |
1764 | 0 | } else if(KimConstants.KimUIConstants.MEMBER_TYPE_ROLE_CODE.equals(memberTypeCode)){ |
1765 | 0 | KimRoleInfo roleInfo = getRoleService().getRole(memberId); |
1766 | 0 | if (roleInfo != null) { |
1767 | 0 | roleMemberNamespaceCode = roleInfo.getNamespaceCode(); |
1768 | |
} |
1769 | |
} |
1770 | 0 | return roleMemberNamespaceCode; |
1771 | |
} |
1772 | |
|
1773 | |
public String getMemberIdByName(String memberTypeCode, String memberNamespaceCode, String memberName){ |
1774 | 0 | String memberId = ""; |
1775 | 0 | if(KimConstants.KimUIConstants.MEMBER_TYPE_PRINCIPAL_CODE.equals(memberTypeCode)){ |
1776 | 0 | KimPrincipal principal = getIdentityManagementService().getPrincipalByPrincipalName(memberName); |
1777 | 0 | if(principal!=null) |
1778 | 0 | memberId = principal.getPrincipalId(); |
1779 | 0 | } else if(KimConstants.KimUIConstants.MEMBER_TYPE_GROUP_CODE.equals(memberTypeCode)){ |
1780 | 0 | GroupInfo groupInfo = getIdentityManagementService().getGroupByName(memberNamespaceCode, memberName); |
1781 | 0 | if(groupInfo!=null) |
1782 | 0 | memberId = groupInfo.getGroupId(); |
1783 | 0 | } else if(KimConstants.KimUIConstants.MEMBER_TYPE_ROLE_CODE.equals(memberTypeCode)){ |
1784 | 0 | memberId = getRoleManagementService().getRoleIdByName(memberNamespaceCode, memberName); |
1785 | |
} |
1786 | 0 | return memberId; |
1787 | |
} |
1788 | |
|
1789 | |
public String getMemberName(String memberTypeCode, BusinessObject member){ |
1790 | 0 | String roleMemberName = ""; |
1791 | 0 | if(KimConstants.KimUIConstants.MEMBER_TYPE_PRINCIPAL_CODE.equals(memberTypeCode)){ |
1792 | 0 | roleMemberName = ((KimPrincipalImpl)member).getPrincipalName(); |
1793 | 0 | } else if(KimConstants.KimUIConstants.MEMBER_TYPE_GROUP_CODE.equals(memberTypeCode)){ |
1794 | 0 | roleMemberName = ((GroupImpl)member).getGroupName(); |
1795 | 0 | } else if(KimConstants.KimUIConstants.MEMBER_TYPE_ROLE_CODE.equals(memberTypeCode)){ |
1796 | 0 | roleMemberName = ((RoleImpl)member).getRoleName(); |
1797 | |
} |
1798 | 0 | return roleMemberName; |
1799 | |
} |
1800 | |
|
1801 | |
public String getMemberNamespaceCode(String memberTypeCode, BusinessObject member){ |
1802 | 0 | String roleMemberNamespaceCode = ""; |
1803 | 0 | if(KimConstants.KimUIConstants.MEMBER_TYPE_PRINCIPAL_CODE.equals(memberTypeCode)){ |
1804 | 0 | roleMemberNamespaceCode = ""; |
1805 | 0 | } else if(KimConstants.KimUIConstants.MEMBER_TYPE_GROUP_CODE.equals(memberTypeCode)){ |
1806 | 0 | roleMemberNamespaceCode = ((GroupImpl)member).getNamespaceCode(); |
1807 | 0 | } else if(KimConstants.KimUIConstants.MEMBER_TYPE_ROLE_CODE.equals(memberTypeCode)){ |
1808 | 0 | roleMemberNamespaceCode = ((RoleImpl)member).getNamespaceCode(); |
1809 | |
} |
1810 | 0 | return roleMemberNamespaceCode; |
1811 | |
} |
1812 | |
|
1813 | |
protected List<KimDocumentRoleQualifier> loadRoleMemberQualifiers(IdentityManagementRoleDocument identityManagementRoleDocument, |
1814 | |
List<RoleMemberAttributeDataImpl> attributeDataList){ |
1815 | 0 | List<KimDocumentRoleQualifier> pndMemberRoleQualifiers = new ArrayList<KimDocumentRoleQualifier>(); |
1816 | 0 | KimDocumentRoleQualifier pndMemberRoleQualifier = new KimDocumentRoleQualifier(); |
1817 | |
|
1818 | |
|
1819 | 0 | if(attributeDataList!=null){ |
1820 | 0 | for(RoleMemberAttributeDataImpl memberRoleQualifier: attributeDataList){ |
1821 | 0 | pndMemberRoleQualifier = new KimDocumentRoleQualifier(); |
1822 | 0 | pndMemberRoleQualifier.setAttrDataId(memberRoleQualifier.getAttributeDataId()); |
1823 | 0 | pndMemberRoleQualifier.setAttrVal(memberRoleQualifier.getAttributeValue()); |
1824 | 0 | pndMemberRoleQualifier.setRoleMemberId(memberRoleQualifier.getRoleMemberId()); |
1825 | 0 | pndMemberRoleQualifier.setKimTypId(memberRoleQualifier.getKimTypeId()); |
1826 | 0 | pndMemberRoleQualifier.setKimAttrDefnId(memberRoleQualifier.getKimAttributeId()); |
1827 | 0 | pndMemberRoleQualifier.setKimAttribute(memberRoleQualifier.getKimAttribute()); |
1828 | 0 | formatAttrValIfNecessary(pndMemberRoleQualifier); |
1829 | 0 | pndMemberRoleQualifiers.add(pndMemberRoleQualifier); |
1830 | |
} |
1831 | |
} |
1832 | |
|
1833 | 0 | int countOfOriginalAttributesNotPresent = 0; |
1834 | 0 | List<KimDocumentRoleQualifier> fillerRoleQualifiers = new ArrayList<KimDocumentRoleQualifier>(); |
1835 | |
|
1836 | 0 | AttributeDefinitionMap origAttributes = identityManagementRoleDocument.getDefinitions(); |
1837 | 0 | if ( origAttributes != null ) { |
1838 | 0 | for(String key: origAttributes.keySet()) { |
1839 | 0 | boolean attributePresent = false; |
1840 | 0 | String origAttributeId = identityManagementRoleDocument.getKimAttributeDefnId(origAttributes.get(key)); |
1841 | 0 | if(attributeDataList!=null){ |
1842 | 0 | for(RoleMemberAttributeDataImpl memberRoleQualifier: attributeDataList){ |
1843 | 0 | if(origAttributeId!=null && StringUtils.equals(origAttributeId, memberRoleQualifier.getKimAttribute().getKimAttributeId())){ |
1844 | 0 | attributePresent = true; |
1845 | 0 | break; |
1846 | |
} |
1847 | |
} |
1848 | |
} |
1849 | 0 | if(!attributePresent){ |
1850 | 0 | countOfOriginalAttributesNotPresent++; |
1851 | 0 | pndMemberRoleQualifier = new KimDocumentRoleQualifier(); |
1852 | 0 | pndMemberRoleQualifier.setKimAttrDefnId(origAttributeId); |
1853 | 0 | pndMemberRoleQualifier.refreshReferenceObject("kimAttribute"); |
1854 | 0 | fillerRoleQualifiers.add(pndMemberRoleQualifier); |
1855 | |
} |
1856 | 0 | } |
1857 | |
|
1858 | 0 | if(countOfOriginalAttributesNotPresent != origAttributes.size()) { |
1859 | 0 | pndMemberRoleQualifiers.addAll(fillerRoleQualifiers); |
1860 | |
} |
1861 | |
} |
1862 | 0 | return pndMemberRoleQualifiers; |
1863 | |
} |
1864 | |
|
1865 | |
@SuppressWarnings("unchecked") |
1866 | |
public List<KimDelegationImpl> getRoleDelegations(String roleId){ |
1867 | 0 | if(roleId==null) |
1868 | 0 | return new ArrayList<KimDelegationImpl>(); |
1869 | 0 | Map<String,String> criteria = new HashMap<String,String>(1); |
1870 | 0 | criteria.put("roleId", roleId); |
1871 | 0 | return (List<KimDelegationImpl>)getBusinessObjectService().findMatching(KimDelegationImpl.class, criteria); |
1872 | |
} |
1873 | |
|
1874 | |
protected List<RoleDocumentDelegation> loadRoleDocumentDelegations(IdentityManagementRoleDocument identityManagementRoleDocument, List<KimDelegationImpl> delegations){ |
1875 | 0 | List<RoleDocumentDelegation> delList = new ArrayList<RoleDocumentDelegation>(); |
1876 | |
RoleDocumentDelegation documentDelegation; |
1877 | 0 | if(ObjectUtils.isNotNull(delegations)){ |
1878 | 0 | for(KimDelegationImpl del: delegations){ |
1879 | 0 | documentDelegation = new RoleDocumentDelegation(); |
1880 | 0 | documentDelegation.setActive(del.isActive()); |
1881 | 0 | if(documentDelegation.isActive()){ |
1882 | 0 | documentDelegation.setDelegationId(del.getDelegationId()); |
1883 | 0 | documentDelegation.setDelegationTypeCode(del.getDelegationTypeCode()); |
1884 | 0 | documentDelegation.setKimTypeId(del.getKimTypeId()); |
1885 | 0 | documentDelegation.setMembers(loadDelegationMembers(identityManagementRoleDocument, del.getMembers())); |
1886 | 0 | documentDelegation.setRoleId(del.getRoleId()); |
1887 | 0 | documentDelegation.setEdit(true); |
1888 | 0 | delList.add(documentDelegation); |
1889 | |
} |
1890 | |
} |
1891 | |
} |
1892 | 0 | return delList; |
1893 | |
} |
1894 | |
|
1895 | |
protected List<RoleDocumentDelegationMember> loadDelegationMembers(IdentityManagementRoleDocument identityManagementRoleDocument, List<KimDelegationMemberImpl> members){ |
1896 | 0 | List<RoleDocumentDelegationMember> pndMembers = new ArrayList<RoleDocumentDelegationMember>(); |
1897 | 0 | RoleDocumentDelegationMember pndMember = new RoleDocumentDelegationMember(); |
1898 | |
RoleMemberImpl roleMember; |
1899 | 0 | if(ObjectUtils.isNotNull(members)){ |
1900 | 0 | for(KimDelegationMemberImpl member: members){ |
1901 | 0 | pndMember = new RoleDocumentDelegationMember(); |
1902 | 0 | pndMember.setActiveFromDate(member.getActiveFromDate()); |
1903 | 0 | pndMember.setActiveToDate(member.getActiveToDate()); |
1904 | 0 | pndMember.setActive(member.isActive()); |
1905 | 0 | if(pndMember.isActive()){ |
1906 | 0 | KimCommonUtilsInternal.copyProperties(pndMember, member); |
1907 | 0 | pndMember.setRoleMemberId(member.getRoleMemberId()); |
1908 | 0 | roleMember = getRoleMemberForRoleMemberId(member.getRoleMemberId()); |
1909 | 0 | if(roleMember!=null){ |
1910 | 0 | pndMember.setRoleMemberName(getMemberName(roleMember.getMemberTypeCode(), roleMember.getMemberId())); |
1911 | 0 | pndMember.setRoleMemberNamespaceCode(getMemberNamespaceCode(roleMember.getMemberTypeCode(), roleMember.getMemberId())); |
1912 | |
} |
1913 | 0 | pndMember.setMemberNamespaceCode(getMemberNamespaceCode(member.getMemberTypeCode(), member.getMemberId())); |
1914 | 0 | pndMember.setMemberName(getMemberName(member.getMemberTypeCode(), member.getMemberId())); |
1915 | 0 | pndMember.setEdit(true); |
1916 | 0 | pndMember.setQualifiers(loadDelegationMemberQualifiers(identityManagementRoleDocument, member.getAttributes())); |
1917 | 0 | pndMembers.add(pndMember); |
1918 | |
} |
1919 | |
} |
1920 | |
} |
1921 | 0 | return pndMembers; |
1922 | |
} |
1923 | |
|
1924 | |
protected RoleMemberImpl getRoleMemberForRoleMemberId(String roleMemberId){ |
1925 | 0 | Map<String,String> criteria = new HashMap<String,String>( 2 ); |
1926 | 0 | criteria.put(KimConstants.PrimaryKeyConstants.ROLE_MEMBER_ID, roleMemberId); |
1927 | 0 | return (RoleMemberImpl)getBusinessObjectService().findByPrimaryKey(RoleMemberImpl.class, criteria); |
1928 | |
} |
1929 | |
|
1930 | |
protected List<RoleDocumentDelegationMemberQualifier> loadDelegationMemberQualifiers(IdentityManagementRoleDocument identityManagementRoleDocument, |
1931 | |
List<KimDelegationMemberAttributeDataImpl> attributeDataList){ |
1932 | 0 | List<RoleDocumentDelegationMemberQualifier> pndMemberRoleQualifiers = new ArrayList<RoleDocumentDelegationMemberQualifier>(); |
1933 | 0 | RoleDocumentDelegationMemberQualifier pndMemberRoleQualifier = new RoleDocumentDelegationMemberQualifier(); |
1934 | 0 | AttributeDefinitionMap origAttributes = identityManagementRoleDocument.getDefinitions(); |
1935 | 0 | boolean attributePresent = false; |
1936 | |
String origAttributeId; |
1937 | 0 | if(origAttributes!=null){ |
1938 | 0 | for(String key: origAttributes.keySet()) { |
1939 | 0 | origAttributeId = identityManagementRoleDocument.getKimAttributeDefnId(origAttributes.get(key)); |
1940 | 0 | if(attributeDataList!=null){ |
1941 | 0 | for(KimDelegationMemberAttributeDataImpl memberRoleQualifier: attributeDataList){ |
1942 | 0 | if(origAttributeId!=null && StringUtils.equals(origAttributeId, memberRoleQualifier.getKimAttribute().getKimAttributeId())){ |
1943 | 0 | pndMemberRoleQualifier = new RoleDocumentDelegationMemberQualifier(); |
1944 | 0 | pndMemberRoleQualifier.setAttrDataId(memberRoleQualifier.getAttributeDataId()); |
1945 | 0 | pndMemberRoleQualifier.setAttrVal(memberRoleQualifier.getAttributeValue()); |
1946 | 0 | pndMemberRoleQualifier.setDelegationMemberId(memberRoleQualifier.getDelegationMemberId()); |
1947 | 0 | pndMemberRoleQualifier.setKimTypId(memberRoleQualifier.getKimTypeId()); |
1948 | 0 | pndMemberRoleQualifier.setKimAttrDefnId(memberRoleQualifier.getKimAttributeId()); |
1949 | 0 | pndMemberRoleQualifier.setKimAttribute(memberRoleQualifier.getKimAttribute()); |
1950 | 0 | pndMemberRoleQualifiers.add(pndMemberRoleQualifier); |
1951 | 0 | attributePresent = true; |
1952 | |
} |
1953 | |
} |
1954 | |
} |
1955 | 0 | if(!attributePresent){ |
1956 | 0 | pndMemberRoleQualifier = new RoleDocumentDelegationMemberQualifier(); |
1957 | 0 | pndMemberRoleQualifier.setKimAttrDefnId(origAttributeId); |
1958 | 0 | pndMemberRoleQualifier.refreshReferenceObject("kimAttribute"); |
1959 | 0 | pndMemberRoleQualifiers.add(pndMemberRoleQualifier); |
1960 | |
} |
1961 | 0 | attributePresent = false; |
1962 | |
} |
1963 | |
} |
1964 | 0 | return pndMemberRoleQualifiers; |
1965 | |
} |
1966 | |
|
1967 | |
|
1968 | |
|
1969 | |
|
1970 | |
@SuppressWarnings("unchecked") |
1971 | |
public void saveRole(IdentityManagementRoleDocument identityManagementRoleDocument) { |
1972 | 0 | RoleImpl kimRole = new RoleImpl(); |
1973 | 0 | Map<String, String> criteria = new HashMap<String, String>(); |
1974 | 0 | String roleId = identityManagementRoleDocument.getRoleId(); |
1975 | 0 | criteria.put(KIMPropertyConstants.Role.ROLE_ID, roleId); |
1976 | 0 | RoleImpl origRole = (RoleImpl)getBusinessObjectService().findByPrimaryKey(RoleImpl.class, criteria); |
1977 | |
|
1978 | 0 | List<RolePermissionImpl> origRolePermissions = new ArrayList<RolePermissionImpl>(); |
1979 | 0 | List<RoleResponsibilityImpl> origRoleResponsibilities = new ArrayList<RoleResponsibilityImpl>(); |
1980 | 0 | List<RoleMemberImpl> origRoleMembers = new ArrayList<RoleMemberImpl>(); |
1981 | 0 | List<KimDelegationImpl> origRoleDelegations = new ArrayList<KimDelegationImpl>(); |
1982 | |
|
1983 | 0 | kimRole.setRoleId(identityManagementRoleDocument.getRoleId()); |
1984 | 0 | kimRole.setKimTypeId(identityManagementRoleDocument.getRoleTypeId()); |
1985 | 0 | kimRole.setNamespaceCode(identityManagementRoleDocument.getRoleNamespace()); |
1986 | 0 | kimRole.setRoleName(identityManagementRoleDocument.getRoleName()); |
1987 | 0 | kimRole.setRoleDescription(identityManagementRoleDocument.getRoleDescription()); |
1988 | |
|
1989 | 0 | if (origRole == null) { |
1990 | 0 | origRole = new RoleImpl(); |
1991 | 0 | kimRole.setActive(true); |
1992 | |
} else { |
1993 | 0 | kimRole.setActive(identityManagementRoleDocument.isActive()); |
1994 | 0 | kimRole.setVersionNumber(origRole.getVersionNumber()); |
1995 | 0 | origRolePermissions = (List<RolePermissionImpl>)getBusinessObjectService().findMatching(RolePermissionImpl.class, criteria); |
1996 | 0 | origRoleResponsibilities = (List<RoleResponsibilityImpl>)getBusinessObjectService().findMatching(RoleResponsibilityImpl.class, criteria); |
1997 | 0 | origRoleMembers = (List<RoleMemberImpl>)getBusinessObjectService().findMatching(RoleMemberImpl.class, criteria); |
1998 | 0 | origRoleDelegations = (List<KimDelegationImpl>)getBusinessObjectService().findMatching(KimDelegationImpl.class, criteria); |
1999 | |
} |
2000 | |
|
2001 | 0 | if( getKimTypeInfoService().getKimType(identityManagementRoleDocument.getRoleTypeId()) == null ) { |
2002 | 0 | LOG.error( "Kim type not found for:"+identityManagementRoleDocument.getRoleTypeId(), new Throwable() ); |
2003 | |
} |
2004 | |
|
2005 | 0 | List<PersistableBusinessObject> bos = new ArrayList<PersistableBusinessObject>(); |
2006 | |
|
2007 | 0 | bos.add(kimRole); |
2008 | 0 | bos.addAll(getRolePermissions(identityManagementRoleDocument, origRolePermissions)); |
2009 | 0 | bos.addAll(getRoleResponsibilities(identityManagementRoleDocument, origRoleResponsibilities)); |
2010 | 0 | bos.addAll(getRoleResponsibilitiesActions(identityManagementRoleDocument)); |
2011 | 0 | String initiatorPrincipalId = getInitiatorPrincipalId(identityManagementRoleDocument); |
2012 | 0 | if(canAssignToRole(identityManagementRoleDocument, initiatorPrincipalId)){ |
2013 | 0 | List<RoleMemberImpl> newRoleMembersList = getRoleMembers(identityManagementRoleDocument, origRoleMembers); |
2014 | 0 | bos.addAll(newRoleMembersList); |
2015 | 0 | bos.addAll(getRoleMemberResponsibilityActions(newRoleMembersList)); |
2016 | |
|
2017 | 0 | bos.addAll(getRoleDelegations(identityManagementRoleDocument, origRoleDelegations)); |
2018 | |
} |
2019 | 0 | getBusinessObjectService().save(bos); |
2020 | 0 | IdentityManagementNotificationService service = (IdentityManagementNotificationService)KSBServiceLocator.getMessageHelper().getServiceAsynchronously(new QName("KIM", "kimIdentityManagementNotificationService")); |
2021 | 0 | service.roleUpdated(); |
2022 | 0 | KIMServiceLocatorInternal.getResponsibilityInternalService().updateActionRequestsForResponsibilityChange(getChangedRoleResponsibilityIds(identityManagementRoleDocument, origRoleResponsibilities)); |
2023 | 0 | if(!kimRole.isActive()){ |
2024 | |
|
2025 | |
|
2026 | 0 | KIMServiceLocator.getRoleManagementService().roleInactivated(identityManagementRoleDocument.getRoleId()); |
2027 | |
} |
2028 | 0 | } |
2029 | |
|
2030 | |
protected List<RolePermissionImpl> getRolePermissions( |
2031 | |
IdentityManagementRoleDocument identityManagementRoleDocument, List<RolePermissionImpl> origRolePermissions){ |
2032 | 0 | List<RolePermissionImpl> rolePermissions = new ArrayList<RolePermissionImpl>(); |
2033 | 0 | if(CollectionUtils.isNotEmpty(identityManagementRoleDocument.getPermissions())){ |
2034 | 0 | for(KimDocumentRolePermission documentRolePermission: identityManagementRoleDocument.getPermissions()){ |
2035 | 0 | RolePermissionImpl newRolePermission = new RolePermissionImpl(); |
2036 | 0 | newRolePermission.setRolePermissionId(documentRolePermission.getRolePermissionId()); |
2037 | 0 | newRolePermission.setRoleId(identityManagementRoleDocument.getRoleId()); |
2038 | 0 | newRolePermission.setPermissionId(documentRolePermission.getPermissionId()); |
2039 | 0 | newRolePermission.setActive( documentRolePermission.isActive() ); |
2040 | |
|
2041 | 0 | newRolePermission.setActive(documentRolePermission.isActive()); |
2042 | 0 | if(ObjectUtils.isNotNull(origRolePermissions)){ |
2043 | 0 | for(RolePermissionImpl origPermissionImpl: origRolePermissions){ |
2044 | 0 | if(!StringUtils.equals(origPermissionImpl.getRoleId(), newRolePermission.getRoleId()) && |
2045 | |
StringUtils.equals(origPermissionImpl.getPermissionId(), newRolePermission.getPermissionId()) && |
2046 | |
!origPermissionImpl.isActive() && newRolePermission.isActive()){ |
2047 | 0 | newRolePermission.setRolePermissionId(origPermissionImpl.getRolePermissionId()); |
2048 | |
} |
2049 | 0 | if(origPermissionImpl.getRolePermissionId()!=null && StringUtils.equals(origPermissionImpl.getRolePermissionId(), newRolePermission.getRolePermissionId())){ |
2050 | 0 | newRolePermission.setVersionNumber(origPermissionImpl.getVersionNumber()); |
2051 | |
} |
2052 | |
} |
2053 | |
} |
2054 | 0 | rolePermissions.add(newRolePermission); |
2055 | 0 | } |
2056 | |
} |
2057 | 0 | return rolePermissions; |
2058 | |
} |
2059 | |
|
2060 | |
protected List<RoleResponsibilityImpl> getRoleResponsibilities( |
2061 | |
IdentityManagementRoleDocument identityManagementRoleDocument, List<RoleResponsibilityImpl> origRoleResponsibilities){ |
2062 | 0 | List<RoleResponsibilityImpl> roleResponsibilities = new ArrayList<RoleResponsibilityImpl>(); |
2063 | |
RoleResponsibilityImpl newRoleResponsibility; |
2064 | 0 | if(CollectionUtils.isNotEmpty(identityManagementRoleDocument.getResponsibilities())){ |
2065 | 0 | for(KimDocumentRoleResponsibility documentRoleResponsibility: identityManagementRoleDocument.getResponsibilities()){ |
2066 | 0 | newRoleResponsibility = new RoleResponsibilityImpl(); |
2067 | 0 | KimCommonUtilsInternal.copyProperties(newRoleResponsibility, documentRoleResponsibility); |
2068 | 0 | newRoleResponsibility.setActive(documentRoleResponsibility.isActive()); |
2069 | 0 | newRoleResponsibility.setRoleId(identityManagementRoleDocument.getRoleId()); |
2070 | 0 | if(ObjectUtils.isNotNull(origRoleResponsibilities)){ |
2071 | 0 | for(RoleResponsibilityImpl origResponsibilityImpl: origRoleResponsibilities){ |
2072 | 0 | if(!StringUtils.equals(origResponsibilityImpl.getRoleId(), newRoleResponsibility.getRoleId()) && |
2073 | |
StringUtils.equals(origResponsibilityImpl.getResponsibilityId(), newRoleResponsibility.getResponsibilityId()) && |
2074 | |
!origResponsibilityImpl.isActive() && newRoleResponsibility.isActive()){ |
2075 | 0 | newRoleResponsibility.setRoleResponsibilityId(origResponsibilityImpl.getRoleResponsibilityId()); |
2076 | |
} |
2077 | 0 | if(origResponsibilityImpl.getRoleResponsibilityId()!=null && StringUtils.equals(origResponsibilityImpl.getRoleResponsibilityId(), newRoleResponsibility.getRoleResponsibilityId())) |
2078 | 0 | newRoleResponsibility.setVersionNumber(origResponsibilityImpl.getVersionNumber()); |
2079 | |
} |
2080 | |
} |
2081 | 0 | roleResponsibilities.add(newRoleResponsibility); |
2082 | |
} |
2083 | |
} |
2084 | 0 | return roleResponsibilities; |
2085 | |
} |
2086 | |
|
2087 | |
|
2088 | |
protected List <RoleResponsibilityActionImpl> getRoleResponsibilitiesActions( |
2089 | |
IdentityManagementRoleDocument identityManagementRoleDocument){ |
2090 | 0 | List <RoleResponsibilityActionImpl> roleRspActions = new ArrayList<RoleResponsibilityActionImpl>(); |
2091 | 0 | if(CollectionUtils.isNotEmpty(identityManagementRoleDocument.getResponsibilities())){ |
2092 | |
|
2093 | 0 | for(KimDocumentRoleResponsibility roleResponsibility : identityManagementRoleDocument.getResponsibilities()){ |
2094 | |
|
2095 | 0 | if(!getResponsibilityService().areActionsAtAssignmentLevelById(roleResponsibility.getResponsibilityId())){ |
2096 | 0 | List<KimDocumentRoleResponsibilityAction> documentRoleResponsibilityActions = roleResponsibility.getRoleRspActions(); |
2097 | 0 | if( ObjectUtils.isNotNull(documentRoleResponsibilityActions) |
2098 | |
&& !documentRoleResponsibilityActions.isEmpty() |
2099 | |
&& StringUtils.isNotBlank(documentRoleResponsibilityActions.get(0).getRoleResponsibilityActionId() ) ) { |
2100 | 0 | RoleResponsibilityActionImpl roleRspAction = new RoleResponsibilityActionImpl(); |
2101 | 0 | roleRspAction.setRoleResponsibilityActionId(documentRoleResponsibilityActions.get(0).getRoleResponsibilityActionId()); |
2102 | 0 | roleRspAction.setActionPolicyCode(documentRoleResponsibilityActions.get(0).getActionPolicyCode()); |
2103 | 0 | roleRspAction.setActionTypeCode(documentRoleResponsibilityActions.get(0).getActionTypeCode()); |
2104 | 0 | roleRspAction.setPriorityNumber(documentRoleResponsibilityActions.get(0).getPriorityNumber()); |
2105 | 0 | roleRspAction.setForceAction(documentRoleResponsibilityActions.get(0).isForceAction()); |
2106 | 0 | roleRspAction.setRoleMemberId("*"); |
2107 | 0 | roleRspAction.setRoleResponsibilityId(documentRoleResponsibilityActions.get(0).getRoleResponsibilityId()); |
2108 | 0 | updateResponsibilityActionVersionNumber(roleRspAction, getRoleResponsibilityActionImpls(roleResponsibility.getRoleResponsibilityId())); |
2109 | 0 | roleRspActions.add(roleRspAction); |
2110 | |
} |
2111 | 0 | } |
2112 | |
} |
2113 | |
} |
2114 | 0 | return roleRspActions; |
2115 | |
} |
2116 | |
|
2117 | |
|
2118 | |
|
2119 | |
protected void updateResponsibilityActionVersionNumber(RoleResponsibilityActionImpl newRoleRspAction, |
2120 | |
List<RoleResponsibilityActionImpl> origRoleRespActionImpls){ |
2121 | 0 | if(ObjectUtils.isNotNull(origRoleRespActionImpls)){ |
2122 | 0 | for(RoleResponsibilityActionImpl origRoleResponsibilityActionImpl: origRoleRespActionImpls){ |
2123 | 0 | if(origRoleResponsibilityActionImpl.getRoleResponsibilityActionId()!=null && StringUtils.equals(origRoleResponsibilityActionImpl.getRoleResponsibilityActionId(), |
2124 | |
newRoleRspAction.getRoleResponsibilityActionId())) { |
2125 | 0 | newRoleRspAction.setVersionNumber(origRoleResponsibilityActionImpl.getVersionNumber()); |
2126 | 0 | break; |
2127 | |
} |
2128 | |
} |
2129 | |
} |
2130 | 0 | } |
2131 | |
|
2132 | |
protected List<RoleResponsibilityActionImpl> getRoleMemberResponsibilityActions(List<RoleMemberImpl> newRoleMembersList){ |
2133 | 0 | List<RoleResponsibilityActionImpl> roleRspActions = new ArrayList<RoleResponsibilityActionImpl>(); |
2134 | 0 | if(ObjectUtils.isNotNull(newRoleMembersList)){ |
2135 | 0 | for(RoleMemberImpl roleMember: newRoleMembersList){ |
2136 | 0 | roleRspActions.addAll(roleMember.getRoleRspActions()); |
2137 | |
} |
2138 | |
} |
2139 | 0 | return roleRspActions; |
2140 | |
} |
2141 | |
|
2142 | |
protected List<RoleResponsibilityActionImpl> getRoleMemberResponsibilityActions(IdentityManagementRoleDocument identityManagementRoleDocument){ |
2143 | 0 | List<RoleResponsibilityActionImpl> roleRspActions = new ArrayList<RoleResponsibilityActionImpl>(); |
2144 | 0 | if(CollectionUtils.isNotEmpty(identityManagementRoleDocument.getMembers())){ |
2145 | 0 | for(KimDocumentRoleMember roleMember: identityManagementRoleDocument.getMembers()){ |
2146 | 0 | for(KimDocumentRoleResponsibilityAction roleRspAction : roleMember.getRoleRspActions()){ |
2147 | 0 | RoleResponsibilityActionImpl entRoleRspAction = new RoleResponsibilityActionImpl(); |
2148 | 0 | entRoleRspAction.setRoleResponsibilityActionId(roleRspAction.getRoleResponsibilityActionId()); |
2149 | 0 | entRoleRspAction.setActionPolicyCode(roleRspAction.getActionPolicyCode()); |
2150 | 0 | entRoleRspAction.setActionTypeCode(roleRspAction.getActionTypeCode()); |
2151 | 0 | entRoleRspAction.setPriorityNumber(roleRspAction.getPriorityNumber()); |
2152 | 0 | entRoleRspAction.setRoleMemberId(roleRspAction.getRoleMemberId()); |
2153 | 0 | entRoleRspAction.setForceAction(roleRspAction.isForceAction()); |
2154 | 0 | entRoleRspAction.setRoleResponsibilityId(roleRspAction.getRoleResponsibilityId()); |
2155 | 0 | List<RoleResponsibilityActionImpl> actions = getRoleRspActions(roleMember.getRoleMemberId()); |
2156 | 0 | if(ObjectUtils.isNotNull(actions)){ |
2157 | 0 | for(RoleResponsibilityActionImpl orgRspAction : actions) { |
2158 | 0 | if (orgRspAction.getRoleResponsibilityActionId()!=null && StringUtils.equals(orgRspAction.getRoleResponsibilityActionId(), roleRspAction.getRoleResponsibilityActionId())) { |
2159 | 0 | entRoleRspAction.setVersionNumber(orgRspAction.getVersionNumber()); |
2160 | |
} |
2161 | |
} |
2162 | |
} |
2163 | 0 | roleRspActions.add(entRoleRspAction); |
2164 | 0 | } |
2165 | |
} |
2166 | |
} |
2167 | 0 | return roleRspActions; |
2168 | |
} |
2169 | |
|
2170 | |
protected List<RoleMemberImpl> getRoleMembers(IdentityManagementRoleDocument identityManagementRoleDocument, List<RoleMemberImpl> origRoleMembers){ |
2171 | 0 | List<RoleMemberImpl> roleMembers = new ArrayList<RoleMemberImpl>(); |
2172 | |
RoleMemberImpl newRoleMember; |
2173 | 0 | RoleMemberImpl origRoleMemberImplTemp = null; |
2174 | 0 | List<RoleMemberAttributeDataImpl> origAttributes = new ArrayList<RoleMemberAttributeDataImpl>(); |
2175 | 0 | boolean activatingInactive = false; |
2176 | 0 | String newRoleMemberIdAssigned = ""; |
2177 | |
|
2178 | 0 | identityManagementRoleDocument.setKimType(KIMServiceLocatorWeb.getTypeInfoService().getKimType(identityManagementRoleDocument.getRoleTypeId())); |
2179 | 0 | KimTypeService kimTypeService = KIMServiceLocatorWeb.getKimTypeService(identityManagementRoleDocument.getKimType()); |
2180 | |
|
2181 | 0 | if(CollectionUtils.isNotEmpty(identityManagementRoleDocument.getMembers())){ |
2182 | 0 | for(KimDocumentRoleMember documentRoleMember: identityManagementRoleDocument.getMembers()){ |
2183 | 0 | origRoleMemberImplTemp = null; |
2184 | |
|
2185 | 0 | newRoleMember = new RoleMemberImpl(); |
2186 | 0 | KimCommonUtilsInternal.copyProperties(newRoleMember, documentRoleMember); |
2187 | 0 | newRoleMember.setRoleId(identityManagementRoleDocument.getRoleId()); |
2188 | 0 | if(ObjectUtils.isNotNull(origRoleMembers)){ |
2189 | 0 | for(RoleMemberImpl origRoleMemberImpl: origRoleMembers){ |
2190 | 0 | if((origRoleMemberImpl.getRoleId()!=null && StringUtils.equals(origRoleMemberImpl.getRoleId(), newRoleMember.getRoleId())) && |
2191 | |
(origRoleMemberImpl.getMemberId()!=null && StringUtils.equals(origRoleMemberImpl.getMemberId(), newRoleMember.getMemberId())) && |
2192 | |
(origRoleMemberImpl.getMemberTypeCode()!=null && StringUtils.equals(origRoleMemberImpl.getMemberTypeCode(), newRoleMember.getMemberTypeCode())) && |
2193 | |
!origRoleMemberImpl.isActive() && |
2194 | |
!kimTypeService.validateUniqueAttributes(identityManagementRoleDocument.getKimType().getKimTypeId(), |
2195 | |
documentRoleMember.getQualifierAsAttributeSet(), origRoleMemberImpl.getQualifier())){ |
2196 | |
|
2197 | |
|
2198 | 0 | newRoleMemberIdAssigned = newRoleMember.getRoleMemberId(); |
2199 | 0 | newRoleMember.setRoleMemberId(origRoleMemberImpl.getRoleMemberId()); |
2200 | 0 | activatingInactive = true; |
2201 | |
} |
2202 | 0 | if(origRoleMemberImpl.getRoleMemberId()!=null && StringUtils.equals(origRoleMemberImpl.getRoleMemberId(), newRoleMember.getRoleMemberId())){ |
2203 | 0 | newRoleMember.setVersionNumber(origRoleMemberImpl.getVersionNumber()); |
2204 | 0 | origRoleMemberImplTemp = origRoleMemberImpl; |
2205 | |
} |
2206 | |
} |
2207 | |
} |
2208 | 0 | origAttributes = (origRoleMemberImplTemp==null || origRoleMemberImplTemp.getAttributes()==null)? |
2209 | |
new ArrayList<RoleMemberAttributeDataImpl>():origRoleMemberImplTemp.getAttributes(); |
2210 | 0 | newRoleMember.setAttributes(getRoleMemberAttributeData(documentRoleMember.getQualifiers(), origAttributes, activatingInactive, newRoleMemberIdAssigned)); |
2211 | 0 | newRoleMember.setRoleRspActions(getRoleMemberResponsibilityActions(documentRoleMember, origRoleMemberImplTemp, activatingInactive, newRoleMemberIdAssigned)); |
2212 | 0 | roleMembers.add(newRoleMember); |
2213 | 0 | activatingInactive = false; |
2214 | |
} |
2215 | |
} |
2216 | 0 | return roleMembers; |
2217 | |
} |
2218 | |
|
2219 | |
protected List<RoleResponsibilityActionImpl> getRoleMemberResponsibilityActions( |
2220 | |
KimDocumentRoleMember documentRoleMember, RoleMemberImpl origRoleMemberImplTemp, boolean activatingInactive, String newRoleMemberIdAssigned){ |
2221 | 0 | List<RoleResponsibilityActionImpl> roleRspActions = new ArrayList<RoleResponsibilityActionImpl>(); |
2222 | 0 | List<RoleResponsibilityActionImpl> origActions = new ArrayList<RoleResponsibilityActionImpl>(); |
2223 | 0 | if(origRoleMemberImplTemp!=null) { |
2224 | 0 | origActions = getRoleRspActions(origRoleMemberImplTemp.getRoleMemberId()); |
2225 | |
} |
2226 | 0 | if(CollectionUtils.isNotEmpty(documentRoleMember.getRoleRspActions())){ |
2227 | 0 | for(KimDocumentRoleResponsibilityAction roleRspAction : documentRoleMember.getRoleRspActions()){ |
2228 | 0 | RoleResponsibilityActionImpl newRoleRspAction = new RoleResponsibilityActionImpl(); |
2229 | 0 | newRoleRspAction.setRoleResponsibilityActionId(roleRspAction.getRoleResponsibilityActionId()); |
2230 | 0 | newRoleRspAction.setActionPolicyCode(roleRspAction.getActionPolicyCode()); |
2231 | 0 | newRoleRspAction.setActionTypeCode(roleRspAction.getActionTypeCode()); |
2232 | 0 | newRoleRspAction.setPriorityNumber(roleRspAction.getPriorityNumber()); |
2233 | 0 | newRoleRspAction.setRoleMemberId(roleRspAction.getRoleMemberId()); |
2234 | 0 | newRoleRspAction.setForceAction(roleRspAction.isForceAction()); |
2235 | 0 | newRoleRspAction.setRoleResponsibilityId("*"); |
2236 | 0 | if(ObjectUtils.isNotNull(origActions)){ |
2237 | 0 | for(RoleResponsibilityActionImpl origRspAction: origActions) { |
2238 | 0 | if(activatingInactive && StringUtils.equals(origRspAction.getRoleResponsibilityId(), newRoleRspAction.getRoleResponsibilityId()) && |
2239 | |
StringUtils.equals(newRoleRspAction.getRoleMemberId(), newRoleMemberIdAssigned)){ |
2240 | 0 | newRoleRspAction.setRoleMemberId(origRspAction.getRoleMemberId()); |
2241 | 0 | newRoleRspAction.setRoleResponsibilityActionId(origRspAction.getRoleResponsibilityActionId()); |
2242 | |
} |
2243 | 0 | if (origRspAction.getRoleResponsibilityActionId()!=null && StringUtils.equals(origRspAction.getRoleResponsibilityActionId(), newRoleRspAction.getRoleResponsibilityActionId())) { |
2244 | 0 | newRoleRspAction.setVersionNumber(origRspAction.getVersionNumber()); |
2245 | |
} |
2246 | |
} |
2247 | |
} |
2248 | 0 | roleRspActions.add(newRoleRspAction); |
2249 | 0 | } |
2250 | |
} |
2251 | 0 | return roleRspActions; |
2252 | |
} |
2253 | |
|
2254 | |
protected List<RoleMemberAttributeDataImpl> getRoleMemberAttributeData(List<KimDocumentRoleQualifier> qualifiers, |
2255 | |
List<RoleMemberAttributeDataImpl> origAttributes, boolean activatingInactive, String newRoleMemberIdAssigned){ |
2256 | 0 | List<RoleMemberAttributeDataImpl> roleMemberAttributeDataList = new ArrayList<RoleMemberAttributeDataImpl>(); |
2257 | |
RoleMemberAttributeDataImpl newRoleMemberAttributeData; |
2258 | 0 | if(CollectionUtils.isNotEmpty(qualifiers)){ |
2259 | 0 | for(KimDocumentRoleQualifier memberRoleQualifier: qualifiers){ |
2260 | 0 | if(StringUtils.isNotBlank(memberRoleQualifier.getAttrVal())){ |
2261 | 0 | newRoleMemberAttributeData = new RoleMemberAttributeDataImpl(); |
2262 | 0 | newRoleMemberAttributeData.setAttributeDataId(memberRoleQualifier.getAttrDataId()); |
2263 | 0 | newRoleMemberAttributeData.setAttributeValue(memberRoleQualifier.getAttrVal()); |
2264 | 0 | newRoleMemberAttributeData.setRoleMemberId(memberRoleQualifier.getRoleMemberId()); |
2265 | 0 | newRoleMemberAttributeData.setKimTypeId(memberRoleQualifier.getKimTypId()); |
2266 | 0 | newRoleMemberAttributeData.setKimAttributeId(memberRoleQualifier.getKimAttrDefnId()); |
2267 | |
|
2268 | 0 | updateAttrValIfNecessary(newRoleMemberAttributeData); |
2269 | |
|
2270 | 0 | if(ObjectUtils.isNotNull(origAttributes)){ |
2271 | 0 | for(RoleMemberAttributeDataImpl origAttribute: origAttributes){ |
2272 | 0 | if(activatingInactive && StringUtils.equals(origAttribute.getKimAttributeId(), newRoleMemberAttributeData.getKimAttributeId()) && |
2273 | |
StringUtils.equals(newRoleMemberAttributeData.getRoleMemberId(), newRoleMemberIdAssigned)){ |
2274 | 0 | newRoleMemberAttributeData.setRoleMemberId(origAttribute.getRoleMemberId()); |
2275 | 0 | newRoleMemberAttributeData.setAttributeDataId(origAttribute.getAttributeDataId()); |
2276 | |
} |
2277 | 0 | if(origAttribute.getAttributeDataId()!=null && StringUtils.equals(origAttribute.getAttributeDataId(), newRoleMemberAttributeData.getAttributeDataId())){ |
2278 | 0 | newRoleMemberAttributeData.setVersionNumber(origAttribute.getVersionNumber()); |
2279 | |
} |
2280 | |
} |
2281 | |
} |
2282 | 0 | roleMemberAttributeDataList.add(newRoleMemberAttributeData); |
2283 | |
} |
2284 | |
} |
2285 | |
} |
2286 | 0 | return roleMemberAttributeDataList; |
2287 | |
} |
2288 | |
|
2289 | |
|
2290 | |
|
2291 | |
|
2292 | |
|
2293 | |
|
2294 | |
|
2295 | |
protected void updateAttrValIfNecessary(RoleMemberAttributeDataImpl roleMemberAttributeData) { |
2296 | 0 | final AttributeDefinition attributeDefinition = getKNSAttributeDefinition(roleMemberAttributeData.getKimTypeId(), roleMemberAttributeData.getKimAttributeId()); |
2297 | 0 | if (attributeDefinition != null) { |
2298 | 0 | if (attributeDefinition.getControl() != null && attributeDefinition.getControl().isCheckbox()) { |
2299 | 0 | convertCheckboxAttributeData(roleMemberAttributeData); |
2300 | |
} |
2301 | |
} |
2302 | 0 | } |
2303 | |
|
2304 | |
protected void formatAttrValIfNecessary(KimDocumentRoleQualifier roleQualifier) { |
2305 | 0 | final AttributeDefinition attributeDefinition = getKNSAttributeDefinition(roleQualifier.getKimTypId(), roleQualifier.getKimAttrDefnId()); |
2306 | 0 | if (attributeDefinition != null) { |
2307 | 0 | if (attributeDefinition.getControl() != null && attributeDefinition.getControl().isCheckbox()) { |
2308 | 0 | formatCheckboxAttributeData(roleQualifier); |
2309 | |
} |
2310 | |
} |
2311 | 0 | } |
2312 | |
|
2313 | |
protected void formatCheckboxAttributeData(KimDocumentRoleQualifier roleQualifier) { |
2314 | 0 | if (roleQualifier.getAttrVal().equals(KimConstants.KIM_ATTRIBUTE_BOOLEAN_TRUE_STR_VALUE)) { |
2315 | 0 | roleQualifier.setAttrVal(KimConstants.KIM_ATTRIBUTE_BOOLEAN_TRUE_STR_VALUE_DISPLAY); |
2316 | 0 | } else if (roleQualifier.getAttrVal().equals(KimConstants.KIM_ATTRIBUTE_BOOLEAN_FALSE_STR_VALUE)) { |
2317 | 0 | roleQualifier.setAttrVal(KimConstants.KIM_ATTRIBUTE_BOOLEAN_FALSE_STR_VALUE_DISPLAY); |
2318 | |
} |
2319 | 0 | } |
2320 | |
|
2321 | |
|
2322 | |
|
2323 | |
|
2324 | |
|
2325 | |
|
2326 | |
|
2327 | |
protected AttributeDefinition getKNSAttributeDefinition(String kimTypId, String attrDefnId) { |
2328 | 0 | final KimTypeInfo type = getKimTypeInfoService().getKimType(kimTypId); |
2329 | 0 | if (type != null) { |
2330 | 0 | final KimTypeService typeService = (KimTypeService) KIMServiceLocatorInternal.getBean(type.getKimTypeServiceName()); |
2331 | 0 | if (typeService != null) { |
2332 | 0 | final KimTypeAttributeInfo attributeInfo = type.getAttributeDefinition(attrDefnId); |
2333 | 0 | if (attributeInfo != null) { |
2334 | 0 | final AttributeDefinitionMap attributeMap = typeService.getAttributeDefinitions(type.getKimTypeId()); |
2335 | 0 | if (attributeMap != null) { |
2336 | 0 | return attributeMap.getByAttributeName(attributeInfo.getAttributeName()); |
2337 | |
} |
2338 | |
} |
2339 | |
} |
2340 | |
} |
2341 | 0 | return null; |
2342 | |
} |
2343 | |
|
2344 | |
|
2345 | |
|
2346 | |
|
2347 | |
|
2348 | |
|
2349 | |
protected void convertCheckboxAttributeData(RoleMemberAttributeDataImpl roleMemberAttributeData) { |
2350 | 0 | if (roleMemberAttributeData.getAttributeValue().equalsIgnoreCase(KimConstants.KIM_ATTRIBUTE_BOOLEAN_TRUE_STR_VALUE_DISPLAY)) { |
2351 | 0 | roleMemberAttributeData.setAttributeValue(KimConstants.KIM_ATTRIBUTE_BOOLEAN_TRUE_STR_VALUE); |
2352 | 0 | } else if (roleMemberAttributeData.getAttributeValue().equalsIgnoreCase(KimConstants.KIM_ATTRIBUTE_BOOLEAN_FALSE_STR_VALUE_DISPLAY)) { |
2353 | 0 | roleMemberAttributeData.setAttributeValue(KimConstants.KIM_ATTRIBUTE_BOOLEAN_FALSE_STR_VALUE); |
2354 | |
} |
2355 | 0 | } |
2356 | |
|
2357 | |
protected List<KimDelegationImpl> getRoleDelegations(IdentityManagementRoleDocument identityManagementRoleDocument, List<KimDelegationImpl> origDelegations){ |
2358 | 0 | List<KimDelegationImpl> kimDelegations = new ArrayList<KimDelegationImpl>(); |
2359 | |
KimDelegationImpl newKimDelegation; |
2360 | 0 | KimDelegationImpl origDelegationImplTemp = null; |
2361 | 0 | List<KimDelegationMemberImpl> origMembers = new ArrayList<KimDelegationMemberImpl>(); |
2362 | 0 | boolean activatingInactive = false; |
2363 | 0 | String newDelegationIdAssigned = ""; |
2364 | 0 | if(CollectionUtils.isNotEmpty(identityManagementRoleDocument.getDelegations())){ |
2365 | 0 | for(RoleDocumentDelegation roleDocumentDelegation: identityManagementRoleDocument.getDelegations()){ |
2366 | 0 | newKimDelegation = new KimDelegationImpl(); |
2367 | 0 | KimCommonUtilsInternal.copyProperties(newKimDelegation, roleDocumentDelegation); |
2368 | 0 | newKimDelegation.setRoleId(identityManagementRoleDocument.getRoleId()); |
2369 | 0 | if(ObjectUtils.isNotNull(origDelegations)){ |
2370 | 0 | for(KimDelegationImpl origDelegationImpl: origDelegations){ |
2371 | 0 | if(StringUtils.equals(origDelegationImpl.getRoleId(), newKimDelegation.getRoleId()) && |
2372 | |
StringUtils.equals(origDelegationImpl.getDelegationId(), newKimDelegation.getDelegationId())){ |
2373 | |
|
2374 | 0 | newDelegationIdAssigned = newKimDelegation.getDelegationId(); |
2375 | 0 | newKimDelegation.setDelegationId(origDelegationImpl.getDelegationId()); |
2376 | 0 | activatingInactive = true; |
2377 | |
} |
2378 | 0 | if(origDelegationImpl.getDelegationId()!=null && StringUtils.equals(origDelegationImpl.getDelegationId(), newKimDelegation.getDelegationId())){ |
2379 | 0 | newKimDelegation.setVersionNumber(origDelegationImpl.getVersionNumber()); |
2380 | 0 | origDelegationImplTemp = origDelegationImpl; |
2381 | |
} |
2382 | |
} |
2383 | |
} |
2384 | 0 | origMembers = (origDelegationImplTemp==null || origDelegationImplTemp.getMembers()==null)? |
2385 | |
new ArrayList<KimDelegationMemberImpl>():origDelegationImplTemp.getMembers(); |
2386 | 0 | newKimDelegation.setMembers(getDelegationMembers(roleDocumentDelegation.getMembers(), origMembers, activatingInactive, newDelegationIdAssigned)); |
2387 | 0 | kimDelegations.add(newKimDelegation); |
2388 | 0 | activatingInactive = false; |
2389 | |
} |
2390 | |
} |
2391 | 0 | return kimDelegations; |
2392 | |
} |
2393 | |
|
2394 | |
protected List<KimDelegationMemberImpl> getDelegationMembers(List<RoleDocumentDelegationMember> delegationMembers, |
2395 | |
List<KimDelegationMemberImpl> origDelegationMembers, boolean activatingInactive, String newDelegationIdAssigned){ |
2396 | 0 | List<KimDelegationMemberImpl> delegationsMembersList = new ArrayList<KimDelegationMemberImpl>(); |
2397 | |
KimDelegationMemberImpl newDelegationMemberImpl; |
2398 | 0 | KimDelegationMemberImpl origDelegationMemberImplTemp = null; |
2399 | |
List<KimDelegationMemberAttributeDataImpl> origAttributes; |
2400 | 0 | String delegationMemberId = ""; |
2401 | 0 | if(CollectionUtils.isNotEmpty(delegationMembers)){ |
2402 | 0 | for(RoleDocumentDelegationMember delegationMember: delegationMembers){ |
2403 | 0 | newDelegationMemberImpl = new KimDelegationMemberImpl(); |
2404 | 0 | KimCommonUtilsInternal.copyProperties(newDelegationMemberImpl, delegationMember); |
2405 | 0 | if(ObjectUtils.isNotNull(origDelegationMembers)){ |
2406 | 0 | for(KimDelegationMemberImpl origDelegationMember: origDelegationMembers){ |
2407 | 0 | if(activatingInactive && StringUtils.equals(origDelegationMember.getMemberId(), newDelegationMemberImpl.getMemberId()) && |
2408 | |
StringUtils.equals(newDelegationMemberImpl.getDelegationId(), newDelegationIdAssigned) && |
2409 | |
!origDelegationMember.isActive()){ |
2410 | 0 | newDelegationMemberImpl.setDelegationId(origDelegationMember.getDelegationId()); |
2411 | 0 | delegationMemberId = newDelegationMemberImpl.getDelegationMemberId(); |
2412 | 0 | newDelegationMemberImpl.setDelegationMemberId(origDelegationMember.getDelegationMemberId()); |
2413 | |
} |
2414 | 0 | if(origDelegationMember.getDelegationMemberId()!=null && StringUtils.equals(origDelegationMember.getDelegationMemberId(), newDelegationMemberImpl.getDelegationMemberId())){ |
2415 | 0 | newDelegationMemberImpl.setVersionNumber(origDelegationMember.getVersionNumber()); |
2416 | 0 | origDelegationMemberImplTemp = origDelegationMember; |
2417 | |
} |
2418 | |
} |
2419 | |
} |
2420 | 0 | origAttributes = (origDelegationMemberImplTemp==null || origDelegationMemberImplTemp.getAttributes()==null)? |
2421 | |
new ArrayList<KimDelegationMemberAttributeDataImpl>():origDelegationMemberImplTemp.getAttributes(); |
2422 | 0 | newDelegationMemberImpl.setAttributes(getDelegationMemberAttributeData(delegationMember.getQualifiers(), origAttributes, activatingInactive, delegationMemberId)); |
2423 | 0 | delegationsMembersList.add(newDelegationMemberImpl); |
2424 | |
} |
2425 | |
} |
2426 | 0 | return delegationsMembersList; |
2427 | |
} |
2428 | |
|
2429 | |
|
2430 | |
protected List<KimDelegationMemberAttributeDataImpl> getDelegationMemberAttributeData( |
2431 | |
List<RoleDocumentDelegationMemberQualifier> qualifiers, List<KimDelegationMemberAttributeDataImpl> origAttributes, |
2432 | |
boolean activatingInactive, String delegationMemberId){ |
2433 | 0 | List<KimDelegationMemberAttributeDataImpl> delegationMemberAttributeDataList = new ArrayList<KimDelegationMemberAttributeDataImpl>(); |
2434 | |
KimDelegationMemberAttributeDataImpl newDelegationMemberAttributeData; |
2435 | 0 | if(CollectionUtils.isNotEmpty(qualifiers)){ |
2436 | 0 | for(RoleDocumentDelegationMemberQualifier memberRoleQualifier: qualifiers){ |
2437 | 0 | if(StringUtils.isNotBlank(memberRoleQualifier.getAttrVal())){ |
2438 | 0 | newDelegationMemberAttributeData = new KimDelegationMemberAttributeDataImpl(); |
2439 | 0 | newDelegationMemberAttributeData.setAttributeDataId(memberRoleQualifier.getAttrDataId()); |
2440 | 0 | newDelegationMemberAttributeData.setAttributeValue(memberRoleQualifier.getAttrVal()); |
2441 | 0 | newDelegationMemberAttributeData.setDelegationMemberId(memberRoleQualifier.getDelegationMemberId()); |
2442 | 0 | newDelegationMemberAttributeData.setKimTypeId(memberRoleQualifier.getKimTypId()); |
2443 | 0 | newDelegationMemberAttributeData.setKimAttributeId(memberRoleQualifier.getKimAttrDefnId()); |
2444 | 0 | if(ObjectUtils.isNotNull(origAttributes)){ |
2445 | 0 | for(KimDelegationMemberAttributeDataImpl origAttribute: origAttributes){ |
2446 | 0 | if(activatingInactive && StringUtils.equals(origAttribute.getKimAttributeId(), newDelegationMemberAttributeData.getKimAttributeId()) && |
2447 | |
StringUtils.equals(newDelegationMemberAttributeData.getDelegationMemberId(), delegationMemberId)){ |
2448 | 0 | newDelegationMemberAttributeData.setDelegationMemberId(origAttribute.getDelegationMemberId()); |
2449 | 0 | newDelegationMemberAttributeData.setAttributeDataId(origAttribute.getAttributeDataId()); |
2450 | |
} |
2451 | 0 | if(StringUtils.equals(origAttribute.getAttributeDataId(), newDelegationMemberAttributeData.getAttributeDataId())){ |
2452 | 0 | newDelegationMemberAttributeData.setVersionNumber(origAttribute.getVersionNumber()); |
2453 | |
} |
2454 | |
} |
2455 | |
} |
2456 | 0 | delegationMemberAttributeDataList.add(newDelegationMemberAttributeData); |
2457 | |
} |
2458 | |
} |
2459 | |
} |
2460 | 0 | return delegationMemberAttributeDataList; |
2461 | |
} |
2462 | |
|
2463 | |
|
2464 | |
public void loadGroupDoc(IdentityManagementGroupDocument identityManagementGroupDocument, GroupInfo groupInfo){ |
2465 | 0 | Map<String, String> criteria = new HashMap<String, String>(); |
2466 | 0 | criteria.put(KimConstants.PrimaryKeyConstants.GROUP_ID, groupInfo.getGroupId()); |
2467 | 0 | GroupImpl kimGroupImpl = (GroupImpl) |
2468 | |
getBusinessObjectService().findByPrimaryKey(GroupImpl.class, criteria); |
2469 | 0 | identityManagementGroupDocument.setGroupId(kimGroupImpl.getGroupId()); |
2470 | 0 | identityManagementGroupDocument.setKimType(kimGroupImpl.getKimTypeInfo()); |
2471 | 0 | identityManagementGroupDocument.setGroupTypeName(kimGroupImpl.getKimTypeInfo().getName()); |
2472 | 0 | identityManagementGroupDocument.setGroupTypeId(kimGroupImpl.getKimTypeInfo().getKimTypeId()); |
2473 | 0 | identityManagementGroupDocument.setGroupName(kimGroupImpl.getGroupName()); |
2474 | 0 | identityManagementGroupDocument.setGroupDescription(kimGroupImpl.getGroupDescription()); |
2475 | 0 | identityManagementGroupDocument.setActive(kimGroupImpl.isActive()); |
2476 | 0 | identityManagementGroupDocument.setGroupNamespace(kimGroupImpl.getNamespaceCode()); |
2477 | 0 | identityManagementGroupDocument.setMembers(loadGroupMembers(identityManagementGroupDocument, kimGroupImpl.getMembers())); |
2478 | 0 | identityManagementGroupDocument.setQualifiers(loadGroupQualifiers(identityManagementGroupDocument, kimGroupImpl.getGroupAttributes())); |
2479 | 0 | identityManagementGroupDocument.setKimType(kimGroupImpl.getKimTypeInfo()); |
2480 | 0 | identityManagementGroupDocument.setEditing(true); |
2481 | 0 | } |
2482 | |
|
2483 | 0 | protected static class GroupMemberNameComparator implements Comparator<GroupDocumentMember> { |
2484 | |
|
2485 | |
|
2486 | |
|
2487 | |
public int compare(GroupDocumentMember m1, GroupDocumentMember m2) { |
2488 | 0 | return m1.getMemberName().compareToIgnoreCase(m2.getMemberName()); |
2489 | |
} |
2490 | |
} |
2491 | |
|
2492 | 0 | protected GroupMemberNameComparator groupMemberNameComparator = new GroupMemberNameComparator(); |
2493 | |
|
2494 | |
protected List<GroupDocumentMember> loadGroupMembers( |
2495 | |
IdentityManagementGroupDocument identityManagementGroupDocument, List<GroupMemberImpl> members){ |
2496 | 0 | List<GroupDocumentMember> pndMembers = new ArrayList<GroupDocumentMember>(); |
2497 | 0 | GroupDocumentMember pndMember = new GroupDocumentMember(); |
2498 | 0 | if(ObjectUtils.isNotNull(members)){ |
2499 | 0 | for(GroupMemberImpl member: members){ |
2500 | 0 | pndMember = new GroupDocumentMember(); |
2501 | 0 | pndMember.setActiveFromDate(member.getActiveFromDate()); |
2502 | 0 | pndMember.setActiveToDate(member.getActiveToDate()); |
2503 | |
|
2504 | 0 | if(pndMember.isActive()){ |
2505 | 0 | pndMember.setGroupMemberId(member.getGroupMemberId()); |
2506 | 0 | pndMember.setGroupId(member.getGroupId()); |
2507 | 0 | pndMember.setMemberId(member.getMemberId()); |
2508 | 0 | pndMember.setMemberName(getMemberName(member.getMemberTypeCode(), member.getMemberId())); |
2509 | 0 | pndMember.setMemberFullName(getMemberFullName(member.getMemberTypeCode(), member.getMemberId())); |
2510 | 0 | pndMember.setMemberTypeCode(member.getMemberTypeCode()); |
2511 | 0 | pndMember.setEdit(true); |
2512 | 0 | pndMembers.add(pndMember); |
2513 | |
} |
2514 | |
} |
2515 | |
} |
2516 | 0 | Collections.sort(pndMembers, groupMemberNameComparator); |
2517 | 0 | return pndMembers; |
2518 | |
} |
2519 | |
|
2520 | |
protected List<GroupDocumentQualifier> loadGroupQualifiers(IdentityManagementGroupDocument IdentityManagementGroupDocument, |
2521 | |
List<GroupAttributeDataImpl> attributeDataList){ |
2522 | 0 | List<GroupDocumentQualifier> pndGroupQualifiers = new ArrayList<GroupDocumentQualifier>(); |
2523 | 0 | GroupDocumentQualifier pndGroupQualifier = new GroupDocumentQualifier(); |
2524 | 0 | AttributeDefinitionMap origAttributes = IdentityManagementGroupDocument.getDefinitions(); |
2525 | 0 | boolean attributePresent = false; |
2526 | |
String origAttributeId; |
2527 | 0 | if(origAttributes!=null){ |
2528 | 0 | for(String key: origAttributes.keySet()) { |
2529 | 0 | origAttributeId = IdentityManagementGroupDocument.getKimAttributeDefnId(origAttributes.get(key)); |
2530 | 0 | if(CollectionUtils.isNotEmpty(attributeDataList)){ |
2531 | 0 | for(GroupAttributeDataImpl groupQualifier: attributeDataList){ |
2532 | 0 | if(origAttributeId!=null && ObjectUtils.isNotNull(groupQualifier.getKimAttribute()) && |
2533 | |
StringUtils.equals(origAttributeId, groupQualifier.getKimAttribute().getKimAttributeId())){ |
2534 | 0 | pndGroupQualifier = new GroupDocumentQualifier(); |
2535 | 0 | KimCommonUtilsInternal.copyProperties(pndGroupQualifier, groupQualifier); |
2536 | 0 | pndGroupQualifier.setAttrDataId(groupQualifier.getAttributeDataId()); |
2537 | 0 | pndGroupQualifier.setAttrVal(groupQualifier.getAttributeValue()); |
2538 | 0 | pndGroupQualifier.setKimAttrDefnId(groupQualifier.getKimAttributeId()); |
2539 | 0 | pndGroupQualifier.setKimTypId(groupQualifier.getKimTypeId()); |
2540 | 0 | pndGroupQualifier.setGroupId(groupQualifier.getGroupId()); |
2541 | 0 | pndGroupQualifiers.add(pndGroupQualifier); |
2542 | 0 | attributePresent = true; |
2543 | |
} |
2544 | |
} |
2545 | |
} |
2546 | 0 | if(!attributePresent){ |
2547 | 0 | pndGroupQualifier = new GroupDocumentQualifier(); |
2548 | 0 | pndGroupQualifier.setKimAttrDefnId(origAttributeId); |
2549 | 0 | pndGroupQualifiers.add(pndGroupQualifier); |
2550 | |
} |
2551 | 0 | attributePresent = false; |
2552 | |
} |
2553 | |
} |
2554 | 0 | return pndGroupQualifiers; |
2555 | |
} |
2556 | |
|
2557 | |
|
2558 | |
|
2559 | |
|
2560 | |
@SuppressWarnings("unchecked") |
2561 | |
public void saveGroup(IdentityManagementGroupDocument identityManagementGroupDocument) { |
2562 | 0 | GroupImpl kimGroup = new GroupImpl(); |
2563 | 0 | Map<String, String> criteria = new HashMap<String, String>(); |
2564 | 0 | String groupId = identityManagementGroupDocument.getGroupId(); |
2565 | |
|
2566 | 0 | GroupImpl origGroup = (GroupImpl)getBusinessObjectService().findBySinglePrimaryKey(GroupImpl.class, groupId); |
2567 | 0 | List<GroupMemberImpl> origGroupMembers = new ArrayList<GroupMemberImpl>(); |
2568 | 0 | if (ObjectUtils.isNull(origGroup)) { |
2569 | 0 | origGroup = new GroupImpl(); |
2570 | 0 | kimGroup.setActive(true); |
2571 | |
} else { |
2572 | 0 | kimGroup.setVersionNumber(origGroup.getVersionNumber()); |
2573 | |
|
2574 | |
|
2575 | 0 | kimGroup.setActive(identityManagementGroupDocument.isActive()); |
2576 | 0 | origGroupMembers = (List<GroupMemberImpl>)getBusinessObjectService().findMatching(GroupMemberImpl.class, criteria); |
2577 | |
} |
2578 | |
|
2579 | 0 | kimGroup.setGroupId(identityManagementGroupDocument.getGroupId()); |
2580 | 0 | KimTypeInfo kimType = getKimTypeInfoService().getKimType(identityManagementGroupDocument.getGroupTypeId()); |
2581 | 0 | if( kimType == null ) { |
2582 | 0 | throw new RuntimeException("Kim type not found for:"+identityManagementGroupDocument.getGroupTypeId()); |
2583 | |
} |
2584 | |
|
2585 | 0 | kimGroup.setKimTypeId(kimType.getKimTypeId()); |
2586 | 0 | kimGroup.setNamespaceCode(identityManagementGroupDocument.getGroupNamespace()); |
2587 | 0 | kimGroup.setGroupName(identityManagementGroupDocument.getGroupName()); |
2588 | 0 | kimGroup.setGroupDescription(identityManagementGroupDocument.getGroupDescription()); |
2589 | 0 | kimGroup.setGroupAttributes(getGroupAttributeData(identityManagementGroupDocument, origGroup.getGroupAttributes())); |
2590 | |
|
2591 | 0 | List<String> oldIds = null; |
2592 | 0 | List<String> newIds = null; |
2593 | |
|
2594 | 0 | oldIds = getGroupService().getMemberPrincipalIds(kimGroup.getGroupId()); |
2595 | |
|
2596 | |
|
2597 | 0 | List<GroupMemberImpl> newGroupMembersList = getGroupMembers(identityManagementGroupDocument, origGroupMembers); |
2598 | 0 | kimGroup.setMembers(newGroupMembersList); |
2599 | |
|
2600 | |
|
2601 | |
|
2602 | 0 | kimGroup = (GroupImpl)getBusinessObjectService().save(kimGroup); |
2603 | |
|
2604 | 0 | newIds = kimGroup.getMemberPrincipalIds(); |
2605 | |
|
2606 | |
|
2607 | |
|
2608 | 0 | KIMServiceLocatorInternal.getGroupInternalService().updateForWorkgroupChange(kimGroup.getGroupId(), oldIds, newIds); |
2609 | 0 | IdentityManagementNotificationService service = (IdentityManagementNotificationService)KSBServiceLocator.getMessageHelper().getServiceAsynchronously(new QName("KIM", "kimIdentityManagementNotificationService")); |
2610 | 0 | service.groupUpdated(); |
2611 | 0 | if(!kimGroup.isActive()){ |
2612 | |
|
2613 | |
|
2614 | 0 | KIMServiceLocator.getRoleService().groupInactivated(identityManagementGroupDocument.getGroupId()); |
2615 | |
} |
2616 | |
|
2617 | 0 | } |
2618 | |
|
2619 | |
|
2620 | |
|
2621 | |
|
2622 | |
|
2623 | |
|
2624 | |
protected List<? extends Group> getGroupsByIds(List<String> groupIds) { |
2625 | 0 | List<GroupInfo> groups = new ArrayList<GroupInfo>(); |
2626 | 0 | Map<String, GroupInfo> groupInfoMap = getGroupService().getGroupInfos(groupIds); |
2627 | 0 | for (String groupId : groupInfoMap.keySet()) { |
2628 | 0 | groups.add(groupInfoMap.get(groupId)); |
2629 | |
} |
2630 | 0 | return groups; |
2631 | |
} |
2632 | |
|
2633 | |
protected List<GroupMemberImpl> getGroupMembers(IdentityManagementGroupDocument identityManagementGroupDocument, List<GroupMemberImpl> origGroupMembers){ |
2634 | 0 | List<GroupMemberImpl> groupMembers = new ArrayList<GroupMemberImpl>(); |
2635 | |
GroupMemberImpl newGroupMember; |
2636 | 0 | if(CollectionUtils.isNotEmpty(identityManagementGroupDocument.getMembers())){ |
2637 | 0 | for(GroupDocumentMember documentGroupMember: identityManagementGroupDocument.getMembers()){ |
2638 | 0 | newGroupMember = new GroupMemberImpl(); |
2639 | 0 | KimCommonUtilsInternal.copyProperties(newGroupMember, documentGroupMember); |
2640 | 0 | newGroupMember.setGroupId(identityManagementGroupDocument.getGroupId()); |
2641 | 0 | if(ObjectUtils.isNotNull(origGroupMembers)){ |
2642 | 0 | for(GroupMemberImpl origGroupMemberImpl: origGroupMembers){ |
2643 | 0 | if(StringUtils.equals(origGroupMemberImpl.getGroupId(), newGroupMember.getGroupId()) && |
2644 | |
StringUtils.equals(origGroupMemberImpl.getMemberId(), newGroupMember.getMemberId()) && |
2645 | |
!origGroupMemberImpl.isActive()){ |
2646 | |
|
2647 | 0 | newGroupMember.setGroupMemberId(origGroupMemberImpl.getGroupMemberId()); |
2648 | |
} |
2649 | 0 | if(origGroupMemberImpl.getGroupMemberId()!=null && StringUtils.equals(origGroupMemberImpl.getGroupMemberId(), newGroupMember.getGroupMemberId())){ |
2650 | 0 | newGroupMember.setVersionNumber(origGroupMemberImpl.getVersionNumber()); |
2651 | |
} |
2652 | |
} |
2653 | |
} |
2654 | 0 | groupMembers.add(newGroupMember); |
2655 | |
} |
2656 | |
} |
2657 | 0 | return groupMembers; |
2658 | |
} |
2659 | |
|
2660 | |
protected List<GroupAttributeDataImpl> getGroupAttributeData(IdentityManagementGroupDocument identityManagementGroupDocument, |
2661 | |
List<GroupAttributeDataImpl> origAttributes){ |
2662 | 0 | List<GroupAttributeDataImpl> groupAttributeDataList = new ArrayList<GroupAttributeDataImpl>(); |
2663 | |
GroupAttributeDataImpl newGroupAttributeData; |
2664 | 0 | if(CollectionUtils.isNotEmpty(identityManagementGroupDocument.getQualifiers())){ |
2665 | 0 | for(GroupDocumentQualifier groupQualifier: identityManagementGroupDocument.getQualifiers()){ |
2666 | 0 | if(StringUtils.isNotBlank(groupQualifier.getAttrVal())){ |
2667 | 0 | newGroupAttributeData = new GroupAttributeDataImpl(); |
2668 | 0 | newGroupAttributeData.setAttributeDataId(groupQualifier.getAttrDataId()); |
2669 | 0 | newGroupAttributeData.setAttributeValue(groupQualifier.getAttrVal()); |
2670 | 0 | newGroupAttributeData.setGroupId(groupQualifier.getGroupId()); |
2671 | 0 | newGroupAttributeData.setKimTypeId(groupQualifier.getKimTypId()); |
2672 | 0 | newGroupAttributeData.setKimAttributeId(groupQualifier.getKimAttrDefnId()); |
2673 | 0 | if(ObjectUtils.isNotNull(origAttributes)){ |
2674 | 0 | for(GroupAttributeDataImpl origAttribute: origAttributes){ |
2675 | 0 | if(StringUtils.equals(origAttribute.getKimAttributeId(), newGroupAttributeData.getKimAttributeId()) && |
2676 | |
StringUtils.equals(newGroupAttributeData.getGroupId(), origAttribute.getGroupId())){ |
2677 | 0 | newGroupAttributeData.setAttributeDataId(origAttribute.getAttributeDataId()); |
2678 | |
} |
2679 | 0 | if(origAttribute.getAttributeDataId()!=null && StringUtils.equals(origAttribute.getAttributeDataId(), newGroupAttributeData.getAttributeDataId())){ |
2680 | 0 | newGroupAttributeData.setVersionNumber(origAttribute.getVersionNumber()); |
2681 | |
} |
2682 | |
} |
2683 | |
} |
2684 | 0 | groupAttributeDataList.add(newGroupAttributeData); |
2685 | |
} |
2686 | |
} |
2687 | |
} |
2688 | 0 | return groupAttributeDataList; |
2689 | |
} |
2690 | |
|
2691 | |
@SuppressWarnings("unchecked") |
2692 | |
public KimDocumentRoleMember getKimDocumentRoleMember(String memberTypeCode, String memberId, String roleId){ |
2693 | 0 | if(StringUtils.isEmpty(memberTypeCode) || StringUtils.isEmpty(memberId) || StringUtils.isEmpty(roleId)) |
2694 | 0 | return null; |
2695 | 0 | KimDocumentRoleMember documentRoleMember = new KimDocumentRoleMember(); |
2696 | 0 | documentRoleMember.setRoleId(roleId); |
2697 | 0 | Map<String, String> criteria = new HashMap<String, String>(); |
2698 | 0 | criteria.put(KimConstants.PrimaryKeyConstants.ROLE_ID, roleId); |
2699 | 0 | criteria.put("mbr_id", memberId); |
2700 | |
|
2701 | 0 | List<RoleMemberImpl> matchingRoleMembers = (List<RoleMemberImpl>)getBusinessObjectService().findMatching(RoleMemberImpl.class, criteria); |
2702 | 0 | if(matchingRoleMembers==null || matchingRoleMembers.size()<1) return null; |
2703 | |
|
2704 | 0 | RoleMemberImpl roleMemberImpl = matchingRoleMembers.get(0); |
2705 | 0 | documentRoleMember.setRoleMemberId(roleMemberImpl.getRoleMemberId()); |
2706 | 0 | if(KimConstants.KimUIConstants.MEMBER_TYPE_PRINCIPAL_CODE.equals(memberTypeCode)){ |
2707 | 0 | KimPrincipalInfo principal = null; |
2708 | 0 | principal = getIdentityManagementService().getPrincipal(memberId); |
2709 | 0 | if (principal != null) { |
2710 | 0 | documentRoleMember.setMemberId(principal.getPrincipalId()); |
2711 | 0 | documentRoleMember.setMemberName(principal.getPrincipalName()); |
2712 | 0 | documentRoleMember.setMemberTypeCode(KimConstants.KimUIConstants.MEMBER_TYPE_PRINCIPAL_CODE); |
2713 | |
} |
2714 | 0 | } else if(KimConstants.KimUIConstants.MEMBER_TYPE_GROUP_CODE.equals(memberTypeCode)){ |
2715 | 0 | GroupInfo group = null; |
2716 | 0 | group = getGroupService().getGroupInfo(memberId); |
2717 | 0 | if (group != null) { |
2718 | 0 | documentRoleMember.setMemberNamespaceCode(group.getNamespaceCode()); |
2719 | 0 | documentRoleMember.setMemberId(group.getGroupId()); |
2720 | 0 | documentRoleMember.setMemberName(group.getGroupName()); |
2721 | 0 | documentRoleMember.setMemberTypeCode(KimConstants.KimUIConstants.MEMBER_TYPE_GROUP_CODE); |
2722 | |
} |
2723 | |
|
2724 | 0 | } else if(KimConstants.KimUIConstants.MEMBER_TYPE_ROLE_CODE.equals(memberTypeCode)){ |
2725 | 0 | KimRoleInfo role = null; |
2726 | 0 | role = getRoleService().getRole(memberId); |
2727 | 0 | if (role != null) { |
2728 | 0 | documentRoleMember.setMemberNamespaceCode(role.getNamespaceCode()); |
2729 | 0 | documentRoleMember.setMemberId(role.getRoleId()); |
2730 | 0 | documentRoleMember.setMemberName(role.getRoleName()); |
2731 | 0 | documentRoleMember.setMemberTypeCode(KimConstants.KimUIConstants.MEMBER_TYPE_ROLE_CODE); |
2732 | |
} |
2733 | |
} |
2734 | 0 | return documentRoleMember; |
2735 | |
} |
2736 | |
|
2737 | |
protected Set<String> getChangedRoleResponsibilityIds( |
2738 | |
IdentityManagementRoleDocument identityManagementRoleDocument, List<RoleResponsibilityImpl> origRoleResponsibilities){ |
2739 | 0 | Set<String> lRet = new HashSet<String>(); |
2740 | 0 | List<String> newResp = new ArrayList<String>(); |
2741 | 0 | List<String> oldResp = new ArrayList<String>(); |
2742 | 0 | if(CollectionUtils.isNotEmpty(identityManagementRoleDocument.getResponsibilities())){ |
2743 | 0 | for(KimDocumentRoleResponsibility documentRoleResponsibility: identityManagementRoleDocument.getResponsibilities()){ |
2744 | 0 | newResp.add(documentRoleResponsibility.getResponsibilityId()); |
2745 | |
} |
2746 | |
} |
2747 | 0 | if(ObjectUtils.isNotNull(origRoleResponsibilities)){ |
2748 | 0 | for(RoleResponsibilityImpl roleResp: origRoleResponsibilities){ |
2749 | 0 | oldResp.add(roleResp.getResponsibilityId()); |
2750 | |
} |
2751 | |
} |
2752 | 0 | lRet.addAll(newResp); |
2753 | 0 | lRet.addAll(oldResp); |
2754 | |
|
2755 | 0 | return lRet; |
2756 | |
} |
2757 | |
|
2758 | |
public KimTypeInfoService getKimTypeInfoService() { |
2759 | 0 | if ( kimTypeInfoService == null ) { |
2760 | 0 | kimTypeInfoService = KIMServiceLocatorWeb.getTypeInfoService(); |
2761 | |
} |
2762 | 0 | return kimTypeInfoService; |
2763 | |
} |
2764 | |
|
2765 | |
public List<KimDocumentRoleMember> getRoleMembers(Map<String,String> fieldValues) { |
2766 | 0 | List<KimDocumentRoleMember> matchingRoleMembers = new ArrayList<KimDocumentRoleMember>(); |
2767 | 0 | List<RoleMembershipInfo> matchingRoleMembersTemp = getRoleService().findRoleMembers(fieldValues); |
2768 | |
KimDocumentRoleMember matchingRoleMember; |
2769 | |
BusinessObject roleMemberObject; |
2770 | |
RoleMemberImpl roleMember; |
2771 | 0 | if(CollectionUtils.isNotEmpty(matchingRoleMembersTemp)){ |
2772 | 0 | for(RoleMembershipInfo roleMembership: matchingRoleMembersTemp){ |
2773 | 0 | roleMember = getRoleMember(roleMembership.getRoleMemberId()); |
2774 | 0 | roleMemberObject = getMember(roleMember.getMemberTypeCode(), roleMember.getMemberId()); |
2775 | 0 | matchingRoleMember = new KimDocumentRoleMember(); |
2776 | 0 | KimCommonUtilsInternal.copyProperties(matchingRoleMember, roleMember); |
2777 | 0 | matchingRoleMember.setMemberName(getMemberName(roleMember.getMemberTypeCode(), roleMemberObject)); |
2778 | 0 | matchingRoleMember.setMemberNamespaceCode(getMemberNamespaceCode(roleMember.getMemberTypeCode(), roleMemberObject)); |
2779 | 0 | matchingRoleMember.setQualifiers(getQualifiers(roleMember.getAttributes())); |
2780 | 0 | matchingRoleMembers.add(matchingRoleMember); |
2781 | |
} |
2782 | |
} |
2783 | 0 | return matchingRoleMembers; |
2784 | |
} |
2785 | |
|
2786 | |
private List<KimDocumentRoleQualifier> getQualifiers(List<RoleMemberAttributeDataImpl> attributes){ |
2787 | 0 | if(attributes==null) return null; |
2788 | 0 | List<KimDocumentRoleQualifier> qualifiers = new ArrayList<KimDocumentRoleQualifier>(); |
2789 | |
KimDocumentRoleQualifier qualifier; |
2790 | 0 | if(ObjectUtils.isNotNull(attributes)){ |
2791 | 0 | for(RoleMemberAttributeDataImpl attribute: attributes){ |
2792 | 0 | qualifier = new KimDocumentRoleQualifier(); |
2793 | 0 | qualifier.setAttrDataId(attribute.getAttributeDataId()); |
2794 | 0 | qualifier.setAttrVal(attribute.getAttributeValue()); |
2795 | 0 | qualifier.setRoleMemberId(attribute.getRoleMemberId()); |
2796 | 0 | qualifier.setKimTypId(attribute.getKimTypeId()); |
2797 | 0 | qualifier.setKimAttrDefnId(attribute.getKimAttributeId()); |
2798 | 0 | qualifier.setKimAttribute(attribute.getKimAttribute()); |
2799 | 0 | qualifiers.add(qualifier); |
2800 | |
} |
2801 | |
} |
2802 | 0 | return qualifiers; |
2803 | |
} |
2804 | |
} |