Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
SimpleDocumentActionsWebServiceImpl |
|
| 2.5609756097560976;2.561 |
1 | /* | |
2 | * Copyright 2005-2007 The Kuali Foundation | |
3 | * | |
4 | * | |
5 | * Licensed under the Educational Community License, Version 2.0 (the "License"); | |
6 | * you may not use this file except in compliance with the License. | |
7 | * You may obtain a copy of the License at | |
8 | * | |
9 | * http://www.opensource.org/licenses/ecl2.php | |
10 | * | |
11 | * Unless required by applicable law or agreed to in writing, software | |
12 | * distributed under the License is distributed on an "AS IS" BASIS, | |
13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
14 | * See the License for the specific language governing permissions and | |
15 | * limitations under the License. | |
16 | */ | |
17 | package org.kuali.rice.kew.webservice.impl; | |
18 | ||
19 | import java.sql.Timestamp; | |
20 | import java.text.DateFormat; | |
21 | import java.text.SimpleDateFormat; | |
22 | import java.util.ArrayList; | |
23 | import java.util.Calendar; | |
24 | import java.util.GregorianCalendar; | |
25 | import java.util.List; | |
26 | ||
27 | import javax.jws.WebService; | |
28 | ||
29 | import org.apache.commons.lang.StringUtils; | |
30 | import org.kuali.rice.core.framework.persistence.jdbc.sql.SQLUtils; | |
31 | import org.kuali.rice.kew.dto.AdHocRevokeDTO; | |
32 | import org.kuali.rice.kew.dto.NoteDTO; | |
33 | import org.kuali.rice.kew.dto.RouteHeaderDTO; | |
34 | import org.kuali.rice.kew.exception.WorkflowException; | |
35 | import org.kuali.rice.kew.exception.WorkflowServiceErrorException; | |
36 | import org.kuali.rice.kew.service.KEWServiceLocator; | |
37 | import org.kuali.rice.kew.service.WorkflowDocument; | |
38 | import org.kuali.rice.kew.service.WorkflowInfo; | |
39 | import org.kuali.rice.kew.util.KEWConstants; | |
40 | import org.kuali.rice.kew.util.KEWWebServiceConstants; | |
41 | import org.kuali.rice.kew.webservice.DocumentResponse; | |
42 | import org.kuali.rice.kew.webservice.ErrorResponse; | |
43 | import org.kuali.rice.kew.webservice.NoteDetail; | |
44 | import org.kuali.rice.kew.webservice.NoteResponse; | |
45 | import org.kuali.rice.kew.webservice.SimpleDocumentActionsWebService; | |
46 | import org.kuali.rice.kew.webservice.StandardResponse; | |
47 | import org.kuali.rice.kew.webservice.UserInRouteLogResponse; | |
48 | import org.kuali.rice.kim.bo.Person; | |
49 | import org.kuali.rice.kim.service.KIMServiceLocator; | |
50 | ||
51 | ||
52 | /** | |
53 | * Implementation of the SimpleDocumentActionsWebService | |
54 | * | |
55 | * @author Kuali Rice Team (rice.collab@kuali.org) | |
56 | */ | |
57 | @WebService(endpointInterface = KEWWebServiceConstants.SimpleDocumentActionsWebService.INTERFACE_CLASS, | |
58 | serviceName = KEWWebServiceConstants.SimpleDocumentActionsWebService.WEB_SERVICE_NAME, | |
59 | portName = KEWWebServiceConstants.SimpleDocumentActionsWebService.WEB_SERVICE_PORT, | |
60 | targetNamespace = KEWWebServiceConstants.MODULE_TARGET_NAMESPACE) | |
61 | 0 | public class SimpleDocumentActionsWebServiceImpl implements SimpleDocumentActionsWebService { |
62 | ||
63 | /** | |
64 | * <ol> | |
65 | * <li>Create a WorkflowDocument based on the docId and principalId passed in</li> | |
66 | * <li>Acknowledge the document with the passed in annotation</li> | |
67 | * <li>Return the standard set of return values.</li> | |
68 | * </ol> | |
69 | * | |
70 | * @param docId KEW document id of the document to acknowledge | |
71 | * @param principalId principal id of the user who is acknowledging the document | |
72 | * @param annotation a comment associated with this request | |
73 | * @return Map including the standard set of return values | |
74 | * | |
75 | * @see org.kuali.rice.kew.webservice.SimpleDocumentActionsWebService#acknowledge(java.lang.String, java.lang.String, java.lang.String) | |
76 | */ | |
77 | @Override | |
78 | public StandardResponse acknowledge(String docId, String principalId, String annotation) { | |
79 | StandardResponse results; | |
80 | ||
81 | try { | |
82 | 0 | WorkflowDocument workflowDocument = setupWorkflowDocument(docId, principalId); |
83 | ||
84 | 0 | workflowDocument.acknowledge(annotation); |
85 | 0 | results = createResults(workflowDocument); |
86 | 0 | } catch (WorkflowException e) { |
87 | 0 | results = createErrorResults("Workflow Error: " + e.getLocalizedMessage()); |
88 | 0 | } |
89 | ||
90 | 0 | return results; |
91 | } | |
92 | ||
93 | /** | |
94 | * <ol> | |
95 | * <li>Create a WorkflowDocument based on the docId and principalId passed in</li> | |
96 | * <li>Set the docTitle and docContent if they are passed in</li> | |
97 | * <li>Approve the document with the passed in annotation</li> | |
98 | * <li>Return the standard set of return values</li> | |
99 | * </ol> | |
100 | * | |
101 | * @param docId KEW document id of the document to approve | |
102 | * @param principalId principal id of the user who is approving the document | |
103 | * @param docTitle title for this document | |
104 | * @param docContent xml content for this document | |
105 | * @param annotation a comment associated with this request | |
106 | * @return Map including the standard set of return values | |
107 | * | |
108 | * @see org.kuali.rice.kew.webservice.SimpleDocumentActionsWebService#approve(java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String) | |
109 | */ | |
110 | @Override | |
111 | public StandardResponse approve(String docId, String principalId, String docTitle, | |
112 | String docContent, String annotation) { | |
113 | //Map<String, Object> results; | |
114 | StandardResponse results; | |
115 | ||
116 | try { | |
117 | 0 | WorkflowDocument workflowDocument = setupWorkflowDocument(docId, principalId, docTitle, docContent); |
118 | ||
119 | 0 | workflowDocument.approve(annotation); |
120 | 0 | results = createResults(workflowDocument); |
121 | 0 | } catch (WorkflowException e) { |
122 | 0 | results = createErrorResults("Workflow Error: " + e.getLocalizedMessage()); |
123 | 0 | } |
124 | ||
125 | 0 | return results; |
126 | } | |
127 | ||
128 | /** | |
129 | * <ol> | |
130 | * <li>Create a WorkflowDocument based on the docId and principalId passed in</li> | |
131 | * <li>Set the docTitle and docContent if they are passed in</li> | |
132 | * <li>Blanket Approve the document with the passed in annotation</li> | |
133 | * <li>Return the standard set of return values</li> | |
134 | * </ol> | |
135 | * | |
136 | * Blanket Approval means all future approval requests will be satisfied | |
137 | * Can only be performed by a super user. | |
138 | * | |
139 | * @param docId KEW document id of the document to blanket approve | |
140 | * @param principalId principal id of the user who is blanket approving the document | |
141 | * @param docTitle title for this document | |
142 | * @param docContent xml content for this document | |
143 | * @param annotation a comment associated with this request | |
144 | * @return Map including the standard set of return values | |
145 | * | |
146 | * @see org.kuali.rice.kew.webservice.SimpleDocumentActionsWebService#blanketApprove(java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String) | |
147 | */ | |
148 | @Override | |
149 | public StandardResponse blanketApprove(String docId, String principalId, String docTitle, | |
150 | String docContent, String annotation) { | |
151 | //Map<String, Object> results; | |
152 | StandardResponse results; | |
153 | ||
154 | try { | |
155 | 0 | WorkflowDocument workflowDocument = setupWorkflowDocument(docId, principalId, docTitle, docContent); |
156 | ||
157 | 0 | workflowDocument.blanketApprove(annotation); |
158 | 0 | results = createResults(workflowDocument); |
159 | 0 | } catch (WorkflowException e) { |
160 | 0 | results = createErrorResults("Workflow Error: " + e.getLocalizedMessage()); |
161 | 0 | } |
162 | ||
163 | 0 | return results; |
164 | } | |
165 | ||
166 | /** | |
167 | * <ol> | |
168 | * <li>Create a WorkflowDocument based on the docId and principalId passed in</li> | |
169 | * <li>Cancel the document with the passed in annotation</li> | |
170 | * <li>Return the standard set of return values</li> | |
171 | * </ol> | |
172 | * | |
173 | * @param docId KEW document id of the document to cancel | |
174 | * @param principalId principal id of the user who is canceling the document | |
175 | * @param annotation a comment associated with this request | |
176 | * @return Map including the standard set of return values | |
177 | * | |
178 | * @see org.kuali.rice.kew.webservice.SimpleDocumentActionsWebService#cancel(java.lang.String, java.lang.String, java.lang.String) | |
179 | */ | |
180 | @Override | |
181 | public StandardResponse cancel(String docId, String principalId, String annotation) { | |
182 | //Map<String, Object> results; | |
183 | StandardResponse results; | |
184 | try { | |
185 | 0 | WorkflowDocument workflowDocument = setupWorkflowDocument(docId, principalId); |
186 | ||
187 | 0 | workflowDocument.cancel(annotation); |
188 | 0 | results = createResults(workflowDocument); |
189 | 0 | } catch (WorkflowException e) { |
190 | 0 | results = createErrorResults("Workflow Error: " + e.getLocalizedMessage()); |
191 | 0 | } |
192 | ||
193 | 0 | return results; |
194 | } | |
195 | ||
196 | /** | |
197 | * <ol> | |
198 | * <li>Create a WorkflowDocument with the docType and principalId passed in</li> | |
199 | * <li>Set the document title to be the docTitle that was passed in</li | |
200 | * <li>Save the Routing data (Route Header info)</li> | |
201 | * <li>Return the standard set of return values and the docId of the newly created document</li> | |
202 | * </ol> | |
203 | * | |
204 | * @param initiatorPrincipalId principal id of the document initiator | |
205 | * @param appDocId application specific document id | |
206 | * @param docType KEW document type for the document to be created | |
207 | * @param docTitle title for this document | |
208 | * @return Map including the standard set of return values and the docId of the newly created document | |
209 | * | |
210 | * @see org.kuali.rice.kew.webservice.SimpleDocumentActionsWebService#create(java.lang.String, java.lang.String, java.lang.String, java.lang.String) | |
211 | */ | |
212 | @Override | |
213 | public DocumentResponse create(String initiatorPrincipalId, String appDocId, String docType, | |
214 | String docTitle) { | |
215 | ||
216 | // Map<String, Object> results; | |
217 | StandardResponse results; | |
218 | ||
219 | 0 | String docId = ""; |
220 | ||
221 | try { | |
222 | 0 | WorkflowDocument workflowDocument = new WorkflowDocument(initiatorPrincipalId, docType); |
223 | 0 | workflowDocument.setTitle(docTitle); |
224 | 0 | workflowDocument.setAppDocId(appDocId); |
225 | 0 | workflowDocument.saveRoutingData(); |
226 | ||
227 | 0 | results = createResults(workflowDocument); |
228 | 0 | if (workflowDocument.getRouteHeaderId() != null) { |
229 | 0 | docId = workflowDocument.getRouteHeaderId().toString(); |
230 | } | |
231 | 0 | DocumentResponse docResponse = new DocumentResponse(results); |
232 | 0 | docResponse.setDocId(docId); |
233 | 0 | docResponse.setDocContent(workflowDocument.getApplicationContent()); |
234 | 0 | docResponse.setTitle(workflowDocument.getTitle()); |
235 | 0 | docResponse.setNotes(new ArrayList<NoteDetail>()); |
236 | 0 | if (workflowDocument.isApprovalRequested()) { |
237 | 0 | docResponse.setActionRequested(KEWConstants.ACTION_REQUEST_APPROVE_REQ_LABEL); |
238 | 0 | } else if (workflowDocument.isAcknowledgeRequested()) { |
239 | 0 | docResponse.setActionRequested(KEWConstants.ACTION_REQUEST_ACKNOWLEDGE_REQ_LABEL); |
240 | 0 | } else if (workflowDocument.isFYIRequested()) { |
241 | 0 | docResponse.setActionRequested(KEWConstants.ACTION_REQUEST_FYI_REQ_LABEL); |
242 | 0 | } else if (workflowDocument.isCompletionRequested()) { |
243 | // TODO: how do we want to handle a "Complete" request? | |
244 | 0 | docResponse.setActionRequested(KEWConstants.ACTION_REQUEST_COMPLETE_REQ_LABEL); |
245 | } | |
246 | 0 | return docResponse; |
247 | 0 | } catch (WorkflowException e) { |
248 | 0 | results = createErrorResults("Workflow Error: " + e.getLocalizedMessage()); |
249 | 0 | DocumentResponse docResponse = new DocumentResponse(results); |
250 | 0 | docResponse.setDocId(docId); |
251 | 0 | return docResponse; |
252 | } | |
253 | } | |
254 | ||
255 | /** | |
256 | * <ol> | |
257 | * <li>Create a WorkflowDocument based on the docId and principalId passed in</li> | |
258 | * <li>Disapprove the document with the passed in annotation</li> | |
259 | * <li>Return the standard set of return values</li> | |
260 | * </ol> | |
261 | * | |
262 | * @param docId KEW document id of the document to disapprove | |
263 | * @param principalId principal id of the user who is disapproving the document | |
264 | * @param annotation a comment associated with this request | |
265 | * @return Map including the standard set of return values | |
266 | * | |
267 | * @see org.kuali.rice.kew.webservice.SimpleDocumentActionsWebService#disapprove(java.lang.String, java.lang.String, java.lang.String) | |
268 | */ | |
269 | @Override | |
270 | public StandardResponse disapprove(String docId, String principalId, String annotation) { | |
271 | // Map<String, Object> results; | |
272 | StandardResponse results; | |
273 | ||
274 | try { | |
275 | 0 | WorkflowDocument workflowDocument = setupWorkflowDocument(docId, principalId); |
276 | ||
277 | 0 | workflowDocument.disapprove(annotation); |
278 | 0 | results = createResults(workflowDocument); |
279 | 0 | } catch (WorkflowException e) { |
280 | 0 | results = createErrorResults("Workflow Error: " + e.getLocalizedMessage()); |
281 | 0 | } |
282 | ||
283 | 0 | return results; |
284 | } | |
285 | ||
286 | /** | |
287 | * <ol> | |
288 | * <li>Create a WorkflowDocument based on the docId and principalId passed in</li> | |
289 | * <li>Clear the FYI request on the document</li> | |
290 | * <li>Return the standard set of return values</li> | |
291 | * </ol> | |
292 | * | |
293 | * @param docId KEW document id of the document to acknowledge | |
294 | * @param principalId principal id of the user who is acknowledging the document | |
295 | * @return Map including the standard set of return values | |
296 | * | |
297 | * @see org.kuali.rice.kew.webservice.SimpleDocumentActionsWebService#fyi(java.lang.String, java.lang.String) | |
298 | */ | |
299 | @Override | |
300 | public StandardResponse fyi(String docId, String principalId) { | |
301 | // Map<String, Object> results; | |
302 | StandardResponse results; | |
303 | ||
304 | try { | |
305 | 0 | WorkflowDocument workflowDocument = setupWorkflowDocument(docId, principalId); |
306 | ||
307 | 0 | workflowDocument.fyi(); |
308 | 0 | results = createResults(workflowDocument); |
309 | 0 | } catch (WorkflowException e) { |
310 | 0 | results = createErrorResults("Workflow Error: " + e.getLocalizedMessage()); |
311 | 0 | } |
312 | ||
313 | 0 | return results; |
314 | } | |
315 | ||
316 | /** | |
317 | * <ol> | |
318 | * <li>Create a WorkflowDocument based on the docId and principalId passed in</li> | |
319 | * <li>Get the document content and the action requested (Approve, Acknowledge, etc) of the user</li> | |
320 | * <li>Return the standard set of return values, the docContent, the title, | |
321 | * and the actionRequested</li> | |
322 | * </ol> | |
323 | * | |
324 | * @param docId KEW document id of the document to retrieve information about | |
325 | * @param principalId principal id of the user to retrieve the document for | |
326 | * @return Map including the standard set of return values, the xml document content, | |
327 | * the action requested ( Approve, Acknowledge, Fyi, Complete ) and an array of Maps | |
328 | * containing the following for each Note (author, noteId, timestamp, noteText). | |
329 | * | |
330 | * @see org.kuali.rice.kew.webservice.SimpleDocumentActionsWebService#getDocument(java.lang.String, java.lang.String) | |
331 | */ | |
332 | @Override | |
333 | public DocumentResponse getDocument(String docId, String principalId) { | |
334 | // Map<String, Object> results; | |
335 | StandardResponse results; | |
336 | 0 | List<NoteDetail> noteDetails = new ArrayList<NoteDetail>(0); |
337 | 0 | String actionRequested = ""; |
338 | 0 | String docContent = ""; |
339 | 0 | String title = ""; |
340 | ||
341 | try { | |
342 | 0 | WorkflowDocument workflowDocument = setupWorkflowDocument(docId, principalId); |
343 | 0 | RouteHeaderDTO routeHeader = workflowDocument.getRouteHeader(); |
344 | ||
345 | 0 | if (routeHeader == null) { |
346 | 0 | results = createErrorResults("Error: NULL Route Header"); |
347 | } else { | |
348 | 0 | results = createStandardResults(routeHeader); |
349 | 0 | docContent = workflowDocument.getApplicationContent(); |
350 | 0 | title = workflowDocument.getTitle(); |
351 | 0 | List notes = workflowDocument.getNoteList(); |
352 | 0 | noteDetails = buildNoteDetails(notes); |
353 | ||
354 | 0 | if (routeHeader.isApproveRequested()) { |
355 | 0 | actionRequested = KEWConstants.ACTION_REQUEST_APPROVE_REQ_LABEL; |
356 | 0 | } else if (routeHeader.isAckRequested()) { |
357 | 0 | actionRequested = KEWConstants.ACTION_REQUEST_ACKNOWLEDGE_REQ_LABEL; |
358 | 0 | } else if (routeHeader.isFyiRequested()) { |
359 | 0 | actionRequested = KEWConstants.ACTION_REQUEST_FYI_REQ_LABEL; |
360 | 0 | } else if (routeHeader.isCompleteRequested()) { |
361 | // TODO: how do we want to handle a "Complete" request? | |
362 | 0 | actionRequested = KEWConstants.ACTION_REQUEST_COMPLETE_REQ_LABEL; |
363 | } | |
364 | } | |
365 | 0 | } catch (WorkflowException e) { |
366 | 0 | results = createErrorResults("Workflow Error: " + e.getLocalizedMessage()); |
367 | 0 | } |
368 | ||
369 | 0 | DocumentResponse docResponse = new DocumentResponse(results); |
370 | ||
371 | // results.put(DOC_CONTENT_LABEL, docContent); | |
372 | // results.put(TITLE_LABEL, title); | |
373 | // results.put(NOTES_LABEL, noteDetails); | |
374 | // results.put(ACTION_REQUESTED_LABEL, actionRequested); | |
375 | ||
376 | 0 | docResponse.setDocId(docId); |
377 | 0 | docResponse.setDocContent(docContent); |
378 | 0 | docResponse.setTitle(title); |
379 | 0 | docResponse.setNotes(noteDetails); |
380 | 0 | docResponse.setActionRequested(actionRequested); |
381 | ||
382 | 0 | return docResponse; |
383 | } | |
384 | ||
385 | /** | |
386 | * <ol> | |
387 | * <li>Create a new WorkflowInfo object</li> | |
388 | * <li>Call isUserAuthenticatedByRouteLog on the WorkflowInfo object to see if the user is in the route log</li> | |
389 | * <li>Return True/False and an error message if any</li> | |
390 | * </ol> | |
391 | * Useful for security purposes (if return is False, user shouldn't | |
392 | * be able to see the document unless it's public.) | |
393 | * | |
394 | * Call isUserAuthenticatedByRouteLog with true for the lookFuture parameter so that | |
395 | * we will check future workflow requests as well as currently outstanding requests. | |
396 | * | |
397 | * @param docId KEW document id of the document to check | |
398 | * @param principalId principal id of the user to check | |
399 | * @return Map containing True/False for isUserInRouteLog and an error message if | |
400 | * a problem occured | |
401 | * | |
402 | * @see org.kuali.rice.kew.webservice.SimpleDocumentActionsWebService#isUserInRouteLog(java.lang.String, java.lang.String) | |
403 | */ | |
404 | @Override | |
405 | public UserInRouteLogResponse isUserInRouteLog(String docId, String principalId) { | |
406 | //Map<String, Object> results = new HashMap<String, Object>(6); | |
407 | ||
408 | 0 | UserInRouteLogResponse results = new UserInRouteLogResponse(); |
409 | 0 | String errorMessage = ""; |
410 | 0 | boolean isUserInRouteLog = false; |
411 | 0 | WorkflowInfo info = new WorkflowInfo(); |
412 | try { | |
413 | 0 | Long id = Long.parseLong(docId); |
414 | 0 | isUserInRouteLog = info.isUserAuthenticatedByRouteLog(id, principalId, true); |
415 | 0 | } catch (NumberFormatException e) { |
416 | 0 | errorMessage = "Invalid (non-numeric) docId"; |
417 | 0 | } catch (WorkflowException e) { |
418 | 0 | errorMessage = "Workflow Error: " + e.getLocalizedMessage(); |
419 | 0 | } |
420 | ||
421 | 0 | results.setIsUserInRouteLog(String.valueOf(isUserInRouteLog)); |
422 | 0 | results.setErrorMessage(errorMessage); |
423 | 0 | return results; |
424 | } | |
425 | ||
426 | /** | |
427 | * <ol> | |
428 | * <li>Create a WorkflowDocument based on the docId and principalId passed in</li> | |
429 | * <li>Add the adhoc acknowlege request (app specific route) to the passed in group with the passed in annotation</li> | |
430 | * <li>Return the standard set of return values</li> | |
431 | * </ol> | |
432 | * | |
433 | * @param docId KEW document id of the document to create the adhoc request for | |
434 | * @param principalId principal id of the user who is making this request | |
435 | * @param recipientGroupId workgroupId of the group to create this request for | |
436 | * @param annotation a comment associated with this request | |
437 | * @return Map including the standard set of return values | |
438 | * | |
439 | * @see org.kuali.rice.kew.webservice.SimpleDocumentActionsWebService#requestAdHocAckToGroup(java.lang.String, java.lang.String, java.lang.String, java.lang.String) | |
440 | */ | |
441 | @Override | |
442 | public StandardResponse requestAdHocAckToGroup(String docId, String principalId, | |
443 | String recipientGroupId, String annotation) { | |
444 | 0 | return requestAdHocToGroup(docId, principalId, recipientGroupId, annotation, KEWConstants.ACTION_REQUEST_ACKNOWLEDGE_REQ, KEWConstants.ACTION_REQUEST_ACKNOWLEDGE_REQ_LABEL); |
445 | } | |
446 | ||
447 | /** | |
448 | * <ol> | |
449 | * <li>Create a WorkflowDocument based on the docId and principalId passed in</li> | |
450 | * <li>Add the adhoc acknowlege request (app specific route) to the passed in user with the passed in annotation</li> | |
451 | * <li>Return the standard set of return values</li> | |
452 | * </ol> | |
453 | * | |
454 | * @param docId KEW document id of the document to create the adhoc request for | |
455 | * @param principalId principal id of the user who is making this request | |
456 | * @param recipientPrincipalId principal id of the user for whom the request is being created | |
457 | * @param annotation a comment associated with this request | |
458 | * @return Map including the standard set of return values | |
459 | */ | |
460 | @Override | |
461 | public StandardResponse requestAdHocAckToPrincipal(String docId, String principalId, | |
462 | String recipientPrincipalId, String annotation) { | |
463 | 0 | return requestAdHocToPrincipal(docId, principalId, recipientPrincipalId, annotation, KEWConstants.ACTION_REQUEST_ACKNOWLEDGE_REQ, KEWConstants.ACTION_REQUEST_ACKNOWLEDGE_REQ_LABEL); |
464 | } | |
465 | ||
466 | /** | |
467 | * <ol> | |
468 | * <li>Create a WorkflowDocument based on the docId and principalId passed in</li> | |
469 | * <li>Add the adhoc approve request (app specific route) to the passed in group with the passed in annotation</li> | |
470 | * <li>Return the standard set of return values</li> | |
471 | * </ol> | |
472 | * | |
473 | * @param docId KEW document id of the document to create the adhoc request for | |
474 | * @param principalId principal id of the user who is making this request | |
475 | * @param recipientGroupId workgroupId of the group to create this request for | |
476 | * @param annotation a comment associated with this request | |
477 | * @return Map including the standard set of return values | |
478 | * | |
479 | * @see org.kuali.rice.kew.webservice.SimpleDocumentActionsWebService#requestAdHocApproveToGroup(java.lang.String, java.lang.String, java.lang.String, java.lang.String) | |
480 | */ | |
481 | @Override | |
482 | public StandardResponse requestAdHocApproveToGroup(String docId, String principalId, | |
483 | String recipientGroupId, String annotation) { | |
484 | 0 | return requestAdHocToGroup(docId, principalId, recipientGroupId, annotation, KEWConstants.ACTION_REQUEST_APPROVE_REQ, KEWConstants.ACTION_REQUEST_APPROVE_REQ_LABEL); |
485 | } | |
486 | ||
487 | /** | |
488 | * <ol> | |
489 | * <li>Create a WorkflowDocument based on the docId and principalId passed in</li> | |
490 | * <li>Add the adhoc approve request (app specific route) to the passed in user with the passed in annotation</li> | |
491 | * <li>Return the standard set of return values</li> | |
492 | * </ol> | |
493 | * | |
494 | * @param docId KEW document id of the document to create the adhoc request for | |
495 | * @param principalId principal id of the user who is making this request | |
496 | * @param recipientPrincipalId principal id of the user for whom the request is being created | |
497 | * @param annotation a comment associated with this request | |
498 | * @return Map including the standard set of return values | |
499 | */ | |
500 | @Override | |
501 | public StandardResponse requestAdHocApproveToPrincipal(String docId, String principalId, | |
502 | String recipientPrincipalId, String annotation) { | |
503 | ||
504 | 0 | return requestAdHocToPrincipal(docId, principalId, recipientPrincipalId, annotation, KEWConstants.ACTION_REQUEST_APPROVE_REQ, KEWConstants.ACTION_REQUEST_APPROVE_REQ_LABEL); |
505 | } | |
506 | ||
507 | /** | |
508 | * <ol> | |
509 | * <li>Create a WorkflowDocument based on the docId and principalId passed in</li> | |
510 | * <li>Add the adhoc fyi request (app specific route) to the passed in group with the passed in annotation</li> | |
511 | * <li>Return the standard set of return values</li> | |
512 | * </ol> | |
513 | * | |
514 | * @param docId KEW document id of the document to create the adhoc request for | |
515 | * @param principalId principal id of the user who is making this request | |
516 | * @param recipientGroupId workgroupId of the group to create this request for | |
517 | * @param annotation a comment associated with this request | |
518 | * @return Map including the standard set of return values | |
519 | * | |
520 | * @see org.kuali.rice.kew.webservice.SimpleDocumentActionsWebService#requestAdHocFyiToGroup(java.lang.String, java.lang.String, java.lang.String, java.lang.String) | |
521 | */ | |
522 | @Override | |
523 | public StandardResponse requestAdHocFyiToGroup(String docId, String principalId, String recipientGroupId, String annotation) { | |
524 | 0 | return requestAdHocToGroup(docId, principalId, recipientGroupId, annotation, KEWConstants.ACTION_REQUEST_FYI_REQ, KEWConstants.ACTION_REQUEST_FYI_REQ_LABEL); |
525 | } | |
526 | ||
527 | /** | |
528 | * <ol> | |
529 | * <li>Create a WorkflowDocument based on the docId and principalId passed in</li> | |
530 | * <li>Add the adhoc fyi request (app specific route) to the passed in user with the passed in annotation</li> | |
531 | * <li>Return the standard set of return values</li> | |
532 | * </ol> | |
533 | * | |
534 | * @param docId KEW document id of the document to create the adhoc request for | |
535 | * @param principalId principal id of the user who is making this request | |
536 | * @param recipientPrincipalId principal id of the user for whom the request is being created | |
537 | * @param annotation a comment associated with this request | |
538 | * @return Map including the standard set of return values | |
539 | */ | |
540 | @Override | |
541 | public StandardResponse requestAdHocFyiToPrincipal(String docId, String principalId, | |
542 | String recipientPrincipalId, String annotation) { | |
543 | 0 | return requestAdHocToPrincipal(docId, principalId, recipientPrincipalId, annotation, KEWConstants.ACTION_REQUEST_FYI_REQ, KEWConstants.ACTION_REQUEST_FYI_REQ_LABEL); |
544 | } | |
545 | ||
546 | /** | |
547 | * Create the adhoc request for the specified group. | |
548 | * | |
549 | * @param docId KEW document id of the document to create the adhoc request for | |
550 | * @param principalId principal id of the user who is making this request | |
551 | * @param recipientGroupId workflowid of the group for whom the request is being created | |
552 | * @param annotation a comment associated with this request | |
553 | * @param actionRequested the action for this adhoc request ( A)pprove, aK)nowledge, F)yi ) | |
554 | * @param responsibilityDesc description of the type of responsibility for this request | |
555 | * @return Map including the standard set of return values | |
556 | */ | |
557 | private StandardResponse requestAdHocToGroup(String docId, String principalId, | |
558 | String groupId, String annotation, String actionRequested, String responsibilityDesc) { | |
559 | // Map<String, Object> results; | |
560 | StandardResponse results; | |
561 | ||
562 | try { | |
563 | 0 | WorkflowDocument workflowDocument = setupWorkflowDocument(docId, principalId); |
564 | 0 | workflowDocument.adHocRouteDocumentToGroup(actionRequested, annotation, groupId, responsibilityDesc, true); |
565 | 0 | results = createResults(workflowDocument); |
566 | 0 | } catch (WorkflowException e) { |
567 | 0 | results = createErrorResults("Workflow Error: " + e.getLocalizedMessage()); |
568 | 0 | } |
569 | ||
570 | 0 | return results; |
571 | } | |
572 | ||
573 | /** | |
574 | * Create the adhoc request for the specified user. | |
575 | * | |
576 | * @param docId KEW document id of the document to create the adhoc request for | |
577 | * @param principalId principal id of the user who is making this request | |
578 | * @param recipientPrincipalId principal id of the user for whom the request is being created | |
579 | * @param annotation a comment associated with this request | |
580 | * @param actionRequested the action for this adhoc request ( A)pprove, aK)nowledge, F)yi ) | |
581 | * @param responsibilityDesc description of the type of responsibility for this request | |
582 | * @return Map including the standard set of return values | |
583 | */ | |
584 | private StandardResponse requestAdHocToPrincipal(String docId, String principalId, | |
585 | String recipientPrincipalId, String annotation, String actionRequested, String responsibilityDesc) { | |
586 | StandardResponse results; | |
587 | try { | |
588 | 0 | WorkflowDocument workflowDocument = setupWorkflowDocument(docId, principalId); |
589 | 0 | workflowDocument.adHocRouteDocumentToPrincipal(actionRequested, annotation, recipientPrincipalId, responsibilityDesc, true); |
590 | 0 | results = createResults(workflowDocument); |
591 | 0 | } catch (WorkflowException e) { |
592 | 0 | results = createErrorResults("Workflow Error: " + e.getLocalizedMessage()); |
593 | 0 | } |
594 | 0 | return results; |
595 | } | |
596 | ||
597 | /** | |
598 | * <ol> | |
599 | * <li>Create a WorkflowDocument based on the docId and principalId passed in</li> | |
600 | * <li>Set the docTitle and docContent if they are passed in</li> | |
601 | * <li>Route the document with the passed in annotation</li> | |
602 | * <li>Return the standard set of return values.</li> | |
603 | * </ol> | |
604 | * | |
605 | * @param docId KEW document id of the document to route | |
606 | * @param principalId principal id of the user who is routing the document | |
607 | * @param docTitle title for this document | |
608 | * @param docContent xml content for this document | |
609 | * @param annotation a comment associated with this request | |
610 | * @return Map including the standard set of return values | |
611 | * | |
612 | * @see org.kuali.rice.kew.webservice.SimpleDocumentActionsWebService#route(java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String) | |
613 | */ | |
614 | @Override | |
615 | public StandardResponse route(String docId, String principalId, String docTitle, | |
616 | String docContent, String annotation) { | |
617 | ||
618 | //Map<String, Object> results; | |
619 | StandardResponse results; | |
620 | ||
621 | try { | |
622 | 0 | WorkflowDocument workflowDocument = setupWorkflowDocument(docId, principalId, docTitle, docContent); |
623 | ||
624 | 0 | workflowDocument.routeDocument(annotation); |
625 | 0 | results = createResults(workflowDocument); |
626 | 0 | } catch (WorkflowException e) { |
627 | 0 | results = createErrorResults("Workflow Error: " + e.getLocalizedMessage()); |
628 | 0 | } |
629 | ||
630 | 0 | return results; |
631 | } | |
632 | ||
633 | /** | |
634 | * <ol> | |
635 | * <li>Create a WorkflowDocument based on the docId and principalId passed in</li> | |
636 | * <li>Set the docTitle if it was passed in</li> | |
637 | * <li>Save the document with the passed in annotation (keep in user's action list)</li> | |
638 | * <li>Return the standard set of return values.</li> | |
639 | * </ol> | |
640 | * | |
641 | * @param docId KEW document id of the document to save | |
642 | * @param principalId principal id of the user who is saving the document | |
643 | * @param docTitle title for this document | |
644 | * @param docContent xml content for this document | |
645 | * @param annotation a comment associated with this request | |
646 | * @return Map including the standard set of return values | |
647 | * | |
648 | * @see org.kuali.rice.kew.webservice.SimpleDocumentActionsWebService#save(java.lang.String, java.lang.String, java.lang.String, java.lang.String) | |
649 | */ | |
650 | @Override | |
651 | public StandardResponse save(String docId, String principalId, String docTitle, String docContent, String annotation) { | |
652 | StandardResponse results; | |
653 | ||
654 | try { | |
655 | 0 | WorkflowDocument workflowDocument = setupWorkflowDocument(docId, principalId, docTitle, docContent); |
656 | 0 | workflowDocument.saveDocument(annotation); |
657 | 0 | results = createResults(workflowDocument); |
658 | 0 | } catch (WorkflowException e) { |
659 | 0 | results = createErrorResults("Workflow Error: " + e.getLocalizedMessage()); |
660 | 0 | } |
661 | ||
662 | 0 | return results; |
663 | } | |
664 | ||
665 | /** | |
666 | * @see org.kuali.rice.kew.webservice.SimpleDocumentActionsWebService#saveDocumentContent(java.lang.String, java.lang.String, java.lang.String, java.lang.String) | |
667 | */ | |
668 | @Override | |
669 | public StandardResponse saveDocumentContent(String docId, String principalId, String docTitle, String docContent) { | |
670 | StandardResponse results; | |
671 | ||
672 | try { | |
673 | 0 | WorkflowDocument workflowDocument = setupWorkflowDocument(docId, principalId, docTitle, docContent); |
674 | 0 | workflowDocument.saveRoutingData(); |
675 | 0 | results = createResults(workflowDocument); |
676 | 0 | } catch (WorkflowException e) { |
677 | 0 | results = createErrorResults("Workflow Error: " + e.getLocalizedMessage()); |
678 | 0 | } |
679 | ||
680 | 0 | return results; |
681 | } | |
682 | ||
683 | /** | |
684 | * Add a note to this KEW document. | |
685 | * | |
686 | * @param docId KEW document id of the document to add the note to | |
687 | * @param principalId principal id of the user who is adding the note | |
688 | * @param noteText text of the note | |
689 | * @return Map containing relevant note information (author, noteId, timestamp, noteText) | |
690 | * along with an error message (if any) | |
691 | * | |
692 | * @see org.kuali.rice.kew.webservice.SimpleDocumentActionsWebService#addNote(java.lang.String, java.lang.String, java.lang.String) | |
693 | */ | |
694 | @Override | |
695 | public NoteResponse addNote(String docId, String principalId, String noteText) { | |
696 | // Map<String, Object> results = new HashMap<String, Object>(5); | |
697 | 0 | NoteResponse results = new NoteResponse(); |
698 | ||
699 | 0 | String author = ""; |
700 | 0 | String noteId = ""; |
701 | 0 | String timestamp = ""; |
702 | 0 | String resultsNoteText = ""; |
703 | 0 | String errorMessage = ""; |
704 | ||
705 | // results.put(ERROR_MESSAGE_LABEL, ""); | |
706 | ||
707 | 0 | results.setErrorMessage(""); |
708 | ||
709 | try { | |
710 | 0 | WorkflowDocument workflowDocument = setupWorkflowDocument(docId, principalId); |
711 | ||
712 | // setup note | |
713 | 0 | NoteDTO noteVO = new NoteDTO(); |
714 | 0 | noteVO.setNoteAuthorWorkflowId(principalId); |
715 | 0 | noteVO.setNoteCreateDate(new GregorianCalendar()); |
716 | 0 | noteVO.setNoteText(noteText); |
717 | 0 | noteVO.setRouteHeaderId(workflowDocument.getRouteHeaderId()); |
718 | 0 | workflowDocument.updateNote(noteVO); |
719 | ||
720 | //TODO: is this necessary? | |
721 | 0 | workflowDocument.saveRoutingData(); |
722 | 0 | RouteHeaderDTO routeHeader = workflowDocument.getRouteHeader(); |
723 | ||
724 | //TODO: do we need to return the standard result set? | |
725 | //results = createResults(workflowDocument); | |
726 | ||
727 | 0 | noteVO = routeHeader.getNotes()[routeHeader.getNotes().length-1]; |
728 | ||
729 | // return note info | |
730 | 0 | Person person = KIMServiceLocator.getPersonService().getPerson(noteVO.getNoteAuthorWorkflowId()); |
731 | 0 | author = person.getName(); |
732 | 0 | noteId = noteVO.getNoteId().toString(); |
733 | 0 | timestamp = formatCalendar(noteVO.getNoteCreateDate()); |
734 | 0 | resultsNoteText = noteVO.getNoteText(); |
735 | 0 | } catch (WorkflowException e) { |
736 | 0 | errorMessage = "Workflow Error: " + e.getLocalizedMessage(); |
737 | 0 | } |
738 | 0 | results.setAuthor(author); |
739 | 0 | results.setNoteId(noteId); |
740 | 0 | results.setTimestamp(timestamp); |
741 | 0 | results.setNoteText(resultsNoteText); |
742 | 0 | results.setErrorMessage(errorMessage); |
743 | ||
744 | 0 | return results; |
745 | } | |
746 | ||
747 | /** | |
748 | * Update an existing note to this KEW document. | |
749 | * | |
750 | * @param docId KEW document id of the document to update the note for | |
751 | * @param noteId the id of the note to update | |
752 | * @param principalId principal id of the user who is updating the note | |
753 | * @param noteText text of the note if changed | |
754 | * @return Map containing relevant note information (author, noteId, timestamp, noteText) | |
755 | * along with an error message (if any) | |
756 | * | |
757 | * @see org.kuali.rice.kew.webservice.SimpleDocumentActionsWebService#updateNote(java.lang.String, java.lang.String, java.lang.String, java.lang.String) | |
758 | */ | |
759 | @Override | |
760 | public NoteResponse updateNote(String docId, String noteId, String principalId, String noteText) { | |
761 | // Map<String, Object> results = new HashMap<String, Object>(5); | |
762 | 0 | String author = ""; |
763 | 0 | String resultsNoteId = ""; |
764 | 0 | String timestamp = ""; |
765 | 0 | String resultsNoteText = ""; |
766 | 0 | String errorMessage = ""; |
767 | ||
768 | try { | |
769 | 0 | WorkflowDocument workflowDocument = setupWorkflowDocument(docId, principalId); |
770 | 0 | RouteHeaderDTO routeHeader = workflowDocument.getRouteHeader(); |
771 | ||
772 | // setup note | |
773 | 0 | NoteDTO noteVO = getNote(routeHeader.getNotes(), noteId); |
774 | 0 | noteVO.setNoteText(noteText); |
775 | 0 | workflowDocument.updateNote(noteVO); |
776 | ||
777 | //TODO: is this necessary? | |
778 | 0 | workflowDocument.saveRoutingData(); |
779 | 0 | routeHeader = workflowDocument.getRouteHeader(); |
780 | ||
781 | //TODO: do we need to return the standard result set? | |
782 | //results = createResults(workflowDocument); | |
783 | ||
784 | 0 | noteVO = getNote(routeHeader.getNotes(), noteId); |
785 | ||
786 | 0 | if (noteVO == null) { |
787 | 0 | errorMessage = "Error retrieving note for id [" + noteId + "]."; |
788 | } else { | |
789 | // return note info | |
790 | 0 | Person person = KIMServiceLocator.getPersonService().getPerson(noteVO.getNoteAuthorWorkflowId()); |
791 | 0 | author = person.getName(); |
792 | 0 | resultsNoteId = noteVO.getNoteId().toString(); |
793 | 0 | timestamp = formatCalendar(noteVO.getNoteCreateDate()); |
794 | 0 | resultsNoteText = noteVO.getNoteText(); |
795 | } | |
796 | 0 | } catch (WorkflowException e) { |
797 | 0 | errorMessage = "Workflow Error: " + e.getLocalizedMessage(); |
798 | 0 | } |
799 | ||
800 | 0 | NoteResponse results = new NoteResponse(); |
801 | ||
802 | 0 | results.setAuthor(author); |
803 | 0 | results.setNoteId(resultsNoteId); |
804 | 0 | results.setTimestamp(timestamp); |
805 | 0 | results.setNoteText(resultsNoteText); |
806 | 0 | results.setErrorMessage(errorMessage); |
807 | ||
808 | 0 | return results; |
809 | } | |
810 | ||
811 | /** | |
812 | * Delete an existing note. | |
813 | * | |
814 | * @param docId KEW document id of the document to delete the note from | |
815 | * @param noteId the id of the note to delete | |
816 | * @param principalId principal id of the user who is deleting the note | |
817 | * @return Map containing an error message if any | |
818 | * | |
819 | * @see org.kuali.rice.kew.webservice.SimpleDocumentActionsWebService#deleteNote(java.lang.String, java.lang.String, java.lang.String) | |
820 | */ | |
821 | @Override | |
822 | public ErrorResponse deleteNote(String docId, String noteId, String principalId) { | |
823 | //Map<String, Object> results = new HashMap<String, Object>(1); | |
824 | ||
825 | 0 | ErrorResponse results = new ErrorResponse(); |
826 | ||
827 | 0 | String errorMessage = ""; |
828 | ||
829 | try { | |
830 | 0 | WorkflowDocument workflowDocument = setupWorkflowDocument(docId, principalId); |
831 | 0 | RouteHeaderDTO routeHeader = workflowDocument.getRouteHeader(); |
832 | ||
833 | // setup note | |
834 | 0 | NoteDTO noteVO = getNote(routeHeader.getNotes(), noteId); |
835 | 0 | workflowDocument.deleteNote(noteVO); |
836 | ||
837 | //TODO: is this necessary? | |
838 | 0 | workflowDocument.saveRoutingData(); |
839 | ||
840 | //// update notes database based on notes and notesToDelete arrays in routeHeaderVO | |
841 | // DTOConverter.updateNotes(routeHeader, routeHeader.getRouteHeaderId()); | |
842 | 0 | } catch (WorkflowException e) { |
843 | 0 | errorMessage = "Workflow Error: " + e.getLocalizedMessage(); |
844 | 0 | } |
845 | //results.put(ERROR_MESSAGE_LABEL, errorMessage); | |
846 | ||
847 | 0 | results.setErrorMessage(errorMessage); |
848 | ||
849 | 0 | return results; |
850 | } | |
851 | ||
852 | /** | |
853 | * Return a KEW document to a previous route node. This method should | |
854 | * be used with caution. | |
855 | * | |
856 | * @param docId KEW document id of the document that is being returned | |
857 | * @param principalId principal id of the user who is returning the doc | |
858 | * @param annotation a comment associated with this request | |
859 | * @param nodeName name of the route node to return to | |
860 | * @return Map including the standard set of return values | |
861 | * | |
862 | * @see org.kuali.rice.kew.webservice.SimpleDocumentActionsWebService#returnToPreviousNode(java.lang.String, java.lang.String) | |
863 | */ | |
864 | @Override | |
865 | public StandardResponse returnToPreviousNode(String docId, String principalId, String annotation, String nodeName) { | |
866 | 0 | return returnToPreviousNodeWithUpdates(docId, principalId, annotation, nodeName, null, null); |
867 | } | |
868 | ||
869 | /** | |
870 | * Return a KEW document to a previous route node. This method should | |
871 | * be used with caution. | |
872 | * | |
873 | * @param docId KEW document id of the document that is being returned | |
874 | * @param principalId principal id of the user who is returning the doc | |
875 | * @param annotation a comment associated with this request | |
876 | * @param nodeName name of the route node to return to | |
877 | * @param docTitle title for this document | |
878 | * @param docContent xml content for this document | |
879 | * @return Map including the standard set of return values | |
880 | * | |
881 | * @see org.kuali.rice.kew.webservice.SimpleDocumentActionsWebService#returnToPreviousNode(java.lang.String, java.lang.String) | |
882 | */ | |
883 | @Override | |
884 | public StandardResponse returnToPreviousNodeWithUpdates(String docId, String principalId, String annotation, String nodeName, String docTitle, String docContent) { | |
885 | StandardResponse results; | |
886 | ||
887 | try { | |
888 | 0 | WorkflowDocument workflowDocument = setupWorkflowDocument(docId, principalId, docTitle, docContent); |
889 | ||
890 | 0 | workflowDocument.returnToPreviousNode(annotation, nodeName); |
891 | 0 | results = createResults(workflowDocument); |
892 | 0 | } catch (WorkflowException e) { |
893 | 0 | results = createErrorResults("Workflow Error: " + e.getLocalizedMessage()); |
894 | 0 | } |
895 | ||
896 | 0 | return results; |
897 | } | |
898 | ||
899 | /** | |
900 | * @see org.kuali.rice.kew.webservice.SimpleDocumentActionsWebService#revokeAdHocRequestsByNodeName(java.lang.String, | |
901 | * java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String) | |
902 | */ | |
903 | @Override | |
904 | public StandardResponse revokeAdHocRequestsByNodeName(String docId, String principalId, String docTitle, String docContent, String nodeName, String annotation) { | |
905 | StandardResponse results; | |
906 | ||
907 | try { | |
908 | 0 | WorkflowDocument workflowDocument = setupWorkflowDocument(docId, principalId, docTitle, docContent); |
909 | 0 | AdHocRevokeDTO revokeDTO = new AdHocRevokeDTO(); |
910 | 0 | revokeDTO.setNodeName(nodeName); |
911 | 0 | workflowDocument.revokeAdHocRequests(revokeDTO, annotation); |
912 | 0 | results = createResults(workflowDocument); |
913 | 0 | } catch (WorkflowException e) { |
914 | 0 | results = createErrorResults("Workflow Error: " + e.getLocalizedMessage()); |
915 | 0 | } |
916 | ||
917 | 0 | return results; |
918 | } | |
919 | ||
920 | /** | |
921 | * @see org.kuali.rice.kew.webservice.SimpleDocumentActionsWebService#revokeAdHocRequestsByPrincipalId(java.lang.String, | |
922 | * java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String) | |
923 | */ | |
924 | @Override | |
925 | public StandardResponse revokeAdHocRequestsByPrincipalId(String docId, String principalId, String docTitle, String docContent, String adhocPrincipalId, String annotation) { | |
926 | StandardResponse results; | |
927 | ||
928 | try { | |
929 | 0 | WorkflowDocument workflowDocument = setupWorkflowDocument(docId, principalId, docTitle, docContent); |
930 | 0 | AdHocRevokeDTO revokeDTO = new AdHocRevokeDTO(); |
931 | 0 | revokeDTO.setPrincipalId(adhocPrincipalId); |
932 | 0 | workflowDocument.revokeAdHocRequests(revokeDTO, annotation); |
933 | 0 | results = createResults(workflowDocument); |
934 | 0 | } catch (WorkflowException e) { |
935 | 0 | results = createErrorResults("Workflow Error: " + e.getLocalizedMessage()); |
936 | 0 | } |
937 | ||
938 | 0 | return results; |
939 | } | |
940 | ||
941 | /** | |
942 | * @see org.kuali.rice.kew.webservice.SimpleDocumentActionsWebService#revokeAdHocRequestsByGroupId(java.lang.String, | |
943 | * java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String) | |
944 | */ | |
945 | @Override | |
946 | public StandardResponse revokeAdHocRequestsByGroupId(String docId, String principalId, String docTitle, String docContent, String groupId, String annotation) { | |
947 | StandardResponse results; | |
948 | ||
949 | try { | |
950 | 0 | WorkflowDocument workflowDocument = setupWorkflowDocument(docId, principalId, docTitle, docContent); |
951 | 0 | AdHocRevokeDTO revokeDTO = new AdHocRevokeDTO(); |
952 | 0 | revokeDTO.setGroupId(groupId); |
953 | 0 | workflowDocument.revokeAdHocRequests(revokeDTO, annotation); |
954 | 0 | results = createResults(workflowDocument); |
955 | 0 | } catch (WorkflowException e) { |
956 | 0 | results = createErrorResults("Workflow Error: " + e.getLocalizedMessage()); |
957 | 0 | } |
958 | ||
959 | 0 | return results; |
960 | } | |
961 | ||
962 | /** | |
963 | * @see org.kuali.rice.kew.webservice.SimpleDocumentActionsWebService#revokeAdHocRequestsByActionRequestId(java.lang.String, | |
964 | * java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String) | |
965 | */ | |
966 | public StandardResponse revokeAdHocRequestsByActionRequestId(String docId, String principalId, String docTitle, String docContent, String actionRequestId, String annotation) { | |
967 | StandardResponse results; | |
968 | ||
969 | try { | |
970 | 0 | WorkflowDocument workflowDocument = setupWorkflowDocument(docId, principalId, docTitle, docContent); |
971 | 0 | AdHocRevokeDTO revokeDTO = new AdHocRevokeDTO(); |
972 | 0 | revokeDTO.setActionRequestId(Long.valueOf(actionRequestId)); |
973 | 0 | workflowDocument.revokeAdHocRequests(revokeDTO, annotation); |
974 | 0 | results = createResults(workflowDocument); |
975 | 0 | } catch (WorkflowException e) { |
976 | 0 | results = createErrorResults("Workflow Error: " + e.getLocalizedMessage()); |
977 | 0 | } |
978 | ||
979 | 0 | return results; |
980 | } | |
981 | ||
982 | /** | |
983 | * @see org.kuali.rice.kew.webservice.SimpleDocumentActionsWebService#superUserApprove(java.lang.String, | |
984 | * java.lang.String, java.lang.String, java.lang.String, java.lang.String) | |
985 | */ | |
986 | public StandardResponse superUserApprove(String docId, String superUserPrincipalId, String docTitle, String docContent, String annotation) { | |
987 | StandardResponse results; | |
988 | ||
989 | try { | |
990 | 0 | WorkflowDocument workflowDocument = setupWorkflowDocument(docId, superUserPrincipalId, docTitle, docContent); |
991 | ||
992 | 0 | workflowDocument.superUserApprove(annotation); |
993 | 0 | results = createResults(workflowDocument); |
994 | 0 | } catch (WorkflowServiceErrorException e) { |
995 | 0 | results = createErrorResults("Workflow Error: " + e.getLocalizedMessage()); |
996 | 0 | } catch (WorkflowException e) { |
997 | 0 | results = createErrorResults("Workflow Error: " + e.getLocalizedMessage()); |
998 | 0 | } |
999 | ||
1000 | 0 | return results; |
1001 | } | |
1002 | ||
1003 | /** | |
1004 | * @see org.kuali.rice.kew.webservice.SimpleDocumentActionsWebService#superUserDisapprove(java.lang.String, | |
1005 | * java.lang.String, java.lang.String, java.lang.String, java.lang.String) | |
1006 | */ | |
1007 | public StandardResponse superUserDisapprove(String docId, String superUserPrincipalId, String docTitle, String docContent, String annotation) { | |
1008 | StandardResponse results; | |
1009 | ||
1010 | try { | |
1011 | 0 | WorkflowDocument workflowDocument = setupWorkflowDocument(docId, superUserPrincipalId, docTitle, docContent); |
1012 | ||
1013 | 0 | workflowDocument.superUserDisapprove(annotation); |
1014 | 0 | results = createResults(workflowDocument); |
1015 | 0 | } catch (WorkflowServiceErrorException e) { |
1016 | 0 | results = createErrorResults("Workflow Error: " + e.getLocalizedMessage()); |
1017 | 0 | } catch (WorkflowException e) { |
1018 | 0 | results = createErrorResults("Workflow Error: " + e.getLocalizedMessage()); |
1019 | 0 | } |
1020 | ||
1021 | 0 | return results; |
1022 | } | |
1023 | ||
1024 | /** | |
1025 | * @see org.kuali.rice.kew.webservice.SimpleDocumentActionsWebService#superUserCancel(java.lang.String, | |
1026 | * java.lang.String, java.lang.String, java.lang.String, java.lang.String) | |
1027 | */ | |
1028 | public StandardResponse superUserCancel(String docId, String superUserPrincipalId, String docTitle, String docContent, String annotation) { | |
1029 | StandardResponse results; | |
1030 | ||
1031 | try { | |
1032 | 0 | WorkflowDocument workflowDocument = setupWorkflowDocument(docId, superUserPrincipalId, docTitle, docContent); |
1033 | ||
1034 | 0 | workflowDocument.superUserCancel(annotation); |
1035 | 0 | results = createResults(workflowDocument); |
1036 | 0 | } catch (WorkflowServiceErrorException e) { |
1037 | 0 | results = createErrorResults("Workflow Error: " + e.getLocalizedMessage()); |
1038 | 0 | } catch (WorkflowException e) { |
1039 | 0 | results = createErrorResults("Workflow Error: " + e.getLocalizedMessage()); |
1040 | 0 | } |
1041 | ||
1042 | 0 | return results; |
1043 | } | |
1044 | ||
1045 | public StandardResponse superUserReturnToPrevious(String docId, String superUserPrincipalId, String docTitle, String docContent, String nodeName, String annotation) { | |
1046 | StandardResponse results; | |
1047 | ||
1048 | try { | |
1049 | // verify that the doc id has been sent in correctly | |
1050 | 0 | if (StringUtils.isBlank(docId)) { |
1051 | 0 | throw new WorkflowException("Invalid Parameter: docId is required but was blank"); |
1052 | } | |
1053 | // if the docTitle or docContent has been updated then update it with a saveRoutingData call | |
1054 | 0 | if (StringUtils.isNotEmpty(docTitle) || StringUtils.isNotEmpty(docContent)) { |
1055 | 0 | WorkflowDocument workflowDocument = setupWorkflowDocument(docId, superUserPrincipalId, docTitle, docContent); |
1056 | 0 | workflowDocument.saveRoutingData(); |
1057 | } | |
1058 | // perform the return to previous | |
1059 | 0 | KEWServiceLocator.getWorkflowDocumentActionsService().superUserReturnToPreviousNode(superUserPrincipalId, Long.valueOf(docId), nodeName, annotation); |
1060 | // refetch the WorkflowDocument after the return to previous is completed | |
1061 | 0 | results = createResults(new WorkflowDocument(superUserPrincipalId, Long.decode(docId))); |
1062 | 0 | } catch (WorkflowServiceErrorException e) { |
1063 | 0 | results = createErrorResults("Workflow Error: " + e.getLocalizedMessage()); |
1064 | 0 | } catch (WorkflowException e) { |
1065 | 0 | results = createErrorResults("Workflow Error: " + e.getLocalizedMessage()); |
1066 | 0 | } |
1067 | ||
1068 | 0 | return results; |
1069 | } | |
1070 | ||
1071 | private NoteDTO getNote(NoteDTO[] notes, String noteId) { | |
1072 | 0 | NoteDTO note = null; |
1073 | ||
1074 | 0 | if (notes != null){ |
1075 | 0 | for (NoteDTO note2 : notes) { |
1076 | 0 | if (note2.getNoteId().toString().equals(noteId)) { |
1077 | 0 | note = note2; |
1078 | 0 | break; |
1079 | } | |
1080 | } | |
1081 | } | |
1082 | ||
1083 | 0 | return note; |
1084 | } | |
1085 | ||
1086 | /** | |
1087 | * Convenience method to setup workflow document without title or content. | |
1088 | * | |
1089 | * @param docId KEW document id for the document to setup | |
1090 | * @param principalId KEW principal id for the user associated with this document | |
1091 | * @return populated WorkflowDocument object | |
1092 | * @throws WorkflowException if something goes wrong | |
1093 | */ | |
1094 | private WorkflowDocument setupWorkflowDocument(String docId, String principalId) throws WorkflowException { | |
1095 | 0 | return setupWorkflowDocument(docId, principalId, null, null); |
1096 | } | |
1097 | ||
1098 | /** | |
1099 | * Instantiate and setup the WorkflowDocument object. | |
1100 | * | |
1101 | * @param docId KEW document id for the document to setup | |
1102 | * @param principalId KEW principal id for the user associated with this document | |
1103 | * @param docTitle title for this document | |
1104 | * @param docContent xml content for this document | |
1105 | * @return populated WorkflowDocument object | |
1106 | * @throws WorkflowException if something goes wrong | |
1107 | */ | |
1108 | private WorkflowDocument setupWorkflowDocument(String docId, String principalId, String docTitle, String docContent) throws WorkflowException { | |
1109 | 0 | WorkflowDocument workflowDocument = new WorkflowDocument(principalId, Long.decode(docId)); |
1110 | 0 | if (StringUtils.isNotEmpty(docTitle)) { |
1111 | 0 | workflowDocument.setTitle(docTitle); |
1112 | } | |
1113 | 0 | if (StringUtils.isNotEmpty(docContent)) { |
1114 | 0 | workflowDocument.setApplicationContent(docContent); |
1115 | } | |
1116 | 0 | return workflowDocument; |
1117 | } | |
1118 | ||
1119 | /** | |
1120 | * Create the note details result set. | |
1121 | * | |
1122 | * @param notes List of notes to build details Map array for | |
1123 | * @return Map[] containing note details | |
1124 | * @throws WorkflowException if an error occurs retrieving user display name | |
1125 | */ | |
1126 | private List<NoteDetail> buildNoteDetails(List notes) throws WorkflowException { | |
1127 | List<NoteDetail> noteDetails; | |
1128 | ||
1129 | 0 | if (notes == null) { |
1130 | 0 | noteDetails = new ArrayList<NoteDetail>(0); |
1131 | } else { | |
1132 | 0 | noteDetails = new ArrayList<NoteDetail>(notes.size()); |
1133 | 0 | for (int i=0;i<notes.size();i++) { |
1134 | //Map<String, String> noteDetail = new HashMap<String, String>(4); | |
1135 | ||
1136 | 0 | NoteDetail noteDetail = new NoteDetail(); |
1137 | 0 | NoteDTO note = (NoteDTO)notes.get(i); |
1138 | //author, noteId, timestamp, noteText | |
1139 | 0 | Person person = KIMServiceLocator.getPersonService().getPerson(note.getNoteAuthorWorkflowId()); |
1140 | 0 | noteDetail.setAuthor(person.getName()); |
1141 | 0 | noteDetail.setId(note.getNoteId().toString()); |
1142 | 0 | noteDetail.setTimestamp(formatCalendar(note.getNoteCreateDate())); |
1143 | 0 | noteDetail.setNoteText(note.getNoteText()); |
1144 | ||
1145 | 0 | noteDetails.add(noteDetail); |
1146 | } | |
1147 | } | |
1148 | ||
1149 | 0 | return noteDetails; |
1150 | } | |
1151 | ||
1152 | ||
1153 | /** | |
1154 | * Create the result set, either the standard results or error results | |
1155 | * if the routeHeader is null. | |
1156 | * | |
1157 | * @param workflowDocument WorkflowDocument used to get route header info | |
1158 | * @return Map containing results of the call (either standard or error version) | |
1159 | */ | |
1160 | private StandardResponse createResults(WorkflowDocument workflowDocument) { | |
1161 | //Map<String, Object> results; | |
1162 | ||
1163 | StandardResponse response; | |
1164 | ||
1165 | 0 | RouteHeaderDTO routeHeader = workflowDocument.getRouteHeader(); |
1166 | ||
1167 | 0 | if (routeHeader == null) { |
1168 | 0 | response = createErrorResults("Error: NULL Route Header"); |
1169 | } else { | |
1170 | 0 | response = createStandardResults(routeHeader); |
1171 | } | |
1172 | ||
1173 | 0 | return response; |
1174 | } | |
1175 | ||
1176 | /** | |
1177 | * Create the standard result set with only the error message populated. | |
1178 | * | |
1179 | * @param errorMessage the message describing what error occured in the KEW engine | |
1180 | * @return Map containing the standard result set with only the error message populated | |
1181 | */ | |
1182 | private StandardResponse createErrorResults(String errorMessage) { | |
1183 | 0 | StandardResponse response = new StandardResponse(); |
1184 | 0 | response.setDocStatus(""); |
1185 | 0 | response.setCreateDate(""); |
1186 | 0 | response.setInitiatorPrincipalId(""); |
1187 | 0 | response.setRoutedByPrincipalId(""); |
1188 | 0 | response.setAppDocId(""); |
1189 | 0 | response.setInitiatorName(""); |
1190 | 0 | response.setRoutedByUserName(""); |
1191 | 0 | response.setErrorMessage(errorMessage); |
1192 | ||
1193 | 0 | return response; |
1194 | } | |
1195 | ||
1196 | /** | |
1197 | * Create the standard result set populated with values contained in the | |
1198 | * documents route header. | |
1199 | * | |
1200 | * @param routeHeader RouteHeaderVO for this document | |
1201 | * @return Map containing the standard result set populated with values contained in the | |
1202 | * documents route header. | |
1203 | */ | |
1204 | private StandardResponse createStandardResults(RouteHeaderDTO routeHeader) { | |
1205 | 0 | String docStatus = ""; |
1206 | 0 | String createDate = ""; |
1207 | 0 | String initiatorPrincipalId = ""; |
1208 | 0 | String routedByPrincipalId = ""; |
1209 | 0 | String appDocId = ""; |
1210 | 0 | String initiatorName = ""; |
1211 | 0 | String routedByUserName = ""; |
1212 | 0 | String errorMessage = ""; |
1213 | ||
1214 | 0 | if (routeHeader == null) { |
1215 | 0 | errorMessage = "Error: NULL Route Header"; |
1216 | } else { | |
1217 | 0 | if (routeHeader.getDocRouteStatus() == null) { |
1218 | 0 | errorMessage = "Error: NULL Route Status; "; |
1219 | } else { | |
1220 | 0 | docStatus = routeHeader.getDocRouteStatus(); |
1221 | } | |
1222 | ||
1223 | 0 | if (routeHeader.getDateCreated() == null) { |
1224 | 0 | errorMessage += "Error: NULL Date Created; "; |
1225 | } else { | |
1226 | 0 | createDate = formatCalendar(routeHeader.getDateCreated()); |
1227 | } | |
1228 | ||
1229 | 0 | if (routeHeader.getInitiatorPrincipalId() == null) { |
1230 | 0 | errorMessage += "Error: NULL Initiator; "; |
1231 | } else { | |
1232 | 0 | initiatorPrincipalId = routeHeader.getInitiatorPrincipalId(); |
1233 | 0 | Person initiator = KIMServiceLocator.getPersonService().getPerson(initiatorPrincipalId); |
1234 | 0 | if (initiator != null) { |
1235 | 0 | initiatorName = initiator.getName(); |
1236 | } | |
1237 | } | |
1238 | ||
1239 | 0 | if (routeHeader.getRoutedByPrincipalId() == null) { |
1240 | // of the document has been routed, but there is no routed-by user, that is an error | |
1241 | 0 | if (KEWConstants.ROUTE_HEADER_ENROUTE_CD.equals(routeHeader.getDocRouteStatus())) { |
1242 | 0 | errorMessage += "Error: NULL routedBy user; "; |
1243 | } | |
1244 | } else { | |
1245 | 0 | routedByPrincipalId = routeHeader.getRoutedByPrincipalId(); |
1246 | 0 | Person routedByUser = KIMServiceLocator.getPersonService().getPerson(initiatorPrincipalId); |
1247 | 0 | if (routedByUser != null) { |
1248 | 0 | routedByUserName = routedByUser.getName(); |
1249 | } | |
1250 | } | |
1251 | ||
1252 | 0 | if (routeHeader.getAppDocId() != null) { |
1253 | 0 | appDocId = routeHeader.getAppDocId(); |
1254 | } | |
1255 | } | |
1256 | ||
1257 | //Map<String, Object> results = new HashMap<String, Object>(6); | |
1258 | 0 | StandardResponse response = new StandardResponse(); |
1259 | ||
1260 | // results.put(DOC_STATUS_LABEL, docStatus); | |
1261 | // results.put(CREATE_DATE_LABEL, createDate); | |
1262 | // results.put(INITIATOR_ID_LABEL, initiatorPrincipalId); | |
1263 | // results.put(ROUTED_BY_USER_ID_LABEL, routedByprincipalId); | |
1264 | // results.put(APP_DOC_ID_LABEL, appDocId); | |
1265 | // results.put(INITIATOR_NAME_LABEL, initiatorName); | |
1266 | // results.put(ROUTED_BY_USER_NAME_LABEL, routedByUserName); | |
1267 | // results.put(ERROR_MESSAGE_LABEL, errorMessage); | |
1268 | ||
1269 | 0 | response.setDocStatus(docStatus); |
1270 | 0 | response.setCreateDate(createDate); |
1271 | 0 | response.setInitiatorPrincipalId(initiatorPrincipalId); |
1272 | 0 | response.setRoutedByPrincipalId(routedByPrincipalId); |
1273 | 0 | response.setAppDocId(appDocId); |
1274 | 0 | response.setInitiatorName(initiatorName); |
1275 | 0 | response.setRoutedByUserName(routedByUserName); |
1276 | 0 | response.setErrorMessage(errorMessage); |
1277 | ||
1278 | 0 | return response; |
1279 | } | |
1280 | ||
1281 | ||
1282 | /** | |
1283 | * Format a String date based on a given Calendar object. | |
1284 | * | |
1285 | * @param calendar Calendar date to format | |
1286 | * @return String formatted date | |
1287 | */ | |
1288 | private String formatCalendar(Calendar calendar) { | |
1289 | 0 | String formattedDate = ""; |
1290 | ||
1291 | 0 | DateFormat dateFormat = new SimpleDateFormat(); |
1292 | 0 | Timestamp dateCreated = SQLUtils.convertCalendar(calendar); |
1293 | 0 | formattedDate = dateFormat.format(dateCreated); |
1294 | ||
1295 | 0 | return formattedDate; |
1296 | } | |
1297 | ||
1298 | } |