View Javadoc

1   /**
2    * Copyright 2005-2012 The Kuali Foundation
3    *
4    * Licensed under the Educational Community License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    * http://www.opensource.org/licenses/ecl2.php
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   */
16  package org.kuali.rice.kns.document;
17  
18  import org.apache.commons.lang.StringUtils;
19  import org.apache.struts.upload.FormFile;
20  import org.kuali.rice.kns.maintenance.Maintainable;
21  import org.kuali.rice.krad.bo.DocumentAttachment;
22  import org.kuali.rice.krad.bo.PersistableBusinessObject;
23  
24  import javax.persistence.Transient;
25  import java.io.FileNotFoundException;
26  import java.io.IOException;
27  
28  /**
29   * @author Kuali Rice Team (rice.collab@kuali.org)
30   */
31  public class MaintenanceDocumentBase extends org.kuali.rice.krad.maintenance.MaintenanceDocumentBase implements MaintenanceDocument {
32      private static final org.apache.log4j.Logger LOG = org.apache.log4j.Logger.getLogger(MaintenanceDocumentBase.class);
33  
34      @Transient
35      protected transient FormFile fileAttachment;
36  
37      public MaintenanceDocumentBase() {
38          super();
39      }
40  
41      public MaintenanceDocumentBase(String documentTypeName) {
42          super(documentTypeName);
43      }
44  
45      /**
46       * @see org.kuali.rice.krad.document.DocumentBase#getDocumentBusinessObject()
47       */
48      @Override
49      public PersistableBusinessObject getDocumentBusinessObject() {
50          return (PersistableBusinessObject) super.getDocumentDataObject();
51      }
52  
53      /**
54       * Checks old maintainable bo has key values
55       */
56      public boolean isOldBusinessObjectInDocument() {
57          boolean isOldBusinessObjectInExistence = false;
58          if (getOldMaintainableObject() == null || getOldMaintainableObject().getBusinessObject() == null) {
59              isOldBusinessObjectInExistence = false;
60          } else {
61              isOldBusinessObjectInExistence = getOldMaintainableObject().isOldBusinessObjectInDocument();
62          }
63          return isOldBusinessObjectInExistence;
64      }
65  
66      public Maintainable getNewMaintainableObject() {
67          return (Maintainable) newMaintainableObject;
68      }
69  
70      public Maintainable getOldMaintainableObject() {
71          return (Maintainable) oldMaintainableObject;
72      }
73  
74      public FormFile getFileAttachment() {
75          return this.fileAttachment;
76      }
77  
78      public void setFileAttachment(FormFile fileAttachment) {
79          this.fileAttachment = fileAttachment;
80      }
81  
82      public void populateDocumentAttachment() {
83          refreshAttachment();
84  
85          if (fileAttachment != null && StringUtils.isNotEmpty(fileAttachment.getFileName())) {
86              //Populate DocumentAttachment BO
87              if (attachment == null) {
88                  attachment = new DocumentAttachment();
89              }
90  
91              byte[] fileContents;
92              try {
93                  fileContents = fileAttachment.getFileData();
94                  if (fileContents.length > 0) {
95                      attachment.setFileName(fileAttachment.getFileName());
96                      attachment.setContentType(fileAttachment.getContentType());
97                      attachment.setAttachmentContent(fileAttachment.getFileData());
98                      attachment.setDocumentNumber(getDocumentNumber());
99                  }
100             } catch (FileNotFoundException e) {
101                 LOG.error("Error while populating the Document Attachment", e);
102                 throw new RuntimeException("Could not populate DocumentAttachment object", e);
103             } catch (IOException e) {
104                 LOG.error("Error while populating the Document Attachment", e);
105                 throw new RuntimeException("Could not populate DocumentAttachment object", e);
106             }
107         }
108 //        else if(attachment != null) {
109 //            //Attachment has been deleted - Need to delete the Attachment Reference Object
110 //            deleteAttachment();
111 //        }
112     }
113 }