UISharedFileBuilder.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.wcm.ext.component.activity;
import org.apache.commons.lang.StringUtils;
import org.exoplatform.services.cms.documents.TrashService;
import org.exoplatform.services.jcr.core.ManageableRepository;
import org.exoplatform.services.jcr.ext.common.SessionProvider;
import org.exoplatform.services.log.ExoLogger;
import org.exoplatform.services.log.Log;
import org.exoplatform.services.wcm.utils.WCMCoreUtils;
import org.exoplatform.social.core.activity.model.ExoSocialActivity;
import org.exoplatform.social.core.manager.ActivityManager;
import org.exoplatform.social.webui.activity.BaseUIActivity;
import org.exoplatform.social.webui.activity.BaseUIActivityBuilder;
import org.exoplatform.wcm.notification.plugin.ShareFileToSpacePlugin;
import javax.jcr.ItemNotFoundException;
import javax.jcr.Node;
import javax.jcr.RepositoryException;
/**
* Created by The eXo Platform SAS
* Author : eXoPlatform
* exo@exoplatform.com
* Nov 25, 2014
*/
public class UISharedFileBuilder extends BaseUIActivityBuilder {
private static final Log LOG = ExoLogger.getLogger(FileUIActivityBuilder.class);
@Override
protected void extendUIActivity(BaseUIActivity uiActivity, ExoSocialActivity activity) {
FileUIActivity fileActivity = (FileUIActivity) uiActivity;
String nodeUUID = "";
String workspaceName = "";
//set data into the UI component of activity
if (activity.getTemplateParams() != null) {
fileActivity.setUIActivityData(activity.getTemplateParams());
nodeUUID = activity.getTemplateParams().get(ContentUIActivity.NODE_UUID);
workspaceName = activity.getTemplateParams().get(ContentUIActivity.WORKSPACE);
}
if (activity.getTemplateParams() != null
&& StringUtils.isNotBlank(activity.getTemplateParams().get(ShareFileToSpacePlugin.COMMENT))) {
fileActivity.setMessage(activity.getTitle());
fileActivity.setActivityTitle(activity.getTitle().replace("</br></br>", ""));
} else {
fileActivity.setMessage(null);
}
//get node data
try {
ManageableRepository manageRepo = WCMCoreUtils.getRepository();
if(StringUtils.isEmpty(workspaceName)) workspaceName = manageRepo.getConfiguration().getDefaultWorkspaceName();
SessionProvider sessionProvider = WCMCoreUtils.getSystemSessionProvider();
TrashService trashService = WCMCoreUtils.getService(TrashService.class);
Node currentNode = sessionProvider.getSession(workspaceName, manageRepo).getNodeByUUID(nodeUUID);
if(trashService.isInTrash(currentNode)) {
org.exoplatform.wcm.ext.component.activity.listener.Utils.deleteFileActivity(currentNode);
}
fileActivity.setContentNode(currentNode, 0);
} catch (ItemNotFoundException infe){
LOG.error("Item not found. Activity will be deleted ", infe);
ActivityManager activityManager = WCMCoreUtils.getService(ActivityManager.class);
activityManager.deleteActivity(activity);
} catch (RepositoryException re) {
if(LOG.isErrorEnabled())
LOG.error("Can not get the repository. ", re);
}
}
}