| 1 | |
|
| 2 | |
|
| 3 | |
|
| 4 | |
|
| 5 | |
|
| 6 | |
|
| 7 | |
|
| 8 | |
|
| 9 | |
|
| 10 | |
|
| 11 | |
|
| 12 | |
|
| 13 | |
|
| 14 | |
|
| 15 | |
|
| 16 | |
package org.kuali.rice.ken.deliverer.impl; |
| 17 | |
|
| 18 | |
import java.io.ByteArrayOutputStream; |
| 19 | |
import java.io.IOException; |
| 20 | |
import java.util.HashMap; |
| 21 | |
import java.util.LinkedHashMap; |
| 22 | |
import java.util.Properties; |
| 23 | |
|
| 24 | |
import org.kuali.rice.ken.bo.NotificationMessageDelivery; |
| 25 | |
import org.kuali.rice.ken.core.GlobalNotificationServiceLocator; |
| 26 | |
import org.kuali.rice.ken.deliverer.NotificationMessageDeliverer; |
| 27 | |
import org.kuali.rice.ken.document.kew.NotificationWorkflowDocument; |
| 28 | |
import org.kuali.rice.ken.exception.ErrorList; |
| 29 | |
import org.kuali.rice.ken.exception.NotificationAutoRemoveException; |
| 30 | |
import org.kuali.rice.ken.exception.NotificationMessageDeliveryException; |
| 31 | |
import org.kuali.rice.ken.service.NotificationWorkflowDocumentService; |
| 32 | |
import org.kuali.rice.ken.util.NotificationConstants; |
| 33 | |
import org.kuali.rice.ken.util.Util; |
| 34 | |
import org.kuali.rice.kew.exception.WorkflowException; |
| 35 | |
import org.kuali.rice.kew.service.WorkflowDocument; |
| 36 | |
|
| 37 | |
|
| 38 | |
|
| 39 | |
|
| 40 | |
|
| 41 | |
|
| 42 | |
|
| 43 | |
public class KEWActionListMessageDeliverer implements NotificationMessageDeliverer { |
| 44 | 0 | private static org.apache.log4j.Logger LOG = org.apache.log4j.Logger.getLogger(KEWActionListMessageDeliverer.class); |
| 45 | |
|
| 46 | |
|
| 47 | |
|
| 48 | |
|
| 49 | |
|
| 50 | |
public static final String INTERNAL_COMMAND_FLAG = "internal_command"; |
| 51 | |
|
| 52 | |
private NotificationWorkflowDocumentService notificationWorkflowDocumentService; |
| 53 | |
|
| 54 | |
|
| 55 | |
|
| 56 | |
|
| 57 | 0 | public KEWActionListMessageDeliverer() { |
| 58 | 0 | this.notificationWorkflowDocumentService = GlobalNotificationServiceLocator.getInstance().getNotificationWorkflowDocumentService(); |
| 59 | 0 | } |
| 60 | |
|
| 61 | |
|
| 62 | |
|
| 63 | |
|
| 64 | |
|
| 65 | |
public void deliverMessage(NotificationMessageDelivery messageDelivery) throws NotificationMessageDeliveryException { |
| 66 | |
try { |
| 67 | |
|
| 68 | 0 | Long workflowDocId = notificationWorkflowDocumentService.createAndAdHocRouteNotificationWorkflowDocument( |
| 69 | |
messageDelivery, |
| 70 | |
Util.getNotificationSystemUser(), |
| 71 | |
messageDelivery.getUserRecipientId(), |
| 72 | |
NotificationConstants.KEW_CONSTANTS.GENERIC_DELIVERY_ANNOTATION); |
| 73 | |
|
| 74 | |
|
| 75 | 0 | String deliverySystemId = null; |
| 76 | 0 | if(workflowDocId != null) { |
| 77 | 0 | deliverySystemId = workflowDocId.toString(); |
| 78 | |
} |
| 79 | 0 | messageDelivery.setDeliverySystemId(deliverySystemId); |
| 80 | 0 | LOG.debug("Message Delivery: " + messageDelivery.toString()); |
| 81 | 0 | } catch (WorkflowException we) { |
| 82 | 0 | LOG.error(we.getStackTrace()); |
| 83 | 0 | throw new NotificationMessageDeliveryException("Workflow exception delivering message", we); |
| 84 | 0 | } |
| 85 | 0 | } |
| 86 | |
|
| 87 | |
|
| 88 | |
|
| 89 | |
|
| 90 | |
|
| 91 | |
|
| 92 | |
public void autoRemoveMessageDelivery(NotificationMessageDelivery messageDelivery) throws NotificationAutoRemoveException { |
| 93 | |
|
| 94 | 0 | NotificationWorkflowDocument workflowDoc = null; |
| 95 | 0 | String sysId = messageDelivery.getDeliverySystemId(); |
| 96 | 0 | if (sysId == null) { |
| 97 | 0 | LOG.error("NotificationMessageDelivery " + messageDelivery.getId() + " is missing delivery system id (workflow document id"); |
| 98 | |
|
| 99 | |
|
| 100 | 0 | return; |
| 101 | |
} |
| 102 | |
|
| 103 | |
Long docId; |
| 104 | |
try { |
| 105 | 0 | docId = Long.parseLong(sysId); |
| 106 | 0 | } catch (NumberFormatException nfe) { |
| 107 | 0 | LOG.error("Invalid workflow document id for NotificationMessageDelivery " + messageDelivery.getId() + ": " + sysId); |
| 108 | |
|
| 109 | |
|
| 110 | 0 | return; |
| 111 | 0 | } |
| 112 | |
|
| 113 | |
try { |
| 114 | 0 | workflowDoc = notificationWorkflowDocumentService.getNotificationWorkflowDocumentByDocumentId(messageDelivery.getUserRecipientId(), docId); |
| 115 | 0 | } catch(WorkflowException we) { |
| 116 | 0 | throw new NotificationAutoRemoveException(we); |
| 117 | 0 | } |
| 118 | |
|
| 119 | 0 | flagWorkflowDocument(workflowDoc); |
| 120 | |
|
| 121 | |
try { |
| 122 | 0 | notificationWorkflowDocumentService.clearAllFyisAndAcknowledgeNotificationWorkflowDocument(messageDelivery.getUserRecipientId(), workflowDoc, |
| 123 | |
NotificationConstants.KEW_CONSTANTS.GENERIC_AUTO_REMOVE_ANNOTATION); |
| 124 | 0 | } catch(WorkflowException we) { |
| 125 | 0 | throw new NotificationAutoRemoveException(we); |
| 126 | 0 | } |
| 127 | 0 | } |
| 128 | |
|
| 129 | |
|
| 130 | |
|
| 131 | |
|
| 132 | |
public void dismissMessageDelivery(NotificationMessageDelivery messageDelivery, String user, String cause) { |
| 133 | |
|
| 134 | 0 | LOG.info("Dismissing as user '" + user + "' workflow document '" + messageDelivery.getDeliverySystemId() + "' corresponding to message delivery #" + messageDelivery.getId() + " due to cause: " + cause); |
| 135 | 0 | if (NotificationConstants.AUTO_REMOVE_CAUSE.equals(cause)) { |
| 136 | |
|
| 137 | |
|
| 138 | |
} else { |
| 139 | |
NotificationWorkflowDocument nwd; |
| 140 | |
try { |
| 141 | 0 | nwd = notificationWorkflowDocumentService.getNotificationWorkflowDocumentByDocumentId(user, Long.decode(messageDelivery.getDeliverySystemId())); |
| 142 | 0 | } catch (WorkflowException we) { |
| 143 | 0 | LOG.error("Could not get workflow document with docId"); |
| 144 | 0 | throw new RuntimeException("Could not get workflow document with docId", we); |
| 145 | 0 | } |
| 146 | |
|
| 147 | 0 | flagWorkflowDocument(nwd); |
| 148 | |
|
| 149 | |
try { |
| 150 | 0 | if (NotificationConstants.ACK_CAUSE.equals(cause)) { |
| 151 | |
|
| 152 | |
|
| 153 | |
|
| 154 | |
|
| 155 | 0 | if (nwd.isAcknowledgeRequested()) { |
| 156 | 0 | nwd.acknowledge("This notification has been acknowledged."); |
| 157 | 0 | LOG.debug("acknowledged "+nwd.getTitle()); |
| 158 | 0 | LOG.debug("status display value: "+nwd.getStatusDisplayValue()); |
| 159 | |
} else { |
| 160 | 0 | LOG.debug("Acknowledgement was not needed for document " + nwd.getRouteHeaderId()); |
| 161 | |
} |
| 162 | 0 | } else if (NotificationConstants.FYI_CAUSE.equals(cause)) { |
| 163 | |
|
| 164 | |
|
| 165 | |
|
| 166 | |
|
| 167 | 0 | if (nwd.isFYIRequested()) { |
| 168 | 0 | nwd.fyi(); |
| 169 | 0 | LOG.debug("fyi "+nwd.getTitle()); |
| 170 | 0 | LOG.debug("status display value: "+nwd.getStatusDisplayValue()); |
| 171 | |
} else { |
| 172 | 0 | LOG.debug("FYI was not needed for document " + nwd.getRouteHeaderId()); |
| 173 | |
} |
| 174 | |
} |
| 175 | 0 | } catch (WorkflowException we) { |
| 176 | 0 | LOG.error("Error performing action on workflow document"); |
| 177 | 0 | throw new RuntimeException("Error performing action on workflow document", we); |
| 178 | 0 | } |
| 179 | |
} |
| 180 | 0 | } |
| 181 | |
|
| 182 | |
|
| 183 | |
|
| 184 | |
|
| 185 | |
|
| 186 | |
|
| 187 | |
protected void flagWorkflowDocument(WorkflowDocument doc) { |
| 188 | 0 | Properties p = new Properties(); |
| 189 | 0 | p.setProperty(INTERNAL_COMMAND_FLAG, "true"); |
| 190 | 0 | ByteArrayOutputStream baos = new ByteArrayOutputStream(100); |
| 191 | |
try { |
| 192 | 0 | p.store(baos, null); |
| 193 | 0 | } catch (IOException ioe) { |
| 194 | 0 | throw new RuntimeException("Could not store properties", ioe); |
| 195 | 0 | } |
| 196 | 0 | doc.getDocumentContent().setAttributeContent("<whatever>" + new String(baos.toByteArray()) + "</whatever>"); |
| 197 | 0 | } |
| 198 | |
} |