ContentActivityChildPlugin.java
/*
* Copyright (C) 2003-2013 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, see<http://www.gnu.org/licenses/>.
*/
package org.exoplatform.wcm.notification.plugin;
import java.util.Map;
import org.exoplatform.commons.api.notification.NotificationContext;
import org.exoplatform.commons.api.notification.model.ArgumentLiteral;
import org.exoplatform.commons.api.notification.model.NotificationInfo;
import org.exoplatform.commons.api.notification.plugin.AbstractNotificationChildPlugin;
import org.exoplatform.commons.api.notification.service.template.TemplateContext;
import org.exoplatform.commons.notification.template.TemplateUtils;
import org.exoplatform.commons.utils.CommonsUtils;
import org.exoplatform.container.PortalContainer;
import org.exoplatform.container.xml.InitParams;
import org.exoplatform.services.cms.documents.DocumentService;
import org.exoplatform.social.core.activity.model.ExoSocialActivity;
import org.exoplatform.social.core.manager.ActivityManager;
public class ContentActivityChildPlugin extends AbstractNotificationChildPlugin {
public final static ArgumentLiteral<String> ACTIVITY_ID = new ArgumentLiteral<String>(String.class, "activityId");
public static final String ID = "contents:spaces";
private ExoSocialActivity activity = null;
public ContentActivityChildPlugin(InitParams initParams) {
super(initParams);
}
@Override
public String makeContent(NotificationContext ctx) {
try {
ActivityManager activityM = CommonsUtils.getService(ActivityManager.class);
NotificationInfo notification = ctx.getNotificationInfo();
String language = getLanguage(notification);
TemplateContext templateContext = new TemplateContext(ID, language);
String activityId = notification.getValueOwnerParameter(ACTIVITY_ID.getKey());
activity = activityM.getActivity(activityId);
if (activity.isComment()) {
activity = activityM.getParentActivity(activity);
}
templateContext.put("ACTIVITY", activity.getTitle());
templateContext.put("ACTIVITY_URL", CommonsUtils.getCurrentDomain() + activity.getTemplateParams().get("contenLink"));
//
//
String content = TemplateUtils.processGroovy(templateContext);
return content;
} catch (Exception e) {
return (activity != null) ? activity.getTitle() : "";
}
}
public String getActivityParamValue(String key) {
Map<String, String> params = activity.getTemplateParams();
if (params != null) {
return params.get(key) != null ? params.get(key) : "";
}
return "";
}
@Override
public String getId() {
return ID;
}
@Override
public boolean isValid(NotificationContext ctx) {
return false;
}
private String getContentPath(String workspace, String nodepath) throws Exception {
return CommonsUtils.getCurrentDomain() + "/" + PortalContainer.getCurrentPortalContainerName() + "/documents?path="
+ capitalizeFirstLetter(workspace) + nodepath + "¬ification=true";
}
private String getContentSpacePath(String workspace, String nodepath) throws Exception {
String space = nodepath.split("/")[3];
return CommonsUtils.getCurrentDomain() + "/" + PortalContainer.getCurrentPortalContainerName() + "/g/:spaces:"
+ space + "/" +space + "/documents?path=" + capitalizeFirstLetter(workspace) + nodepath + "¬ification=true";
}
private String capitalizeFirstLetter(String str) throws Exception {
return str.substring(0, 1).toUpperCase() + str.substring(1);
}
}