/** * Copyright (c) 2000-present Liferay, Inc. All rights reserved. * * This library is free software; you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License as published by the Free * Software Foundation; either version 2.1 of the License, or (at your option) * any later version. * * This library is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. */ package com.liferay.portal.workflow.kaleo.service.impl; import com.liferay.portal.kernel.exception.PortalException; import com.liferay.portal.kernel.model.User; import com.liferay.portal.kernel.service.ServiceContext; import com.liferay.portal.kernel.util.StringBundler; import com.liferay.portal.kernel.util.StringPool; import com.liferay.portal.workflow.kaleo.definition.Notification; import com.liferay.portal.workflow.kaleo.definition.NotificationReceptionType; import com.liferay.portal.workflow.kaleo.definition.NotificationType; import com.liferay.portal.workflow.kaleo.definition.Recipient; import com.liferay.portal.workflow.kaleo.model.KaleoNotification; import com.liferay.portal.workflow.kaleo.service.base.KaleoNotificationLocalServiceBaseImpl; import java.util.Date; import java.util.List; import java.util.Map; import java.util.Set; /** * @author Brian Wing Shun Chan */ public class KaleoNotificationLocalServiceImpl extends KaleoNotificationLocalServiceBaseImpl { @Override public KaleoNotification addKaleoNotification( String kaleoClassName, long kaleoClassPK, long kaleoDefinitionId, String kaleoNodeName, Notification notification, ServiceContext serviceContext) throws PortalException { // Kaleo notification User user = userLocalService.getUser(serviceContext.getGuestOrUserId()); Date now = new Date(); long kaleoNotificationId = counterLocalService.increment(); KaleoNotification kaleoNotification = kaleoNotificationPersistence.create(kaleoNotificationId); kaleoNotification.setCompanyId(user.getCompanyId()); kaleoNotification.setUserId(user.getUserId()); kaleoNotification.setUserName(user.getFullName()); kaleoNotification.setCreateDate(now); kaleoNotification.setModifiedDate(now); kaleoNotification.setKaleoClassName(kaleoClassName); kaleoNotification.setKaleoClassPK(kaleoClassPK); kaleoNotification.setKaleoDefinitionId(kaleoDefinitionId); kaleoNotification.setKaleoNodeName(kaleoNodeName); kaleoNotification.setName(notification.getName()); kaleoNotification.setDescription(notification.getDescription()); kaleoNotification.setExecutionType( notification.getExecutionType().getValue()); kaleoNotification.setTemplate(notification.getTemplate()); kaleoNotification.setTemplateLanguage( notification.getTemplateLanguage().getValue()); Set<NotificationType> notificationTypes = notification.getNotificationTypes(); if (!notificationTypes.isEmpty()) { StringBundler sb = new StringBundler(notificationTypes.size() * 2); for (NotificationType notificationType : notificationTypes) { sb.append(notificationType.getValue()); sb.append(StringPool.COMMA); } sb.setIndex(sb.index() - 1); kaleoNotification.setNotificationTypes(sb.toString()); } kaleoNotificationPersistence.update(kaleoNotification); // Kaleo notification recipients Map<NotificationReceptionType, Set<Recipient>> recipientsMap = notification.getRecipientsMap(); for (Set<Recipient> recipients : recipientsMap.values()) { for (Recipient recipient : recipients) { kaleoNotificationRecipientLocalService. addKaleoNotificationRecipient( kaleoDefinitionId, kaleoNotificationId, recipient, serviceContext); } } return kaleoNotification; } @Override public void deleteCompanyKaleoNotifications(long companyId) { // Kaleo notifications kaleoNotificationPersistence.removeByCompanyId(companyId); // Kaleo notification recipients kaleoNotificationRecipientLocalService. deleteCompanyKaleoNotificationRecipients(companyId); } @Override public void deleteKaleoDefinitionKaleoNotifications( long kaleoDefinitionId) { // Kaleo notifications kaleoNotificationPersistence.removeByKaleoDefinitionId( kaleoDefinitionId); // Kaleo notification recipients kaleoNotificationRecipientLocalService. deleteKaleoDefinitionKaleoNotificationRecipients(kaleoDefinitionId); } @Override public List<KaleoNotification> getKaleoNotifications( String kaleoClassName, long kaleoClassPK) { return kaleoNotificationPersistence.findByKCN_KCPK( kaleoClassName, kaleoClassPK); } @Override public List<KaleoNotification> getKaleoNotifications( String kaleoClassName, long kaleoClassPK, String executionType) { return kaleoNotificationPersistence.findByKCN_KCPK_ET( kaleoClassName, kaleoClassPK, executionType); } }