Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.ats.rest/src/org/eclipse/osee/ats/rest/internal/notify/AtsNotificationEventProcessor.java')
-rw-r--r--plugins/org.eclipse.osee.ats.rest/src/org/eclipse/osee/ats/rest/internal/notify/AtsNotificationEventProcessor.java65
1 files changed, 65 insertions, 0 deletions
diff --git a/plugins/org.eclipse.osee.ats.rest/src/org/eclipse/osee/ats/rest/internal/notify/AtsNotificationEventProcessor.java b/plugins/org.eclipse.osee.ats.rest/src/org/eclipse/osee/ats/rest/internal/notify/AtsNotificationEventProcessor.java
new file mode 100644
index 00000000000..1911ac526d7
--- /dev/null
+++ b/plugins/org.eclipse.osee.ats.rest/src/org/eclipse/osee/ats/rest/internal/notify/AtsNotificationEventProcessor.java
@@ -0,0 +1,65 @@
+/*******************************************************************************
+ * Copyright (c) 2014 Boeing.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Boeing - initial API and implementation
+ *******************************************************************************/
+package org.eclipse.osee.ats.rest.internal.notify;
+
+import java.util.List;
+import org.eclipse.osee.ats.api.notify.AtsNotificationCollector;
+import org.eclipse.osee.ats.api.notify.AtsNotificationEvent;
+import org.eclipse.osee.ats.api.notify.AtsWorkItemNotificationEvent;
+import org.eclipse.osee.ats.api.user.IAtsUser;
+import org.eclipse.osee.ats.api.user.IAtsUserService;
+import org.eclipse.osee.ats.rest.util.IAtsNotifierServer;
+import org.eclipse.osee.framework.jdk.core.util.EmailUtil;
+import org.eclipse.osee.framework.jdk.core.util.Strings;
+
+public class AtsNotificationEventProcessor {
+
+ private final String noReplyEmail;
+ private final WorkItemNotificationProcessor workItemNotificationProcessor;
+ private final IAtsUserService userService;
+
+ public AtsNotificationEventProcessor(WorkItemNotificationProcessor workItemNotificationProcessor, IAtsUserService userService, String noReplyEmail) {
+ this.workItemNotificationProcessor = workItemNotificationProcessor;
+ this.userService = userService;
+ this.noReplyEmail = noReplyEmail;
+ }
+
+ public void sendNotifications(AtsNotificationCollector notifications, List<IAtsNotifierServer> notifiers) {
+
+ // convert all WorkItem notifications to AtsNotificationEvent
+ for (AtsWorkItemNotificationEvent workItemEvent : notifications.getWorkItemNotificationEvents()) {
+ workItemNotificationProcessor.run(notifications, workItemEvent);
+ }
+
+ String testingUserEmail = ""; // change to email address for testing purposes; all emails will go there
+ String fromUserEmail = getFromUserEmail(notifications);
+
+ for (IAtsNotifierServer notifier : notifiers) {
+ notifier.sendNotifications(fromUserEmail, testingUserEmail, notifications.getSubject(),
+ notifications.getBody(), notifications.getNotificationEvents());
+ }
+ }
+
+ private String getFromUserEmail(AtsNotificationCollector notifications) {
+ String email = noReplyEmail;
+ for (AtsNotificationEvent event : notifications.getNotificationEvents()) {
+ if (Strings.isValid(event.getFromUserId())) {
+ IAtsUser userById = userService.getUserById(event.getFromUserId());
+ if (EmailUtil.isEmailValid(userById.getEmail())) {
+ email = userById.getEmail();
+ break;
+ }
+ }
+ }
+ return email;
+ }
+
+}

Back to the top