1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
|
17 | |
package org.kuali.rice.kns.maintenance.rules; |
18 | |
|
19 | |
import org.apache.commons.lang.StringUtils; |
20 | |
import org.kuali.rice.core.api.datetime.DateTimeService; |
21 | |
import org.kuali.rice.core.api.config.property.ConfigurationService; |
22 | |
import org.kuali.rice.core.api.services.CoreApiServiceLocator; |
23 | |
import org.kuali.rice.core.util.RiceKeyConstants; |
24 | |
import org.kuali.rice.core.web.format.Formatter; |
25 | |
import org.kuali.rice.kim.service.KIMServiceLocator; |
26 | |
import org.kuali.rice.kim.service.RoleService; |
27 | |
import org.kuali.rice.kns.bo.GlobalBusinessObject; |
28 | |
import org.kuali.rice.kns.bo.Inactivateable; |
29 | |
import org.kuali.rice.kns.bo.PersistableBusinessObject; |
30 | |
import org.kuali.rice.kns.datadictionary.InactivationBlockingMetadata; |
31 | |
import org.kuali.rice.kns.document.Document; |
32 | |
import org.kuali.rice.kns.document.MaintenanceDocument; |
33 | |
import org.kuali.rice.kns.document.authorization.MaintenanceDocumentAuthorizer; |
34 | |
import org.kuali.rice.kns.exception.ValidationException; |
35 | |
import org.kuali.rice.kns.maintenance.Maintainable; |
36 | |
import org.kuali.rice.kns.rule.AddCollectionLineRule; |
37 | |
import org.kuali.rice.kns.rule.event.ApproveDocumentEvent; |
38 | |
import org.kuali.rice.kns.rules.DocumentRuleBase; |
39 | |
import org.kuali.rice.kns.rules.MaintenanceDocumentRule; |
40 | |
import org.kuali.rice.kns.service.BusinessObjectAuthorizationService; |
41 | |
import org.kuali.rice.kns.service.BusinessObjectDictionaryService; |
42 | |
import org.kuali.rice.kns.service.BusinessObjectService; |
43 | |
import org.kuali.rice.kns.service.DataDictionaryService; |
44 | |
import org.kuali.rice.kns.service.DictionaryValidationService; |
45 | |
import org.kuali.rice.kns.service.DocumentHelperService; |
46 | |
import org.kuali.rice.kns.service.InactivationBlockingDetectionService; |
47 | |
import org.kuali.rice.kns.service.KNSServiceLocator; |
48 | |
import org.kuali.rice.kns.service.KNSServiceLocatorWeb; |
49 | |
import org.kuali.rice.kns.service.MaintenanceDocumentDictionaryService; |
50 | |
import org.kuali.rice.kns.service.PersistenceService; |
51 | |
import org.kuali.rice.kns.service.PersistenceStructureService; |
52 | |
import org.kuali.rice.kns.util.ErrorMessage; |
53 | |
import org.kuali.rice.kns.util.ForeignKeyFieldsPopulationState; |
54 | |
import org.kuali.rice.kns.util.GlobalVariables; |
55 | |
import org.kuali.rice.kns.util.KNSConstants; |
56 | |
import org.kuali.rice.kns.util.KNSPropertyConstants; |
57 | |
import org.kuali.rice.kns.util.MessageMap; |
58 | |
import org.kuali.rice.kns.util.ObjectUtils; |
59 | |
import org.kuali.rice.kns.util.UrlFactory; |
60 | |
import org.kuali.rice.kns.workflow.service.KualiWorkflowDocument; |
61 | |
import org.kuali.rice.kns.workflow.service.WorkflowDocumentService; |
62 | |
import org.springframework.util.AutoPopulatingList; |
63 | |
|
64 | |
import java.security.GeneralSecurityException; |
65 | |
import java.util.ArrayList; |
66 | |
import java.util.Collection; |
67 | |
import java.util.Iterator; |
68 | |
import java.util.List; |
69 | |
import java.util.Map; |
70 | |
import java.util.Properties; |
71 | |
import java.util.Set; |
72 | |
|
73 | |
|
74 | |
|
75 | |
|
76 | |
|
77 | |
|
78 | |
|
79 | |
public class MaintenanceDocumentRuleBase extends DocumentRuleBase implements MaintenanceDocumentRule, AddCollectionLineRule { |
80 | 0 | protected static org.apache.log4j.Logger LOG = org.apache.log4j.Logger.getLogger(MaintenanceDocumentRuleBase.class); |
81 | |
|
82 | |
|
83 | |
|
84 | |
|
85 | |
|
86 | |
public static final String MAINTAINABLE_ERROR_PREFIX = KNSConstants.MAINTENANCE_NEW_MAINTAINABLE; |
87 | |
public static final String DOCUMENT_ERROR_PREFIX = "document."; |
88 | |
public static final String MAINTAINABLE_ERROR_PATH = DOCUMENT_ERROR_PREFIX + "newMaintainableObject"; |
89 | |
|
90 | |
protected PersistenceStructureService persistenceStructureService; |
91 | |
protected PersistenceService persistenceService; |
92 | |
protected DataDictionaryService ddService; |
93 | |
protected DocumentHelperService documentHelperService; |
94 | |
protected BusinessObjectService boService; |
95 | |
protected BusinessObjectDictionaryService boDictionaryService; |
96 | |
protected DictionaryValidationService dictionaryValidationService; |
97 | |
protected ConfigurationService configService; |
98 | |
protected MaintenanceDocumentDictionaryService maintDocDictionaryService; |
99 | |
protected WorkflowDocumentService workflowDocumentService; |
100 | |
protected org.kuali.rice.kim.service.PersonService personService; |
101 | |
protected RoleService roleService; |
102 | |
protected BusinessObjectAuthorizationService businessObjectAuthorizationService; |
103 | |
|
104 | |
private PersistableBusinessObject oldBo; |
105 | |
private PersistableBusinessObject newBo; |
106 | |
private Class boClass; |
107 | |
|
108 | |
protected List priorErrorPath; |
109 | |
|
110 | |
|
111 | |
|
112 | |
|
113 | |
|
114 | |
|
115 | 0 | public MaintenanceDocumentRuleBase() { |
116 | |
|
117 | 0 | priorErrorPath = new ArrayList(); |
118 | |
|
119 | |
|
120 | |
|
121 | |
|
122 | |
|
123 | |
|
124 | |
|
125 | |
try { |
126 | 0 | this.setPersistenceStructureService(KNSServiceLocator.getPersistenceStructureService()); |
127 | 0 | this.setDdService(KNSServiceLocatorWeb.getDataDictionaryService()); |
128 | 0 | this.setPersistenceService(KNSServiceLocator.getPersistenceService()); |
129 | 0 | this.setBoService(KNSServiceLocator.getBusinessObjectService()); |
130 | 0 | this.setBoDictionaryService(KNSServiceLocatorWeb.getBusinessObjectDictionaryService()); |
131 | 0 | this.setDictionaryValidationService(KNSServiceLocatorWeb.getDictionaryValidationService()); |
132 | 0 | this.setConfigService(KNSServiceLocator.getKualiConfigurationService()); |
133 | 0 | this.setDocumentHelperService(KNSServiceLocatorWeb.getDocumentHelperService()); |
134 | 0 | this.setMaintDocDictionaryService(KNSServiceLocatorWeb.getMaintenanceDocumentDictionaryService()); |
135 | 0 | this.setWorkflowDocumentService(KNSServiceLocatorWeb.getWorkflowDocumentService()); |
136 | 0 | this.setPersonService( KIMServiceLocator.getPersonService() ); |
137 | 0 | this.setBusinessObjectAuthorizationService(KNSServiceLocatorWeb.getBusinessObjectAuthorizationService()); |
138 | 0 | } catch ( Exception ex ) { |
139 | |
|
140 | 0 | } |
141 | 0 | } |
142 | |
|
143 | |
|
144 | |
|
145 | |
|
146 | |
@Override |
147 | |
public boolean processSaveDocument(Document document) { |
148 | |
|
149 | 0 | MaintenanceDocument maintenanceDocument = (MaintenanceDocument) document; |
150 | |
|
151 | |
|
152 | |
|
153 | 0 | clearErrorPath(); |
154 | |
|
155 | |
|
156 | 0 | setupBaseConvenienceObjects(maintenanceDocument); |
157 | |
|
158 | |
|
159 | |
|
160 | |
|
161 | |
|
162 | 0 | if (!isDocumentValidForSave(maintenanceDocument)) { |
163 | 0 | resumeErrorPath(); |
164 | 0 | return false; |
165 | |
} |
166 | |
|
167 | |
|
168 | |
|
169 | |
|
170 | 0 | processCustomSaveDocumentBusinessRules(maintenanceDocument); |
171 | |
|
172 | |
|
173 | 0 | resumeErrorPath(); |
174 | |
|
175 | |
|
176 | |
|
177 | 0 | return true; |
178 | |
} |
179 | |
|
180 | |
|
181 | |
|
182 | |
|
183 | |
@Override |
184 | |
public boolean processRouteDocument(Document document) { |
185 | 0 | LOG.info("processRouteDocument called"); |
186 | |
|
187 | 0 | MaintenanceDocument maintenanceDocument = (MaintenanceDocument) document; |
188 | |
|
189 | |
|
190 | 0 | MaintenanceDocumentAuthorizer documentAuthorizer = (MaintenanceDocumentAuthorizer) getDocumentHelperService().getDocumentAuthorizer(document); |
191 | |
|
192 | |
|
193 | |
|
194 | 0 | clearErrorPath(); |
195 | |
|
196 | |
|
197 | 0 | setupBaseConvenienceObjects(maintenanceDocument); |
198 | |
|
199 | |
|
200 | 0 | processGlobalSaveDocumentBusinessRules(maintenanceDocument); |
201 | |
|
202 | |
|
203 | |
|
204 | 0 | boolean success = true; |
205 | |
|
206 | 0 | KualiWorkflowDocument workflowDocument = document.getDocumentHeader().getWorkflowDocument(); |
207 | 0 | if (workflowDocument.stateIsInitiated() || workflowDocument.stateIsSaved()){ |
208 | 0 | success &= documentAuthorizer.canCreateOrMaintain((MaintenanceDocument)document, GlobalVariables.getUserSession().getPerson()); |
209 | 0 | if (success == false) { |
210 | 0 | GlobalVariables.getMessageMap().putError(KNSConstants.DOCUMENT_ERRORS, RiceKeyConstants.AUTHORIZATION_ERROR_DOCUMENT, new String[]{GlobalVariables.getUserSession().getPerson().getPrincipalName(), "Create/Maintain", this.getMaintDocDictionaryService().getDocumentTypeName(newBo.getClass())}); |
211 | |
} |
212 | |
} |
213 | |
|
214 | 0 | success &= processGlobalRouteDocumentBusinessRules(maintenanceDocument); |
215 | |
|
216 | |
|
217 | |
|
218 | |
|
219 | 0 | success &= processCustomRouteDocumentBusinessRules(maintenanceDocument); |
220 | |
|
221 | 0 | success &= processInactivationBlockChecking(maintenanceDocument); |
222 | |
|
223 | |
|
224 | |
|
225 | 0 | resumeErrorPath(); |
226 | |
|
227 | 0 | return success; |
228 | |
} |
229 | |
|
230 | |
|
231 | |
|
232 | |
|
233 | |
|
234 | |
|
235 | |
|
236 | |
protected boolean isDocumentInactivatingBusinessObject(MaintenanceDocument maintenanceDocument) { |
237 | 0 | if (maintenanceDocument.isEdit()) { |
238 | 0 | Class boClass = maintenanceDocument.getNewMaintainableObject().getBoClass(); |
239 | |
|
240 | 0 | if (boClass != null && Inactivateable.class.isAssignableFrom(boClass)) { |
241 | 0 | Inactivateable oldInactivateableBO = (Inactivateable) oldBo; |
242 | 0 | Inactivateable newInactivateableBO = (Inactivateable) newBo; |
243 | |
|
244 | 0 | return oldInactivateableBO.isActive() && !newInactivateableBO.isActive(); |
245 | |
} |
246 | |
} |
247 | 0 | return false; |
248 | |
} |
249 | |
|
250 | |
|
251 | |
|
252 | |
|
253 | |
|
254 | |
|
255 | |
|
256 | |
protected boolean processInactivationBlockChecking(MaintenanceDocument maintenanceDocument) { |
257 | 0 | if (isDocumentInactivatingBusinessObject(maintenanceDocument)) { |
258 | 0 | Class boClass = maintenanceDocument.getNewMaintainableObject().getBoClass(); |
259 | 0 | Set<InactivationBlockingMetadata> inactivationBlockingMetadatas = ddService.getAllInactivationBlockingDefinitions(boClass); |
260 | |
|
261 | 0 | if (inactivationBlockingMetadatas != null) { |
262 | 0 | for (InactivationBlockingMetadata inactivationBlockingMetadata : inactivationBlockingMetadatas) { |
263 | |
|
264 | |
|
265 | |
|
266 | 0 | if (!processInactivationBlockChecking(maintenanceDocument, inactivationBlockingMetadata)) { |
267 | 0 | return false; |
268 | |
} |
269 | |
} |
270 | |
} |
271 | |
} |
272 | 0 | return true; |
273 | |
} |
274 | |
|
275 | |
|
276 | |
|
277 | |
|
278 | |
|
279 | |
|
280 | |
|
281 | |
|
282 | |
|
283 | |
protected boolean processInactivationBlockChecking(MaintenanceDocument maintenanceDocument, InactivationBlockingMetadata inactivationBlockingMetadata) { |
284 | |
|
285 | 0 | String inactivationBlockingDetectionServiceBeanName = inactivationBlockingMetadata.getInactivationBlockingDetectionServiceBeanName(); |
286 | 0 | if (StringUtils.isBlank(inactivationBlockingDetectionServiceBeanName)) { |
287 | 0 | inactivationBlockingDetectionServiceBeanName = KNSServiceLocatorWeb.DEFAULT_INACTIVATION_BLOCKING_DETECTION_SERVICE; |
288 | |
} |
289 | 0 | InactivationBlockingDetectionService inactivationBlockingDetectionService = KNSServiceLocatorWeb.getInactivationBlockingDetectionService(inactivationBlockingDetectionServiceBeanName); |
290 | |
|
291 | 0 | boolean foundBlockingRecord = inactivationBlockingDetectionService.hasABlockingRecord(newBo, inactivationBlockingMetadata); |
292 | |
|
293 | 0 | if (foundBlockingRecord) { |
294 | 0 | putInactivationBlockingErrorOnPage(maintenanceDocument, inactivationBlockingMetadata); |
295 | |
} |
296 | |
|
297 | 0 | return !foundBlockingRecord; |
298 | |
} |
299 | |
|
300 | |
|
301 | |
|
302 | |
|
303 | |
|
304 | |
|
305 | |
|
306 | |
protected void putInactivationBlockingErrorOnPage(MaintenanceDocument document, InactivationBlockingMetadata inactivationBlockingMetadata) { |
307 | 0 | if (!persistenceStructureService.hasPrimaryKeyFieldValues(newBo)) { |
308 | 0 | throw new RuntimeException("Maintenance document did not have all primary key values filled in."); |
309 | |
} |
310 | 0 | Map fieldValues = persistenceService.getPrimaryKeyFieldValues(newBo); |
311 | 0 | Properties parameters = new Properties(); |
312 | 0 | parameters.put(KNSConstants.BUSINESS_OBJECT_CLASS_ATTRIBUTE, inactivationBlockingMetadata.getBlockedBusinessObjectClass().getName()); |
313 | 0 | parameters.put(KNSConstants.DISPATCH_REQUEST_PARAMETER, KNSConstants.METHOD_DISPLAY_ALL_INACTIVATION_BLOCKERS); |
314 | |
|
315 | 0 | List keys = new ArrayList(); |
316 | 0 | if (getPersistenceStructureService().isPersistable(newBo.getClass())) { |
317 | 0 | keys = getPersistenceStructureService().listPrimaryKeyFieldNames(newBo.getClass()); |
318 | |
} |
319 | |
|
320 | |
|
321 | 0 | String keyName = null; |
322 | 0 | for (Iterator iter = keys.iterator(); iter.hasNext();) { |
323 | 0 | keyName = (String) iter.next(); |
324 | |
|
325 | 0 | Object keyValue = null; |
326 | 0 | if (keyName != null) { |
327 | 0 | keyValue = ObjectUtils.getPropertyValue(newBo, keyName); |
328 | |
} |
329 | |
|
330 | 0 | if (keyValue == null) { |
331 | 0 | keyValue = ""; |
332 | 0 | } else if (keyValue instanceof java.sql.Date) { |
333 | 0 | if (Formatter.findFormatter(keyValue.getClass()) != null) { |
334 | 0 | Formatter formatter = Formatter.getFormatter(keyValue.getClass()); |
335 | 0 | keyValue = (String) formatter.format(keyValue); |
336 | 0 | } |
337 | |
} else { |
338 | 0 | keyValue = keyValue.toString(); |
339 | |
} |
340 | |
|
341 | |
|
342 | 0 | if (businessObjectAuthorizationService.attributeValueNeedsToBeEncryptedOnFormsAndLinks(inactivationBlockingMetadata.getBlockedBusinessObjectClass(), keyName)) { |
343 | |
try { |
344 | 0 | keyValue = CoreApiServiceLocator.getEncryptionService().encrypt(keyValue); |
345 | |
} |
346 | 0 | catch (GeneralSecurityException e) { |
347 | 0 | LOG.error("Exception while trying to encrypted value for inquiry framework.", e); |
348 | 0 | throw new RuntimeException(e); |
349 | 0 | } |
350 | |
} |
351 | |
|
352 | 0 | parameters.put(keyName, keyValue); |
353 | 0 | } |
354 | |
|
355 | 0 | String blockingUrl = UrlFactory.parameterizeUrl(KNSConstants.DISPLAY_ALL_INACTIVATION_BLOCKERS_ACTION, parameters); |
356 | |
|
357 | |
|
358 | 0 | GlobalVariables.getMessageMap().putError(KNSConstants.GLOBAL_ERRORS, RiceKeyConstants.ERROR_INACTIVATION_BLOCKED, blockingUrl); |
359 | 0 | } |
360 | |
|
361 | |
|
362 | |
|
363 | |
|
364 | |
@Override |
365 | |
public boolean processApproveDocument(ApproveDocumentEvent approveEvent) { |
366 | |
|
367 | 0 | MaintenanceDocument maintenanceDocument = (MaintenanceDocument) approveEvent.getDocument(); |
368 | |
|
369 | |
|
370 | |
|
371 | 0 | clearErrorPath(); |
372 | |
|
373 | |
|
374 | 0 | setupBaseConvenienceObjects(maintenanceDocument); |
375 | |
|
376 | |
|
377 | 0 | processGlobalSaveDocumentBusinessRules(maintenanceDocument); |
378 | |
|
379 | |
|
380 | |
|
381 | 0 | boolean success = true; |
382 | |
|
383 | |
|
384 | 0 | success &= processGlobalApproveDocumentBusinessRules(maintenanceDocument); |
385 | |
|
386 | |
|
387 | |
|
388 | |
|
389 | 0 | success &= processCustomApproveDocumentBusinessRules(maintenanceDocument); |
390 | |
|
391 | |
|
392 | |
|
393 | 0 | resumeErrorPath(); |
394 | |
|
395 | 0 | return success; |
396 | |
} |
397 | |
|
398 | |
|
399 | |
|
400 | |
|
401 | |
|
402 | |
|
403 | |
|
404 | |
|
405 | |
|
406 | |
protected void putGlobalError(String errorConstant) { |
407 | 0 | if (!errorAlreadyExists(KNSConstants.DOCUMENT_ERRORS, errorConstant)) { |
408 | 0 | GlobalVariables.getMessageMap().putErrorWithoutFullErrorPath(KNSConstants.DOCUMENT_ERRORS, errorConstant); |
409 | |
} |
410 | 0 | } |
411 | |
|
412 | |
|
413 | |
|
414 | |
|
415 | |
|
416 | |
|
417 | |
|
418 | |
|
419 | |
|
420 | |
|
421 | |
protected void putGlobalError(String errorConstant, String parameter) { |
422 | 0 | if (!errorAlreadyExists(KNSConstants.DOCUMENT_ERRORS, errorConstant)) { |
423 | 0 | GlobalVariables.getMessageMap().putErrorWithoutFullErrorPath(KNSConstants.DOCUMENT_ERRORS, errorConstant, parameter); |
424 | |
} |
425 | 0 | } |
426 | |
|
427 | |
|
428 | |
|
429 | |
|
430 | |
|
431 | |
|
432 | |
|
433 | |
|
434 | |
|
435 | |
|
436 | |
protected void putGlobalError(String errorConstant, String[] parameters) { |
437 | 0 | if (!errorAlreadyExists(KNSConstants.DOCUMENT_ERRORS, errorConstant)) { |
438 | 0 | GlobalVariables.getMessageMap().putErrorWithoutFullErrorPath(KNSConstants.DOCUMENT_ERRORS, errorConstant, parameters); |
439 | |
} |
440 | 0 | } |
441 | |
|
442 | |
|
443 | |
|
444 | |
|
445 | |
|
446 | |
|
447 | |
|
448 | |
|
449 | |
|
450 | |
|
451 | |
|
452 | |
protected void putFieldError(String propertyName, String errorConstant) { |
453 | 0 | if (!errorAlreadyExists(MAINTAINABLE_ERROR_PREFIX + propertyName, errorConstant)) { |
454 | 0 | GlobalVariables.getMessageMap().putErrorWithoutFullErrorPath(MAINTAINABLE_ERROR_PREFIX + propertyName, errorConstant); |
455 | |
} |
456 | 0 | } |
457 | |
|
458 | |
|
459 | |
|
460 | |
|
461 | |
|
462 | |
|
463 | |
|
464 | |
|
465 | |
|
466 | |
|
467 | |
|
468 | |
|
469 | |
|
470 | |
protected void putFieldError(String propertyName, String errorConstant, String parameter) { |
471 | 0 | if (!errorAlreadyExists(MAINTAINABLE_ERROR_PREFIX + propertyName, errorConstant)) { |
472 | 0 | GlobalVariables.getMessageMap().putErrorWithoutFullErrorPath(MAINTAINABLE_ERROR_PREFIX + propertyName, errorConstant, parameter); |
473 | |
} |
474 | 0 | } |
475 | |
|
476 | |
|
477 | |
|
478 | |
|
479 | |
|
480 | |
|
481 | |
|
482 | |
|
483 | |
|
484 | |
|
485 | |
|
486 | |
|
487 | |
|
488 | |
protected void putFieldError(String propertyName, String errorConstant, String[] parameters) { |
489 | 0 | if (!errorAlreadyExists(MAINTAINABLE_ERROR_PREFIX + propertyName, errorConstant)) { |
490 | 0 | GlobalVariables.getMessageMap().putErrorWithoutFullErrorPath(MAINTAINABLE_ERROR_PREFIX + propertyName, errorConstant, parameters); |
491 | |
} |
492 | 0 | } |
493 | |
|
494 | |
|
495 | |
|
496 | |
|
497 | |
|
498 | |
|
499 | |
|
500 | |
|
501 | |
protected void putFieldErrorWithShortLabel(String propertyName, String errorConstant) { |
502 | 0 | String shortLabel = ddService.getAttributeShortLabel(boClass, propertyName); |
503 | 0 | putFieldError(propertyName, errorConstant, shortLabel); |
504 | 0 | } |
505 | |
|
506 | |
|
507 | |
|
508 | |
|
509 | |
|
510 | |
|
511 | |
|
512 | |
|
513 | |
|
514 | |
|
515 | |
|
516 | |
|
517 | |
|
518 | |
protected void putDocumentError(String propertyName, String errorConstant, String parameter) { |
519 | 0 | if (!errorAlreadyExists(DOCUMENT_ERROR_PREFIX + propertyName, errorConstant)) { |
520 | 0 | GlobalVariables.getMessageMap().putError(DOCUMENT_ERROR_PREFIX + propertyName, errorConstant, parameter); |
521 | |
} |
522 | 0 | } |
523 | |
|
524 | |
|
525 | |
|
526 | |
|
527 | |
|
528 | |
|
529 | |
|
530 | |
|
531 | |
|
532 | |
|
533 | |
|
534 | |
|
535 | |
|
536 | |
protected void putDocumentError(String propertyName, String errorConstant, String[] parameters) { |
537 | 0 | GlobalVariables.getMessageMap().putError(DOCUMENT_ERROR_PREFIX + propertyName, errorConstant, parameters); |
538 | 0 | } |
539 | |
|
540 | |
|
541 | |
|
542 | |
|
543 | |
|
544 | |
|
545 | |
|
546 | |
|
547 | |
|
548 | |
|
549 | |
|
550 | |
|
551 | |
protected boolean errorAlreadyExists(String propertyName, String errorConstant) { |
552 | |
|
553 | 0 | if (GlobalVariables.getMessageMap().fieldHasMessage(propertyName, errorConstant)) { |
554 | 0 | return true; |
555 | |
} |
556 | |
else { |
557 | 0 | return false; |
558 | |
} |
559 | |
} |
560 | |
|
561 | |
|
562 | |
|
563 | |
|
564 | |
|
565 | |
|
566 | |
|
567 | |
|
568 | |
|
569 | |
protected void putGlobalsError(String propertyName, String errorConstant) { |
570 | 0 | if (!errorAlreadyExists(propertyName, errorConstant)) { |
571 | 0 | GlobalVariables.getMessageMap().putErrorWithoutFullErrorPath(propertyName, errorConstant); |
572 | |
} |
573 | 0 | } |
574 | |
|
575 | |
|
576 | |
|
577 | |
|
578 | |
|
579 | |
|
580 | |
|
581 | |
|
582 | |
|
583 | |
|
584 | |
protected void putGlobalsError(String propertyName, String errorConstant, String parameter) { |
585 | 0 | if (!errorAlreadyExists(propertyName, errorConstant)) { |
586 | 0 | GlobalVariables.getMessageMap().putErrorWithoutFullErrorPath(propertyName, errorConstant, parameter); |
587 | |
} |
588 | 0 | } |
589 | |
|
590 | |
|
591 | |
|
592 | |
|
593 | |
|
594 | |
|
595 | |
|
596 | |
|
597 | |
|
598 | |
|
599 | |
|
600 | |
protected void clearErrorPath() { |
601 | |
|
602 | |
|
603 | 0 | priorErrorPath.addAll(GlobalVariables.getMessageMap().getErrorPath()); |
604 | |
|
605 | |
|
606 | 0 | GlobalVariables.getMessageMap().getErrorPath().clear(); |
607 | |
|
608 | 0 | } |
609 | |
|
610 | |
|
611 | |
|
612 | |
|
613 | |
|
614 | |
|
615 | |
|
616 | |
|
617 | |
|
618 | |
|
619 | |
protected void resumeErrorPath() { |
620 | |
|
621 | |
|
622 | 0 | GlobalVariables.getMessageMap().getErrorPath().addAll(priorErrorPath); |
623 | 0 | } |
624 | |
|
625 | |
|
626 | |
|
627 | |
|
628 | |
|
629 | |
|
630 | |
|
631 | |
|
632 | |
protected boolean dataDictionaryValidate(MaintenanceDocument document) { |
633 | |
|
634 | 0 | LOG.debug("MaintenanceDocument validation beginning"); |
635 | |
|
636 | |
|
637 | 0 | GlobalVariables.getMessageMap().addToErrorPath("document.newMaintainableObject"); |
638 | |
|
639 | |
|
640 | 0 | Maintainable newMaintainable = document.getNewMaintainableObject(); |
641 | 0 | if (newMaintainable == null) { |
642 | 0 | GlobalVariables.getMessageMap().removeFromErrorPath("document.newMaintainableObject"); |
643 | 0 | throw new ValidationException("Maintainable object from Maintenance Document '" + document.getDocumentTitle() + "' is null, unable to proceed."); |
644 | |
} |
645 | |
|
646 | |
|
647 | 0 | PersistableBusinessObject businessObject = newMaintainable.getBusinessObject(); |
648 | 0 | if (businessObject == null) { |
649 | 0 | GlobalVariables.getMessageMap().removeFromErrorPath("document.newMaintainableObject."); |
650 | 0 | throw new ValidationException("Maintainable's component business object is null."); |
651 | |
} |
652 | |
|
653 | |
|
654 | 0 | maintDocDictionaryService.validateMaintenanceRequiredFields(document); |
655 | |
|
656 | |
|
657 | 0 | maintDocDictionaryService.validateMaintainableCollectionsForDuplicateEntries(document); |
658 | |
|
659 | |
|
660 | 0 | dictionaryValidationService.validateBusinessObjectOnMaintenanceDocument(businessObject, |
661 | |
document.getDocumentHeader().getWorkflowDocument().getDocumentType()); |
662 | |
|
663 | |
|
664 | 0 | dictionaryValidationService.validateDefaultExistenceChecks(businessObject); |
665 | |
|
666 | |
|
667 | 0 | GlobalVariables.getMessageMap().removeFromErrorPath("document.newMaintainableObject"); |
668 | |
|
669 | 0 | LOG.debug("MaintenanceDocument validation ending"); |
670 | 0 | return true; |
671 | |
} |
672 | |
|
673 | |
|
674 | |
|
675 | |
|
676 | |
|
677 | |
|
678 | |
|
679 | |
|
680 | |
|
681 | |
|
682 | |
|
683 | |
|
684 | |
|
685 | |
|
686 | |
|
687 | |
|
688 | |
|
689 | |
protected boolean primaryKeyCheck(MaintenanceDocument document) { |
690 | |
|
691 | |
|
692 | 0 | boolean success = true; |
693 | 0 | Class boClass = document.getNewMaintainableObject().getBoClass(); |
694 | |
|
695 | 0 | PersistableBusinessObject oldBo = document.getOldMaintainableObject().getBusinessObject(); |
696 | 0 | PersistableBusinessObject newBo = document.getNewMaintainableObject().getBusinessObject(); |
697 | |
|
698 | |
|
699 | |
|
700 | |
|
701 | |
|
702 | |
|
703 | 0 | if (newBo instanceof GlobalBusinessObject) { |
704 | 0 | return success; |
705 | |
} |
706 | |
|
707 | |
|
708 | |
|
709 | 0 | if (document.isEdit()) { |
710 | 0 | if (!ObjectUtils.equalByKeys(oldBo, newBo)) { |
711 | |
|
712 | |
|
713 | 0 | putDocumentError(KNSConstants.DOCUMENT_ERRORS, RiceKeyConstants.ERROR_DOCUMENT_MAINTENANCE_PRIMARY_KEYS_CHANGED_ON_EDIT, getHumanReadablePrimaryKeyFieldNames(boClass)); |
714 | 0 | success &= false; |
715 | |
} |
716 | |
} |
717 | |
|
718 | |
|
719 | |
|
720 | 0 | else if (document.isNew()) { |
721 | |
|
722 | |
|
723 | 0 | Map newPkFields = persistenceService.getPrimaryKeyFieldValues(newBo); |
724 | |
|
725 | |
|
726 | |
|
727 | |
|
728 | |
|
729 | |
|
730 | |
|
731 | 0 | PersistableBusinessObject testBo = (PersistableBusinessObject)boService.findByPrimaryKey(boClass, newPkFields); |
732 | |
|
733 | |
|
734 | |
|
735 | 0 | if (testBo != null) { |
736 | 0 | putDocumentError(KNSConstants.DOCUMENT_ERRORS, RiceKeyConstants.ERROR_DOCUMENT_MAINTENANCE_KEYS_ALREADY_EXIST_ON_CREATE_NEW, getHumanReadablePrimaryKeyFieldNames(boClass)); |
737 | 0 | success &= false; |
738 | |
} |
739 | |
} |
740 | 0 | return success; |
741 | |
} |
742 | |
|
743 | |
|
744 | |
|
745 | |
|
746 | |
|
747 | |
|
748 | |
|
749 | |
|
750 | |
protected String getHumanReadablePrimaryKeyFieldNames(Class boClass) { |
751 | |
|
752 | 0 | String delim = ""; |
753 | 0 | StringBuffer pkFieldNames = new StringBuffer(); |
754 | |
|
755 | |
|
756 | 0 | List pkFields = persistenceStructureService.getPrimaryKeys(boClass); |
757 | 0 | for (Iterator iter = pkFields.iterator(); iter.hasNext();) { |
758 | 0 | String pkFieldName = (String) iter.next(); |
759 | |
|
760 | |
|
761 | 0 | String humanReadableFieldName = ddService.getAttributeLabel(boClass, pkFieldName); |
762 | |
|
763 | |
|
764 | 0 | pkFieldNames.append(delim + humanReadableFieldName); |
765 | |
|
766 | |
|
767 | 0 | if (delim.equalsIgnoreCase("")) { |
768 | 0 | delim = ", "; |
769 | |
} |
770 | 0 | } |
771 | |
|
772 | 0 | return pkFieldNames.toString(); |
773 | |
} |
774 | |
|
775 | |
|
776 | |
|
777 | |
|
778 | |
|
779 | |
|
780 | |
|
781 | |
|
782 | |
|
783 | |
|
784 | |
|
785 | |
protected boolean processGlobalApproveDocumentBusinessRules(MaintenanceDocument document) { |
786 | 0 | return true; |
787 | |
} |
788 | |
|
789 | |
|
790 | |
|
791 | |
|
792 | |
|
793 | |
|
794 | |
|
795 | |
|
796 | |
|
797 | |
|
798 | |
|
799 | |
|
800 | |
protected boolean processGlobalRouteDocumentBusinessRules(MaintenanceDocument document) { |
801 | |
|
802 | 0 | boolean success = true; |
803 | |
|
804 | |
|
805 | 0 | success &= checkEmptyDocumentField(KNSPropertyConstants.DOCUMENT_HEADER + "." + KNSPropertyConstants.DOCUMENT_DESCRIPTION, document.getDocumentHeader().getDocumentDescription(), "Description"); |
806 | |
|
807 | 0 | return success; |
808 | |
} |
809 | |
|
810 | |
|
811 | |
|
812 | |
|
813 | |
|
814 | |
|
815 | |
|
816 | |
|
817 | |
|
818 | |
|
819 | |
|
820 | |
|
821 | |
|
822 | |
|
823 | |
|
824 | |
|
825 | |
protected boolean processGlobalSaveDocumentBusinessRules(MaintenanceDocument document) { |
826 | |
|
827 | |
|
828 | 0 | boolean success = true; |
829 | |
|
830 | |
|
831 | 0 | primaryKeyCheck(document); |
832 | |
|
833 | |
|
834 | |
|
835 | 0 | this.dataDictionaryValidate(document); |
836 | |
|
837 | 0 | return success; |
838 | |
} |
839 | |
|
840 | |
|
841 | |
|
842 | |
|
843 | |
|
844 | |
|
845 | |
|
846 | |
protected boolean processCustomSaveDocumentBusinessRules(MaintenanceDocument document) { |
847 | 0 | return true; |
848 | |
} |
849 | |
|
850 | |
|
851 | |
|
852 | |
|
853 | |
|
854 | |
|
855 | |
|
856 | |
|
857 | |
protected boolean processCustomRouteDocumentBusinessRules(MaintenanceDocument document) { |
858 | 0 | return true; |
859 | |
} |
860 | |
|
861 | |
|
862 | |
|
863 | |
|
864 | |
|
865 | |
|
866 | |
|
867 | |
protected boolean processCustomApproveDocumentBusinessRules(MaintenanceDocument document) { |
868 | 0 | return true; |
869 | |
} |
870 | |
|
871 | |
|
872 | |
|
873 | |
|
874 | |
|
875 | |
|
876 | |
|
877 | |
|
878 | |
|
879 | |
|
880 | |
|
881 | |
|
882 | |
|
883 | |
|
884 | |
|
885 | |
protected boolean isDocumentValidForSave(MaintenanceDocument maintenanceDocument) { |
886 | |
|
887 | 0 | boolean success = true; |
888 | |
|
889 | 0 | success &= super.isDocumentOverviewValid(maintenanceDocument); |
890 | 0 | success &= validateDocumentStructure((Document) maintenanceDocument); |
891 | 0 | success &= validateMaintenanceDocument(maintenanceDocument); |
892 | 0 | success &= validateGlobalBusinessObjectPersistable(maintenanceDocument); |
893 | 0 | return success; |
894 | |
} |
895 | |
|
896 | |
|
897 | |
|
898 | |
|
899 | |
|
900 | |
|
901 | |
|
902 | |
|
903 | |
|
904 | |
|
905 | |
|
906 | |
protected boolean validateDocumentStructure(Document document) { |
907 | 0 | boolean success = true; |
908 | |
|
909 | |
|
910 | 0 | String documentHeaderId = document.getDocumentNumber(); |
911 | 0 | if (documentHeaderId == null || StringUtils.isEmpty(documentHeaderId)) { |
912 | 0 | throw new ValidationException("Document has no document number, unable to proceed."); |
913 | |
} |
914 | |
|
915 | 0 | return success; |
916 | |
} |
917 | |
|
918 | |
|
919 | |
|
920 | |
|
921 | |
|
922 | |
|
923 | |
|
924 | |
|
925 | |
|
926 | |
|
927 | |
|
928 | |
|
929 | |
protected boolean validateMaintenanceDocument(MaintenanceDocument maintenanceDocument) { |
930 | 0 | boolean success = true; |
931 | 0 | Maintainable newMaintainable = maintenanceDocument.getNewMaintainableObject(); |
932 | |
|
933 | |
|
934 | 0 | if (newMaintainable == null) { |
935 | 0 | throw new ValidationException("Maintainable object from Maintenance Document '" + maintenanceDocument.getDocumentTitle() + "' is null, unable to proceed."); |
936 | |
} |
937 | |
|
938 | |
|
939 | 0 | if (newMaintainable.getBusinessObject() == null) { |
940 | 0 | throw new ValidationException("Maintainable's component business object is null."); |
941 | |
} |
942 | |
|
943 | |
|
944 | 0 | if (!PersistableBusinessObject.class.isAssignableFrom(newMaintainable.getBoClass())) { |
945 | 0 | throw new ValidationException("Maintainable's component object is not descended from BusinessObject."); |
946 | |
} |
947 | 0 | return success; |
948 | |
} |
949 | |
|
950 | |
|
951 | |
|
952 | |
|
953 | |
|
954 | |
|
955 | |
|
956 | |
|
957 | |
|
958 | |
|
959 | |
|
960 | |
|
961 | |
protected boolean validateGlobalBusinessObjectPersistable(MaintenanceDocument document) { |
962 | 0 | boolean success = true; |
963 | |
|
964 | 0 | if (document.getNewMaintainableObject() == null) { |
965 | 0 | return success; |
966 | |
} |
967 | 0 | if (document.getNewMaintainableObject().getBusinessObject() == null) { |
968 | 0 | return success; |
969 | |
} |
970 | 0 | if (!(document.getNewMaintainableObject().getBusinessObject() instanceof GlobalBusinessObject)) { |
971 | 0 | return success; |
972 | |
} |
973 | |
|
974 | 0 | PersistableBusinessObject bo = (PersistableBusinessObject) document.getNewMaintainableObject().getBusinessObject(); |
975 | 0 | GlobalBusinessObject gbo = (GlobalBusinessObject) bo; |
976 | 0 | return gbo.isPersistable(); |
977 | |
} |
978 | |
|
979 | |
|
980 | |
|
981 | |
|
982 | |
|
983 | |
|
984 | |
|
985 | |
|
986 | |
|
987 | |
|
988 | |
|
989 | |
|
990 | |
protected boolean isCorrectMaintenanceClass(MaintenanceDocument document, Class clazz) { |
991 | |
|
992 | |
|
993 | 0 | if (document == null || clazz == null) { |
994 | 0 | throw new IllegalArgumentException("Null arguments were passed in."); |
995 | |
} |
996 | |
|
997 | |
|
998 | 0 | if (clazz.toString().equals(document.getNewMaintainableObject().getBoClass().toString())) { |
999 | 0 | return true; |
1000 | |
} |
1001 | |
else { |
1002 | 0 | return false; |
1003 | |
} |
1004 | |
} |
1005 | |
|
1006 | |
|
1007 | |
|
1008 | |
|
1009 | |
|
1010 | |
|
1011 | |
|
1012 | |
|
1013 | |
|
1014 | |
|
1015 | |
|
1016 | |
|
1017 | |
|
1018 | |
|
1019 | |
protected boolean checkEmptyBOField(String propertyName, Object valueToTest, String parameter) { |
1020 | |
|
1021 | 0 | boolean success = true; |
1022 | |
|
1023 | 0 | success = checkEmptyValue(valueToTest); |
1024 | |
|
1025 | |
|
1026 | 0 | if (!success) { |
1027 | 0 | putFieldError(propertyName, RiceKeyConstants.ERROR_REQUIRED, parameter); |
1028 | |
} |
1029 | |
|
1030 | 0 | return success; |
1031 | |
} |
1032 | |
|
1033 | |
|
1034 | |
|
1035 | |
|
1036 | |
|
1037 | |
|
1038 | |
|
1039 | |
|
1040 | |
|
1041 | |
|
1042 | |
|
1043 | |
|
1044 | |
|
1045 | |
|
1046 | |
protected boolean checkEmptyDocumentField(String propertyName, Object valueToTest, String parameter) { |
1047 | 0 | boolean success = true; |
1048 | 0 | success = checkEmptyValue(valueToTest); |
1049 | 0 | if (!success) { |
1050 | 0 | putDocumentError(propertyName, RiceKeyConstants.ERROR_REQUIRED, parameter); |
1051 | |
} |
1052 | 0 | return success; |
1053 | |
} |
1054 | |
|
1055 | |
|
1056 | |
|
1057 | |
|
1058 | |
|
1059 | |
|
1060 | |
|
1061 | |
|
1062 | |
|
1063 | |
|
1064 | |
|
1065 | |
|
1066 | |
protected boolean checkEmptyValue(Object valueToTest) { |
1067 | 0 | boolean success = true; |
1068 | |
|
1069 | |
|
1070 | 0 | if (valueToTest == null) { |
1071 | 0 | success = false; |
1072 | |
} |
1073 | |
else { |
1074 | |
|
1075 | 0 | if (valueToTest instanceof String) { |
1076 | 0 | if (StringUtils.isBlank((String) valueToTest)) { |
1077 | 0 | success = false; |
1078 | |
} |
1079 | |
} |
1080 | |
} |
1081 | |
|
1082 | 0 | return success; |
1083 | |
} |
1084 | |
|
1085 | |
|
1086 | |
|
1087 | |
|
1088 | |
|
1089 | |
|
1090 | |
|
1091 | |
protected void showErrorMap() { |
1092 | |
|
1093 | 0 | if (GlobalVariables.getMessageMap().hasNoErrors()) { |
1094 | 0 | return; |
1095 | |
} |
1096 | |
|
1097 | 0 | for (Iterator i = GlobalVariables.getMessageMap().getAllPropertiesAndErrors().iterator(); i.hasNext();) { |
1098 | 0 | Map.Entry e = (Map.Entry) i.next(); |
1099 | |
|
1100 | 0 | AutoPopulatingList errorList = (AutoPopulatingList) e.getValue(); |
1101 | 0 | for (Iterator j = errorList.iterator(); j.hasNext();) { |
1102 | 0 | ErrorMessage em = (ErrorMessage) j.next(); |
1103 | |
|
1104 | 0 | if (em.getMessageParameters() == null) { |
1105 | 0 | LOG.error(e.getKey().toString() + " = " + em.getErrorKey()); |
1106 | |
} |
1107 | |
else { |
1108 | 0 | LOG.error(e.getKey().toString() + " = " + em.getErrorKey() + " : " + em.getMessageParameters().toString()); |
1109 | |
} |
1110 | 0 | } |
1111 | 0 | } |
1112 | |
|
1113 | 0 | } |
1114 | |
|
1115 | |
|
1116 | |
|
1117 | |
|
1118 | |
public void setupBaseConvenienceObjects(MaintenanceDocument document) { |
1119 | |
|
1120 | |
|
1121 | 0 | oldBo = (PersistableBusinessObject) document.getOldMaintainableObject().getBusinessObject(); |
1122 | 0 | if (oldBo != null) { |
1123 | 0 | oldBo.refreshNonUpdateableReferences(); |
1124 | |
} |
1125 | |
|
1126 | |
|
1127 | 0 | newBo = (PersistableBusinessObject) document.getNewMaintainableObject().getBusinessObject(); |
1128 | 0 | newBo.refreshNonUpdateableReferences(); |
1129 | |
|
1130 | 0 | boClass = document.getNewMaintainableObject().getBoClass(); |
1131 | |
|
1132 | |
|
1133 | 0 | setupConvenienceObjects(); |
1134 | 0 | } |
1135 | |
|
1136 | |
public void setupConvenienceObjects() { |
1137 | |
|
1138 | 0 | } |
1139 | |
|
1140 | |
|
1141 | |
|
1142 | |
|
1143 | |
|
1144 | |
|
1145 | |
|
1146 | |
|
1147 | |
|
1148 | |
|
1149 | |
|
1150 | |
|
1151 | |
|
1152 | |
protected boolean checkForPartiallyFilledOutReferenceForeignKeys(String referenceName) { |
1153 | |
|
1154 | |
boolean success; |
1155 | |
|
1156 | |
ForeignKeyFieldsPopulationState fkFieldsState; |
1157 | 0 | fkFieldsState = persistenceStructureService.getForeignKeyFieldsPopulationState(newBo, referenceName); |
1158 | |
|
1159 | |
|
1160 | 0 | if (fkFieldsState.isAnyFieldsPopulated() && !fkFieldsState.isAllFieldsPopulated()) { |
1161 | 0 | success = false; |
1162 | |
} |
1163 | |
else { |
1164 | 0 | success = true; |
1165 | |
} |
1166 | |
|
1167 | |
|
1168 | 0 | if (!success) { |
1169 | |
|
1170 | |
|
1171 | 0 | List fKeys = new ArrayList(persistenceStructureService.getForeignKeysForReference(newBo.getClass(), referenceName).keySet()); |
1172 | 0 | String fKeysReadable = consolidateFieldNames(fKeys, ", ").toString(); |
1173 | |
|
1174 | |
|
1175 | 0 | for (Iterator iter = fkFieldsState.getUnpopulatedFieldNames().iterator(); iter.hasNext();) { |
1176 | 0 | String fieldName = (String) iter.next(); |
1177 | |
|
1178 | |
|
1179 | 0 | String fieldNameReadable = ddService.getAttributeLabel(newBo.getClass(), fieldName); |
1180 | |
|
1181 | |
|
1182 | 0 | putFieldError(fieldName, RiceKeyConstants.ERROR_DOCUMENT_MAINTENANCE_PARTIALLY_FILLED_OUT_REF_FKEYS, new String[] { fieldNameReadable, fKeysReadable }); |
1183 | 0 | } |
1184 | |
} |
1185 | |
|
1186 | 0 | return success; |
1187 | |
} |
1188 | |
|
1189 | |
|
1190 | |
|
1191 | |
|
1192 | |
|
1193 | |
|
1194 | |
|
1195 | |
|
1196 | |
|
1197 | |
protected StringBuffer consolidateFieldNames(List fieldNames, String delimiter) { |
1198 | |
|
1199 | 0 | StringBuffer sb = new StringBuffer(); |
1200 | |
|
1201 | |
|
1202 | 0 | boolean firstPass = true; |
1203 | 0 | String delim = ""; |
1204 | |
|
1205 | |
|
1206 | 0 | for (Iterator iter = fieldNames.iterator(); iter.hasNext();) { |
1207 | 0 | String fieldName = (String) iter.next(); |
1208 | |
|
1209 | |
|
1210 | |
|
1211 | 0 | sb.append(delim + ddService.getAttributeLabel(newBo.getClass(), fieldName)); |
1212 | |
|
1213 | |
|
1214 | 0 | if (firstPass) { |
1215 | 0 | delim = delimiter; |
1216 | 0 | firstPass = false; |
1217 | |
} |
1218 | 0 | } |
1219 | |
|
1220 | 0 | return sb; |
1221 | |
} |
1222 | |
|
1223 | |
|
1224 | |
|
1225 | |
|
1226 | |
|
1227 | |
|
1228 | |
|
1229 | |
|
1230 | |
|
1231 | |
|
1232 | |
|
1233 | |
protected String getFieldLabel(String fieldName) { |
1234 | 0 | return ddService.getAttributeLabel(newBo.getClass(), fieldName) + "(" + ddService.getAttributeShortLabel(newBo.getClass(), fieldName) + ")"; |
1235 | |
} |
1236 | |
|
1237 | |
|
1238 | |
|
1239 | |
|
1240 | |
|
1241 | |
|
1242 | |
|
1243 | |
|
1244 | |
|
1245 | |
|
1246 | |
|
1247 | |
|
1248 | |
protected String getFieldLabel(Class boClass, String fieldName) { |
1249 | 0 | return ddService.getAttributeLabel(boClass, fieldName) + "(" + ddService.getAttributeShortLabel(boClass, fieldName) + ")"; |
1250 | |
} |
1251 | |
|
1252 | |
|
1253 | |
|
1254 | |
|
1255 | |
|
1256 | |
|
1257 | |
protected final BusinessObjectDictionaryService getBoDictionaryService() { |
1258 | 0 | return boDictionaryService; |
1259 | |
} |
1260 | |
|
1261 | |
|
1262 | |
|
1263 | |
|
1264 | |
|
1265 | |
|
1266 | |
public final void setBoDictionaryService(BusinessObjectDictionaryService boDictionaryService) { |
1267 | 0 | this.boDictionaryService = boDictionaryService; |
1268 | 0 | } |
1269 | |
|
1270 | |
|
1271 | |
|
1272 | |
|
1273 | |
|
1274 | |
|
1275 | |
protected final BusinessObjectService getBoService() { |
1276 | 0 | return boService; |
1277 | |
} |
1278 | |
|
1279 | |
|
1280 | |
|
1281 | |
|
1282 | |
|
1283 | |
|
1284 | |
public final void setBoService(BusinessObjectService boService) { |
1285 | 0 | this.boService = boService; |
1286 | 0 | } |
1287 | |
|
1288 | |
|
1289 | |
|
1290 | |
|
1291 | |
|
1292 | |
|
1293 | |
protected final ConfigurationService getConfigService() { |
1294 | 0 | return configService; |
1295 | |
} |
1296 | |
|
1297 | |
|
1298 | |
|
1299 | |
|
1300 | |
|
1301 | |
|
1302 | |
public final void setConfigService(ConfigurationService configService) { |
1303 | 0 | this.configService = configService; |
1304 | 0 | } |
1305 | |
|
1306 | |
|
1307 | |
|
1308 | |
|
1309 | |
|
1310 | |
|
1311 | |
protected final DataDictionaryService getDdService() { |
1312 | 0 | return ddService; |
1313 | |
} |
1314 | |
|
1315 | |
|
1316 | |
|
1317 | |
|
1318 | |
|
1319 | |
|
1320 | |
public final void setDdService(DataDictionaryService ddService) { |
1321 | 0 | this.ddService = ddService; |
1322 | 0 | } |
1323 | |
|
1324 | |
|
1325 | |
|
1326 | |
|
1327 | |
|
1328 | |
|
1329 | |
protected final DictionaryValidationService getDictionaryValidationService() { |
1330 | 0 | return dictionaryValidationService; |
1331 | |
} |
1332 | |
|
1333 | |
|
1334 | |
|
1335 | |
|
1336 | |
|
1337 | |
|
1338 | |
public final void setDictionaryValidationService(DictionaryValidationService dictionaryValidationService) { |
1339 | 0 | this.dictionaryValidationService = dictionaryValidationService; |
1340 | 0 | } |
1341 | |
|
1342 | |
|
1343 | |
|
1344 | |
|
1345 | |
|
1346 | |
|
1347 | |
protected final MaintenanceDocumentDictionaryService getMaintDocDictionaryService() { |
1348 | 0 | return maintDocDictionaryService; |
1349 | |
} |
1350 | |
|
1351 | |
|
1352 | |
|
1353 | |
|
1354 | |
|
1355 | |
|
1356 | |
public final void setMaintDocDictionaryService(MaintenanceDocumentDictionaryService maintDocDictionaryService) { |
1357 | 0 | this.maintDocDictionaryService = maintDocDictionaryService; |
1358 | 0 | } |
1359 | |
|
1360 | |
|
1361 | |
|
1362 | |
|
1363 | |
|
1364 | |
|
1365 | |
protected final PersistableBusinessObject getNewBo() { |
1366 | 0 | return newBo; |
1367 | |
} |
1368 | |
|
1369 | |
protected void setNewBo(PersistableBusinessObject newBo) { |
1370 | 0 | this.newBo = newBo; |
1371 | 0 | } |
1372 | |
|
1373 | |
|
1374 | |
|
1375 | |
|
1376 | |
|
1377 | |
|
1378 | |
protected final PersistableBusinessObject getOldBo() { |
1379 | 0 | return oldBo; |
1380 | |
} |
1381 | |
|
1382 | |
|
1383 | |
|
1384 | |
|
1385 | |
|
1386 | |
|
1387 | |
protected final PersistenceService getPersistenceService() { |
1388 | 0 | return persistenceService; |
1389 | |
} |
1390 | |
|
1391 | |
|
1392 | |
|
1393 | |
|
1394 | |
|
1395 | |
|
1396 | |
public final void setPersistenceService(PersistenceService persistenceService) { |
1397 | 0 | this.persistenceService = persistenceService; |
1398 | 0 | } |
1399 | |
|
1400 | |
|
1401 | |
|
1402 | |
|
1403 | |
|
1404 | |
|
1405 | |
protected final PersistenceStructureService getPersistenceStructureService() { |
1406 | 0 | return persistenceStructureService; |
1407 | |
} |
1408 | |
|
1409 | |
|
1410 | |
|
1411 | |
|
1412 | |
|
1413 | |
|
1414 | |
public final void setPersistenceStructureService(PersistenceStructureService persistenceStructureService) { |
1415 | 0 | this.persistenceStructureService = persistenceStructureService; |
1416 | 0 | } |
1417 | |
|
1418 | |
|
1419 | |
|
1420 | |
|
1421 | |
|
1422 | |
|
1423 | |
public WorkflowDocumentService getWorkflowDocumentService() { |
1424 | 0 | return workflowDocumentService; |
1425 | |
} |
1426 | |
|
1427 | |
|
1428 | |
|
1429 | |
|
1430 | |
|
1431 | |
|
1432 | |
public void setWorkflowDocumentService(WorkflowDocumentService workflowDocumentService) { |
1433 | 0 | this.workflowDocumentService = workflowDocumentService; |
1434 | 0 | } |
1435 | |
|
1436 | |
public boolean processAddCollectionLineBusinessRules(MaintenanceDocument document, String collectionName, PersistableBusinessObject bo) { |
1437 | 0 | LOG.debug("processAddCollectionLineBusinessRules"); |
1438 | |
|
1439 | |
|
1440 | 0 | setupBaseConvenienceObjects(document); |
1441 | |
|
1442 | |
|
1443 | 0 | this.validateMaintenanceDocument( document ); |
1444 | |
|
1445 | 0 | boolean success = true; |
1446 | 0 | MessageMap map = GlobalVariables.getMessageMap(); |
1447 | 0 | int errorCount = map.getErrorCount(); |
1448 | 0 | map.addToErrorPath( MAINTAINABLE_ERROR_PATH ); |
1449 | 0 | if ( LOG.isDebugEnabled() ) { |
1450 | 0 | LOG.debug( "processAddCollectionLineBusinessRules - BO: " + bo ); |
1451 | 0 | LOG.debug( "Before Validate: " + map ); |
1452 | |
} |
1453 | |
|
1454 | 0 | getMaintDocDictionaryService().validateMaintainableCollectionsAddLineRequiredFields( document, document.getNewMaintainableObject().getBusinessObject(), collectionName ); |
1455 | 0 | String errorPath = KNSConstants.MAINTENANCE_ADD_PREFIX + collectionName; |
1456 | 0 | map.addToErrorPath( errorPath ); |
1457 | |
|
1458 | 0 | getDictionaryValidationService().validateBusinessObject( bo, false ); |
1459 | 0 | success &= map.getErrorCount() == errorCount; |
1460 | 0 | success &= dictionaryValidationService.validateDefaultExistenceChecksForNewCollectionItem(document.getNewMaintainableObject().getBusinessObject(), bo, collectionName); |
1461 | 0 | success &= validateDuplicateIdentifierInDataDictionary(document, collectionName, bo); |
1462 | 0 | success &= processCustomAddCollectionLineBusinessRules( document, collectionName, bo ); |
1463 | |
|
1464 | 0 | map.removeFromErrorPath( errorPath ); |
1465 | 0 | map.removeFromErrorPath( MAINTAINABLE_ERROR_PATH ); |
1466 | 0 | if ( LOG.isDebugEnabled() ) { |
1467 | 0 | LOG.debug( "After Validate: " + map ); |
1468 | 0 | LOG.debug( "processAddCollectionLineBusinessRules returning: " + success ); |
1469 | |
} |
1470 | |
|
1471 | 0 | return success; |
1472 | |
} |
1473 | |
|
1474 | |
|
1475 | |
|
1476 | |
|
1477 | |
|
1478 | |
|
1479 | |
|
1480 | |
|
1481 | |
|
1482 | |
|
1483 | |
|
1484 | |
|
1485 | |
|
1486 | |
protected boolean validateDuplicateIdentifierInDataDictionary(MaintenanceDocument document, String collectionName, PersistableBusinessObject bo) { |
1487 | 0 | boolean valid = true; |
1488 | 0 | PersistableBusinessObject maintBo = document.getNewMaintainableObject().getBusinessObject(); |
1489 | 0 | Collection maintCollection = (Collection) ObjectUtils.getPropertyValue(maintBo, collectionName); |
1490 | 0 | List<String> duplicateIdentifier = document.getNewMaintainableObject().getDuplicateIdentifierFieldsFromDataDictionary(document.getDocumentHeader().getWorkflowDocument().getDocumentType(), collectionName); |
1491 | 0 | if (duplicateIdentifier.size()>0) { |
1492 | 0 | List<String> existingIdentifierString = document.getNewMaintainableObject().getMultiValueIdentifierList(maintCollection, duplicateIdentifier); |
1493 | 0 | if (document.getNewMaintainableObject().hasBusinessObjectExisted(bo, existingIdentifierString, duplicateIdentifier)) { |
1494 | 0 | valid = false; |
1495 | 0 | GlobalVariables.getMessageMap().putError(duplicateIdentifier.get(0), RiceKeyConstants.ERROR_DUPLICATE_ELEMENT, "entries in ", document.getDocumentHeader().getWorkflowDocument().getDocumentType()); |
1496 | |
} |
1497 | |
} |
1498 | 0 | return valid; |
1499 | |
} |
1500 | |
|
1501 | |
public boolean processCustomAddCollectionLineBusinessRules(MaintenanceDocument document, String collectionName, PersistableBusinessObject line) { |
1502 | 0 | return true; |
1503 | |
} |
1504 | |
|
1505 | |
public org.kuali.rice.kim.service.PersonService getPersonService() { |
1506 | 0 | return personService; |
1507 | |
} |
1508 | |
|
1509 | |
public void setPersonService(org.kuali.rice.kim.service.PersonService personService) { |
1510 | 0 | this.personService = personService; |
1511 | 0 | } |
1512 | |
|
1513 | |
public DateTimeService getDateTimeService() { |
1514 | 0 | return KNSServiceLocator.getDateTimeService(); |
1515 | |
} |
1516 | |
|
1517 | |
|
1518 | |
|
1519 | |
|
1520 | |
public DocumentHelperService getDocumentHelperService() { |
1521 | 0 | return this.documentHelperService; |
1522 | |
} |
1523 | |
|
1524 | |
|
1525 | |
|
1526 | |
|
1527 | |
public void setDocumentHelperService(DocumentHelperService documentHelperService) { |
1528 | 0 | this.documentHelperService = documentHelperService; |
1529 | 0 | } |
1530 | |
|
1531 | |
|
1532 | |
|
1533 | |
|
1534 | |
public BusinessObjectAuthorizationService getBusinessObjectAuthorizationService() { |
1535 | 0 | return this.businessObjectAuthorizationService; |
1536 | |
} |
1537 | |
|
1538 | |
|
1539 | |
|
1540 | |
|
1541 | |
public void setBusinessObjectAuthorizationService( |
1542 | |
BusinessObjectAuthorizationService businessObjectAuthorizationService) { |
1543 | 0 | this.businessObjectAuthorizationService = businessObjectAuthorizationService; |
1544 | 0 | } |
1545 | |
|
1546 | |
protected RoleService getRoleService(){ |
1547 | 0 | if(this.roleService==null){ |
1548 | 0 | this.roleService = KIMServiceLocator.getRoleService(); |
1549 | |
} |
1550 | 0 | return this.roleService; |
1551 | |
} |
1552 | |
|
1553 | |
} |
1554 | |
|