1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.rice.krad.maintenance;
17
18 import org.apache.commons.lang.StringUtils;
19 import org.apache.ojb.broker.metadata.ClassNotPersistenceCapableException;
20 import org.kuali.rice.core.api.CoreApiServiceLocator;
21 import org.kuali.rice.core.api.encryption.EncryptionService;
22 import org.kuali.rice.kim.api.identity.Person;
23 import org.kuali.rice.krad.bo.AdHocRoutePerson;
24 import org.kuali.rice.krad.bo.AdHocRouteWorkgroup;
25 import org.kuali.rice.krad.bo.BusinessObject;
26 import org.kuali.rice.krad.bo.DocumentHeader;
27 import org.kuali.rice.krad.bo.Note;
28 import org.kuali.rice.krad.bo.PersistableBusinessObject;
29 import org.kuali.rice.krad.exception.PessimisticLockingException;
30 import org.kuali.rice.krad.service.BusinessObjectService;
31 import org.kuali.rice.krad.service.DataObjectAuthorizationService;
32 import org.kuali.rice.krad.service.DataObjectMetaDataService;
33 import org.kuali.rice.krad.service.DocumentDictionaryService;
34 import org.kuali.rice.krad.service.KRADServiceLocator;
35 import org.kuali.rice.krad.service.KRADServiceLocatorWeb;
36 import org.kuali.rice.krad.service.LookupService;
37 import org.kuali.rice.krad.service.MaintenanceDocumentService;
38 import org.kuali.rice.krad.uif.container.CollectionGroup;
39 import org.kuali.rice.krad.uif.service.impl.ViewHelperServiceImpl;
40 import org.kuali.rice.krad.uif.util.ObjectPropertyUtils;
41 import org.kuali.rice.krad.uif.view.View;
42 import org.kuali.rice.krad.util.KRADConstants;
43 import org.kuali.rice.krad.util.ObjectUtils;
44 import org.kuali.rice.krad.web.form.MaintenanceDocumentForm;
45
46 import java.security.GeneralSecurityException;
47 import java.util.ArrayList;
48 import java.util.Collection;
49 import java.util.Iterator;
50 import java.util.List;
51 import java.util.Map;
52
53
54
55
56
57
58 public class MaintainableImpl extends ViewHelperServiceImpl implements Maintainable {
59 private static final long serialVersionUID = 9125271369161634992L;
60
61 private static final org.apache.log4j.Logger LOG = org.apache.log4j.Logger.getLogger(MaintainableImpl.class);
62
63 private String documentNumber;
64 private Object dataObject;
65 private Class<?> dataObjectClass;
66 private String maintenanceAction;
67
68 private transient LookupService lookupService;
69 private transient DataObjectAuthorizationService dataObjectAuthorizationService;
70 private transient DataObjectMetaDataService dataObjectMetaDataService;
71 private transient DocumentDictionaryService documentDictionaryService;
72 private transient EncryptionService encryptionService;
73 private transient BusinessObjectService businessObjectService;
74 private transient MaintenanceDocumentService maintenanceDocumentService;
75
76
77
78
79 @Override
80 public Object retrieveObjectForEditOrCopy(MaintenanceDocument document, Map<String, String> dataObjectKeys) {
81 Object dataObject = null;
82
83 try {
84 dataObject = getLookupService().findObjectBySearch(getDataObjectClass(), dataObjectKeys);
85 } catch (ClassNotPersistenceCapableException ex) {
86 if (!document.getOldMaintainableObject().isExternalBusinessObject()) {
87 throw new RuntimeException("Data Object Class: "
88 + getDataObjectClass()
89 + " is not persistable and is not externalizable - configuration error");
90 }
91
92 }
93
94 return dataObject;
95 }
96
97
98
99
100 @Override
101 public void setDocumentNumber(String documentNumber) {
102 this.documentNumber = documentNumber;
103 }
104
105
106
107
108 @Override
109 public String getDocumentTitle(MaintenanceDocument document) {
110
111
112 return "";
113 }
114
115
116
117
118 @Override
119 public Object getDataObject() {
120 return dataObject;
121 }
122
123
124
125
126 @Override
127 public void setDataObject(Object object) {
128 this.dataObject = object;
129 }
130
131
132
133
134 @Override
135 public Class getDataObjectClass() {
136 return dataObjectClass;
137 }
138
139
140
141
142 @Override
143 public void setDataObjectClass(Class dataObjectClass) {
144 this.dataObjectClass = dataObjectClass;
145 }
146
147
148
149
150 @Override
151 public String getMaintenanceAction() {
152 return maintenanceAction;
153 }
154
155
156
157
158 @Override
159 public void setMaintenanceAction(String maintenanceAction) {
160 this.maintenanceAction = maintenanceAction;
161 }
162
163
164
165
166
167
168
169 @Override
170 public List<MaintenanceLock> generateMaintenanceLocks() {
171 List<MaintenanceLock> maintenanceLocks = new ArrayList<MaintenanceLock>();
172 StringBuffer lockRepresentation = new StringBuffer(dataObjectClass.getName());
173 lockRepresentation.append(KRADConstants.Maintenance.LOCK_AFTER_CLASS_DELIM);
174
175 Object bo = getDataObject();
176 List keyFieldNames = getDocumentDictionaryService().getLockingKeys(getDocumentTypeName());
177
178 for (Iterator i = keyFieldNames.iterator(); i.hasNext(); ) {
179 String fieldName = (String) i.next();
180 Object fieldValue = ObjectUtils.getPropertyValue(bo, fieldName);
181 if (fieldValue == null) {
182 fieldValue = "";
183 }
184
185
186 if (getDataObjectAuthorizationService()
187 .attributeValueNeedsToBeEncryptedOnFormsAndLinks(dataObjectClass, fieldName)) {
188 try {
189 fieldValue = getEncryptionService().encrypt(fieldValue);
190 } catch (GeneralSecurityException e) {
191 LOG.error("Unable to encrypt secure field for locking representation " + e.getMessage());
192 throw new RuntimeException(
193 "Unable to encrypt secure field for locking representation " + e.getMessage());
194 }
195 }
196
197 lockRepresentation.append(fieldName);
198 lockRepresentation.append(KRADConstants.Maintenance.LOCK_AFTER_FIELDNAME_DELIM);
199 lockRepresentation.append(String.valueOf(fieldValue));
200 if (i.hasNext()) {
201 lockRepresentation.append(KRADConstants.Maintenance.LOCK_AFTER_VALUE_DELIM);
202 }
203 }
204
205 MaintenanceLock maintenanceLock = new MaintenanceLock();
206 maintenanceLock.setDocumentNumber(documentNumber);
207 maintenanceLock.setLockingRepresentation(lockRepresentation.toString());
208 maintenanceLocks.add(maintenanceLock);
209
210 return maintenanceLocks;
211 }
212
213
214
215
216
217 protected String getDocumentTypeName() {
218 return getDocumentDictionaryService().getMaintenanceDocumentTypeName(dataObjectClass);
219 }
220
221
222
223
224 @Override
225 public void saveDataObject() {
226 if (dataObject instanceof PersistableBusinessObject) {
227 getBusinessObjectService().linkAndSave((PersistableBusinessObject) dataObject);
228 } else {
229 throw new RuntimeException(
230 "Cannot save object of type: " + dataObjectClass + " with business object service");
231 }
232 }
233
234
235
236
237 @Override
238 public void deleteDataObject() {
239 if (dataObject == null) {
240 return;
241 }
242
243 if (dataObject instanceof PersistableBusinessObject) {
244 getBusinessObjectService().delete((PersistableBusinessObject) dataObject);
245 dataObject = null;
246 } else {
247 throw new RuntimeException(
248 "Cannot delete object of type: " + dataObjectClass + " with business object service");
249 }
250 }
251
252
253
254
255 @Override
256 public void doRouteStatusChange(DocumentHeader documentHeader) {
257
258 }
259
260
261
262
263 @Override
264 public String getLockingDocumentId() {
265 return getMaintenanceDocumentService().getLockingDocumentId(this, documentNumber);
266 }
267
268
269
270
271 @Override
272 public List<String> getWorkflowEngineDocumentIdsToLock() {
273 return null;
274 }
275
276
277
278
279
280
281
282
283
284 @Override
285 public boolean useCustomLockDescriptors() {
286 return false;
287 }
288
289
290
291
292
293
294
295
296 @Override
297 public String getCustomLockDescriptor(Person user) {
298 throw new PessimisticLockingException("The Maintainable for document " + documentNumber +
299 " is using pessimistic locking with custom lock descriptors, but the Maintainable has not overridden the getCustomLockDescriptor method");
300 }
301
302
303
304
305 @Override
306 public boolean isNotesEnabled() {
307 return getDataObjectMetaDataService().areNotesSupported(dataObjectClass);
308 }
309
310
311
312
313 @Override
314 public boolean isExternalBusinessObject() {
315 return false;
316 }
317
318
319
320
321 @Override
322 public void prepareExternalBusinessObject(BusinessObject businessObject) {
323
324 }
325
326
327
328
329
330
331 @Override
332 public boolean isOldDataObjectInDocument() {
333 boolean isOldDataObjectInExistence = true;
334
335 if (getDataObject() == null) {
336 isOldDataObjectInExistence = false;
337 } else {
338 Map<String, ?> keyFieldValues = getDataObjectMetaDataService().getPrimaryKeyFieldValues(getDataObject());
339 for (Object keyValue : keyFieldValues.values()) {
340 if (keyValue == null) {
341 isOldDataObjectInExistence = false;
342 } else if ((keyValue instanceof String) && StringUtils.isBlank((String) keyValue)) {
343 isOldDataObjectInExistence = false;
344 }
345
346 if (!isOldDataObjectInExistence) {
347 break;
348 }
349 }
350 }
351
352 return isOldDataObjectInExistence;
353 }
354
355
356
357
358 @Override
359 public void prepareForSave() {
360
361 }
362
363
364
365
366 @Override
367 public void processAfterRetrieve() {
368
369 }
370
371
372
373
374 @Override
375 public void setupNewFromExisting(MaintenanceDocument document, Map<String, String[]> parameters) {
376
377 }
378
379
380
381
382 @Override
383 public void processAfterCopy(MaintenanceDocument document, Map<String, String[]> requestParameters) {
384
385 }
386
387
388
389
390 @Override
391 public void processAfterEdit(MaintenanceDocument document, Map<String, String[]> requestParameters) {
392
393 }
394
395
396
397
398 @Override
399 public void processAfterNew(MaintenanceDocument document, Map<String, String[]> requestParameters) {
400
401 }
402
403
404
405
406 @Override
407 public void processAfterPost(MaintenanceDocument document, Map<String, String[]> requestParameters) {
408
409 }
410
411
412
413
414
415
416
417
418
419
420
421 @Override
422 protected void processAfterAddLine(View view, CollectionGroup collectionGroup, Object model, Object addLine) {
423 super.processAfterAddLine(view, collectionGroup, model, addLine);
424
425
426 if (model instanceof MaintenanceDocumentForm
427 && KRADConstants.MAINTENANCE_EDIT_ACTION.equals(((MaintenanceDocumentForm)model).getMaintenanceAction()) && !(addLine instanceof Note) && !(addLine instanceof AdHocRoutePerson) && !(addLine instanceof AdHocRouteWorkgroup)) {
428 MaintenanceDocumentForm maintenanceForm = (MaintenanceDocumentForm) model;
429 MaintenanceDocument document = maintenanceForm.getDocument();
430
431
432
433 String bindingPrefix = collectionGroup.getBindingInfo().getBindByNamePrefix();
434 String propertyPath = collectionGroup.getPropertyName();
435 if(bindingPrefix!=""&&bindingPrefix!= null) {
436 propertyPath = bindingPrefix + "." + propertyPath;
437 }
438
439 Collection<Object> oldCollection = ObjectPropertyUtils
440 .getPropertyValue(document.getOldMaintainableObject().getDataObject(),
441 propertyPath);
442
443
444 try {
445 Object blankLine = collectionGroup.getCollectionObjectClass().newInstance();
446
447 if(oldCollection instanceof List){
448 ((List) oldCollection).add(0,blankLine);
449 } else {
450 oldCollection.add(blankLine);
451 }
452 } catch (Exception e) {
453 throw new RuntimeException("Unable to create new line instance for old maintenance object", e);
454 }
455 }
456 }
457
458
459
460
461
462
463
464
465 @Override
466 protected void processAfterDeleteLine(View view, CollectionGroup collectionGroup, Object model, int lineIndex) {
467 super.processAfterDeleteLine(view, collectionGroup, model, lineIndex);
468
469
470 if (model instanceof MaintenanceDocumentForm
471 && KRADConstants.MAINTENANCE_EDIT_ACTION.equals(((MaintenanceDocumentForm)model).getMaintenanceAction())
472 && !collectionGroup.getCollectionObjectClass().getName().equals(Note.class.getName())
473 && !collectionGroup.getCollectionObjectClass().getName().equals(AdHocRoutePerson.class.getName())
474 && !collectionGroup.getCollectionObjectClass().getName().equals(AdHocRouteWorkgroup.class.getName())) {
475 MaintenanceDocumentForm maintenanceForm = (MaintenanceDocumentForm) model;
476 MaintenanceDocument document = maintenanceForm.getDocument();
477
478
479 Collection<Object> oldCollection = ObjectPropertyUtils
480 .getPropertyValue(document.getOldMaintainableObject().getDataObject(),
481 collectionGroup.getPropertyName());
482 try {
483
484 oldCollection.remove(oldCollection.toArray()[lineIndex]);
485 } catch (Exception e) {
486 throw new RuntimeException("Unable to delete line instance for old maintenance object", e);
487 }
488 }
489 }
490
491
492
493
494
495
496 protected String getDocumentNumber() {
497 return this.documentNumber;
498 }
499
500 protected LookupService getLookupService() {
501 if (lookupService == null) {
502 lookupService = KRADServiceLocatorWeb.getLookupService();
503 }
504 return this.lookupService;
505 }
506
507 public void setLookupService(LookupService lookupService) {
508 this.lookupService = lookupService;
509 }
510
511 protected DataObjectAuthorizationService getDataObjectAuthorizationService() {
512 if (dataObjectAuthorizationService == null) {
513 this.dataObjectAuthorizationService = KRADServiceLocatorWeb.getDataObjectAuthorizationService();
514 }
515 return dataObjectAuthorizationService;
516 }
517
518 public void setDataObjectAuthorizationService(DataObjectAuthorizationService dataObjectAuthorizationService) {
519 this.dataObjectAuthorizationService = dataObjectAuthorizationService;
520 }
521
522 protected DataObjectMetaDataService getDataObjectMetaDataService() {
523 if (dataObjectMetaDataService == null) {
524 this.dataObjectMetaDataService = KRADServiceLocatorWeb.getDataObjectMetaDataService();
525 }
526 return dataObjectMetaDataService;
527 }
528
529 public void setDataObjectMetaDataService(DataObjectMetaDataService dataObjectMetaDataService) {
530 this.dataObjectMetaDataService = dataObjectMetaDataService;
531 }
532
533 public DocumentDictionaryService getDocumentDictionaryService() {
534 if (documentDictionaryService == null) {
535 this.documentDictionaryService = KRADServiceLocatorWeb.getDocumentDictionaryService();
536 }
537 return documentDictionaryService;
538 }
539
540 public void setDocumentDictionaryService(DocumentDictionaryService documentDictionaryService) {
541 this.documentDictionaryService = documentDictionaryService;
542 }
543
544 protected EncryptionService getEncryptionService() {
545 if (encryptionService == null) {
546 encryptionService = CoreApiServiceLocator.getEncryptionService();
547 }
548 return encryptionService;
549 }
550
551 public void setEncryptionService(EncryptionService encryptionService) {
552 this.encryptionService = encryptionService;
553 }
554
555 protected BusinessObjectService getBusinessObjectService() {
556 if (businessObjectService == null) {
557 businessObjectService = KRADServiceLocator.getBusinessObjectService();
558 }
559 return businessObjectService;
560 }
561
562 public void setBusinessObjectService(BusinessObjectService businessObjectService) {
563 this.businessObjectService = businessObjectService;
564 }
565
566 protected MaintenanceDocumentService getMaintenanceDocumentService() {
567 if (maintenanceDocumentService == null) {
568 maintenanceDocumentService = KRADServiceLocatorWeb.getMaintenanceDocumentService();
569 }
570 return maintenanceDocumentService;
571 }
572
573 public void setMaintenanceDocumentService(MaintenanceDocumentService maintenanceDocumentService) {
574 this.maintenanceDocumentService = maintenanceDocumentService;
575 }
576 }