1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
|
17 | |
package org.kuali.rice.kew.rule.web; |
18 | |
|
19 | |
import org.apache.log4j.Logger; |
20 | |
import org.apache.struts.action.ActionForm; |
21 | |
import org.apache.struts.action.ActionForward; |
22 | |
import org.apache.struts.action.ActionMapping; |
23 | |
import org.apache.struts.action.ActionMessages; |
24 | |
import org.kuali.rice.core.api.config.property.ConfigContext; |
25 | |
import org.kuali.rice.core.api.criteria.Predicate; |
26 | |
import org.kuali.rice.core.api.criteria.QueryByCriteria; |
27 | |
import org.kuali.rice.kew.doctype.bo.DocumentType; |
28 | |
import org.kuali.rice.kew.doctype.service.DocumentTypeService; |
29 | |
import org.kuali.rice.kew.engine.node.BranchPrototype; |
30 | |
import org.kuali.rice.kew.engine.node.RouteNode; |
31 | |
import org.kuali.rice.kew.engine.node.RouteNodeConfigParam; |
32 | |
import org.kuali.rice.kew.rule.RuleBaseValues; |
33 | |
import org.kuali.rice.kew.rule.bo.RuleTemplate; |
34 | |
import org.kuali.rice.kew.rule.service.RuleService; |
35 | |
import org.kuali.rice.kew.service.KEWServiceLocator; |
36 | |
import org.kuali.rice.kew.util.KEWConstants; |
37 | |
import org.kuali.rice.kew.web.KewKualiAction; |
38 | |
import org.kuali.rice.kim.api.responsibility.Responsibility; |
39 | |
import org.kuali.rice.kim.api.services.KimApiServiceLocator; |
40 | |
import org.kuali.rice.kim.api.group.Group; |
41 | |
import org.kuali.rice.kim.bo.role.dto.KimPermissionInfo; |
42 | |
import org.kuali.rice.kim.util.KimConstants; |
43 | |
import org.kuali.rice.kns.service.DocumentHelperService; |
44 | |
import org.kuali.rice.kns.service.KNSServiceLocatorWeb; |
45 | |
import org.kuali.rice.kns.service.MaintenanceDocumentDictionaryService; |
46 | |
import org.kuali.rice.kns.util.GlobalVariables; |
47 | |
import org.kuali.rice.kns.util.KNSConstants; |
48 | |
|
49 | |
import javax.servlet.http.HttpServletRequest; |
50 | |
import javax.servlet.http.HttpServletResponse; |
51 | |
import java.util.ArrayList; |
52 | |
import java.util.HashMap; |
53 | |
import java.util.Iterator; |
54 | |
import java.util.List; |
55 | |
import java.util.Map; |
56 | |
|
57 | |
import static org.kuali.rice.core.api.criteria.PredicateFactory.and; |
58 | |
import static org.kuali.rice.core.api.criteria.PredicateFactory.equal; |
59 | |
|
60 | |
|
61 | |
|
62 | |
|
63 | |
|
64 | |
|
65 | |
|
66 | 0 | public class RuleQuickLinksAction extends KewKualiAction { |
67 | |
|
68 | 0 | private static final Logger LOG = Logger.getLogger(RuleQuickLinksAction.class); |
69 | |
|
70 | |
private MaintenanceDocumentDictionaryService maintenanceDocumentDictionaryService; |
71 | |
private DocumentHelperService documentHelperService; |
72 | |
|
73 | |
public ActionForward start(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception { |
74 | 0 | makeLookupPathParam(mapping, request); |
75 | 0 | establishRequiredState(request, form); |
76 | 0 | return mapping.findForward("basic"); |
77 | |
} |
78 | |
|
79 | |
@SuppressWarnings("unchecked") |
80 | |
public ActionMessages establishRequiredState(HttpServletRequest request, ActionForm form) throws Exception { |
81 | 0 | RuleQuickLinksForm qlForm = (RuleQuickLinksForm) form; |
82 | |
List<DocumentType> documentTypes; |
83 | 0 | if (qlForm.getRootDocTypeName() != null) { |
84 | 0 | documentTypes = new ArrayList<DocumentType>(); |
85 | 0 | DocumentType docType = getDocumentTypeService().findByName(qlForm.getRootDocTypeName()); |
86 | 0 | documentTypes.add(docType); |
87 | 0 | request.setAttribute("renderOpened", Boolean.TRUE); |
88 | 0 | } else { |
89 | 0 | documentTypes = getDocumentTypeService().findAllCurrentRootDocuments(); |
90 | |
} |
91 | 0 | qlForm.setDocumentTypeQuickLinksStructures(getDocumentTypeDataStructure(documentTypes)); |
92 | 0 | int shouldDisplayCount = 0; |
93 | 0 | for ( DocumentTypeQuickLinksStructure dt : qlForm.getDocumentTypeQuickLinksStructures() ) { |
94 | 0 | if ( dt.isShouldDisplay() ) { |
95 | 0 | shouldDisplayCount++; |
96 | |
} |
97 | |
} |
98 | 0 | if ( shouldDisplayCount == 1 ) { |
99 | 0 | request.setAttribute("renderOpened", Boolean.TRUE); |
100 | |
} |
101 | 0 | String documentTypeName = getMaintenanceDocumentDictionaryService().getDocumentTypeName(DocumentType.class); |
102 | |
try { |
103 | 0 | if ((documentTypeName != null) && getDocumentHelperService().getDocumentAuthorizer(documentTypeName).canInitiate(documentTypeName, GlobalVariables.getUserSession().getPerson())) { |
104 | 0 | qlForm.setCanInitiateDocumentTypeDocument( true ); |
105 | |
} |
106 | 0 | } catch (Exception ex) { |
107 | |
|
108 | 0 | LOG.error( "Unable to check initiation permission for "+ documentTypeName, ex ); |
109 | 0 | } |
110 | |
|
111 | 0 | return null; |
112 | |
} |
113 | |
|
114 | |
public ActionForward addDelegationRule(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception { |
115 | 0 | ActionForward result = null; |
116 | |
|
117 | 0 | Long ruleTemplateId = new Long(request.getParameter("delegationRuleBaseValues.ruleTemplate.ruleTemplateId")); |
118 | 0 | String docTypeName = request.getParameter("delegationRuleBaseValues.documentType.name"); |
119 | 0 | List rules = getRuleService().search(docTypeName, null, ruleTemplateId, "", null, null, Boolean.FALSE, Boolean.TRUE, new HashMap(), null); |
120 | |
|
121 | 0 | if (rules.size() == 1) { |
122 | 0 | RuleBaseValues rule = (RuleBaseValues)rules.get(0); |
123 | 0 | String url = ConfigContext.getCurrentContextConfig().getKEWBaseURL() + |
124 | |
"/DelegateRule.do?methodToCall=start" + |
125 | |
"&parentRuleId=" + rule.getRuleBaseValuesId(); |
126 | 0 | result = new ActionForward(url, true); |
127 | 0 | } else { |
128 | 0 | makeLookupPathParam(mapping, request); |
129 | 0 | result = new ActionForward(ConfigContext.getCurrentContextConfig().getKRBaseURL() + |
130 | |
"/lookup.do?methodToCall=start&"+ stripMethodToCall(request.getQueryString()), true); |
131 | |
} |
132 | |
|
133 | 0 | return result; |
134 | |
} |
135 | |
|
136 | |
private List getDocumentTypeDataStructure(List rootDocuments) { |
137 | 0 | List documentTypeQuickLinksStructures = new ArrayList(); |
138 | 0 | for (Iterator iter = rootDocuments.iterator(); iter.hasNext();) { |
139 | 0 | DocumentTypeQuickLinksStructure quickLinkStruct =new DocumentTypeQuickLinksStructure((DocumentType) iter.next()); |
140 | 0 | if (! quickLinkStruct.getFlattenedNodes().isEmpty() || ! quickLinkStruct.getChildrenDocumentTypes().isEmpty()) { |
141 | 0 | documentTypeQuickLinksStructures.add(quickLinkStruct); |
142 | |
} |
143 | |
|
144 | 0 | } |
145 | |
|
146 | 0 | return documentTypeQuickLinksStructures; |
147 | |
} |
148 | |
|
149 | |
|
150 | |
|
151 | |
|
152 | |
|
153 | |
|
154 | |
|
155 | |
|
156 | 0 | public static class DocumentTypeQuickLinksStructure { |
157 | |
private DocumentType documentType; |
158 | 0 | private List<RouteNode> flattenedNodes = new ArrayList<RouteNode>(); |
159 | 0 | private List<DocumentTypeQuickLinksStructure> childrenDocumentTypes = new ArrayList<DocumentTypeQuickLinksStructure>(); |
160 | 0 | private List<KimPermissionInfo> permissions = null; |
161 | |
|
162 | 0 | private DocumentTypeQuickLinksStructure(DocumentType documentType) { |
163 | 0 | this.documentType = documentType; |
164 | 0 | if ( documentType != null ) { |
165 | 0 | List<RouteNode> tempFlattenedNodes = KEWServiceLocator.getRouteNodeService() |
166 | |
.getFlattenedNodes( documentType, true ); |
167 | 0 | for ( RouteNode routeNode : tempFlattenedNodes ) { |
168 | 0 | if ( routeNode.isFlexRM() || routeNode.isRoleNode() ) { |
169 | 0 | flattenedNodes.add( new RouteNodeForDisplay( routeNode ) ); |
170 | |
} |
171 | |
} |
172 | 0 | for ( Iterator<DocumentType> iter = documentType.getChildrenDocTypes().iterator(); iter.hasNext(); ) { |
173 | 0 | childrenDocumentTypes.add( new DocumentTypeQuickLinksStructure( iter.next() ) ); |
174 | |
} |
175 | |
} |
176 | 0 | } |
177 | |
|
178 | |
public List getChildrenDocumentTypes() { |
179 | 0 | return childrenDocumentTypes; |
180 | |
} |
181 | |
public void setChildrenDocumentTypes(List<DocumentTypeQuickLinksStructure> childrenDocumentTypes) { |
182 | 0 | this.childrenDocumentTypes = childrenDocumentTypes; |
183 | 0 | } |
184 | |
public DocumentType getDocumentType() { |
185 | 0 | return documentType; |
186 | |
} |
187 | |
public void setDocumentType(DocumentType documentType) { |
188 | 0 | this.documentType = documentType; |
189 | 0 | } |
190 | |
public List getFlattenedNodes() { |
191 | 0 | return flattenedNodes; |
192 | |
} |
193 | |
public void setFlattenedNodes(List<RouteNode> flattenedNodes) { |
194 | 0 | this.flattenedNodes = flattenedNodes; |
195 | 0 | } |
196 | |
public boolean isShouldDisplay() { |
197 | |
|
198 | |
|
199 | |
|
200 | |
|
201 | |
|
202 | |
|
203 | |
|
204 | |
|
205 | 0 | return true; |
206 | |
} |
207 | |
|
208 | |
public List<KimPermissionInfo> getPermissions() { |
209 | 0 | if ( permissions == null ) { |
210 | |
|
211 | |
|
212 | 0 | Map<String,String> searchCriteria = new HashMap<String,String>(); |
213 | 0 | searchCriteria.put("attributeName", "documentTypeName" ); |
214 | 0 | searchCriteria.put("active", "Y"); |
215 | 0 | searchCriteria.put("detailCriteria", |
216 | |
KimConstants.AttributeConstants.DOCUMENT_TYPE_NAME+"="+getDocumentType().getName() |
217 | |
); |
218 | 0 | permissions = KimApiServiceLocator.getPermissionService().lookupPermissions( searchCriteria, false ); |
219 | |
|
220 | |
} |
221 | 0 | return permissions; |
222 | |
} |
223 | |
|
224 | |
public boolean isHasRelatedPermissions() { |
225 | 0 | return !getPermissions().isEmpty(); |
226 | |
} |
227 | |
|
228 | |
public int getRelatedPermissionCount() { |
229 | 0 | return getPermissions().size(); |
230 | |
} |
231 | |
} |
232 | |
|
233 | 0 | public static class RouteNodeForDisplay extends RouteNode { |
234 | |
private static final long serialVersionUID = 1L; |
235 | |
private RouteNode baseNode; |
236 | |
|
237 | 0 | public RouteNodeForDisplay( RouteNode baseNode ) { |
238 | 0 | this.baseNode = baseNode; |
239 | 0 | } |
240 | |
|
241 | |
public boolean equals(Object obj) { |
242 | 0 | return this.baseNode.equals(obj); |
243 | |
} |
244 | |
|
245 | |
public String getActivationType() { |
246 | 0 | return this.baseNode.getActivationType(); |
247 | |
} |
248 | |
|
249 | |
public BranchPrototype getBranch() { |
250 | 0 | return this.baseNode.getBranch(); |
251 | |
} |
252 | |
|
253 | |
public List<RouteNodeConfigParam> getConfigParams() { |
254 | 0 | return this.baseNode.getConfigParams(); |
255 | |
} |
256 | |
|
257 | |
public String getContentFragment() { |
258 | 0 | return this.baseNode.getContentFragment(); |
259 | |
} |
260 | |
|
261 | |
public DocumentType getDocumentType() { |
262 | 0 | return this.baseNode.getDocumentType(); |
263 | |
} |
264 | |
|
265 | |
public Long getDocumentTypeId() { |
266 | 0 | return this.baseNode.getDocumentTypeId(); |
267 | |
} |
268 | |
public Group getExceptionWorkgroup() { |
269 | 0 | return this.baseNode.getExceptionWorkgroup(); |
270 | |
} |
271 | |
public String getExceptionWorkgroupId() { |
272 | 0 | return this.baseNode.getExceptionWorkgroupId(); |
273 | |
} |
274 | |
public String getExceptionWorkgroupName() { |
275 | 0 | return this.baseNode.getExceptionWorkgroupName(); |
276 | |
} |
277 | |
public Boolean getFinalApprovalInd() { |
278 | 0 | return this.baseNode.getFinalApprovalInd(); |
279 | |
} |
280 | |
public Integer getLockVerNbr() { |
281 | 0 | return this.baseNode.getLockVerNbr(); |
282 | |
} |
283 | |
public Boolean getMandatoryRouteInd() { |
284 | 0 | return this.baseNode.getMandatoryRouteInd(); |
285 | |
} |
286 | |
public List<RouteNode> getNextNodes() { |
287 | 0 | return this.baseNode.getNextNodes(); |
288 | |
} |
289 | |
public String getNodeType() { |
290 | 0 | return this.baseNode.getNodeType(); |
291 | |
} |
292 | |
public List<RouteNode> getPreviousNodes() { |
293 | 0 | return this.baseNode.getPreviousNodes(); |
294 | |
} |
295 | |
public String getRouteMethodCode() { |
296 | 0 | return this.baseNode.getRouteMethodCode(); |
297 | |
} |
298 | |
public String getRouteMethodName() { |
299 | 0 | return this.baseNode.getRouteMethodName(); |
300 | |
} |
301 | |
public Long getRouteNodeId() { |
302 | 0 | return this.baseNode.getRouteNodeId(); |
303 | |
} |
304 | |
public String getRouteNodeName() { |
305 | 0 | return this.baseNode.getRouteNodeName(); |
306 | |
} |
307 | |
public RuleTemplate getRuleTemplate() { |
308 | 0 | return this.baseNode.getRuleTemplate(); |
309 | |
} |
310 | |
public int hashCode() { |
311 | 0 | return this.baseNode.hashCode(); |
312 | |
} |
313 | |
public boolean isExceptionGroupDefined() { |
314 | 0 | return this.baseNode.isExceptionGroupDefined(); |
315 | |
} |
316 | |
public boolean isFlexRM() { |
317 | 0 | return this.baseNode.isFlexRM(); |
318 | |
} |
319 | |
public boolean isRoleNode() { |
320 | 0 | return this.baseNode.isRoleNode(); |
321 | |
} |
322 | |
public String toString() { |
323 | 0 | return this.baseNode.toString(); |
324 | |
} |
325 | |
|
326 | 0 | private List<Responsibility> responsibilities = null; |
327 | |
|
328 | |
public List<Responsibility> getResponsibilities() { |
329 | 0 | if ( responsibilities == null ) { |
330 | 0 | QueryByCriteria.Builder builder = QueryByCriteria.Builder.create(); |
331 | 0 | Predicate p = and( |
332 | |
equal("template.namespaceCode", KNSConstants.KUALI_RICE_WORKFLOW_NAMESPACE), |
333 | |
equal("template.name", KEWConstants.DEFAULT_RESPONSIBILITY_TEMPLATE_NAME), |
334 | |
equal("active", "Y"), |
335 | |
equal("attributes[documentTypeName]", getDocumentType().getName()), |
336 | |
equal("attributes[routeNodeName]", getRouteNodeName()) |
337 | |
); |
338 | 0 | builder.setPredicates(p); |
339 | 0 | responsibilities = KimApiServiceLocator.getResponsibilityService().findResponsibilities(builder.build()).getResults(); |
340 | |
} |
341 | 0 | return responsibilities; |
342 | |
} |
343 | |
|
344 | |
public int getResponsibilityCount() { |
345 | 0 | return getResponsibilities().size(); |
346 | |
} |
347 | |
|
348 | |
public boolean isHasResponsibility() { |
349 | 0 | return !getResponsibilities().isEmpty(); |
350 | |
} |
351 | |
} |
352 | |
|
353 | |
private void makeLookupPathParam(ActionMapping mapping, HttpServletRequest request) { |
354 | 0 | String basePath = request.getScheme() + "://" + request.getServerName() + ":" + request.getServerPort() + request.getContextPath() + mapping.getModuleConfig().getPrefix(); |
355 | 0 | request.setAttribute("basePath", basePath); |
356 | 0 | } |
357 | |
|
358 | |
private String stripMethodToCall(String queryString) { |
359 | 0 | return queryString.replaceAll("methodToCall=addDelegationRule&", ""); |
360 | |
} |
361 | |
|
362 | |
private DocumentTypeService getDocumentTypeService() { |
363 | 0 | return KEWServiceLocator.getDocumentTypeService(); |
364 | |
} |
365 | |
|
366 | |
private RuleService getRuleService() { |
367 | 0 | return KEWServiceLocator.getRuleService(); |
368 | |
} |
369 | |
|
370 | |
public DocumentHelperService getDocumentHelperService() { |
371 | 0 | if(documentHelperService == null){ |
372 | 0 | documentHelperService = KNSServiceLocatorWeb.getDocumentHelperService(); |
373 | |
} |
374 | 0 | return documentHelperService; |
375 | |
} |
376 | |
|
377 | |
public MaintenanceDocumentDictionaryService getMaintenanceDocumentDictionaryService() { |
378 | 0 | if(maintenanceDocumentDictionaryService == null){ |
379 | 0 | maintenanceDocumentDictionaryService = KNSServiceLocatorWeb.getMaintenanceDocumentDictionaryService(); |
380 | |
} |
381 | 0 | return maintenanceDocumentDictionaryService; |
382 | |
} |
383 | |
|
384 | |
|
385 | |
|
386 | |
|
387 | |
@Override |
388 | |
public ActionForward toggleTab(ActionMapping mapping, ActionForm form, |
389 | |
HttpServletRequest request, HttpServletResponse response) |
390 | |
throws Exception { |
391 | |
|
392 | 0 | establishRequiredState(request, form); |
393 | 0 | return super.toggleTab(mapping, form, request, response); |
394 | |
} |
395 | |
|
396 | |
} |