WebChannel.java
/*
* Copyright (C) 2003-2014 eXo Platform SAS.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program 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 Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package org.exoplatform.commons.notification.channel;
import java.util.HashMap;
import java.util.Map;
import org.exoplatform.commons.api.notification.NotificationContext;
import org.exoplatform.commons.api.notification.channel.AbstractChannel;
import org.exoplatform.commons.api.notification.channel.template.AbstractTemplateBuilder;
import org.exoplatform.commons.api.notification.channel.template.TemplateProvider;
import org.exoplatform.commons.api.notification.model.ArgumentLiteral;
import org.exoplatform.commons.api.notification.model.ChannelKey;
import org.exoplatform.commons.api.notification.model.MessageInfo;
import org.exoplatform.commons.api.notification.model.NotificationInfo;
import org.exoplatform.commons.api.notification.model.PluginKey;
import org.exoplatform.commons.api.notification.service.storage.WebNotificationStorage;
import org.exoplatform.commons.notification.lifecycle.WebLifecycle;
import org.exoplatform.commons.notification.net.WebNotificationSender;
import org.exoplatform.commons.utils.CommonsUtils;
import org.exoplatform.services.log.ExoLogger;
import org.exoplatform.services.log.Log;
/**
* Created by The eXo Platform SAS
* Author : eXoPlatform
* thanhvc@exoplatform.com
* Dec 12, 2014
*/
public class WebChannel extends AbstractChannel {
/** */
public final static String ID = "WEB_CHANNEL";
/** */
private final ChannelKey key = ChannelKey.key(ID);
/** logger */
private static final Log LOG = ExoLogger.getLogger(WebChannel.class);
/** */
private final Map<PluginKey, String> templateFilePaths = new HashMap<PluginKey, String>();
/** */
private final Map<PluginKey, AbstractTemplateBuilder> templateBuilders;
public final static ArgumentLiteral<MessageInfo> MESSAGE_INFO = new ArgumentLiteral<MessageInfo>(MessageInfo.class, "messageInfo");
public WebChannel() {
super(new WebLifecycle());
templateBuilders = new HashMap<PluginKey, AbstractTemplateBuilder>();
}
@Override
public String getId() {
return ID;
}
@Override
public ChannelKey getKey() {
return key;
}
@Override
public void registerTemplateProvider(TemplateProvider provider) {
this.templateFilePaths.putAll(provider.getTemplateFilePathConfigs());
this.templateBuilders.putAll(provider.getTemplateBuilder());
}
@Override
public void dispatch(NotificationContext ctx, String userId) {
try {
MessageInfo msg = ctx.value(MESSAGE_INFO);
if(msg != null) {
NotificationInfo notification = ctx.getNotificationInfo();
// Update badge number
int badgeNumber = CommonsUtils.getService(WebNotificationStorage.class).getNumberOnBadge(notification.getTo());
msg.setNumberOnBadge(badgeNumber);
//
WebNotificationSender.sendJsonMessage(notification.getTo(), msg);
notification.setTitle(msg.getBody());
}
} catch (Exception e) {
LOG.error("Failed to connect with server :", e);
}
}
@Override
public String getTemplateFilePath(PluginKey key) {
return this.templateFilePaths.get(key);
}
@Override
public boolean hasTemplateBuilder(PluginKey key) {
AbstractTemplateBuilder builder = this.templateBuilders.get(key);
return builder != null;
}
@Override
protected AbstractTemplateBuilder getTemplateBuilderInChannel(PluginKey key) {
return this.templateBuilders.get(key);
}
}