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