1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
|
17 | |
package org.kuali.rice.kew.rule.web; |
18 | |
|
19 | |
import java.lang.reflect.InvocationTargetException; |
20 | |
import java.util.ArrayList; |
21 | |
import java.util.Collections; |
22 | |
import java.util.HashMap; |
23 | |
import java.util.Iterator; |
24 | |
import java.util.List; |
25 | |
import java.util.Map; |
26 | |
|
27 | |
import org.apache.commons.beanutils.BeanUtils; |
28 | |
import org.apache.commons.beanutils.PropertyUtils; |
29 | |
import org.apache.commons.lang.ArrayUtils; |
30 | |
import org.apache.commons.lang.StringUtils; |
31 | |
import org.kuali.rice.core.exception.RiceRuntimeException; |
32 | |
import org.kuali.rice.kew.doctype.bo.DocumentType; |
33 | |
import org.kuali.rice.kew.rule.GroupRuleResponsibility; |
34 | |
import org.kuali.rice.kew.rule.PersonRuleResponsibility; |
35 | |
import org.kuali.rice.kew.rule.RoleRuleResponsibility; |
36 | |
import org.kuali.rice.kew.rule.RuleBaseValues; |
37 | |
import org.kuali.rice.kew.rule.RuleDelegation; |
38 | |
import org.kuali.rice.kew.rule.RuleExtension; |
39 | |
import org.kuali.rice.kew.rule.RuleExtensionValue; |
40 | |
import org.kuali.rice.kew.rule.RuleResponsibility; |
41 | |
import org.kuali.rice.kew.rule.WorkflowAttribute; |
42 | |
import org.kuali.rice.kew.rule.bo.RuleAttribute; |
43 | |
import org.kuali.rice.kew.rule.bo.RuleTemplate; |
44 | |
import org.kuali.rice.kew.rule.bo.RuleTemplateAttribute; |
45 | |
import org.kuali.rice.kew.rule.service.RuleService; |
46 | |
import org.kuali.rice.kew.rule.xmlrouting.GenericXMLRuleAttribute; |
47 | |
import org.kuali.rice.kew.service.KEWServiceLocator; |
48 | |
import org.kuali.rice.kew.util.KEWConstants; |
49 | |
import org.kuali.rice.kim.bo.Group; |
50 | |
import org.kuali.rice.kim.bo.entity.KimPrincipal; |
51 | |
import org.kuali.rice.kns.web.ui.Field; |
52 | |
import org.kuali.rice.kns.web.ui.Row; |
53 | |
import org.kuali.rice.kns.web.ui.Section; |
54 | |
|
55 | |
|
56 | |
|
57 | |
|
58 | |
|
59 | |
|
60 | |
|
61 | 0 | public class WebRuleUtils { |
62 | |
|
63 | |
public static final String RULE_TEMPLATE_ID_PARAM = "ruleCreationValues.ruleTemplateId"; |
64 | |
public static final String RULE_TEMPLATE_NAME_PARAM = "ruleCreationValues.ruleTemplateName"; |
65 | |
public static final String DOCUMENT_TYPE_NAME_PARAM = "ruleCreationValues.docTypeName"; |
66 | |
public static final String RESPONSIBILITY_ID_PARAM = "ruleCreationValues.responsibilityId"; |
67 | |
|
68 | |
private static final String ID_SEPARATOR = ":"; |
69 | |
private static final String RULE_ATTRIBUTES_SECTION_ID = "RuleAttributes"; |
70 | |
private static final String RULE_ATTRIBUTES_SECTION_TITLE = "Rule Attributes"; |
71 | |
private static final String ROLES_MAINTENANCE_SECTION_ID = "RolesMaintenance"; |
72 | |
|
73 | |
|
74 | |
|
75 | |
|
76 | |
|
77 | |
|
78 | |
public static WebRuleBaseValues copyRuleOntoExistingDocument(WebRuleBaseValues rule) throws Exception { |
79 | 0 | WebRuleBaseValues ruleCopy = new WebRuleBaseValues(); |
80 | 0 | PropertyUtils.copyProperties(ruleCopy, rule); |
81 | 0 | ruleCopy.setPreviousVersionId(null); |
82 | 0 | ruleCopy.setCurrentInd(null); |
83 | 0 | ruleCopy.setVersionNbr(null); |
84 | |
|
85 | 0 | List responsibilities = new ArrayList(); |
86 | 0 | for (Iterator iter = ruleCopy.getResponsibilities().iterator(); iter.hasNext();) { |
87 | 0 | WebRuleResponsibility responsibility = (WebRuleResponsibility) iter.next(); |
88 | 0 | WebRuleResponsibility responsibilityCopy = new WebRuleResponsibility(); |
89 | 0 | PropertyUtils.copyProperties(responsibilityCopy, responsibility); |
90 | |
|
91 | 0 | responsibilityCopy.setResponsibilityId(null); |
92 | 0 | responsibilityCopy.setRuleResponsibilityKey(null); |
93 | |
|
94 | 0 | List delegations = new ArrayList(); |
95 | 0 | for (Iterator iterator = responsibilityCopy.getDelegationRules().iterator(); iterator.hasNext();) { |
96 | 0 | RuleDelegation delegation = (RuleDelegation) iterator.next(); |
97 | 0 | RuleDelegation delegationCopy = new RuleDelegation(); |
98 | 0 | PropertyUtils.copyProperties(delegationCopy, delegation); |
99 | |
|
100 | 0 | delegationCopy.setDelegateRuleId(null); |
101 | 0 | delegationCopy.setVersionNumber(null); |
102 | 0 | delegationCopy.setRuleDelegationId(null); |
103 | 0 | delegationCopy.setResponsibilityId(null); |
104 | |
|
105 | 0 | WebRuleBaseValues delegationRule = ((WebRuleBaseValues) delegation.getDelegationRuleBaseValues()); |
106 | 0 | WebRuleBaseValues ruleDelegateCopy = new WebRuleBaseValues(); |
107 | 0 | PropertyUtils.copyProperties(ruleDelegateCopy, delegationRule); |
108 | |
|
109 | 0 | ruleDelegateCopy.setPreviousVersionId(null); |
110 | 0 | ruleDelegateCopy.setCurrentInd(null); |
111 | 0 | ruleDelegateCopy.setVersionNbr(null); |
112 | |
|
113 | 0 | List delegateResps = new ArrayList(); |
114 | 0 | for (Iterator iterator1 = ruleDelegateCopy.getResponsibilities().iterator(); iterator1.hasNext();) { |
115 | 0 | WebRuleResponsibility delegateResp = (WebRuleResponsibility) iterator1.next(); |
116 | 0 | WebRuleResponsibility delegateRespCopy = new WebRuleResponsibility(); |
117 | 0 | PropertyUtils.copyProperties(delegateRespCopy, delegateResp); |
118 | |
|
119 | 0 | delegateRespCopy.setResponsibilityId(null); |
120 | 0 | delegateRespCopy.setRuleResponsibilityKey(null); |
121 | 0 | delegateResps.add(delegateRespCopy); |
122 | 0 | } |
123 | 0 | ruleDelegateCopy.setResponsibilities(delegateResps); |
124 | 0 | delegationCopy.setDelegationRuleBaseValues(ruleDelegateCopy); |
125 | 0 | delegations.add(delegationCopy); |
126 | 0 | } |
127 | |
|
128 | 0 | responsibilities.add(responsibilityCopy); |
129 | 0 | } |
130 | 0 | ruleCopy.setResponsibilities(responsibilities); |
131 | 0 | return ruleCopy; |
132 | |
} |
133 | |
|
134 | |
|
135 | |
|
136 | |
|
137 | |
|
138 | |
|
139 | |
|
140 | |
|
141 | |
public static WebRuleBaseValues copyToNewRule(WebRuleBaseValues webRuleBaseValues) throws Exception { |
142 | 0 | WebRuleBaseValues newRule = copyRuleOntoExistingDocument(webRuleBaseValues); |
143 | |
|
144 | 0 | newRule.setRouteHeaderId(null); |
145 | 0 | for (Iterator iterator = newRule.getResponsibilities().iterator(); iterator.hasNext(); ) { |
146 | 0 | RuleResponsibility responsibility = (RuleResponsibility) iterator.next(); |
147 | 0 | for (Iterator iterator2 = responsibility.getDelegationRules().iterator(); iterator2.hasNext(); ) { |
148 | 0 | RuleDelegation delegation = (RuleDelegation) iterator2.next(); |
149 | 0 | delegation.getDelegationRuleBaseValues().setRouteHeaderId(null); |
150 | 0 | } |
151 | 0 | } |
152 | 0 | return newRule; |
153 | |
} |
154 | |
|
155 | |
public static void validateRuleTemplateAndDocumentType(RuleBaseValues oldRule, RuleBaseValues newRule, Map<String, String[]> parameters) { |
156 | 0 | String[] ruleTemplateIds = parameters.get(RULE_TEMPLATE_ID_PARAM); |
157 | 0 | String[] ruleTemplateNames = parameters.get(RULE_TEMPLATE_NAME_PARAM); |
158 | 0 | String[] documentTypeNames = parameters.get(DOCUMENT_TYPE_NAME_PARAM); |
159 | 0 | if (ArrayUtils.isEmpty(ruleTemplateIds) && ArrayUtils.isEmpty(ruleTemplateNames)) { |
160 | 0 | throw new RiceRuntimeException("Rule document must be initiated with a valid rule template id or rule template name."); |
161 | |
} |
162 | 0 | if (ArrayUtils.isEmpty(documentTypeNames)) { |
163 | 0 | throw new RiceRuntimeException("Rule document must be initiated with a valid document type name."); |
164 | |
} |
165 | 0 | RuleTemplate ruleTemplate = null; |
166 | 0 | if (!ArrayUtils.isEmpty(ruleTemplateIds)) { |
167 | 0 | String ruleTemplateId = ruleTemplateIds[0]; |
168 | 0 | ruleTemplate = KEWServiceLocator.getRuleTemplateService().findByRuleTemplateId(new Long(ruleTemplateId)); |
169 | 0 | if (ruleTemplate == null) { |
170 | 0 | throw new RiceRuntimeException("Failed to load rule template with id '" + ruleTemplateId + "'"); |
171 | |
} |
172 | |
} |
173 | 0 | if (ruleTemplate == null) { |
174 | 0 | String ruleTemplateName = ruleTemplateNames[0]; |
175 | 0 | ruleTemplate = KEWServiceLocator.getRuleTemplateService().findByRuleTemplateName(ruleTemplateName); |
176 | 0 | if (ruleTemplate == null) { |
177 | 0 | throw new RiceRuntimeException("Failed to load rule template with name '" + ruleTemplateName + "'"); |
178 | |
} |
179 | |
} |
180 | 0 | String documentTypeName = documentTypeNames[0]; |
181 | 0 | DocumentType documentType = KEWServiceLocator.getDocumentTypeService().findByName(documentTypeName); |
182 | 0 | if (documentType == null) { |
183 | 0 | throw new RiceRuntimeException("Failed to locate document type with name '" + documentTypeName + "'"); |
184 | |
} |
185 | |
|
186 | |
|
187 | |
|
188 | 0 | initializeRuleAfterNew(oldRule, ruleTemplate, documentTypeName); |
189 | 0 | initializeRuleAfterNew(newRule, ruleTemplate, documentTypeName); |
190 | 0 | } |
191 | |
|
192 | |
private static void initializeRuleAfterNew(RuleBaseValues rule, RuleTemplate ruleTemplate, String documentTypeName) { |
193 | 0 | rule.setRuleTemplate(ruleTemplate); |
194 | 0 | rule.setRuleTemplateId(ruleTemplate.getRuleTemplateId()); |
195 | 0 | rule.setDocTypeName(documentTypeName); |
196 | 0 | } |
197 | |
|
198 | |
public static void validateRuleAndResponsibility(RuleDelegation oldRuleDelegation, RuleDelegation newRuleDelegation, Map<String, String[]> parameters) { |
199 | 0 | String[] responsibilityIds = parameters.get(RESPONSIBILITY_ID_PARAM); |
200 | 0 | if (ArrayUtils.isEmpty(responsibilityIds)) { |
201 | 0 | throw new RiceRuntimeException("Delegation rule document must be initiated with a valid responsibility ID to delegate from."); |
202 | |
} |
203 | 0 | if (!ArrayUtils.isEmpty(responsibilityIds)) { |
204 | 0 | Long responsibilityId = new Long(responsibilityIds[0]); |
205 | 0 | RuleResponsibility ruleResponsibility = KEWServiceLocator.getRuleService().findRuleResponsibility(responsibilityId); |
206 | 0 | if (ruleResponsibility == null) { |
207 | 0 | throw new RiceRuntimeException("Failed to locate a rule responsibility for responsibility ID " + responsibilityId); |
208 | |
} |
209 | 0 | oldRuleDelegation.setResponsibilityId(responsibilityId); |
210 | 0 | newRuleDelegation.setResponsibilityId(responsibilityId); |
211 | |
} |
212 | |
|
213 | 0 | } |
214 | |
|
215 | |
public static void establishDefaultRuleValues(RuleBaseValues rule) { |
216 | 0 | rule.setActiveInd(true); |
217 | |
|
218 | 0 | RuleBaseValues defaultRule = ((RuleService) KEWServiceLocator.getService(KEWServiceLocator.RULE_SERVICE)).findDefaultRuleByRuleTemplateId( |
219 | |
rule.getRuleTemplate().getDelegationTemplateId()); |
220 | 0 | if (defaultRule != null) { |
221 | 0 | defaultRule.setActivationDate(null); |
222 | 0 | defaultRule.setCurrentInd(null); |
223 | 0 | defaultRule.setDeactivationDate(null); |
224 | 0 | defaultRule.setDocTypeName(null); |
225 | 0 | defaultRule.setVersionNumber(null); |
226 | 0 | defaultRule.setRuleBaseValuesId(null); |
227 | 0 | defaultRule.setTemplateRuleInd(Boolean.FALSE); |
228 | 0 | defaultRule.setVersionNbr(null); |
229 | |
try { |
230 | 0 | PropertyUtils.copyProperties(rule, defaultRule); |
231 | 0 | } catch (IllegalAccessException e) { |
232 | 0 | throw new RuntimeException(e); |
233 | 0 | } catch (InvocationTargetException e) { |
234 | 0 | throw new RuntimeException(e); |
235 | 0 | } catch (NoSuchMethodException e) { |
236 | 0 | throw new RuntimeException(e); |
237 | 0 | } |
238 | |
} |
239 | 0 | } |
240 | |
|
241 | |
|
242 | |
public static List customizeSections(RuleBaseValues rule, List<Section> sections, boolean delegateRule) { |
243 | |
|
244 | 0 | List<Section> finalSections = new ArrayList<Section>(); |
245 | 0 | for (Section section : sections) { |
246 | |
|
247 | 0 | if (section.getSectionTitle().equals(RULE_ATTRIBUTES_SECTION_TITLE) || |
248 | |
RULE_ATTRIBUTES_SECTION_ID.equals(section.getSectionId())) { |
249 | 0 | List<Row> ruleTemplateRows = getRuleTemplateRows(rule, delegateRule); |
250 | 0 | if (!ruleTemplateRows.isEmpty()) { |
251 | 0 | section.setRows(ruleTemplateRows); |
252 | 0 | finalSections.add(section); |
253 | |
} |
254 | 0 | } else if (ROLES_MAINTENANCE_SECTION_ID.equals(section.getSectionId())) { |
255 | 0 | if (hasRoles(rule)) { |
256 | 0 | finalSections.add(section); |
257 | |
} |
258 | |
} else { |
259 | 0 | finalSections.add(section); |
260 | |
} |
261 | |
} |
262 | |
|
263 | 0 | return finalSections; |
264 | |
} |
265 | |
|
266 | |
|
267 | |
|
268 | |
|
269 | |
public static List<Row> getRuleTemplateRows(RuleBaseValues rule, boolean delegateRule) { |
270 | |
|
271 | 0 | List<Row> rows = new ArrayList<Row>(); |
272 | 0 | RuleTemplate ruleTemplate = rule.getRuleTemplate(); |
273 | 0 | Map<String, String> fieldNameMap = new HashMap<String, String>(); |
274 | |
|
275 | 0 | if (ruleTemplate != null){ |
276 | 0 | ruleTemplate = KEWServiceLocator.getRuleTemplateService().findByRuleTemplateId(ruleTemplate.getRuleTemplateId()); |
277 | 0 | if (ruleTemplate != null) { |
278 | |
|
279 | 0 | List<RuleTemplateAttribute> ruleTemplateAttributes = ruleTemplate.getActiveRuleTemplateAttributes(); |
280 | 0 | Collections.sort(ruleTemplateAttributes); |
281 | |
|
282 | 0 | for (RuleTemplateAttribute ruleTemplateAttribute : ruleTemplateAttributes) { |
283 | 0 | if (!ruleTemplateAttribute.isWorkflowAttribute()) { |
284 | 0 | continue; |
285 | |
} |
286 | 0 | WorkflowAttribute workflowAttribute = ruleTemplateAttribute.getWorkflowAttribute(); |
287 | 0 | RuleAttribute ruleAttribute = ruleTemplateAttribute.getRuleAttribute(); |
288 | 0 | if (ruleAttribute.getType().equals(KEWConstants.RULE_XML_ATTRIBUTE_TYPE)) { |
289 | 0 | ((GenericXMLRuleAttribute) workflowAttribute).setRuleAttribute(ruleAttribute); |
290 | |
} |
291 | 0 | Map<String, String> parameterMap = getFieldMapForRuleTemplateAttribute(rule, ruleTemplateAttribute); |
292 | 0 | workflowAttribute.validateRuleData(parameterMap); |
293 | 0 | List<Row> attributeRows = transformAndPopulateAttributeRows(workflowAttribute.getRuleRows(), ruleTemplateAttribute, rule, fieldNameMap, delegateRule); |
294 | 0 | rows.addAll(attributeRows); |
295 | |
|
296 | 0 | } |
297 | |
} |
298 | 0 | transformFieldConversions(rows, fieldNameMap); |
299 | |
} |
300 | 0 | return rows; |
301 | |
} |
302 | |
|
303 | |
public static void transformFieldConversions(List<Row> rows, Map<String, String> fieldNameMap) { |
304 | 0 | for (Row row : rows) { |
305 | 0 | Map<String, String> transformedFieldConversions = new HashMap<String, String>(); |
306 | 0 | for (Field field : row.getFields()) { |
307 | 0 | Map<String, String> fieldConversions = field.getFieldConversionMap(); |
308 | 0 | for (String lookupFieldName : fieldConversions.keySet()) { |
309 | 0 | String localFieldName = fieldConversions.get(lookupFieldName); |
310 | 0 | if (fieldNameMap.containsKey(localFieldName)) { |
311 | |
|
312 | 0 | transformedFieldConversions.put(lookupFieldName, fieldNameMap.get(localFieldName)); |
313 | |
} else { |
314 | |
|
315 | 0 | transformedFieldConversions.put(lookupFieldName, fieldConversions.get(lookupFieldName)); |
316 | |
} |
317 | 0 | } |
318 | 0 | field.setFieldConversions(transformedFieldConversions); |
319 | 0 | } |
320 | 0 | } |
321 | 0 | } |
322 | |
|
323 | |
|
324 | |
|
325 | |
|
326 | |
private static boolean hasRoles(RuleBaseValues rule) { |
327 | 0 | RuleTemplate ruleTemplate = rule.getRuleTemplate(); |
328 | 0 | return !ruleTemplate.getRoles().isEmpty(); |
329 | |
} |
330 | |
|
331 | |
|
332 | |
|
333 | |
|
334 | |
|
335 | |
|
336 | |
public static List<Row> transformAndPopulateAttributeRows(List<Row> attributeRows, RuleTemplateAttribute ruleTemplateAttribute, RuleBaseValues rule, Map<String, String> fieldNameMap, boolean delegateRule) { |
337 | |
|
338 | 0 | for (Row row : attributeRows) { |
339 | 0 | for (Field field : row.getFields()) { |
340 | 0 | String fieldName = field.getPropertyName(); |
341 | 0 | if (!StringUtils.isBlank(fieldName)) { |
342 | 0 | String valueKey = ruleTemplateAttribute.getRuleTemplateAttributeId() + ID_SEPARATOR + fieldName; |
343 | |
|
344 | |
String propertyName; |
345 | |
|
346 | 0 | if (delegateRule) { |
347 | 0 | propertyName = "delegationRuleBaseValues.fieldValues(" + valueKey + ")"; |
348 | |
} else { |
349 | 0 | propertyName = "fieldValues(" + valueKey + ")"; |
350 | |
} |
351 | |
|
352 | 0 | fieldNameMap.put(fieldName, propertyName); |
353 | 0 | field.setPropertyName(propertyName); |
354 | 0 | field.setPropertyValue(rule.getFieldValues().get(valueKey)); |
355 | |
} |
356 | 0 | } |
357 | |
} |
358 | 0 | return attributeRows; |
359 | |
} |
360 | |
|
361 | |
|
362 | |
|
363 | |
|
364 | |
|
365 | |
|
366 | |
public static void clearKeysForSave(RuleBaseValues rule) { |
367 | 0 | rule.setRuleBaseValuesId(null); |
368 | 0 | rule.setActivationDate(null); |
369 | 0 | rule.setDeactivationDate(null); |
370 | 0 | rule.setCurrentInd(false); |
371 | 0 | rule.setVersionNbr(null); |
372 | 0 | rule.setObjectId(null); |
373 | 0 | rule.setVersionNumber(0L); |
374 | 0 | } |
375 | |
|
376 | |
public static void clearKeysForSave(RuleDelegation ruleDelegation) { |
377 | 0 | ruleDelegation.setRuleDelegationId(null); |
378 | 0 | ruleDelegation.setObjectId(null); |
379 | 0 | ruleDelegation.setVersionNumber(0L); |
380 | 0 | clearKeysForSave(ruleDelegation.getDelegationRuleBaseValues()); |
381 | 0 | } |
382 | |
|
383 | |
public static void translateResponsibilitiesForSave(RuleBaseValues rule) { |
384 | 0 | rule.getResponsibilities().clear(); |
385 | 0 | for (PersonRuleResponsibility responsibility : rule.getPersonResponsibilities()) { |
386 | 0 | RuleResponsibility ruleResponsibility = new RuleResponsibility(); |
387 | 0 | ruleResponsibility.setActionRequestedCd(responsibility.getActionRequestedCd()); |
388 | 0 | ruleResponsibility.setPriority(responsibility.getPriority()); |
389 | 0 | ruleResponsibility.setResponsibilityId(responsibility.getResponsibilityId()); |
390 | 0 | if (ruleResponsibility.getResponsibilityId() == null) { |
391 | 0 | ruleResponsibility.setResponsibilityId(KEWServiceLocator.getResponsibilityIdService().getNewResponsibilityId()); |
392 | |
} |
393 | 0 | String principalId = KEWServiceLocator.getIdentityHelperService().getIdForPrincipalName(responsibility.getPrincipalName()); |
394 | 0 | ruleResponsibility.setRuleResponsibilityName(principalId); |
395 | 0 | ruleResponsibility.setRuleResponsibilityType(KEWConstants.RULE_RESPONSIBILITY_WORKFLOW_ID); |
396 | |
|
397 | 0 | ruleResponsibility.setApprovePolicy(KEWConstants.APPROVE_POLICY_FIRST_APPROVE); |
398 | 0 | rule.getResponsibilities().add(ruleResponsibility); |
399 | 0 | } |
400 | 0 | for (GroupRuleResponsibility responsibility : rule.getGroupResponsibilities()) { |
401 | 0 | RuleResponsibility ruleResponsibility = new RuleResponsibility(); |
402 | 0 | ruleResponsibility.setActionRequestedCd(responsibility.getActionRequestedCd()); |
403 | 0 | ruleResponsibility.setPriority(responsibility.getPriority()); |
404 | 0 | ruleResponsibility.setResponsibilityId(responsibility.getResponsibilityId()); |
405 | 0 | if (ruleResponsibility.getResponsibilityId() == null) { |
406 | 0 | ruleResponsibility.setResponsibilityId(KEWServiceLocator.getResponsibilityIdService().getNewResponsibilityId()); |
407 | |
} |
408 | 0 | Group group = KEWServiceLocator.getIdentityHelperService().getGroupByName(responsibility.getNamespaceCode(), responsibility.getName()); |
409 | 0 | ruleResponsibility.setRuleResponsibilityName(group.getGroupId()); |
410 | 0 | ruleResponsibility.setRuleResponsibilityType(KEWConstants.RULE_RESPONSIBILITY_GROUP_ID); |
411 | 0 | ruleResponsibility.setApprovePolicy(KEWConstants.APPROVE_POLICY_FIRST_APPROVE); |
412 | 0 | rule.getResponsibilities().add(ruleResponsibility); |
413 | 0 | } |
414 | 0 | for (RoleRuleResponsibility responsibility : rule.getRoleResponsibilities()) { |
415 | 0 | RuleResponsibility ruleResponsibility = new RuleResponsibility(); |
416 | 0 | ruleResponsibility.setActionRequestedCd(responsibility.getActionRequestedCd()); |
417 | 0 | ruleResponsibility.setPriority(responsibility.getPriority()); |
418 | 0 | ruleResponsibility.setResponsibilityId(responsibility.getResponsibilityId()); |
419 | 0 | if (ruleResponsibility.getResponsibilityId() == null) { |
420 | 0 | ruleResponsibility.setResponsibilityId(KEWServiceLocator.getResponsibilityIdService().getNewResponsibilityId()); |
421 | |
} |
422 | 0 | ruleResponsibility.setRuleResponsibilityName(responsibility.getRoleName()); |
423 | 0 | ruleResponsibility.setRuleResponsibilityType(KEWConstants.RULE_RESPONSIBILITY_ROLE_ID); |
424 | 0 | ruleResponsibility.setApprovePolicy(responsibility.getApprovePolicy()); |
425 | 0 | rule.getResponsibilities().add(ruleResponsibility); |
426 | 0 | } |
427 | 0 | } |
428 | |
|
429 | |
public static void translateFieldValuesForSave(RuleBaseValues rule) { |
430 | 0 | RuleTemplate ruleTemplate = KEWServiceLocator.getRuleTemplateService().findByRuleTemplateId(rule.getRuleTemplateId()); |
431 | |
|
432 | |
|
433 | 0 | List extensions = new ArrayList(); |
434 | 0 | for (Iterator iterator = ruleTemplate.getActiveRuleTemplateAttributes().iterator(); iterator.hasNext();) { |
435 | 0 | RuleTemplateAttribute ruleTemplateAttribute = (RuleTemplateAttribute) iterator.next(); |
436 | 0 | if (!ruleTemplateAttribute.isWorkflowAttribute()) { |
437 | 0 | continue; |
438 | |
} |
439 | 0 | WorkflowAttribute workflowAttribute = ruleTemplateAttribute.getWorkflowAttribute(); |
440 | |
|
441 | 0 | RuleAttribute ruleAttribute = ruleTemplateAttribute.getRuleAttribute(); |
442 | 0 | if (ruleAttribute.getType().equals(KEWConstants.RULE_XML_ATTRIBUTE_TYPE)) { |
443 | 0 | ((GenericXMLRuleAttribute) workflowAttribute).setRuleAttribute(ruleAttribute); |
444 | |
} |
445 | |
|
446 | 0 | Map<String, String> parameterMap = getFieldMapForRuleTemplateAttribute(rule, ruleTemplateAttribute); |
447 | |
|
448 | |
|
449 | 0 | List attValidationErrors = workflowAttribute.validateRuleData(parameterMap); |
450 | |
|
451 | |
|
452 | |
|
453 | 0 | if (attValidationErrors != null && !attValidationErrors.isEmpty()) { |
454 | 0 | throw new RiceRuntimeException("Encountered attribute validation errors when attempting to save the Rule!"); |
455 | |
} |
456 | |
|
457 | 0 | List ruleExtensionValues = workflowAttribute.getRuleExtensionValues(); |
458 | 0 | if (ruleExtensionValues != null && !ruleExtensionValues.isEmpty()) { |
459 | 0 | RuleExtension ruleExtension = new RuleExtension(); |
460 | 0 | ruleExtension.setRuleTemplateAttributeId(ruleTemplateAttribute.getRuleTemplateAttributeId()); |
461 | |
|
462 | 0 | ruleExtension.setExtensionValues(ruleExtensionValues); |
463 | 0 | extensions.add(ruleExtension); |
464 | |
} |
465 | |
|
466 | 0 | } |
467 | 0 | rule.setRuleExtensions(extensions); |
468 | |
|
469 | 0 | for (Iterator iterator = rule.getRuleExtensions().iterator(); iterator.hasNext();) { |
470 | 0 | RuleExtension ruleExtension = (RuleExtension) iterator.next(); |
471 | 0 | ruleExtension.setRuleBaseValues(rule); |
472 | |
|
473 | 0 | for (Iterator iterator2 = ruleTemplate.getActiveRuleTemplateAttributes().iterator(); iterator2.hasNext();) { |
474 | 0 | RuleTemplateAttribute ruleTemplateAttribute = (RuleTemplateAttribute) iterator2.next(); |
475 | 0 | if (ruleTemplateAttribute.getRuleTemplateAttributeId().longValue() == ruleExtension.getRuleTemplateAttributeId().longValue()) { |
476 | 0 | ruleExtension.setRuleTemplateAttribute(ruleTemplateAttribute); |
477 | 0 | break; |
478 | |
} |
479 | 0 | } |
480 | |
|
481 | 0 | for (Iterator iterator2 = ruleExtension.getExtensionValues().iterator(); iterator2.hasNext();) { |
482 | 0 | RuleExtensionValue ruleExtensionValue = (RuleExtensionValue) iterator2.next(); |
483 | 0 | ruleExtensionValue.setExtension(ruleExtension); |
484 | 0 | } |
485 | 0 | } |
486 | 0 | } |
487 | |
|
488 | |
|
489 | |
|
490 | |
|
491 | |
|
492 | |
public static Map<String, String> getFieldMapForRuleTemplateAttribute(RuleBaseValues rule, RuleTemplateAttribute ruleTemplateAttribute) { |
493 | 0 | Map<String, String> fieldMap = new HashMap<String, String>(); |
494 | 0 | for (String fieldKey : rule.getFieldValues().keySet()) { |
495 | 0 | String ruleTemplateAttributeId = fieldKey.substring(0, fieldKey.indexOf(ID_SEPARATOR)); |
496 | 0 | String fieldName = fieldKey.substring(fieldKey.indexOf(ID_SEPARATOR) + 1); |
497 | 0 | if (ruleTemplateAttribute.getRuleTemplateAttributeId().toString().equals(ruleTemplateAttributeId)) { |
498 | 0 | fieldMap.put(fieldName, rule.getFieldValues().get(fieldKey)); |
499 | |
} |
500 | 0 | } |
501 | 0 | return fieldMap; |
502 | |
} |
503 | |
|
504 | |
public static void processRuleForDelegationSave(RuleDelegation ruleDelegation) { |
505 | 0 | RuleBaseValues rule = ruleDelegation.getDelegationRuleBaseValues(); |
506 | 0 | rule.setDelegateRule(true); |
507 | |
|
508 | 0 | for (RuleResponsibility responsibility : rule.getResponsibilities()) { |
509 | 0 | responsibility.setActionRequestedCd(null); |
510 | 0 | responsibility.setPriority(null); |
511 | |
} |
512 | 0 | } |
513 | |
|
514 | |
public static void populateForCopyOrEdit(RuleBaseValues oldRule, RuleBaseValues newRule) { |
515 | 0 | populateRuleMaintenanceFields(oldRule); |
516 | 0 | populateRuleMaintenanceFields(newRule); |
517 | |
|
518 | |
|
519 | 0 | if (newRule.getRuleTemplate().getName() == null) { |
520 | 0 | newRule.getRuleTemplate().setName(oldRule.getRuleTemplate().getName()); |
521 | |
} |
522 | 0 | if (newRule.getDocTypeName() == null) { |
523 | 0 | newRule.setDocTypeName(oldRule.getDocTypeName()); |
524 | |
} |
525 | 0 | } |
526 | |
|
527 | |
|
528 | |
|
529 | |
|
530 | |
|
531 | |
|
532 | |
|
533 | |
public static void populateRuleMaintenanceFields(RuleBaseValues rule) { |
534 | 0 | translateResponsibilitiesForLoad(rule); |
535 | 0 | translateRuleExtensionsForLoad(rule); |
536 | 0 | } |
537 | |
|
538 | |
public static void translateResponsibilitiesForLoad(RuleBaseValues rule) { |
539 | 0 | for (RuleResponsibility responsibility : rule.getResponsibilities()) { |
540 | 0 | if (responsibility.getRuleResponsibilityType().equals(KEWConstants.RULE_RESPONSIBILITY_WORKFLOW_ID)) { |
541 | 0 | PersonRuleResponsibility personResponsibility = new PersonRuleResponsibility(); |
542 | 0 | copyResponsibility(responsibility, personResponsibility); |
543 | 0 | KimPrincipal principal = KEWServiceLocator.getIdentityHelperService().getPrincipal(personResponsibility.getRuleResponsibilityName()); |
544 | 0 | personResponsibility.setPrincipalName(principal.getPrincipalName()); |
545 | 0 | rule.getPersonResponsibilities().add(personResponsibility); |
546 | 0 | } else if (responsibility.getRuleResponsibilityType().equals(KEWConstants.RULE_RESPONSIBILITY_GROUP_ID)) { |
547 | 0 | GroupRuleResponsibility groupResponsibility = new GroupRuleResponsibility(); |
548 | 0 | copyResponsibility(responsibility, groupResponsibility); |
549 | 0 | Group group = KEWServiceLocator.getIdentityHelperService().getGroup(groupResponsibility.getRuleResponsibilityName()); |
550 | 0 | groupResponsibility.setNamespaceCode(group.getNamespaceCode()); |
551 | 0 | groupResponsibility.setName(group.getGroupName()); |
552 | 0 | rule.getGroupResponsibilities().add(groupResponsibility); |
553 | 0 | } else if (responsibility.getRuleResponsibilityType().equals(KEWConstants.RULE_RESPONSIBILITY_ROLE_ID)) { |
554 | 0 | RoleRuleResponsibility roleResponsibility = new RoleRuleResponsibility(); |
555 | 0 | copyResponsibility(responsibility, roleResponsibility); |
556 | 0 | rule.getRoleResponsibilities().add(roleResponsibility); |
557 | 0 | } else { |
558 | 0 | throw new RiceRuntimeException("Original responsibility with id '" + responsibility.getRuleResponsibilityKey() + "' contained a bad type code of '" + responsibility.getRuleResponsibilityType()); |
559 | |
} |
560 | |
} |
561 | |
|
562 | 0 | rule.getResponsibilities().clear(); |
563 | 0 | } |
564 | |
|
565 | |
public static void copyResponsibility(RuleResponsibility source, RuleResponsibility target) { |
566 | |
try { |
567 | 0 | BeanUtils.copyProperties(target, source); |
568 | 0 | } catch (Exception e) { |
569 | 0 | throw new RiceRuntimeException("Failed to copy properties from source to target responsibility", e); |
570 | 0 | } |
571 | 0 | } |
572 | |
|
573 | |
public static void translateRuleExtensionsForLoad(RuleBaseValues rule) { |
574 | 0 | for (RuleExtension ruleExtension : rule.getRuleExtensions()) { |
575 | 0 | Long ruleTemplateAttributeId = ruleExtension.getRuleTemplateAttributeId(); |
576 | 0 | for (RuleExtensionValue ruleExtensionValue : ruleExtension.getExtensionValues()) { |
577 | 0 | String fieldMapKey = ruleTemplateAttributeId + ID_SEPARATOR + ruleExtensionValue.getKey(); |
578 | 0 | rule.getFieldValues().put(fieldMapKey, ruleExtensionValue.getValue()); |
579 | 0 | } |
580 | 0 | } |
581 | |
|
582 | 0 | rule.getRuleExtensions().clear(); |
583 | 0 | } |
584 | |
|
585 | |
public static void processRuleForCopy(String documentNumber, RuleBaseValues oldRule, RuleBaseValues newRule) { |
586 | 0 | WebRuleUtils.populateForCopyOrEdit(oldRule, newRule); |
587 | 0 | clearKeysForCopy(newRule); |
588 | 0 | newRule.setRouteHeaderId(new Long(documentNumber)); |
589 | 0 | } |
590 | |
|
591 | |
public static void clearKeysForCopy(RuleBaseValues rule) { |
592 | 0 | rule.setRuleBaseValuesId(null); |
593 | 0 | rule.setPreviousVersionId(null); |
594 | 0 | rule.setPreviousVersion(null); |
595 | 0 | rule.setName(null); |
596 | 0 | for (PersonRuleResponsibility responsibility : rule.getPersonResponsibilities()) { |
597 | 0 | clearResponsibilityKeys(responsibility); |
598 | |
} |
599 | 0 | for (GroupRuleResponsibility responsibility : rule.getGroupResponsibilities()) { |
600 | 0 | clearResponsibilityKeys(responsibility); |
601 | |
} |
602 | 0 | for (RoleRuleResponsibility responsibility : rule.getRoleResponsibilities()) { |
603 | 0 | clearResponsibilityKeys(responsibility); |
604 | |
} |
605 | 0 | } |
606 | |
|
607 | |
private static void clearResponsibilityKeys(RuleResponsibility responsibility) { |
608 | 0 | responsibility.setResponsibilityId(null); |
609 | 0 | responsibility.setRuleResponsibilityKey(null); |
610 | 0 | responsibility.setRuleBaseValuesId(null); |
611 | 0 | } |
612 | |
|
613 | |
} |