1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
package org.kuali.rice.kew.rule.bo; |
17 | |
|
18 | |
import org.apache.commons.lang.StringUtils; |
19 | |
import org.kuali.rice.core.reflect.ObjectDefinition; |
20 | |
import org.kuali.rice.core.resourceloader.GlobalResourceLoader; |
21 | |
import org.kuali.rice.core.util.KeyLabelPair; |
22 | |
import org.kuali.rice.kew.exception.WorkflowServiceErrorImpl; |
23 | |
import org.kuali.rice.kew.lookupable.MyColumns; |
24 | |
import org.kuali.rice.kew.rule.OddSearchAttribute; |
25 | |
import org.kuali.rice.kew.rule.RuleBaseValues; |
26 | |
import org.kuali.rice.kew.rule.RuleExtension; |
27 | |
import org.kuali.rice.kew.rule.WorkflowAttribute; |
28 | |
import org.kuali.rice.kew.rule.service.RuleService; |
29 | |
import org.kuali.rice.kew.rule.service.RuleTemplateService; |
30 | |
import org.kuali.rice.kew.rule.web.WebRuleUtils; |
31 | |
import org.kuali.rice.kew.rule.xmlrouting.GenericXMLRuleAttribute; |
32 | |
import org.kuali.rice.kew.service.KEWServiceLocator; |
33 | |
import org.kuali.rice.kew.util.KEWConstants; |
34 | |
import org.kuali.rice.kew.util.Utilities; |
35 | |
import org.kuali.rice.kim.bo.Group; |
36 | |
import org.kuali.rice.kim.bo.Person; |
37 | |
import org.kuali.rice.kim.service.IdentityManagementService; |
38 | |
import org.kuali.rice.kim.service.KIMServiceLocator; |
39 | |
import org.kuali.rice.kim.util.KimConstants; |
40 | |
import org.kuali.rice.kns.authorization.BusinessObjectRestrictions; |
41 | |
import org.kuali.rice.kns.bo.BusinessObject; |
42 | |
import org.kuali.rice.kns.bo.PersistableBusinessObject; |
43 | |
import org.kuali.rice.kns.exception.ValidationException; |
44 | |
import org.kuali.rice.kns.lookup.HtmlData; |
45 | |
import org.kuali.rice.kns.lookup.KualiLookupableHelperServiceImpl; |
46 | |
import org.kuali.rice.kns.lookup.LookupableHelperService; |
47 | |
import org.kuali.rice.kns.service.KNSServiceLocator; |
48 | |
import org.kuali.rice.kns.util.GlobalVariables; |
49 | |
import org.kuali.rice.kns.util.KNSConstants; |
50 | |
import org.kuali.rice.kns.util.ObjectUtils; |
51 | |
import org.kuali.rice.kns.util.RiceKeyConstants; |
52 | |
import org.kuali.rice.kns.web.comparator.CellComparatorHelper; |
53 | |
import org.kuali.rice.kns.web.format.BooleanFormatter; |
54 | |
import org.kuali.rice.kns.web.format.CollectionFormatter; |
55 | |
import org.kuali.rice.kns.web.format.DateFormatter; |
56 | |
import org.kuali.rice.kns.web.format.Formatter; |
57 | |
import org.kuali.rice.kns.web.struts.form.LookupForm; |
58 | |
import org.kuali.rice.kns.web.ui.Column; |
59 | |
import org.kuali.rice.kns.web.ui.Field; |
60 | |
import org.kuali.rice.kns.web.ui.ResultRow; |
61 | |
import org.kuali.rice.kns.web.ui.Row; |
62 | |
|
63 | |
import java.sql.Date; |
64 | |
import java.util.*; |
65 | |
|
66 | |
|
67 | |
|
68 | |
|
69 | |
|
70 | |
|
71 | |
|
72 | 0 | public class RuleBaseValuesLookupableHelperServiceImpl extends KualiLookupableHelperServiceImpl { |
73 | 0 | private List<Row> rows = new ArrayList<Row>(); |
74 | |
|
75 | |
|
76 | |
private LookupableHelperService ruleDelegationLookupableHelperService; |
77 | |
private List<?> delegationPkNames; |
78 | |
|
79 | |
private static final String RULE_TEMPLATE_PROPERTY_NAME = "ruleTemplate.name"; |
80 | |
private static final String RULE_ID_PROPERTY_NAME = "ruleBaseValuesId"; |
81 | |
private static final String RULE_TEMPLATE_ID_PROPERTY_NAME = "ruleTemplateId"; |
82 | |
private static final String ACTIVE_IND_PROPERTY_NAME = "activeInd"; |
83 | |
private static final String DELEGATE_RULE_PROPERTY_NAME = "delegateRule"; |
84 | |
private static final String GROUP_REVIEWER_PROPERTY_NAME = "groupReviewer"; |
85 | |
private static final String GROUP_REVIEWER_NAME_PROPERTY_NAME = "groupReviewerName"; |
86 | |
private static final String GROUP_REVIEWER_NAMESPACE_PROPERTY_NAME = "groupReviewerNamespace"; |
87 | |
private static final String PERSON_REVIEWER_PROPERTY_NAME = "personReviewer"; |
88 | |
private static final String ROLE_REVIEWER_PROPERTY_NAME = "roleReviewer"; |
89 | |
private static final String PERSON_REVIEWER_TYPE_PROPERTY_NAME = "personReviewerType"; |
90 | |
private static final String DOC_TYP_NAME_PROPERTY_NAME = "documentType.name"; |
91 | |
private static final String RULE_DESC_PROPERTY_NAME = "description"; |
92 | |
|
93 | |
private static final String DOC_TYP_LOOKUPABLE = "DocumentTypeLookupableImplService"; |
94 | |
private static final String RULE_TEMPLATE_LOOKUPABLE = "RuleTemplateLookupableImplService"; |
95 | |
private static final String WORKGROUP_LOOKUPABLE = "WorkGroupLookupableImplService"; |
96 | |
private static final String PERSON_LOOKUPABLE = "UserLookupableImplService"; |
97 | |
|
98 | |
private static final String WORKGROUP_ID_PROPERTY_NAME = "workgroupId"; |
99 | |
|
100 | |
private static final String BACK_LOCATION = "backLocation"; |
101 | |
private static final String DOC_FORM_KEY = "docFormKey"; |
102 | |
private static final String INVALID_WORKGROUP_ERROR = "The Group Reviewer Namespace and Name combination is not valid"; |
103 | |
private static final String INVALID_PERSON_ERROR = "The Person Reviewer is not valid"; |
104 | |
|
105 | |
public List<Row> getRows() { |
106 | 0 | List<Row> superRows = super.getRows(); |
107 | 0 | List<Row> returnRows = new ArrayList<Row>(); |
108 | 0 | returnRows.addAll(superRows); |
109 | 0 | returnRows.addAll(rows); |
110 | 0 | return returnRows; |
111 | |
} |
112 | |
|
113 | |
@Override |
114 | |
public boolean checkForAdditionalFields(Map fieldValues) { |
115 | 0 | String ruleTemplateNameParam = (String) fieldValues.get(RULE_TEMPLATE_PROPERTY_NAME); |
116 | |
|
117 | 0 | if (ruleTemplateNameParam != null && !ruleTemplateNameParam.equals("")) { |
118 | 0 | rows = new ArrayList<Row>(); |
119 | 0 | RuleTemplate ruleTemplate = null; |
120 | |
|
121 | 0 | ruleTemplate = getRuleTemplateService().findByRuleTemplateName(ruleTemplateNameParam); |
122 | |
|
123 | 0 | int i = 0; |
124 | 0 | for (Iterator iter = ruleTemplate.getActiveRuleTemplateAttributes().iterator(); iter.hasNext();) { |
125 | 0 | RuleTemplateAttribute ruleTemplateAttribute = (RuleTemplateAttribute) iter.next(); |
126 | 0 | if (!ruleTemplateAttribute.isWorkflowAttribute()) { |
127 | 0 | continue; |
128 | |
} |
129 | 0 | WorkflowAttribute attribute = ruleTemplateAttribute.getWorkflowAttribute(); |
130 | 0 | RuleAttribute ruleAttribute = ruleTemplateAttribute.getRuleAttribute(); |
131 | 0 | if (ruleAttribute.getType().equals(KEWConstants.RULE_XML_ATTRIBUTE_TYPE)) { |
132 | 0 | ((GenericXMLRuleAttribute) attribute).setRuleAttribute(ruleAttribute); |
133 | |
} |
134 | |
|
135 | |
|
136 | 0 | List<Row> searchRows = null; |
137 | 0 | if (attribute instanceof OddSearchAttribute) { |
138 | 0 | searchRows = ((OddSearchAttribute) attribute).getSearchRows(); |
139 | |
} else { |
140 | 0 | searchRows = attribute.getRuleRows(); |
141 | |
} |
142 | 0 | for (Iterator<Row> iterator = searchRows.iterator(); iterator.hasNext();) { |
143 | 0 | Row row = iterator.next(); |
144 | 0 | List<Field> fields = new ArrayList<Field>(); |
145 | 0 | for (Iterator<Field> iterator2 = row.getFields().iterator(); iterator2.hasNext();) { |
146 | 0 | Field field = (Field) iterator2.next(); |
147 | 0 | if (fieldValues.get(field.getPropertyName()) != null) { |
148 | 0 | field.setPropertyValue(fieldValues.get(field.getPropertyName())); |
149 | |
} |
150 | 0 | fields.add(field); |
151 | 0 | fieldValues.put(field.getPropertyName(), field.getPropertyValue()); |
152 | 0 | } |
153 | 0 | } |
154 | |
|
155 | 0 | if (attribute instanceof OddSearchAttribute) { |
156 | 0 | ((OddSearchAttribute) attribute).validateSearchData(fieldValues); |
157 | |
} else { |
158 | 0 | attribute.validateRuleData(fieldValues); |
159 | |
} |
160 | |
|
161 | 0 | if (attribute instanceof OddSearchAttribute) { |
162 | 0 | searchRows = ((OddSearchAttribute) attribute).getSearchRows(); |
163 | |
} else { |
164 | 0 | searchRows = attribute.getRuleRows(); |
165 | |
} |
166 | 0 | for (Iterator iterator = searchRows.iterator(); iterator.hasNext();) { |
167 | 0 | Row row = (Row) iterator.next(); |
168 | 0 | List<Field> fields = new ArrayList<Field>(); |
169 | 0 | for (Iterator<Field> iterator2 = row.getFields().iterator(); iterator2.hasNext();) { |
170 | 0 | Field field = iterator2.next(); |
171 | 0 | if (fieldValues.get(field.getPropertyName()) != null) { |
172 | 0 | field.setPropertyValue(fieldValues.get(field.getPropertyName())); |
173 | |
} |
174 | 0 | fields.add(field); |
175 | 0 | fieldValues.put(field.getPropertyName(), field.getPropertyValue()); |
176 | 0 | } |
177 | 0 | row.setFields(fields); |
178 | 0 | rows.add(row); |
179 | |
|
180 | 0 | } |
181 | |
|
182 | 0 | } |
183 | |
|
184 | 0 | return true; |
185 | |
} |
186 | 0 | rows.clear(); |
187 | 0 | return false; |
188 | |
} |
189 | |
|
190 | |
@Override |
191 | |
public List<? extends BusinessObject> getSearchResults(Map<String, String> fieldValues) { |
192 | 0 | List errors = new ArrayList(); |
193 | |
|
194 | 0 | String docTypeNameParam = (String) fieldValues.get(DOC_TYP_NAME_PROPERTY_NAME); |
195 | 0 | String ruleTemplateIdParam = (String) fieldValues.get(RULE_TEMPLATE_ID_PROPERTY_NAME); |
196 | 0 | String ruleTemplateNameParam = (String) fieldValues.get(RULE_TEMPLATE_PROPERTY_NAME); |
197 | 0 | String groupIdParam = (String) fieldValues.get(GROUP_REVIEWER_PROPERTY_NAME); |
198 | 0 | String groupNameParam = (String) fieldValues.get(GROUP_REVIEWER_NAME_PROPERTY_NAME); |
199 | 0 | String groupNamespaceParam = (String) fieldValues.get(GROUP_REVIEWER_NAMESPACE_PROPERTY_NAME); |
200 | 0 | String networkIdParam = (String) fieldValues.get(PERSON_REVIEWER_PROPERTY_NAME); |
201 | 0 | String userDirectiveParam = (String) fieldValues.get(PERSON_REVIEWER_TYPE_PROPERTY_NAME); |
202 | 0 | String activeParam = (String) fieldValues.get(ACTIVE_IND_PROPERTY_NAME); |
203 | 0 | String ruleIdParam = (String) fieldValues.get(RULE_ID_PROPERTY_NAME); |
204 | 0 | String ruleDescription = (String) fieldValues.get(RULE_DESC_PROPERTY_NAME); |
205 | 0 | String deleteSelection = (String) fieldValues.get(DELEGATE_RULE_PROPERTY_NAME); |
206 | |
|
207 | 0 | String docTypeSearchName = null; |
208 | 0 | String workflowId = null; |
209 | 0 | String workgroupId = null; |
210 | 0 | Long ruleTemplateId = null; |
211 | 0 | Boolean isDelegateRule = null; |
212 | 0 | Boolean isActive = null; |
213 | 0 | Long ruleId = null; |
214 | |
|
215 | |
|
216 | |
|
217 | 0 | if(deleteSelection != null && !"".equals(deleteSelection.trim())) |
218 | |
{ |
219 | 0 | if(deleteSelection.equalsIgnoreCase("Y")) |
220 | 0 | isDelegateRule = Boolean.TRUE; |
221 | |
else |
222 | 0 | isDelegateRule = Boolean.FALSE; |
223 | |
} |
224 | |
|
225 | 0 | if (ruleIdParam != null && !"".equals(ruleIdParam.trim())) { |
226 | |
try { |
227 | 0 | ruleId = new Long(ruleIdParam.trim()); |
228 | 0 | } catch (NumberFormatException e) { |
229 | 0 | ruleId = new Long(-1); |
230 | 0 | } |
231 | |
} |
232 | |
|
233 | 0 | if (!activeParam.equals("")) { |
234 | 0 | if (activeParam.equals("Y")) { |
235 | 0 | isActive = Boolean.TRUE; |
236 | |
} else { |
237 | 0 | isActive = Boolean.FALSE; |
238 | |
} |
239 | |
} |
240 | |
|
241 | 0 | if (docTypeNameParam != null && !"".equals(docTypeNameParam.trim())) { |
242 | 0 | docTypeSearchName = docTypeNameParam.replace('*', '%'); |
243 | 0 | docTypeSearchName = "%" + docTypeSearchName.trim() + "%"; |
244 | |
} |
245 | |
|
246 | 0 | if (!Utilities.isEmpty(networkIdParam)) { |
247 | 0 | Person person = KIMServiceLocator.getPersonService().getPersonByPrincipalName(networkIdParam); |
248 | 0 | if (person != null) { |
249 | 0 | workflowId = person.getPrincipalId(); |
250 | |
} |
251 | |
} |
252 | |
|
253 | 0 | if (!Utilities.isEmpty(groupIdParam) || !Utilities.isEmpty(groupNameParam)) { |
254 | 0 | Group group = null; |
255 | 0 | if (groupIdParam != null && !"".equals(groupIdParam)) { |
256 | 0 | group = getIdentityManagementService().getGroup(groupIdParam.trim()); |
257 | |
} else { |
258 | 0 | if (groupNamespaceParam == null) { |
259 | 0 | groupNamespaceParam = KimConstants.KIM_GROUP_DEFAULT_NAMESPACE_CODE; |
260 | |
} |
261 | 0 | group = getIdentityManagementService().getGroupByName(groupNamespaceParam, groupNameParam.trim()); |
262 | 0 | if (group == null) { |
263 | 0 | String attributeLabel = getDataDictionaryService().getAttributeLabel(getBusinessObjectClass(), GROUP_REVIEWER_NAME_PROPERTY_NAME) + ":" + getDataDictionaryService().getAttributeLabel(getBusinessObjectClass(), GROUP_REVIEWER_NAMESPACE_PROPERTY_NAME); |
264 | 0 | GlobalVariables.getMessageMap().putError(GROUP_REVIEWER_NAMESPACE_PROPERTY_NAME, RiceKeyConstants.ERROR_CUSTOM, INVALID_WORKGROUP_ERROR); |
265 | 0 | } else { |
266 | 0 | workgroupId = group.getGroupId(); |
267 | |
} |
268 | |
} |
269 | |
} |
270 | |
|
271 | 0 | Map attributes = null; |
272 | 0 | MyColumns myColumns = new MyColumns(); |
273 | 0 | if (ruleTemplateNameParam != null && !ruleTemplateNameParam.trim().equals("") || ruleTemplateIdParam != null && !"".equals(ruleTemplateIdParam) && !"null".equals(ruleTemplateIdParam)) { |
274 | 0 | RuleTemplate ruleTemplate = null; |
275 | 0 | if (ruleTemplateIdParam != null && !"".equals(ruleTemplateIdParam)) { |
276 | 0 | ruleTemplateId = new Long(ruleTemplateIdParam); |
277 | 0 | ruleTemplate = getRuleTemplateService().findByRuleTemplateId(ruleTemplateId); |
278 | |
} else { |
279 | 0 | ruleTemplate = getRuleTemplateService().findByRuleTemplateName(ruleTemplateNameParam.trim()); |
280 | 0 | ruleTemplateId = new Long(ruleTemplate.getRuleTemplateId().longValue()); |
281 | |
} |
282 | |
|
283 | 0 | attributes = new HashMap(); |
284 | 0 | for (Iterator iter = ruleTemplate.getActiveRuleTemplateAttributes().iterator(); iter.hasNext();) { |
285 | 0 | RuleTemplateAttribute ruleTemplateAttribute = (RuleTemplateAttribute) iter.next(); |
286 | 0 | if (!ruleTemplateAttribute.isWorkflowAttribute()) { |
287 | 0 | continue; |
288 | |
} |
289 | 0 | WorkflowAttribute attribute = (WorkflowAttribute)GlobalResourceLoader.getObject(new ObjectDefinition(ruleTemplateAttribute.getRuleAttribute().getClassName(), ruleTemplateAttribute.getRuleAttribute().getServiceNamespace())); |
290 | 0 | RuleAttribute ruleAttribute = ruleTemplateAttribute.getRuleAttribute(); |
291 | 0 | if (ruleAttribute.getType().equals(KEWConstants.RULE_XML_ATTRIBUTE_TYPE)) { |
292 | 0 | ((GenericXMLRuleAttribute) attribute).setRuleAttribute(ruleAttribute); |
293 | |
} |
294 | 0 | attribute.setRequired(false); |
295 | 0 | List<Row> searchRows = null; |
296 | 0 | long curExtId = 0; |
297 | 0 | if (attribute instanceof OddSearchAttribute) { |
298 | 0 | for (WorkflowServiceErrorImpl wsei : (List<WorkflowServiceErrorImpl>)((OddSearchAttribute)attribute).validateSearchData(fieldValues)) { |
299 | 0 | GlobalVariables.getMessageMap().putError(wsei.getMessage(), RiceKeyConstants.ERROR_CUSTOM, wsei.getArg1()); |
300 | |
} |
301 | |
try { |
302 | 0 | List<RuleExtension> curExts = ruleTemplateAttribute.getRuleExtensions(); |
303 | 0 | for (Iterator extIter = curExts.iterator(); extIter.hasNext();) { |
304 | 0 | RuleExtension curExt = (RuleExtension) iter.next(); |
305 | 0 | curExtId = curExt.getRuleExtensionId(); |
306 | 0 | RuleBaseValues curRule = curExt.getRuleBaseValues(); |
307 | 0 | attribute.validateRuleData(WebRuleUtils.getFieldMapForRuleTemplateAttribute(curRule, ruleTemplateAttribute)); |
308 | 0 | } |
309 | 0 | } catch (Exception e) { |
310 | 0 | LOG.warn("Exception caught attempting to validate attribute data for extension id:" + curExtId + ". Reason: " + e.getCause()); |
311 | 0 | } |
312 | |
|
313 | 0 | searchRows = ((OddSearchAttribute) attribute).getSearchRows(); |
314 | |
} else { |
315 | 0 | for (WorkflowServiceErrorImpl wsei : (List<WorkflowServiceErrorImpl>)attribute.validateRuleData(fieldValues)) { |
316 | 0 | GlobalVariables.getMessageMap().putError(wsei.getMessage(), RiceKeyConstants.ERROR_CUSTOM, wsei.getArg1()); |
317 | |
} |
318 | |
|
319 | |
try { |
320 | 0 | List<RuleExtension> curExts = ruleTemplateAttribute.getRuleExtensions(); |
321 | 0 | for (Iterator extIter = curExts.iterator(); extIter.hasNext();) { |
322 | 0 | RuleExtension curExt = (RuleExtension) iter.next(); |
323 | 0 | curExtId = curExt.getRuleExtensionId(); |
324 | 0 | RuleBaseValues curRule = curExt.getRuleBaseValues(); |
325 | 0 | attribute.validateRuleData(WebRuleUtils.getFieldMapForRuleTemplateAttribute(curRule, ruleTemplateAttribute)); |
326 | 0 | } |
327 | 0 | } catch (Exception e) { |
328 | 0 | LOG.warn("Exception caught attempting to validate attribute data for extension id:" + curExtId + ". Reason: " + e.getCause()); |
329 | 0 | } |
330 | |
|
331 | 0 | searchRows = attribute.getRuleRows(); |
332 | |
} |
333 | 0 | for (Row row : searchRows) { |
334 | 0 | for (Field field : row.getFields()) { |
335 | 0 | if (fieldValues.get(field.getPropertyName()) != null) { |
336 | 0 | String attributeParam = (String) fieldValues.get(field.getPropertyName()); |
337 | 0 | if (!attributeParam.equals("")) { |
338 | 0 | if (ruleAttribute.getType().equals(KEWConstants.RULE_XML_ATTRIBUTE_TYPE)) { |
339 | 0 | attributes.put(field.getPropertyName(), attributeParam.trim()); |
340 | |
} else { |
341 | 0 | attributes.put(field.getPropertyName(), attributeParam.trim()); |
342 | |
} |
343 | |
} |
344 | |
} |
345 | 0 | if (field.getFieldType().equals(Field.TEXT) || field.getFieldType().equals(Field.DROPDOWN) || field.getFieldType().equals(Field.DROPDOWN_REFRESH) || field.getFieldType().equals(Field.RADIO)) { |
346 | 0 | if (ruleAttribute.getType().equals(KEWConstants.RULE_XML_ATTRIBUTE_TYPE)) { |
347 | 0 | myColumns.getColumns().add(new KeyLabelPair(field.getPropertyName(), ruleTemplateAttribute.getRuleTemplateAttributeId()+"")); |
348 | |
} else { |
349 | 0 | myColumns.getColumns().add(new KeyLabelPair(field.getPropertyName(), ruleTemplateAttribute.getRuleTemplateAttributeId()+"")); |
350 | |
} |
351 | |
} |
352 | |
} |
353 | |
} |
354 | 0 | } |
355 | |
} |
356 | |
|
357 | 0 | if (!Utilities.isEmpty(ruleDescription)) { |
358 | 0 | ruleDescription = ruleDescription.replace('*', '%'); |
359 | 0 | ruleDescription = "%" + ruleDescription.trim() + "%"; |
360 | |
} |
361 | |
|
362 | 0 | if (!GlobalVariables.getMessageMap().isEmpty()) { |
363 | 0 | throw new ValidationException("errors in search criteria"); |
364 | |
} |
365 | |
|
366 | |
|
367 | 0 | Iterator rules = getRuleService().search(docTypeSearchName, ruleId, ruleTemplateId, ruleDescription, workgroupId, workflowId, isDelegateRule, isActive, attributes, userDirectiveParam).iterator(); |
368 | 0 | List displayList = new ArrayList(); |
369 | |
|
370 | 0 | while (rules.hasNext()) { |
371 | 0 | RuleBaseValues record = (RuleBaseValues) rules.next(); |
372 | |
|
373 | 0 | if (Utilities.isEmpty(record.getDescription())) { |
374 | |
|
375 | 0 | record.setDescription(""); |
376 | |
} |
377 | |
|
378 | 0 | if (ruleTemplateNameParam != null && !ruleTemplateNameParam.trim().equals("") || ruleTemplateIdParam != null && !"".equals(ruleTemplateIdParam) && !"null".equals(ruleTemplateIdParam)) { |
379 | 0 | MyColumns myNewColumns = new MyColumns(); |
380 | 0 | for (Iterator iter = myColumns.getColumns().iterator(); iter.hasNext();) { |
381 | 0 | KeyLabelPair pair = (KeyLabelPair) iter.next(); |
382 | 0 | KeyLabelPair newPair = new KeyLabelPair(); |
383 | 0 | newPair.setKey(pair.getKey()); |
384 | 0 | if (record.getRuleExtensionValue(new Long(pair.getLabel()), pair.getKey().toString()) != null) { |
385 | 0 | newPair.setLabel(record.getRuleExtensionValue(new Long(pair.getLabel()), pair.getKey().toString()).getValue()); |
386 | |
} else { |
387 | 0 | newPair.setLabel(""); |
388 | |
} |
389 | 0 | myNewColumns.getColumns().add(newPair); |
390 | 0 | record.getFieldValues().put((String)newPair.key, newPair.label); |
391 | 0 | } |
392 | 0 | record.setMyColumns(myNewColumns); |
393 | |
} |
394 | |
|
395 | 0 | StringBuffer returnUrl = new StringBuffer("<a href=\""); |
396 | 0 | returnUrl.append(fieldValues.get(BACK_LOCATION)).append("?methodToCall=refresh&docFormKey=").append(fieldValues.get(DOC_FORM_KEY)).append("&"); |
397 | |
|
398 | 0 | returnUrl.append(RULE_ID_PROPERTY_NAME); |
399 | 0 | returnUrl.append("=").append(record.getRuleBaseValuesId()).append("\">return value</a>"); |
400 | 0 | record.setReturnUrl(returnUrl.toString()); |
401 | |
|
402 | 0 | String destinationUrl = "<a href=\"Rule.do?methodToCall=report¤tRuleId=" + record.getRuleBaseValuesId() + "\">report</a>"; |
403 | |
|
404 | 0 | record.setDestinationUrl(destinationUrl); |
405 | |
|
406 | 0 | displayList.add(record); |
407 | 0 | } |
408 | 0 | return displayList; |
409 | |
|
410 | |
} |
411 | |
|
412 | |
|
413 | |
|
414 | |
private IdentityManagementService getIdentityManagementService() { |
415 | 0 | return (IdentityManagementService) KIMServiceLocator.getService(KIMServiceLocator.KIM_IDENTITY_MANAGEMENT_SERVICE); |
416 | |
} |
417 | |
|
418 | |
private RuleTemplateService getRuleTemplateService() { |
419 | 0 | return (RuleTemplateService) KEWServiceLocator.getService(KEWServiceLocator.RULE_TEMPLATE_SERVICE); |
420 | |
} |
421 | |
private RuleService getRuleService() { |
422 | 0 | return (RuleService) KEWServiceLocator.getService(KEWServiceLocator.RULE_SERVICE); |
423 | |
} |
424 | |
|
425 | |
@Override |
426 | |
public void validateSearchParameters(Map fieldValues) { |
427 | 0 | super.validateSearchParameters(fieldValues); |
428 | |
|
429 | |
|
430 | 0 | String groupName = (String)fieldValues.get(GROUP_REVIEWER_NAME_PROPERTY_NAME); |
431 | 0 | String groupNamespace = (String)fieldValues.get(GROUP_REVIEWER_NAMESPACE_PROPERTY_NAME); |
432 | 0 | String principalName = (String)fieldValues.get(PERSON_REVIEWER_PROPERTY_NAME); |
433 | |
|
434 | 0 | if (Utilities.isEmpty(groupName) && !Utilities.isEmpty(groupNamespace)) { |
435 | 0 | String attributeLabel = getDataDictionaryService().getAttributeLabel(getBusinessObjectClass(), GROUP_REVIEWER_NAME_PROPERTY_NAME); |
436 | 0 | GlobalVariables.getMessageMap().putError(GROUP_REVIEWER_NAME_PROPERTY_NAME, RiceKeyConstants.ERROR_REQUIRED, attributeLabel); |
437 | |
} |
438 | |
|
439 | 0 | if (!Utilities.isEmpty(groupName) && Utilities.isEmpty(groupNamespace)) { |
440 | 0 | String attributeLabel = getDataDictionaryService().getAttributeLabel(getBusinessObjectClass(), GROUP_REVIEWER_NAMESPACE_PROPERTY_NAME); |
441 | 0 | GlobalVariables.getMessageMap().putError(GROUP_REVIEWER_NAMESPACE_PROPERTY_NAME, RiceKeyConstants.ERROR_REQUIRED, attributeLabel); |
442 | |
} |
443 | |
|
444 | 0 | if (!Utilities.isEmpty(groupName) && !Utilities.isEmpty(groupNamespace)) { |
445 | 0 | Group group = KIMServiceLocator.getIdentityManagementService().getGroupByName(groupNamespace, groupName); |
446 | 0 | if (group == null) { |
447 | 0 | String attributeLabel = getDataDictionaryService().getAttributeLabel(getBusinessObjectClass(), GROUP_REVIEWER_NAMESPACE_PROPERTY_NAME) + ":" + getDataDictionaryService().getAttributeLabel(getBusinessObjectClass(), GROUP_REVIEWER_NAME_PROPERTY_NAME); |
448 | 0 | GlobalVariables.getMessageMap().putError(GROUP_REVIEWER_NAME_PROPERTY_NAME, RiceKeyConstants.ERROR_CUSTOM, INVALID_WORKGROUP_ERROR); |
449 | |
} |
450 | |
} |
451 | |
|
452 | 0 | if (!Utilities.isEmpty(principalName)) { |
453 | 0 | Person person = KIMServiceLocator.getPersonService().getPersonByPrincipalName(principalName); |
454 | 0 | if (person == null) { |
455 | 0 | String attributeLabel = getDataDictionaryService().getAttributeLabel(getBusinessObjectClass(), PERSON_REVIEWER_PROPERTY_NAME) + ":" + getDataDictionaryService().getAttributeLabel(getBusinessObjectClass(), PERSON_REVIEWER_PROPERTY_NAME); |
456 | 0 | GlobalVariables.getMessageMap().putError(PERSON_REVIEWER_PROPERTY_NAME, RiceKeyConstants.ERROR_CUSTOM, INVALID_PERSON_ERROR); |
457 | |
} |
458 | |
} |
459 | 0 | if (!GlobalVariables.getMessageMap().isEmpty()) { |
460 | 0 | throw new ValidationException("errors in search criteria"); |
461 | |
} |
462 | 0 | } |
463 | |
|
464 | |
@Override |
465 | |
public Collection performLookup(LookupForm lookupForm, |
466 | |
Collection resultTable, boolean bounded) { |
467 | |
|
468 | |
|
469 | 0 | setBackLocation((String) lookupForm.getFieldsForLookup().get(KNSConstants.BACK_LOCATION)); |
470 | 0 | setDocFormKey((String) lookupForm.getFieldsForLookup().get(KNSConstants.DOC_FORM_KEY)); |
471 | |
Collection displayList; |
472 | |
|
473 | |
|
474 | 0 | if (bounded) { |
475 | 0 | displayList = getSearchResults(lookupForm.getFieldsForLookup()); |
476 | |
} |
477 | |
else { |
478 | 0 | displayList = getSearchResultsUnbounded(lookupForm.getFieldsForLookup()); |
479 | |
} |
480 | |
|
481 | 0 | HashMap<String,Class> propertyTypes = new HashMap<String, Class>(); |
482 | |
|
483 | 0 | boolean hasReturnableRow = false; |
484 | |
|
485 | 0 | List returnKeys = getReturnKeys(); |
486 | 0 | List pkNames = getBusinessObjectMetaDataService().listPrimaryKeyFieldNames(getBusinessObjectClass()); |
487 | 0 | Person user = GlobalVariables.getUserSession().getPerson(); |
488 | |
|
489 | |
|
490 | 0 | for (Iterator iter = displayList.iterator(); iter.hasNext();) { |
491 | 0 | BusinessObject element = (BusinessObject) iter.next(); |
492 | 0 | if(element instanceof PersistableBusinessObject){ |
493 | 0 | lookupForm.setLookupObjectId(((PersistableBusinessObject)element).getObjectId()); |
494 | |
} |
495 | |
|
496 | 0 | BusinessObjectRestrictions businessObjectRestrictions = getBusinessObjectAuthorizationService().getLookupResultRestrictions(element, user); |
497 | |
|
498 | 0 | HtmlData returnUrl = getReturnUrl(element, lookupForm, returnKeys, businessObjectRestrictions); |
499 | |
|
500 | 0 | String actionUrls = getActionUrls(element, pkNames, businessObjectRestrictions); |
501 | |
|
502 | 0 | if("".equals(actionUrls)){ |
503 | 0 | actionUrls = ACTION_URLS_EMPTY; |
504 | |
} |
505 | |
|
506 | |
|
507 | 0 | boolean isRuleDelegation = (element instanceof RuleBaseValues && ((RuleBaseValues) element).getDelegateRule().booleanValue()); |
508 | |
|
509 | 0 | List<Column> columns = getColumns(); |
510 | 0 | for (Iterator iterator = columns.iterator(); iterator.hasNext();) { |
511 | |
|
512 | 0 | Column col = (Column) iterator.next(); |
513 | 0 | Formatter formatter = col.getFormatter(); |
514 | |
|
515 | |
|
516 | 0 | String propValue = KNSConstants.EMPTY_STRING; |
517 | 0 | Object prop = null; |
518 | 0 | boolean skipPropTypeCheck = false; |
519 | |
|
520 | 0 | if (element instanceof RuleBaseValues) { |
521 | 0 | prop = ((RuleBaseValues)element).getFieldValues().get(col.getPropertyName()); |
522 | 0 | skipPropTypeCheck = true; |
523 | |
} |
524 | 0 | if (prop == null) { |
525 | 0 | prop = ObjectUtils.getPropertyValue(element, col.getPropertyName()); |
526 | |
} |
527 | |
|
528 | |
|
529 | 0 | Class propClass = propertyTypes.get(col.getPropertyName()); |
530 | 0 | if ( propClass == null && !skipPropTypeCheck) { |
531 | |
try { |
532 | 0 | propClass = ObjectUtils.getPropertyType( element, col.getPropertyName(), getPersistenceStructureService() ); |
533 | 0 | propertyTypes.put( col.getPropertyName(), propClass ); |
534 | 0 | } catch (Exception e) { |
535 | 0 | throw new RuntimeException("Cannot access PropertyType for property " + "'" + col.getPropertyName() + "' " + " on an instance of '" + element.getClass().getName() + "'.", e); |
536 | 0 | } |
537 | |
} |
538 | |
|
539 | |
|
540 | 0 | if (prop != null) { |
541 | |
|
542 | 0 | if (prop instanceof Boolean) { |
543 | 0 | formatter = new BooleanFormatter(); |
544 | |
} |
545 | |
|
546 | |
|
547 | 0 | if (prop instanceof Date) { |
548 | 0 | formatter = new DateFormatter(); |
549 | |
} |
550 | |
|
551 | |
|
552 | 0 | if (prop instanceof Collection && formatter == null) { |
553 | 0 | formatter = new CollectionFormatter(); |
554 | |
} |
555 | |
|
556 | 0 | if (formatter != null) { |
557 | 0 | propValue = (String) formatter.format(prop); |
558 | |
} |
559 | |
else { |
560 | 0 | propValue = prop.toString(); |
561 | |
} |
562 | |
} |
563 | |
|
564 | |
|
565 | 0 | col.setComparator(CellComparatorHelper.getAppropriateComparatorForPropertyClass(propClass)); |
566 | 0 | col.setValueComparator(CellComparatorHelper.getAppropriateValueComparatorForPropertyClass(propClass)); |
567 | |
|
568 | 0 | propValue = maskValueIfNecessary(element.getClass(), col.getPropertyName(), propValue, businessObjectRestrictions); |
569 | |
|
570 | 0 | col.setPropertyValue(propValue); |
571 | |
|
572 | 0 | if (StringUtils.isNotBlank(propValue)) { |
573 | 0 | if (RULE_ID_PROPERTY_NAME.equals(col.getPropertyName()) && isRuleDelegation) { |
574 | |
|
575 | 0 | List<?> delegationList = KEWServiceLocator.getRuleDelegationService().findByDelegateRuleId( |
576 | |
((RuleBaseValues) element).getRuleBaseValuesId()); |
577 | 0 | if (ObjectUtils.isNotNull(delegationList) && !delegationList.isEmpty()) { |
578 | 0 | BusinessObject ruleDelegation = (BusinessObject) delegationList.get(0); |
579 | 0 | col.setColumnAnchor(getInquiryUrl(ruleDelegation, "ruleDelegationId")); |
580 | 0 | } else { |
581 | 0 | col.setColumnAnchor(getInquiryUrl(element, col.getPropertyName())); |
582 | |
} |
583 | 0 | }else { |
584 | 0 | col.setColumnAnchor(getInquiryUrl(element, col.getPropertyName())); |
585 | |
} |
586 | |
|
587 | |
} |
588 | 0 | } |
589 | |
|
590 | 0 | ResultRow row = new ResultRow(columns, returnUrl.constructCompleteHtmlTag(), actionUrls); |
591 | 0 | row.setRowId(returnUrl.getName()); |
592 | 0 | row.setReturnUrlHtmlData(returnUrl); |
593 | |
|
594 | |
|
595 | 0 | if (getBusinessObjectDictionaryService().isExportable(getBusinessObjectClass())) { |
596 | 0 | row.setBusinessObject(element); |
597 | |
} |
598 | 0 | if(element instanceof PersistableBusinessObject){ |
599 | 0 | row.setObjectId((((PersistableBusinessObject)element).getObjectId())); |
600 | |
} |
601 | |
|
602 | |
|
603 | 0 | boolean rowReturnable = isResultReturnable(element); |
604 | 0 | row.setRowReturnable(rowReturnable); |
605 | 0 | if (rowReturnable) { |
606 | 0 | hasReturnableRow = true; |
607 | |
} |
608 | 0 | resultTable.add(row); |
609 | 0 | } |
610 | |
|
611 | 0 | lookupForm.setHasReturnableRow(hasReturnableRow); |
612 | |
|
613 | 0 | return displayList; |
614 | |
} |
615 | |
|
616 | |
@Override |
617 | |
public List<Column> getColumns() { |
618 | 0 | List<Column> columns = super.getColumns(); |
619 | 0 | for (Row row : rows) { |
620 | 0 | for (Field field : row.getFields()) { |
621 | 0 | Column newColumn = new Column(); |
622 | 0 | newColumn.setColumnTitle(field.getFieldLabel()); |
623 | 0 | newColumn.setMaxLength(field.getMaxLength()); |
624 | 0 | newColumn.setPropertyName(field.getPropertyName()); |
625 | 0 | columns.add(newColumn); |
626 | 0 | } |
627 | |
} |
628 | 0 | return columns; |
629 | |
} |
630 | |
|
631 | |
@Override |
632 | |
public List<HtmlData> getCustomActionUrls(BusinessObject businessObject, |
633 | |
List pkNames) { |
634 | 0 | RuleBaseValues ruleBaseValues = (RuleBaseValues)businessObject; |
635 | 0 | List<HtmlData> htmlDataList = new ArrayList<HtmlData>(); |
636 | 0 | if (StringUtils.isNotBlank(ruleBaseValues.getRuleTemplateName()) && StringUtils.isNotBlank(getMaintenanceDocumentTypeName())) { |
637 | 0 | if (ruleBaseValues.getDelegateRule().booleanValue()) { |
638 | |
|
639 | 0 | List<?> delegationList = KEWServiceLocator.getRuleDelegationService().findByDelegateRuleId(ruleBaseValues.getRuleBaseValuesId()); |
640 | 0 | if (ObjectUtils.isNotNull(delegationList) && !delegationList.isEmpty()) { |
641 | 0 | BusinessObject ruleDelegation = (BusinessObject) delegationList.get(0); |
642 | |
|
643 | 0 | if (ruleDelegationLookupableHelperService == null) { |
644 | 0 | ruleDelegationLookupableHelperService = KNSServiceLocator.getLookupable( |
645 | |
KNSServiceLocator.getBusinessObjectDictionaryService().getLookupableID( |
646 | |
ruleDelegation.getClass())).getLookupableHelperService(); |
647 | 0 | if (ruleDelegationLookupableHelperService.getBusinessObjectClass() == null) { |
648 | 0 | ruleDelegationLookupableHelperService.setBusinessObjectClass(ruleDelegation.getClass()); |
649 | |
} |
650 | 0 | delegationPkNames = getBusinessObjectMetaDataService().listPrimaryKeyFieldNames(ruleDelegation.getClass()); |
651 | |
} |
652 | |
|
653 | 0 | htmlDataList = ruleDelegationLookupableHelperService.getCustomActionUrls(ruleDelegation, delegationPkNames); |
654 | |
} |
655 | 0 | } else { |
656 | |
|
657 | 0 | if (allowsMaintenanceEditAction(businessObject)) { |
658 | 0 | htmlDataList.add(getUrlData(businessObject, KNSConstants.MAINTENANCE_EDIT_METHOD_TO_CALL, pkNames)); |
659 | |
} |
660 | 0 | if (allowsMaintenanceNewOrCopyAction()) { |
661 | 0 | htmlDataList.add(getUrlData(businessObject, KNSConstants.MAINTENANCE_COPY_METHOD_TO_CALL, pkNames)); |
662 | |
} |
663 | |
} |
664 | |
} |
665 | |
|
666 | 0 | return htmlDataList; |
667 | |
} |
668 | |
|
669 | |
|
670 | |
|
671 | |
} |