1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
package org.kuali.rice.kim.document.rule; |
17 | |
|
18 | |
import org.apache.commons.collections.CollectionUtils; |
19 | |
import org.apache.commons.lang.StringUtils; |
20 | |
import org.kuali.rice.core.api.uif.RemotableAttributeError; |
21 | |
import org.kuali.rice.core.api.util.RiceKeyConstants; |
22 | |
import org.kuali.rice.kim.api.identity.IdentityService; |
23 | |
import org.kuali.rice.kim.api.identity.entity.EntityDefault; |
24 | |
import org.kuali.rice.kim.api.identity.principal.Principal; |
25 | |
import org.kuali.rice.kim.api.role.RoleService; |
26 | |
import org.kuali.rice.kim.api.services.KimApiServiceLocator; |
27 | |
import org.kuali.rice.kim.api.type.KimAttributeField; |
28 | |
import org.kuali.rice.kim.api.type.KimType; |
29 | |
import org.kuali.rice.kim.bo.ui.KimDocumentRoleMember; |
30 | |
import org.kuali.rice.kim.bo.ui.KimDocumentRoleQualifier; |
31 | |
import org.kuali.rice.kim.bo.ui.PersonDocumentAffiliation; |
32 | |
import org.kuali.rice.kim.bo.ui.PersonDocumentBoDefaultBase; |
33 | |
import org.kuali.rice.kim.bo.ui.PersonDocumentEmploymentInfo; |
34 | |
import org.kuali.rice.kim.bo.ui.PersonDocumentGroup; |
35 | |
import org.kuali.rice.kim.bo.ui.PersonDocumentName; |
36 | |
import org.kuali.rice.kim.bo.ui.PersonDocumentRole; |
37 | |
import org.kuali.rice.kim.bo.ui.RoleDocumentDelegationMember; |
38 | |
import org.kuali.rice.kim.document.IdentityManagementPersonDocument; |
39 | |
import org.kuali.rice.kim.document.authorization.IdentityManagementKimDocumentAuthorizer; |
40 | |
import org.kuali.rice.kim.framework.services.KimFrameworkServiceLocator; |
41 | |
import org.kuali.rice.kim.framework.type.KimTypeService; |
42 | |
import org.kuali.rice.kim.impl.KIMPropertyConstants; |
43 | |
import org.kuali.rice.kim.impl.identity.principal.PrincipalBo; |
44 | |
import org.kuali.rice.kim.impl.role.RoleMemberBo; |
45 | |
import org.kuali.rice.kim.impl.type.KimTypeBo; |
46 | |
import org.kuali.rice.kim.rule.event.ui.AddGroupEvent; |
47 | |
import org.kuali.rice.kim.rule.event.ui.AddPersonDelegationMemberEvent; |
48 | |
import org.kuali.rice.kim.rule.event.ui.AddRoleEvent; |
49 | |
import org.kuali.rice.kim.rule.ui.AddGroupRule; |
50 | |
import org.kuali.rice.kim.rule.ui.AddPersonDelegationMemberRule; |
51 | |
import org.kuali.rice.kim.rule.ui.AddPersonDocumentRoleQualifierRule; |
52 | |
import org.kuali.rice.kim.rule.ui.AddRoleRule; |
53 | |
import org.kuali.rice.kim.rules.ui.PersonDocumentDelegationMemberRule; |
54 | |
import org.kuali.rice.kim.rules.ui.PersonDocumentGroupRule; |
55 | |
import org.kuali.rice.kim.rules.ui.PersonDocumentRoleRule; |
56 | |
import org.kuali.rice.kim.service.KIMServiceLocatorInternal; |
57 | |
import org.kuali.rice.kim.service.UiDocumentService; |
58 | |
import org.kuali.rice.kns.kim.type.DataDictionaryTypeServiceHelper; |
59 | |
import org.kuali.rice.krad.document.Document; |
60 | |
import org.kuali.rice.krad.rules.TransactionalDocumentRuleBase; |
61 | |
import org.kuali.rice.krad.service.BusinessObjectService; |
62 | |
import org.kuali.rice.krad.service.KRADServiceLocator; |
63 | |
import org.kuali.rice.krad.service.KRADServiceLocatorWeb; |
64 | |
import org.kuali.rice.krad.util.GlobalVariables; |
65 | |
import org.kuali.rice.krad.util.KRADConstants; |
66 | |
import org.kuali.rice.krad.util.ObjectUtils; |
67 | |
|
68 | |
import java.sql.Timestamp; |
69 | |
import java.util.ArrayList; |
70 | |
import java.util.HashMap; |
71 | |
import java.util.HashSet; |
72 | |
import java.util.List; |
73 | |
import java.util.Map; |
74 | |
import java.util.Set; |
75 | |
|
76 | |
|
77 | |
|
78 | |
|
79 | |
|
80 | |
|
81 | |
|
82 | 0 | public class IdentityManagementPersonDocumentRule extends TransactionalDocumentRuleBase implements AddGroupRule, AddRoleRule, AddPersonDocumentRoleQualifierRule, AddPersonDelegationMemberRule { |
83 | |
|
84 | |
|
85 | |
|
86 | |
protected AddGroupRule addGroupRule; |
87 | |
protected AddRoleRule addRoleRule; |
88 | |
protected AddPersonDelegationMemberRule addPersonDelegationMemberRule; |
89 | |
protected IdentityManagementKimDocumentAuthorizer authorizer; |
90 | |
protected BusinessObjectService businessObjectService; |
91 | |
protected IdentityService identityService; |
92 | |
protected RoleService roleService; |
93 | |
protected UiDocumentService uiDocumentService; |
94 | 0 | protected Class<? extends AddGroupRule> addGroupRuleClass = PersonDocumentGroupRule.class; |
95 | 0 | protected Class<? extends AddRoleRule> addRoleRuleClass = PersonDocumentRoleRule.class; |
96 | 0 | protected Class<? extends AddPersonDelegationMemberRule> addPersonDelegationMemberRuleClass = PersonDocumentDelegationMemberRule.class; |
97 | |
|
98 | 0 | protected AttributeValidationHelper attributeValidationHelper = new AttributeValidationHelper(); |
99 | |
|
100 | |
@Override |
101 | |
protected boolean processCustomSaveDocumentBusinessRules(Document document) { |
102 | 0 | if (!(document instanceof IdentityManagementPersonDocument)) { |
103 | 0 | return false; |
104 | |
} |
105 | |
|
106 | 0 | IdentityManagementPersonDocument personDoc = (IdentityManagementPersonDocument)document; |
107 | 0 | boolean valid = true; |
108 | |
|
109 | 0 | GlobalVariables.getMessageMap().addToErrorPath(KRADConstants.DOCUMENT_PROPERTY_NAME); |
110 | |
|
111 | |
|
112 | 0 | getDictionaryValidationService().validateDocumentAndUpdatableReferencesRecursively(document, getMaxDictionaryValidationDepth(), true, false); |
113 | 0 | valid &= validDuplicatePrincipalName(personDoc); |
114 | 0 | EntityDefault origEntity = getIdentityService().getEntityDefault(personDoc.getEntityId()); |
115 | 0 | boolean isCreatingNew = origEntity==null?true:false; |
116 | 0 | if(getUIDocumentService().canModifyEntity(GlobalVariables.getUserSession().getPrincipalId(), personDoc.getPrincipalId()) || isCreatingNew) { |
117 | 0 | valid &= validateEntityInformation(isCreatingNew, personDoc); |
118 | |
} |
119 | |
|
120 | 0 | valid &= validateRoleQualifier (personDoc.getRoles()); |
121 | 0 | valid &= validateDelegationMemberRoleQualifier(personDoc.getDelegationMembers()); |
122 | 0 | if (StringUtils.isNotBlank(personDoc.getPrincipalName())) { |
123 | 0 | valid &= doesPrincipalNameExist (personDoc.getPrincipalName(), personDoc.getPrincipalId()); |
124 | |
} |
125 | |
|
126 | 0 | valid &= validActiveDatesForRole (personDoc.getRoles()); |
127 | 0 | valid &= validActiveDatesForGroup (personDoc.getGroups()); |
128 | 0 | valid &= validActiveDatesForDelegations (personDoc.getDelegationMembers()); |
129 | |
|
130 | |
|
131 | |
|
132 | |
|
133 | |
|
134 | |
|
135 | 0 | GlobalVariables.getMessageMap().removeFromErrorPath(KRADConstants.DOCUMENT_PROPERTY_NAME); |
136 | |
|
137 | 0 | return valid; |
138 | |
} |
139 | |
|
140 | |
protected boolean validateEntityInformation(boolean isCreatingNew, IdentityManagementPersonDocument personDoc){ |
141 | 0 | boolean valid = true; |
142 | 0 | boolean canOverridePrivacyPreferences = getUIDocumentService().canOverrideEntityPrivacyPreferences(GlobalVariables.getUserSession().getPrincipalId(), personDoc.getPrincipalId()); |
143 | 0 | valid &= checkMultipleDefault (personDoc.getAffiliations(), "affiliations"); |
144 | 0 | if(isCreatingNew || canOverridePrivacyPreferences || !personDoc.getPrivacy().isSuppressName()) { |
145 | 0 | valid &= checkMultipleDefault (personDoc.getNames(), "names"); |
146 | |
} |
147 | 0 | if(isCreatingNew || canOverridePrivacyPreferences || !personDoc.getPrivacy().isSuppressAddress()) { |
148 | 0 | valid &= checkMultipleDefault (personDoc.getAddrs(), "addrs"); |
149 | |
} |
150 | 0 | if(isCreatingNew || canOverridePrivacyPreferences || !personDoc.getPrivacy().isSuppressPhone()) { |
151 | 0 | valid &= checkMultipleDefault (personDoc.getPhones(), "phones"); |
152 | |
} |
153 | 0 | if(isCreatingNew || canOverridePrivacyPreferences || !personDoc.getPrivacy().isSuppressEmail()) { |
154 | 0 | valid &= checkMultipleDefault (personDoc.getEmails(), "emails"); |
155 | |
} |
156 | 0 | valid &= checkPrimaryEmploymentInfo (personDoc.getAffiliations()); |
157 | 0 | valid &= validEmployeeIDForAffiliation(personDoc.getAffiliations()); |
158 | 0 | valid &= checkAffiliationTypeChange (personDoc.getAffiliations()); |
159 | 0 | valid &= checkUniqueAffiliationTypePerCampus(personDoc.getAffiliations()); |
160 | 0 | return valid; |
161 | |
} |
162 | |
|
163 | |
@SuppressWarnings("unchecked") |
164 | |
protected boolean validDuplicatePrincipalName(IdentityManagementPersonDocument personDoc){ |
165 | 0 | Map<String, String> criteria = new HashMap<String, String>(); |
166 | 0 | criteria.put("principalName", personDoc.getPrincipalName()); |
167 | 0 | List<PrincipalBo> prncplImpls = (List<PrincipalBo>)getBusinessObjectService().findMatching(PrincipalBo.class, criteria); |
168 | 0 | boolean rulePassed = true; |
169 | 0 | if(prncplImpls!=null && prncplImpls.size()>0){ |
170 | 0 | if(prncplImpls.size()==1 && prncplImpls.get(0).getPrincipalId().equals(personDoc.getPrincipalId())) { |
171 | 0 | rulePassed = true; |
172 | |
} |
173 | |
else{ |
174 | 0 | GlobalVariables.getMessageMap().putError("document.principalName", |
175 | |
RiceKeyConstants.ERROR_DUPLICATE_ENTRY, new String[] {"Principal Name"}); |
176 | 0 | rulePassed = false; |
177 | |
} |
178 | |
} |
179 | 0 | return rulePassed; |
180 | |
} |
181 | |
|
182 | |
protected boolean checkUnassignableRoles(IdentityManagementPersonDocument document) { |
183 | 0 | boolean valid = true; |
184 | 0 | Map<String,Set<String>> unassignableRoles = getAuthorizer( document ).getUnassignableRoles(document, GlobalVariables.getUserSession().getPerson()); |
185 | 0 | for (String namespaceCode : unassignableRoles.keySet()) { |
186 | 0 | for (String roleName : unassignableRoles.get(namespaceCode)) { |
187 | 0 | int i = 0; |
188 | 0 | for (PersonDocumentRole role : document.getRoles()) { |
189 | 0 | if (role.isEditable() && namespaceCode.endsWith(role.getNamespaceCode()) && roleName.equals(role.getRoleName())) { |
190 | 0 | GlobalVariables.getMessageMap().putError("roles["+i+"].roleId", RiceKeyConstants.ERROR_ASSIGN_ROLE, new String[] {namespaceCode, roleName}); |
191 | 0 | valid = false; |
192 | |
} |
193 | 0 | i++; |
194 | |
} |
195 | 0 | } |
196 | |
} |
197 | 0 | return valid; |
198 | |
} |
199 | |
|
200 | |
protected boolean checkUnpopulatableGroups(IdentityManagementPersonDocument document) { |
201 | 0 | boolean valid = true; |
202 | 0 | Map<String,Set<String>> unpopulatableGroups = getAuthorizer( document ).getUnpopulateableGroups(document, GlobalVariables.getUserSession().getPerson()); |
203 | 0 | for (String namespaceCode : unpopulatableGroups.keySet()) { |
204 | 0 | for (String groupName : unpopulatableGroups.get(namespaceCode)) { |
205 | 0 | int i = 0; |
206 | 0 | for (PersonDocumentGroup group : document.getGroups()) { |
207 | 0 | if ( (group.getNamespaceCode() != null && namespaceCode.endsWith(group.getNamespaceCode())) && (group.getGroupName() != null && groupName.equals(group.getGroupName()))) { |
208 | 0 | GlobalVariables.getMessageMap().putError("groups["+i+"].groupId", RiceKeyConstants.ERROR_POPULATE_GROUP, new String[] {namespaceCode, groupName}); |
209 | |
} |
210 | 0 | i++; |
211 | |
} |
212 | 0 | } |
213 | 0 | valid = false; |
214 | |
} |
215 | 0 | return valid; |
216 | |
} |
217 | |
|
218 | |
@Override |
219 | |
protected boolean processCustomRouteDocumentBusinessRules(Document document) { |
220 | 0 | super.processCustomRouteDocumentBusinessRules(document); |
221 | 0 | IdentityManagementPersonDocument personDoc = (IdentityManagementPersonDocument)document; |
222 | 0 | boolean valid = true; |
223 | 0 | GlobalVariables.getMessageMap().addToErrorPath(KRADConstants.DOCUMENT_PROPERTY_NAME); |
224 | 0 | valid &= validateAffiliationAndName( personDoc ); |
225 | 0 | valid &= checkAffiliationEithOneEMpInfo (personDoc.getAffiliations()); |
226 | 0 | GlobalVariables.getMessageMap().removeFromErrorPath(KRADConstants.DOCUMENT_PROPERTY_NAME); |
227 | |
|
228 | 0 | return valid; |
229 | |
} |
230 | |
|
231 | |
|
232 | |
protected boolean checkMultipleDefault (List <? extends PersonDocumentBoDefaultBase> boList, String listName) { |
233 | 0 | boolean valid = true; |
234 | 0 | boolean isDefaultSet = false; |
235 | 0 | int i = 0; |
236 | 0 | for (PersonDocumentBoDefaultBase item : boList) { |
237 | 0 | if (item.isDflt()) { |
238 | 0 | if (isDefaultSet) { |
239 | 0 | GlobalVariables.getMessageMap().putError(listName+"[" + i + "].dflt",RiceKeyConstants.ERROR_MULTIPLE_DEFAULT_SELETION); |
240 | 0 | valid = false; |
241 | |
} else { |
242 | 0 | isDefaultSet = true; |
243 | |
} |
244 | |
} |
245 | 0 | i++; |
246 | |
} |
247 | 0 | if (!boList.isEmpty() && !isDefaultSet) { |
248 | 0 | GlobalVariables.getMessageMap().putError(listName+"[0].dflt",RiceKeyConstants.ERROR_NO_DEFAULT_SELETION); |
249 | |
} |
250 | 0 | return valid; |
251 | |
} |
252 | |
|
253 | |
protected boolean checkPrimaryEmploymentInfo (List <PersonDocumentAffiliation> affiliations) { |
254 | 0 | boolean valid = true; |
255 | 0 | int i = 0; |
256 | 0 | int firstAfflnCounter = -1; |
257 | 0 | boolean isPrimarySet = false; |
258 | 0 | for (PersonDocumentAffiliation affiliation : affiliations) { |
259 | 0 | int j = 0; |
260 | 0 | for (PersonDocumentEmploymentInfo empInfo : affiliation.getEmpInfos()) { |
261 | 0 | if(firstAfflnCounter==-1) { |
262 | 0 | firstAfflnCounter = i; |
263 | |
} |
264 | 0 | if (empInfo.isPrimary()) { |
265 | 0 | if (isPrimarySet) { |
266 | |
|
267 | 0 | GlobalVariables.getMessageMap().putError("affiliations[" + i + "].empInfos["+ j +"].primary",RiceKeyConstants.ERROR_MULTIPLE_PRIMARY_EMPLOYMENT); |
268 | 0 | valid = false; |
269 | |
} else { |
270 | 0 | isPrimarySet = true; |
271 | |
} |
272 | 0 | j++; |
273 | |
} |
274 | |
} |
275 | 0 | i++; |
276 | 0 | } |
277 | 0 | if(!isPrimarySet && firstAfflnCounter!=-1){ |
278 | 0 | GlobalVariables.getMessageMap().putError("affiliations[" + firstAfflnCounter + "].empInfos[0].primary",RiceKeyConstants.ERROR_NO_PRIMARY_EMPLOYMENT); |
279 | 0 | valid = false; |
280 | |
} |
281 | 0 | return valid; |
282 | |
} |
283 | |
|
284 | |
protected boolean checkAffiliationTypeChange (List <PersonDocumentAffiliation> affiliations) { |
285 | 0 | boolean valid = true; |
286 | 0 | int i = 0; |
287 | 0 | for (PersonDocumentAffiliation affiliation : affiliations) { |
288 | 0 | if (affiliation.getAffiliationType() != null && !affiliation.getAffiliationTypeCode().equals(affiliation.getAffiliationType().getCode())) { |
289 | 0 | PersonDocumentAffiliation copiedAffiliation = (PersonDocumentAffiliation)ObjectUtils.deepCopy(affiliation); |
290 | 0 | copiedAffiliation.refreshReferenceObject("affiliationType"); |
291 | 0 | if (!copiedAffiliation.getAffiliationType().isEmploymentAffiliationType() && affiliation.getAffiliationType().isEmploymentAffiliationType() && !copiedAffiliation.getEmpInfos().isEmpty()) { |
292 | 0 | GlobalVariables.getMessageMap().putError("affiliations[" + i + "].affiliationTypeCode",RiceKeyConstants.ERROR_NOT_EMPLOYMENT_AFFILIATION_TYPE,new String[] {affiliation.getAffiliationType().getName(), copiedAffiliation.getAffiliationType().getName()}); |
293 | 0 | valid = false; |
294 | |
} |
295 | |
} |
296 | 0 | i++; |
297 | |
} |
298 | 0 | return valid; |
299 | |
} |
300 | |
|
301 | |
protected boolean validEmployeeIDForAffiliation(List <PersonDocumentAffiliation> affiliations) { |
302 | 0 | boolean valid = true; |
303 | 0 | int i = 0; |
304 | 0 | int j = 0; |
305 | 0 | for(PersonDocumentAffiliation affiliation : affiliations) { |
306 | 0 | if(affiliation.getAffiliationType() != null && affiliation.getAffiliationType().isEmploymentAffiliationType()){ |
307 | 0 | if(affiliation.getEmpInfos()!=null){ |
308 | 0 | j = 0; |
309 | 0 | for (PersonDocumentEmploymentInfo empInfo : affiliation.getEmpInfos()) { |
310 | 0 | if (StringUtils.isEmpty(empInfo.getEmployeeId())) { |
311 | 0 | GlobalVariables.getMessageMap().putError("affiliations[" + i + "].empInfos["+ j +"].employeeId", RiceKeyConstants.ERROR_REQUIRED_CONDITIONALLY, new String[] {"Employee ID", "an employee"}); |
312 | 0 | valid = false; |
313 | 0 | j++; |
314 | |
} |
315 | |
} |
316 | |
} |
317 | |
} |
318 | 0 | i++; |
319 | |
} |
320 | 0 | return valid; |
321 | |
} |
322 | |
|
323 | |
protected boolean isPersonAnEmployee(List<PersonDocumentAffiliation> affiliations){ |
324 | 0 | boolean isEmployee = false; |
325 | 0 | for (PersonDocumentAffiliation affiliation : affiliations){ |
326 | 0 | if (affiliation.getAffiliationType() != null && affiliation.getAffiliationType().isEmploymentAffiliationType()){ |
327 | 0 | isEmployee = true; |
328 | 0 | break; |
329 | |
} |
330 | |
} |
331 | 0 | return isEmployee; |
332 | |
} |
333 | |
|
334 | |
protected boolean checkUniqueAffiliationTypePerCampus (List <PersonDocumentAffiliation> affiliations) { |
335 | 0 | boolean valid = true; |
336 | 0 | int i = 0; |
337 | 0 | for (PersonDocumentAffiliation affiliation : affiliations) { |
338 | 0 | int j = 0; |
339 | 0 | for (PersonDocumentAffiliation affiliation1 : affiliations) { |
340 | 0 | if (j > i && affiliation.getAffiliationTypeCode() .equals(affiliation1.getAffiliationTypeCode()) && affiliation.getCampusCode().equals(affiliation1.getCampusCode())) { |
341 | 0 | GlobalVariables.getMessageMap().putError("affiliations[" + j + "].affiliationTypeCode",RiceKeyConstants.ERROR_NOT_UNIQUE_AFFILIATION_TYPE_PER_CAMPUE, affiliation.getAffiliationType().getName()); |
342 | 0 | valid = false; |
343 | |
} |
344 | 0 | j++; |
345 | |
} |
346 | 0 | i++; |
347 | 0 | } |
348 | 0 | return valid; |
349 | |
} |
350 | |
|
351 | |
protected boolean checkAffiliationEithOneEMpInfo (List <PersonDocumentAffiliation> affiliations) { |
352 | 0 | boolean valid = true; |
353 | 0 | int i = 0; |
354 | 0 | for (PersonDocumentAffiliation affiliation : affiliations) { |
355 | 0 | if (affiliation.getAffiliationType() .isEmploymentAffiliationType() && affiliation.getEmpInfos().isEmpty()) { |
356 | 0 | GlobalVariables.getMessageMap().putError("affiliations[" + i + "].affiliationTypeCode",RiceKeyConstants.ERROR_ONE_ITEM_REQUIRED, "Employment Information"); |
357 | 0 | valid = false; |
358 | |
} |
359 | 0 | i++; |
360 | |
} |
361 | 0 | return valid; |
362 | |
} |
363 | |
|
364 | |
|
365 | |
|
366 | |
|
367 | |
protected boolean validateAffiliationAndName(IdentityManagementPersonDocument personDoc) { |
368 | 0 | boolean valid = true; |
369 | 0 | if (personDoc.getAffiliations().isEmpty()) { |
370 | 0 | GlobalVariables.getMessageMap().putError("affiliations[0]",RiceKeyConstants.ERROR_ONE_ITEM_REQUIRED, "affiliation"); |
371 | 0 | valid = false; |
372 | |
} |
373 | 0 | if (personDoc.getNames().isEmpty()) { |
374 | 0 | GlobalVariables.getMessageMap().putError("names[0]",RiceKeyConstants.ERROR_ONE_ITEM_REQUIRED, "name"); |
375 | 0 | valid = false; |
376 | |
} else{ |
377 | 0 | boolean activeExists = false; |
378 | 0 | for(PersonDocumentName name: personDoc.getNames()){ |
379 | 0 | if(name.isActive()){ |
380 | 0 | activeExists = true; |
381 | |
} |
382 | |
} |
383 | 0 | if(!activeExists){ |
384 | 0 | GlobalVariables.getMessageMap().putError("names[0]", RiceKeyConstants.ERROR_ONE_ACTIVE_ITEM_REQUIRED, "name"); |
385 | 0 | valid = false; |
386 | |
} |
387 | 0 | return valid; |
388 | |
|
389 | |
} |
390 | 0 | return valid; |
391 | |
} |
392 | |
|
393 | |
protected boolean doesPrincipalNameExist (String principalName, String principalId) { |
394 | 0 | Principal principal = getIdentityService().getPrincipalByPrincipalName(principalName); |
395 | 0 | if (principal != null && (StringUtils.isBlank(principalId) || !principal.getPrincipalId().equals(principalId))) { |
396 | 0 | GlobalVariables.getMessageMap().putError(KIMPropertyConstants.Person.PRINCIPAL_NAME,RiceKeyConstants.ERROR_EXIST_PRINCIPAL_NAME, principalName); |
397 | 0 | return false; |
398 | |
} |
399 | 0 | return true; |
400 | |
} |
401 | |
|
402 | |
protected boolean validateRoleQualifier( List<PersonDocumentRole> roles ) { |
403 | 0 | List<RemotableAttributeError> validationErrors = new ArrayList<RemotableAttributeError>(); |
404 | 0 | GlobalVariables.getMessageMap().removeFromErrorPath(KRADConstants.DOCUMENT_PROPERTY_NAME); |
405 | 0 | int i = 0; |
406 | 0 | for(PersonDocumentRole role : roles ) { |
407 | 0 | KimTypeService kimTypeService = KimFrameworkServiceLocator.getKimTypeService(KimTypeBo.to( |
408 | |
role.getKimRoleType())); |
409 | 0 | if(CollectionUtils.isEmpty(role.getRolePrncpls()) && !role.getDefinitions().isEmpty()){ |
410 | 0 | KimType kimTypeInfo = KimApiServiceLocator.getKimTypeInfoService().getKimType(role.getKimRoleType().getId()); |
411 | 0 | Map<String, String> blankQualifiers = attributeValidationHelper.getBlankValueQualifiersMap(kimTypeInfo.getAttributeDefinitions()); |
412 | 0 | List<RemotableAttributeError> localErrors = kimTypeService.validateAttributes( |
413 | |
role.getKimRoleType().getId(), blankQualifiers); |
414 | 0 | if(localErrors!=null && !localErrors.isEmpty()){ |
415 | 0 | GlobalVariables.getMessageMap().putError("document.roles["+i+"].newRolePrncpl.qualifiers[0].attrVal", |
416 | |
RiceKeyConstants.ERROR_ONE_ITEM_REQUIRED, "Role Qualifier"); |
417 | 0 | return false; |
418 | |
} |
419 | |
} |
420 | |
|
421 | 0 | final List<KimAttributeField> attributeDefinitions = role.getDefinitions(); |
422 | 0 | final Set<String> uniqueQualifierAttributes = findUniqueQualificationAttributes(role, attributeDefinitions); |
423 | |
|
424 | 0 | if ( kimTypeService != null ) { |
425 | 0 | int j = 0; |
426 | 0 | for ( KimDocumentRoleMember rolePrincipal : role.getRolePrncpls() ) { |
427 | 0 | List<RemotableAttributeError> localErrors = kimTypeService.validateAttributes( role.getKimRoleType().getId(), attributeValidationHelper.convertQualifiersToMap( rolePrincipal.getQualifiers() ) ); |
428 | 0 | validationErrors.addAll( attributeValidationHelper.convertErrors( |
429 | |
"roles[" + i + "].rolePrncpls[" + j + "]", |
430 | |
attributeValidationHelper.convertQualifiersToAttrIdxMap(rolePrincipal.getQualifiers()), |
431 | |
localErrors)); |
432 | |
|
433 | 0 | if (uniqueQualifierAttributes.size() > 0) { |
434 | 0 | validateUniquePersonRoleQualifiersUniqueForMembership(role, rolePrincipal, j, uniqueQualifierAttributes, i, validationErrors); |
435 | |
} |
436 | |
|
437 | 0 | j++; |
438 | 0 | } |
439 | |
} |
440 | 0 | i++; |
441 | 0 | } |
442 | 0 | GlobalVariables.getMessageMap().addToErrorPath(KRADConstants.DOCUMENT_PROPERTY_NAME); |
443 | 0 | if (validationErrors.isEmpty()) { |
444 | 0 | return true; |
445 | |
} else { |
446 | 0 | attributeValidationHelper.moveValidationErrorsToErrorMap(validationErrors); |
447 | 0 | return false; |
448 | |
} |
449 | |
} |
450 | |
|
451 | |
|
452 | |
|
453 | |
|
454 | |
|
455 | |
|
456 | |
|
457 | |
|
458 | |
protected boolean validateUniquePersonRoleQualifiersUniqueForMembership(PersonDocumentRole role, KimDocumentRoleMember membershipToCheck, int membershipToCheckIndex, Set<String> uniqueQualifierAttributes, int roleIndex, List<RemotableAttributeError> validationErrors) { |
459 | 0 | boolean foundError = false; |
460 | 0 | int count = 0; |
461 | |
|
462 | 0 | for (KimDocumentRoleMember membership : role.getRolePrncpls()) { |
463 | 0 | if (membershipToCheckIndex != count) { |
464 | 0 | if (sameMembershipQualifications(membershipToCheck, membership, uniqueQualifierAttributes)) { |
465 | 0 | foundError = true; |
466 | |
|
467 | 0 | int qualifierCount = 0; |
468 | |
|
469 | 0 | for (KimDocumentRoleQualifier qualifier : membership.getQualifiers()) { |
470 | 0 | if (qualifier != null && uniqueQualifierAttributes.contains(qualifier.getKimAttrDefnId())) { |
471 | 0 | validationErrors.add(RemotableAttributeError.Builder.create("document.roles["+roleIndex+"].rolePrncpls["+membershipToCheckIndex+"].qualifiers["+qualifierCount+"].attrVal", RiceKeyConstants.ERROR_DOCUMENT_IDENTITY_MANAGEMENT_PERSON_QUALIFIER_VALUE_NOT_UNIQUE+":"+qualifier.getKimAttribute().getAttributeName()+";"+qualifier.getAttrVal()).build()); |
472 | |
} |
473 | 0 | qualifierCount += 1; |
474 | |
} |
475 | |
} |
476 | |
} |
477 | |
|
478 | 0 | count += 1; |
479 | |
} |
480 | 0 | return foundError; |
481 | |
} |
482 | |
|
483 | |
|
484 | |
|
485 | |
|
486 | |
|
487 | |
|
488 | |
|
489 | |
|
490 | |
protected boolean sameMembershipQualifications(KimDocumentRoleMember membershipA, KimDocumentRoleMember membershipB, Set<String> uniqueQualifierAttributes) { |
491 | 0 | boolean equalSoFar = true; |
492 | 0 | for (String uniqueQualifierAttributeDefinitionId : uniqueQualifierAttributes) { |
493 | 0 | final KimDocumentRoleQualifier qualifierA = membershipA.getQualifier(uniqueQualifierAttributeDefinitionId); |
494 | 0 | final KimDocumentRoleQualifier qualifierB = membershipB.getQualifier(uniqueQualifierAttributeDefinitionId); |
495 | |
|
496 | 0 | if (qualifierA != null && qualifierB != null) { |
497 | 0 | equalSoFar &= (qualifierA.getAttrVal() == null && qualifierB.getAttrVal() == null) || (qualifierA.getAttrVal() == null || qualifierA.getAttrVal().equals(qualifierB.getAttrVal())); |
498 | |
} |
499 | 0 | } |
500 | 0 | return equalSoFar; |
501 | |
} |
502 | |
|
503 | |
|
504 | |
|
505 | |
|
506 | |
|
507 | |
|
508 | |
|
509 | |
|
510 | |
public Set<String> findUniqueQualificationAttributes(PersonDocumentRole role, List<KimAttributeField> attributeDefinitions) { |
511 | 0 | Set<String> uniqueQualifications = new HashSet<String>(); |
512 | |
|
513 | 0 | if (role.getRolePrncpls() != null && role.getRolePrncpls().size() > 1) { |
514 | 0 | final KimDocumentRoleMember membership = role.getRolePrncpls().get(0); |
515 | 0 | for (KimDocumentRoleQualifier qualifier: membership.getQualifiers()) { |
516 | 0 | if (qualifier != null && qualifier.getKimAttribute() != null && !StringUtils.isBlank(qualifier.getKimAttribute().getAttributeName())) { |
517 | 0 | final KimAttributeField relatedDefinition = DataDictionaryTypeServiceHelper.findAttributeField( |
518 | |
qualifier.getKimAttribute().getAttributeName(), attributeDefinitions); |
519 | |
|
520 | 0 | if (relatedDefinition != null && relatedDefinition.isUnique()) { |
521 | 0 | uniqueQualifications.add(qualifier.getKimAttrDefnId()); |
522 | |
} |
523 | 0 | } |
524 | |
} |
525 | |
} |
526 | |
|
527 | 0 | return uniqueQualifications; |
528 | |
} |
529 | |
|
530 | |
protected boolean validActiveDatesForRole (List<PersonDocumentRole> roles ) { |
531 | 0 | boolean valid = true; |
532 | 0 | int i = 0; |
533 | 0 | for(PersonDocumentRole role : roles ) { |
534 | 0 | int j = 0; |
535 | 0 | for (KimDocumentRoleMember principal : role.getRolePrncpls()) { |
536 | 0 | valid &= validateActiveDate("roles["+i+"].rolePrncpls["+j+"].activeToDate",principal.getActiveFromDate(), principal.getActiveToDate()); |
537 | 0 | j++; |
538 | |
} |
539 | 0 | i++; |
540 | 0 | } |
541 | 0 | return valid; |
542 | |
} |
543 | |
|
544 | |
protected boolean validActiveDatesForGroup (List<PersonDocumentGroup> groups ) { |
545 | 0 | boolean valid = true; |
546 | 0 | int i = 0; |
547 | 0 | for(PersonDocumentGroup group : groups ) { |
548 | 0 | valid &= validateActiveDate("groups["+i+"].activeToDate",group.getActiveFromDate(), group.getActiveToDate()); |
549 | 0 | i++; |
550 | |
} |
551 | 0 | return valid; |
552 | |
} |
553 | |
|
554 | |
protected boolean validActiveDatesForDelegations(List<RoleDocumentDelegationMember> delegationMembers) { |
555 | 0 | boolean valid = true; |
556 | 0 | int i = 0; |
557 | 0 | for(RoleDocumentDelegationMember delegationMember: delegationMembers){ |
558 | 0 | valid &= validateActiveDate("delegationMembers["+i+"].activeToDate", delegationMember.getActiveFromDate(), delegationMember.getActiveToDate()); |
559 | 0 | i++; |
560 | |
} |
561 | 0 | return valid; |
562 | |
} |
563 | |
|
564 | |
protected boolean validateActiveDate(String errorPath, Timestamp activeFromDate, Timestamp activeToDate) { |
565 | |
|
566 | 0 | boolean valid = true; |
567 | 0 | if (activeFromDate != null && activeToDate !=null && activeToDate.before(activeFromDate)) { |
568 | 0 | GlobalVariables.getMessageMap().putError(errorPath, RiceKeyConstants.ERROR_ACTIVE_TO_DATE_BEFORE_FROM_DATE); |
569 | 0 | valid = false; |
570 | |
} |
571 | 0 | return valid; |
572 | |
} |
573 | |
|
574 | |
public boolean processAddGroup(AddGroupEvent addGroupEvent) { |
575 | 0 | return getAddGroupRule().processAddGroup(addGroupEvent); |
576 | |
} |
577 | |
|
578 | |
public boolean processAddRole(AddRoleEvent addRoleEvent) { |
579 | 0 | return getAddRoleRule().processAddRole(addRoleEvent); |
580 | |
} |
581 | |
|
582 | |
public boolean processAddPersonDelegationMember(AddPersonDelegationMemberEvent addPersonDelegationMemberEvent){ |
583 | 0 | return getAddPersonDelegationMemberRule().processAddPersonDelegationMember(addPersonDelegationMemberEvent); |
584 | |
} |
585 | |
|
586 | |
public IdentityService getIdentityService() { |
587 | 0 | if ( identityService == null ) { |
588 | 0 | identityService = KimApiServiceLocator.getIdentityService(); |
589 | |
} |
590 | 0 | return identityService; |
591 | |
} |
592 | |
|
593 | |
public RoleService getRoleService() { |
594 | 0 | if ( roleService == null ) { |
595 | 0 | roleService = KimApiServiceLocator.getRoleService(); |
596 | |
} |
597 | 0 | return roleService; |
598 | |
} |
599 | |
|
600 | |
public UiDocumentService getUIDocumentService() { |
601 | 0 | if ( uiDocumentService == null ) { |
602 | 0 | uiDocumentService = KIMServiceLocatorInternal.getUiDocumentService(); |
603 | |
} |
604 | 0 | return uiDocumentService; |
605 | |
} |
606 | |
|
607 | |
public IdentityManagementKimDocumentAuthorizer getAuthorizer(IdentityManagementPersonDocument document) { |
608 | 0 | if ( authorizer == null ) { |
609 | 0 | authorizer = (IdentityManagementKimDocumentAuthorizer) KRADServiceLocatorWeb.getDocumentHelperService().getDocumentAuthorizer(document); |
610 | |
} |
611 | 0 | return authorizer; |
612 | |
} |
613 | |
|
614 | |
|
615 | |
|
616 | |
|
617 | |
|
618 | |
|
619 | |
public Class<? extends AddGroupRule> getAddGroupRuleClass() { |
620 | 0 | return this.addGroupRuleClass; |
621 | |
} |
622 | |
|
623 | |
|
624 | |
|
625 | |
|
626 | |
|
627 | |
|
628 | |
|
629 | |
|
630 | |
public void setAddGroupRuleClass(Class<? extends AddGroupRule> addGroupRuleClass) { |
631 | 0 | this.addGroupRuleClass = addGroupRuleClass; |
632 | 0 | } |
633 | |
|
634 | |
|
635 | |
|
636 | |
|
637 | |
|
638 | |
|
639 | |
public Class<? extends AddRoleRule> getAddRoleRuleClass() { |
640 | 0 | return this.addRoleRuleClass; |
641 | |
} |
642 | |
|
643 | |
|
644 | |
|
645 | |
|
646 | |
|
647 | |
|
648 | |
|
649 | |
|
650 | |
public void setAddRoleRuleClass(Class<? extends AddRoleRule> addRoleRuleClass) { |
651 | 0 | this.addRoleRuleClass = addRoleRuleClass; |
652 | 0 | } |
653 | |
|
654 | |
|
655 | |
|
656 | |
|
657 | |
|
658 | |
|
659 | |
public AddGroupRule getAddGroupRule() { |
660 | 0 | if ( addGroupRule == null ) { |
661 | |
try { |
662 | 0 | addGroupRule = addGroupRuleClass.newInstance(); |
663 | 0 | } catch ( Exception ex ) { |
664 | 0 | throw new RuntimeException( "Unable to create AddGroupRule instance using class: " + addGroupRuleClass, ex ); |
665 | 0 | } |
666 | |
} |
667 | 0 | return addGroupRule; |
668 | |
} |
669 | |
|
670 | |
|
671 | |
|
672 | |
|
673 | |
|
674 | |
|
675 | |
public AddRoleRule getAddRoleRule() { |
676 | 0 | if ( addRoleRule == null ) { |
677 | |
try { |
678 | 0 | addRoleRule = addRoleRuleClass.newInstance(); |
679 | 0 | } catch ( Exception ex ) { |
680 | 0 | throw new RuntimeException( "Unable to create AddRoleRule instance using class: " + addRoleRuleClass, ex ); |
681 | 0 | } |
682 | |
} |
683 | 0 | return addRoleRule; |
684 | |
} |
685 | |
|
686 | |
|
687 | |
|
688 | |
|
689 | |
public AddPersonDelegationMemberRule getAddPersonDelegationMemberRule() { |
690 | 0 | if(addPersonDelegationMemberRule == null){ |
691 | |
try { |
692 | 0 | addPersonDelegationMemberRule = addPersonDelegationMemberRuleClass.newInstance(); |
693 | 0 | } catch ( Exception ex ) { |
694 | 0 | throw new RuntimeException( "Unable to create AddPersonDelegationMemberRuleClass instance using class: " + addPersonDelegationMemberRuleClass, ex ); |
695 | 0 | } |
696 | |
} |
697 | 0 | return addPersonDelegationMemberRule; |
698 | |
} |
699 | |
|
700 | |
|
701 | |
|
702 | |
|
703 | |
public BusinessObjectService getBusinessObjectService() { |
704 | 0 | if ( businessObjectService == null ) { |
705 | 0 | businessObjectService = KRADServiceLocator.getBusinessObjectService(); |
706 | |
} |
707 | 0 | return businessObjectService; |
708 | |
} |
709 | |
|
710 | |
public boolean processAddPersonDocumentRoleQualifier(IdentityManagementPersonDocument document, PersonDocumentRole role, KimDocumentRoleMember kimDocumentRoleMember, int selectedRoleIdx) { |
711 | 0 | boolean dateValidationSuccess = validateActiveDate("document.roles[" + selectedRoleIdx + "].newRolePrncpl.activeFromDate", kimDocumentRoleMember.getActiveFromDate(), kimDocumentRoleMember.getActiveToDate()); |
712 | 0 | String errorPath = "roles[" + selectedRoleIdx + "].newRolePrncpl"; |
713 | 0 | List<RemotableAttributeError> validationErrors = new ArrayList<RemotableAttributeError>(); |
714 | 0 | GlobalVariables.getMessageMap().removeFromErrorPath(KRADConstants.DOCUMENT_PROPERTY_NAME); |
715 | 0 | KimTypeService kimTypeService = KimFrameworkServiceLocator.getKimTypeService(KimTypeBo.to(role.getKimRoleType())); |
716 | |
|
717 | |
List<RemotableAttributeError> errorsAttributesAgainstExisting; |
718 | 0 | int i = 0; |
719 | 0 | boolean rulePassed = true; |
720 | 0 | Map<String, String> newMemberQualifiers = attributeValidationHelper.convertQualifiersToMap(kimDocumentRoleMember.getQualifiers()); |
721 | |
Map<String, String> oldMemberQualifiers; |
722 | 0 | List<String> roleIds = new ArrayList<String>(); |
723 | 0 | roleIds.add(role.getRoleId()); |
724 | 0 | for(KimDocumentRoleMember member: role.getRolePrncpls()){ |
725 | 0 | oldMemberQualifiers = member.getQualifierAsMap(); |
726 | 0 | errorsAttributesAgainstExisting = kimTypeService.validateAttributesAgainstExisting( |
727 | |
role.getKimRoleType().getId(), newMemberQualifiers, oldMemberQualifiers); |
728 | 0 | validationErrors.addAll( |
729 | |
attributeValidationHelper.convertErrors(errorPath, attributeValidationHelper |
730 | |
.convertQualifiersToAttrIdxMap(kimDocumentRoleMember.getQualifiers()), |
731 | |
errorsAttributesAgainstExisting)); |
732 | 0 | i++; |
733 | |
} |
734 | |
|
735 | 0 | if ( kimTypeService != null ) { |
736 | 0 | List<RemotableAttributeError> localErrors = kimTypeService.validateAttributes( role.getKimRoleType().getId(), newMemberQualifiers ); |
737 | 0 | validationErrors.addAll( attributeValidationHelper.convertErrors(errorPath, |
738 | |
attributeValidationHelper.convertQualifiersToAttrIdxMap(kimDocumentRoleMember.getQualifiers()), |
739 | |
localErrors)); |
740 | |
} |
741 | |
|
742 | 0 | GlobalVariables.getMessageMap().addToErrorPath(KRADConstants.DOCUMENT_PROPERTY_NAME); |
743 | 0 | if (validationErrors.isEmpty()) { |
744 | 0 | rulePassed = dateValidationSuccess; |
745 | |
} else { |
746 | 0 | attributeValidationHelper.moveValidationErrorsToErrorMap(validationErrors); |
747 | 0 | rulePassed = false; |
748 | |
} |
749 | 0 | return rulePassed; |
750 | |
} |
751 | |
|
752 | |
protected boolean validateDelegationMemberRoleQualifier(List<RoleDocumentDelegationMember> delegationMembers){ |
753 | 0 | List<RemotableAttributeError> validationErrors = new ArrayList<RemotableAttributeError>(); |
754 | |
boolean valid; |
755 | 0 | int memberCounter = 0; |
756 | |
List<RemotableAttributeError> errorsTemp; |
757 | |
Map<String, String> mapToValidate; |
758 | |
KimTypeService kimTypeService; |
759 | 0 | GlobalVariables.getMessageMap().removeFromErrorPath(KRADConstants.DOCUMENT_PROPERTY_NAME); |
760 | |
RoleMemberBo roleMember; |
761 | |
String errorPath; |
762 | |
ArrayList<String> roleIds; |
763 | |
KimType kimType; |
764 | 0 | for(RoleDocumentDelegationMember delegationMember: delegationMembers) { |
765 | 0 | kimType = KimTypeBo.to(delegationMember.getRoleBo().getKimRoleType()); |
766 | 0 | kimTypeService = KimFrameworkServiceLocator.getKimTypeService(kimType); |
767 | 0 | roleIds = new ArrayList<String>(); |
768 | 0 | roleIds.add(delegationMember.getRoleBo().getId()); |
769 | 0 | errorPath = "delegationMembers["+memberCounter+"]"; |
770 | 0 | mapToValidate = attributeValidationHelper.convertQualifiersToMap(delegationMember.getQualifiers()); |
771 | 0 | errorsTemp = kimTypeService.validateAttributes(kimType.getId(), mapToValidate); |
772 | 0 | validationErrors.addAll( |
773 | |
attributeValidationHelper.convertErrors(errorPath, |
774 | |
attributeValidationHelper.convertQualifiersToAttrIdxMap(delegationMember.getQualifiers()), |
775 | |
errorsTemp)); |
776 | |
|
777 | 0 | roleMember = getUIDocumentService().getRoleMember(delegationMember.getRoleMemberId()); |
778 | 0 | if(roleMember==null){ |
779 | 0 | valid = false; |
780 | 0 | GlobalVariables.getMessageMap().putError("document."+errorPath, RiceKeyConstants.ERROR_DELEGATE_ROLE_MEMBER_ASSOCIATION, new String[]{}); |
781 | |
} else{ |
782 | 0 | kimTypeService.validateAttributesAgainstExisting(kimType.getId(), roleMember.getAttributes(), mapToValidate); |
783 | 0 | validationErrors.addAll( |
784 | |
attributeValidationHelper.convertErrors(errorPath, attributeValidationHelper |
785 | |
.convertQualifiersToAttrIdxMap(delegationMember.getQualifiers()), errorsTemp)); |
786 | |
} |
787 | 0 | memberCounter++; |
788 | |
} |
789 | 0 | GlobalVariables.getMessageMap().addToErrorPath(KRADConstants.DOCUMENT_PROPERTY_NAME); |
790 | 0 | if (validationErrors.isEmpty()) { |
791 | 0 | valid = true; |
792 | |
} else { |
793 | 0 | attributeValidationHelper.moveValidationErrorsToErrorMap(validationErrors); |
794 | 0 | valid = false; |
795 | |
} |
796 | 0 | return valid; |
797 | |
} |
798 | |
|
799 | |
} |