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.kew.impl.peopleflow;
17  
18  import org.apache.commons.lang.StringUtils;
19  import org.kuali.rice.core.api.resourceloader.GlobalResourceLoader;
20  import org.kuali.rice.core.api.uif.RemotableAttributeField;
21  import org.kuali.rice.kew.api.KewApiServiceLocator;
22  import org.kuali.rice.kew.api.peopleflow.PeopleFlowDefinition;
23  import org.kuali.rice.kew.api.repository.type.KewTypeDefinition;
24  import org.kuali.rice.kew.framework.peopleflow.PeopleFlowTypeService;
25  import org.kuali.rice.krad.bo.Note;
26  import org.kuali.rice.krad.maintenance.MaintainableImpl;
27  import org.kuali.rice.krad.uif.container.CollectionGroup;
28  import org.kuali.rice.krad.uif.container.Container;
29  import org.kuali.rice.krad.uif.util.ObjectPropertyUtils;
30  import org.kuali.rice.krad.uif.view.View;
31  import org.kuali.rice.krad.util.KRADConstants;
32  import org.kuali.rice.krad.web.form.MaintenanceDocumentForm;
33  
34  import java.util.ArrayList;
35  import java.util.Collection;
36  import java.util.Collections;
37  import java.util.Comparator;
38  import java.util.List;
39  
40  /**
41   * Custom view helper for the people flow maintenance document to retrieve the type attribute remotable fields
42   *
43   * @author Kuali Rice Team (rice.collab@kuali.org)
44   */
45  public class PeopleFlowMaintainableImpl extends MaintainableImpl {
46  
47  
48      /**
49       * sort {@link org.kuali.rice.kew.impl.peopleflow.PeopleFlowMemberBo}s by stop number (priority)
50       *
51       * @param collection - the Collection to add the given addLine to
52       * @param addLine - the line to add to the given collection
53       * @param insertFirst - indicates if the item should be inserted as the first item
54       */
55      @Override
56      protected void addLine(Collection<Object> collection, Object addLine, boolean insertFirst) {
57          if (collection instanceof List) {
58              ((List) collection).add(0, addLine);
59              if (addLine instanceof PeopleFlowMemberBo) {
60                  Collections.sort((List) collection, new Comparator<Object>() {
61                      public int compare(Object o1, Object o2) {
62                          if ((o1 instanceof PeopleFlowMemberBo) && (o1 instanceof PeopleFlowMemberBo)) {
63                              return ((PeopleFlowMemberBo) o1).getPriority() - ((PeopleFlowMemberBo) o2)
64                                      .getPriority();
65                          }
66                          return 0; // if not both PeopleFlowMemberBo something strange is going on.  Use equals as doing nothing.
67                      }
68                  });
69              }
70          } else {
71              collection.add(addLine);
72          }
73      }
74  
75      /**
76       * Invokes the {@link org.kuali.rice.kew.api.repository.type.KewTypeRepositoryService} to retrieve the remotable
77       * field definitions for the attributes associated with the selected type
78       *
79       * @param view - view instance
80       * @param model - object containing the form data, from which the selected type will be pulled
81       * @param container - container that holds the remotable fields
82       * @return List<RemotableAttributeField> instances for the type attributes, or empty list if not attributes exist
83       */
84      public List<RemotableAttributeField> retrieveTypeAttributes(View view, Object model, Container container) {
85          List<RemotableAttributeField> remoteFields = new ArrayList<RemotableAttributeField>();
86  
87          PeopleFlowBo peopleFlow =
88                  (PeopleFlowBo) ((MaintenanceDocumentForm) model).getDocument().getNewMaintainableObject().getDataObject();
89  
90          // retrieve the type service and invoke to get the remotable field definitions
91          String typeId = peopleFlow.getTypeId();
92          if (StringUtils.isNotBlank(typeId)) {
93              KewTypeDefinition typeDefinition = KewApiServiceLocator.getKewTypeRepositoryService().getTypeById(typeId);
94              PeopleFlowTypeService peopleFlowTypeService = GlobalResourceLoader.<PeopleFlowTypeService>getService(
95                      typeDefinition.getServiceName());
96              remoteFields = peopleFlowTypeService.getAttributeFields(typeId);
97          }
98  
99          return remoteFields;
100     }
101 
102     /**
103      * Set the attribute bo list from the map of attribute key/value pairs and then calls
104      * {@link org.kuali.rice.kew.api.peopleflow.PeopleFlowService} to save the people flow instance
105      */
106     @Override
107     public void saveDataObject() {
108         ((PeopleFlowBo) getDataObject()).updateAttributeBoValues();
109 
110         PeopleFlowDefinition peopleFlowDefinition;
111         if (KRADConstants.MAINTENANCE_COPY_ACTION.equals(getMaintenanceAction())) {
112             peopleFlowDefinition = PeopleFlowBo.maintenanceCopy(((PeopleFlowBo) getDataObject()));
113         } else {
114         // this to method ends up copying a versionNumber to null versionNumber 
115             peopleFlowDefinition = PeopleFlowBo.to(((PeopleFlowBo) getDataObject()));
116         }
117         if (StringUtils.isNotBlank(peopleFlowDefinition.getId())) {
118             KewApiServiceLocator.getPeopleFlowService().updatePeopleFlow(peopleFlowDefinition);
119         } else {
120             KewApiServiceLocator.getPeopleFlowService().createPeopleFlow(peopleFlowDefinition);
121         }
122     }
123 
124     /**
125      * In the case of edit maintenance adds a new blank line to the old side
126      * This method is intended to override the method in MaintainableImpl
127      * but has a different set of parameters, so it is not actually an override.
128      * This version was needed to fetch the old collection from a different path
129      * than MaintainableImpl uses.
130      *
131      * @see org.kuali.rice.krad.uif.service.impl.ViewHelperServiceImpl#processAfterAddLine(org.kuali.rice.krad.uif.view.View,
132      *      org.kuali.rice.krad.uif.container.CollectionGroup, java.lang.Object,
133      *      java.lang.Object)
134      */
135     protected void processAfterAddLine(View view, CollectionGroup collectionGroup, Object model, Object addLine, String collectionPath) {
136         // Check for maintenance documents in edit but exclude notes
137         if (model instanceof MaintenanceDocumentForm
138                 && KRADConstants.MAINTENANCE_EDIT_ACTION.equals(((MaintenanceDocumentForm)model).getMaintenanceAction()) && !(addLine instanceof Note)) {
139 //            MaintenanceDocumentForm maintenanceForm = (MaintenanceDocumentForm) model;
140 //            MaintenanceDocument document = maintenanceForm.getDocument();
141 
142             // get the old object's collection
143             String oldCollectionPath = collectionPath.replace("newMaintainableObject","oldMaintainableObject");
144             Collection<Object> oldCollection = ObjectPropertyUtils.getPropertyValue(model, oldCollectionPath );
145             try {
146                 Object blankLine = collectionGroup.getCollectionObjectClass().newInstance();
147                 oldCollection.add(blankLine);
148             } catch (Exception e) {
149                 throw new RuntimeException("Unable to create new line instance for old maintenance object", e);
150             }
151         }
152     }
153 
154     /**
155      * This method is an override of ViewHelperService.processCollectionDeleteLine().
156      * It is virtually identical except that a local processAfterDeleteLine() method is called
157      * with a different parameter set than is called from within this method to delete the line
158      * from the old maintainable object.
159      * @see org.kuali.rice.krad.uif.service.ViewHelperService#processCollectionDeleteLine(org.kuali.rice.krad.uif.view.View,
160      *      java.lang.Object, java.lang.String, int)
161      */
162     @Override
163     public void processCollectionDeleteLine(View view, Object model, String collectionPath, int lineIndex) {
164         // get the collection group from the view
165         CollectionGroup collectionGroup = view.getViewIndex().getCollectionGroupByPath(collectionPath);
166         if (collectionGroup == null) {
167             logAndThrowRuntime("Unable to get collection group component for path: " + collectionPath);
168         }
169 
170         // get the collection instance for adding the new line
171         Collection<Object> collection = ObjectPropertyUtils.getPropertyValue(model, collectionPath);
172         if (collection == null) {
173             logAndThrowRuntime("Unable to get collection property from model for path: " + collectionPath);
174         }
175 
176         // TODO: look into other ways of identifying a line so we can deal with
177         // unordered collections
178         if (collection instanceof List) {
179             Object deleteLine = ((List<Object>) collection).get(lineIndex);
180 
181             // validate the delete action is allowed for this line
182             boolean isValid = performDeleteLineValidation(view, collectionGroup, deleteLine);
183             if (isValid) {
184                 ((List<Object>) collection).remove(lineIndex);
185                 processAfterDeleteLine(view, collectionPath, model, lineIndex);
186             }
187         } else {
188             logAndThrowRuntime("Only List collection implementations are supported for the delete by index method");
189         }
190     }
191 
192     /**
193      * In the case of edit maintenance deleted the item on the old side.
194      * This method is intended to override the method in MaintainableImpl
195      * but has a different set of parameters, so it is not actually an override.
196      * This was needed to fetch the old collection from a different path
197      * than MaintainableImpl uses. This version has the path (to the newMaintainableObject
198      * provided as a parameter, this is used to generate a path to the oldMaintainableObject
199      *
200      *
201      * @see org.kuali.rice.krad.uif.service.impl.ViewHelperServiceImpl#processAfterDeleteLine(View,
202      *      org.kuali.rice.krad.uif.container.CollectionGroup, java.lang.Object,  int)
203      */
204     protected void processAfterDeleteLine(View view, String collectionPath, Object model, int lineIndex) {
205 
206         // Check for maintenance documents in edit
207         if (model instanceof MaintenanceDocumentForm
208                 && KRADConstants.MAINTENANCE_EDIT_ACTION.equals(((MaintenanceDocumentForm)model).getMaintenanceAction())) {
209 
210             // get the old object's collection
211             String oldCollectionPath = collectionPath.replace("newMaintainableObject","oldMaintainableObject");
212             Collection<Object> oldCollection = ObjectPropertyUtils.getPropertyValue(model, oldCollectionPath);
213             try {
214                 // Remove the object at lineIndex from the collection
215                 oldCollection.remove(oldCollection.toArray()[lineIndex]);
216             } catch (Exception e) {
217                 throw new RuntimeException("Unable to delete line instance for old maintenance object", e);
218             }
219         }
220     }
221 
222 
223 }