/** * JBoss, Home of Professional Open Source * Copyright Red Hat, Inc., and individual contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.jboss.aerogear.unifiedpush.message.jms; import javax.annotation.Resource; import javax.enterprise.event.Observes; import javax.inject.Inject; import javax.jms.Queue; import org.jboss.aerogear.unifiedpush.api.VariantType; import org.jboss.aerogear.unifiedpush.message.holder.MessageHolderWithTokens; import org.jboss.aerogear.unifiedpush.message.util.JmsClient; /** * Receives CDI event with {@link MessageHolderWithTokens} payload and dispatches this payload to JMS queue selected by a type of the variant specified in payload. * * This bean serves as mediator for decoupling of JMS subsystem and services that triggers these messages. */ public class MessageHolderWithTokensProducer extends AbstractJMSMessageProducer { @Inject private JmsClient jmsClient; @Resource(mappedName = "java:/queue/AdmTokenBatchQueue") private Queue admTokenBatchQueue; @Resource(mappedName = "java:/queue/APNsTokenBatchQueue") private Queue apnsTokenBatchQueue; @Resource(mappedName = "java:/queue/GCMTokenBatchQueue") private Queue gcmTokenBatchQueue; @Resource(mappedName = "java:/queue/MPNSTokenBatchQueue") private Queue mpnsTokenBatchQueue; @Resource(mappedName = "java:/queue/SimplePushTokenBatchQueue") private Queue simplePushTokenBatchQueue; @Resource(mappedName = "java:/queue/WNSTokenBatchQueue") private Queue wnsTokenBatchQueue; public void queueMessageVariantForProcessing(@Observes @DispatchToQueue MessageHolderWithTokens msg) { String deduplicationId = String.format("%s-%s", msg.getPushMessageInformation().getId(), msg.getSerialId()); jmsClient.send(msg).withDuplicateDetectionId(deduplicationId).to(selectQueue(msg.getVariant().getType())); } private Queue selectQueue(VariantType variantType) { switch (variantType) { case ADM: return admTokenBatchQueue; case ANDROID: return gcmTokenBatchQueue; case IOS: return apnsTokenBatchQueue; case SIMPLE_PUSH: return simplePushTokenBatchQueue; case WINDOWS_MPNS: return mpnsTokenBatchQueue; case WINDOWS_WNS: return wnsTokenBatchQueue; default: throw new IllegalStateException("Unknown variant type queue"); } } }