workspace-tree-widget/src/main/java/org/gcube/portlets/user/workspace/server/GWTWorkspaceServiceImpl.java

4532 lines
157 KiB
Java

package org.gcube.portlets.user.workspace.server;
import static org.gcube.resources.discovery.icclient.ICFactory.clientFor;
import static org.gcube.resources.discovery.icclient.ICFactory.queryFor;
import java.io.File;
import java.net.URL;
import java.net.URLEncoder;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Calendar;
import java.util.Collections;
import java.util.Date;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.concurrent.TimeUnit;
import javax.servlet.ServletContext;
import javax.servlet.http.HttpServletRequest;
import org.apache.log4j.Logger;
import org.gcube.common.encryption.StringEncrypter;
import org.gcube.common.homelibary.model.items.type.FolderItemType;
import org.gcube.common.homelibary.model.items.type.WorkspaceItemType;
import org.gcube.common.homelibrary.home.Home;
import org.gcube.common.homelibrary.home.HomeLibrary;
import org.gcube.common.homelibrary.home.exceptions.HomeNotFoundException;
import org.gcube.common.homelibrary.home.exceptions.InternalErrorException;
import org.gcube.common.homelibrary.home.workspace.Properties;
import org.gcube.common.homelibrary.home.workspace.Workspace;
import org.gcube.common.homelibrary.home.workspace.WorkspaceFolder;
import org.gcube.common.homelibrary.home.workspace.WorkspaceItem;
import org.gcube.common.homelibrary.home.workspace.WorkspaceSharedFolder;
import org.gcube.common.homelibrary.home.workspace.WorkspaceSmartFolder;
import org.gcube.common.homelibrary.home.workspace.accessmanager.ACLType;
import org.gcube.common.homelibrary.home.workspace.accounting.AccountingEntry;
import org.gcube.common.homelibrary.home.workspace.exceptions.InsufficientPrivilegesException;
import org.gcube.common.homelibrary.home.workspace.exceptions.ItemAlreadyExistException;
import org.gcube.common.homelibrary.home.workspace.exceptions.ItemNotFoundException;
import org.gcube.common.homelibrary.home.workspace.exceptions.WorkspaceFolderNotFoundException;
import org.gcube.common.homelibrary.home.workspace.exceptions.WrongDestinationException;
import org.gcube.common.homelibrary.home.workspace.folder.FolderItem;
import org.gcube.common.homelibrary.home.workspace.folder.items.ExternalFile;
import org.gcube.common.homelibrary.home.workspace.folder.items.ExternalUrl;
import org.gcube.common.homelibrary.home.workspace.folder.items.GCubeItem;
import org.gcube.common.homelibrary.home.workspace.search.SearchItem;
import org.gcube.common.portal.PortalContext;
import org.gcube.common.resources.gcore.ServiceEndpoint;
import org.gcube.common.scope.api.ScopeProvider;
import org.gcube.common.storagehubwrapper.server.StorageHubWrapper;
import org.gcube.common.storagehubwrapper.shared.tohl.TrashedItem;
import org.gcube.common.storagehubwrapper.shared.tohl.impl.WorkspaceFileVersion;
import org.gcube.portal.wssynclibrary.shared.ItemNotSynched;
import org.gcube.portal.wssynclibrary.shared.WorkspaceFolderLocked;
import org.gcube.portal.wssynclibrary.shared.thredds.Sync_Status;
import org.gcube.portal.wssynclibrary.thredds.WorkspaceThreddsSynchronize;
import org.gcube.portlets.user.urlshortener.UrlShortener;
import org.gcube.portlets.user.workspace.client.ConstantsExplorer;
import org.gcube.portlets.user.workspace.client.interfaces.GXTCategorySmartFolder;
import org.gcube.portlets.user.workspace.client.model.FileDetailsModel;
import org.gcube.portlets.user.workspace.client.model.FileGridModel;
import org.gcube.portlets.user.workspace.client.model.FileModel;
import org.gcube.portlets.user.workspace.client.model.FileTrashedModel;
import org.gcube.portlets.user.workspace.client.model.FileVersionModel;
import org.gcube.portlets.user.workspace.client.model.FolderModel;
import org.gcube.portlets.user.workspace.client.model.GcubeVRE;
import org.gcube.portlets.user.workspace.client.model.InfoContactModel;
import org.gcube.portlets.user.workspace.client.model.ScopeModel;
import org.gcube.portlets.user.workspace.client.model.SmartFolderModel;
import org.gcube.portlets.user.workspace.client.model.SubTree;
import org.gcube.portlets.user.workspace.client.rpc.GWTWorkspaceService;
import org.gcube.portlets.user.workspace.client.workspace.GWTWorkspaceItem;
import org.gcube.portlets.user.workspace.client.workspace.folder.item.gcube.WorkspaceHandledException;
import org.gcube.portlets.user.workspace.server.notifications.NotificationsProducer;
import org.gcube.portlets.user.workspace.server.notifications.NotificationsUtil;
import org.gcube.portlets.user.workspace.server.notifications.tostoragehub.NotificationStorageHubUtil;
import org.gcube.portlets.user.workspace.server.notifications.tostoragehub.NotificationsProducerToStorageHub;
import org.gcube.portlets.user.workspace.server.reader.ApplicationProfile;
import org.gcube.portlets.user.workspace.server.reader.ApplicationProfileReader;
import org.gcube.portlets.user.workspace.server.resolver.UriResolverReaderParameterForResolverIndex;
import org.gcube.portlets.user.workspace.server.tostoragehub.StorageHubToWorkpaceConverter;
import org.gcube.portlets.user.workspace.server.util.AclTypeComparator;
import org.gcube.portlets.user.workspace.server.util.DifferenceBetweenInfoContactModel;
import org.gcube.portlets.user.workspace.server.util.PortalContextInfo;
import org.gcube.portlets.user.workspace.server.util.StringUtil;
import org.gcube.portlets.user.workspace.server.util.UserUtil;
import org.gcube.portlets.user.workspace.server.util.WsUtil;
import org.gcube.portlets.user.workspace.server.util.resource.PropertySpecialFolderReader;
import org.gcube.portlets.user.workspace.server.util.scope.ScopeUtilFilter;
import org.gcube.portlets.user.workspace.shared.AllowAccess;
import org.gcube.portlets.user.workspace.shared.ExtendedWorkspaceACL;
import org.gcube.portlets.user.workspace.shared.GarbageItem;
import org.gcube.portlets.user.workspace.shared.PublicLink;
import org.gcube.portlets.user.workspace.shared.ReportAssignmentACL;
import org.gcube.portlets.user.workspace.shared.SessionExpiredException;
import org.gcube.portlets.user.workspace.shared.TrashContent;
import org.gcube.portlets.user.workspace.shared.TrashOperationContent;
import org.gcube.portlets.user.workspace.shared.UserBean;
import org.gcube.portlets.user.workspace.shared.WorkspaceACL;
import org.gcube.portlets.user.workspace.shared.WorkspaceOperationResult;
import org.gcube.portlets.user.workspace.shared.WorkspaceTrashOperation;
import org.gcube.portlets.user.workspace.shared.WorkspaceUserQuote;
import org.gcube.portlets.user.workspace.shared.WorkspaceVersioningOperation;
import org.gcube.portlets.user.workspace.shared.accounting.GxtAccountingEntryType;
import org.gcube.portlets.user.workspace.shared.accounting.GxtAccountingField;
import org.gcube.resources.discovery.client.api.DiscoveryClient;
import org.gcube.resources.discovery.client.queries.api.SimpleQuery;
import org.gcube.vomanagement.usermanagement.GroupManager;
import org.gcube.vomanagement.usermanagement.UserManager;
import org.gcube.vomanagement.usermanagement.exception.GroupRetrievalFault;
import org.gcube.vomanagement.usermanagement.exception.UserManagementSystemException;
import org.gcube.vomanagement.usermanagement.exception.UserRetrievalFault;
import org.gcube.vomanagement.usermanagement.impl.LiferayGroupManager;
import org.gcube.vomanagement.usermanagement.impl.LiferayUserManager;
import org.gcube.vomanagement.usermanagement.model.GCubeGroup;
import org.gcube.vomanagement.usermanagement.model.GCubeUser;
import com.google.gwt.user.server.rpc.RemoteServiceServlet;
import com.liferay.portal.service.UserLocalServiceUtil;
/**
* The Class GWTWorkspaceServiceImpl.
*
* @author Francesco Mangiacrapa francesco.mangiacrapa@isti.cnr.it
*/
public class GWTWorkspaceServiceImpl extends RemoteServiceServlet implements GWTWorkspaceService{
protected static final String IDENTIFIER_IS_NULL = "Identifier is null";
protected static final String RETRIEVING_ITEM_EITHER_ITEM_DOESN_T_EXIST = " retrieving item. Either the item doesn't exist anymore or you do not have the permission to access it";
private static final long serialVersionUID = 2828885661214875589L;
public static final String LAST_OPEN_FOLDER_ATTRIBUTE = "WORKSPACE.LAST_OPEN_FOLDER";
public static final String SELECTION_STATE_ATTRIBUTE = "WORKSPACE.SELECTION_STATE";
protected Logger workspaceLogger = Logger.getLogger(GWTWorkspaceServiceImpl.class);
/**
* Gets the GWT workspace builder.
*
* @return the GWT workspace builder
*/
protected GWTWorkspaceBuilder getGWTWorkspaceBuilder()
{
return WsUtil.getGWTWorkspaceBuilder(this.getThreadLocalRequest());
}
/**
* Gets the workspace.
*
* @return the workspace
* @throws InternalErrorException the internal error exception
* @throws InternalErrorException the internal error exception
* @throws HomeNotFoundException the home not found exception
* @throws WorkspaceFolderNotFoundException the workspace folder not found exception
*/
protected Workspace getWorkspace() throws InternalErrorException, HomeNotFoundException, WorkspaceFolderNotFoundException, org.gcube.common.storagehubwrapper.shared.tohl.exceptions.InternalErrorException
{
return WsUtil.getWorkspace(this.getThreadLocalRequest());
}
/**
* Gets the notification producer.
*
* @return the notification producer
*/
protected NotificationsProducer getNotificationProducer(){
return WsUtil.getNotificationProducer(this.getThreadLocalRequest());
}
/**
* Gets the scope util filter.
*
* @return the scope util filter
*/
protected ScopeUtilFilter getScopeUtilFilter(){
return WsUtil.getScopeUtilFilter(this.getThreadLocalRequest());
}
/**
* Checks if is test mode.
*
* @return true, if is test mode
*/
protected boolean isTestMode(){
return !WsUtil.isWithinPortal();
}
/**
* Gets the url shortener.
*
* @return the url shortener
*/
protected UrlShortener getUrlShortener() {
return WsUtil.getUrlShortener(this.getThreadLocalRequest());
}
/**
* Gets the uri resolver.
*
* @return the uri resolver
*/
protected UriResolverReaderParameterForResolverIndex getUriResolver() {
return WsUtil.getUriResolver(this.getThreadLocalRequest());
}
/**
* Gets the property special folder reader.
*
* @return the property special folder reader
*/
protected PropertySpecialFolderReader getPropertySpecialFolderReader() {
String absolutePathProperty = getSpecialFolderPath();
return WsUtil.getPropertySpecialFolderReader(this.getThreadLocalRequest(),absolutePathProperty);
}
/**
* Gets the special folder path.
*
* @return the Category if there is correspondance, null otherwise
*/
private String getSpecialFolderPath() {
ServletContext servletContext = getServletContext();
String contextPath = servletContext.getRealPath(File.separator);
return contextPath + File.separator +"conf" + File.separator + ConstantsExplorer.SPECIALFOLDERNAMEPROPERTIESFILE;
}
/* (non-Javadoc)
* @see org.gcube.portlets.user.workspace.client.rpc.GWTWorkspaceService#getItemsBySearchName(java.lang.String)
*/
/**
* Gets the items by search name.
*
* @param text the text
* @param folderId the folder id
* @return the items by search name
* @throws Exception the exception
*/
@Override
public List<FileGridModel> getItemsBySearchName(String text, String folderId) throws Exception {
try {
Workspace workspace = getWorkspace();
if(folderId==null || folderId.isEmpty()){
workspaceLogger.trace("searching folderId is null, settings root Id");
folderId = workspace.getRoot().getId();
}
workspaceLogger.info("searching by name: "+text +" in "+folderId);
List<SearchItem> listSearchItems = workspace.searchByName(text, folderId);
workspaceLogger.info("HL search returning "+listSearchItems.size()+" items");
workspaceLogger.info("Converting "+listSearchItems.size()+" items");
GWTWorkspaceBuilder builder = getGWTWorkspaceBuilder();
List<FileGridModel> listFileGridModels = new ArrayList<FileGridModel>();
listFileGridModels = builder.buildGXTListFileGridModelItemForSearch(listSearchItems);
workspaceLogger.info("Search objects converted, returning");
return listFileGridModels;
} catch (Exception e) {
workspaceLogger.error("Error in server During search retrieving", e);
// workspaceLogger.trace("Error in server During search retrieving " + e);
//GWT can't serialize all exceptions
throw new Exception("Error during searching, please contact the support.");
}
}
/**
* Gets the name for special folder.
*
* @return the name for special folder
*/
private String getNameForSpecialFolder(){
PropertySpecialFolderReader sfReader = getPropertySpecialFolderReader();
if(sfReader==null){
workspaceLogger.warn("Reader is null, skypping set to special folder name");
return "";
}
workspaceLogger.info("Read special folder name: '"+sfReader.getSpecialFolderName()+"', from property file..");
return sfReader.getSpecialFolderName();
}
/* (non-Javadoc)
* @see org.gcube.portlets.user.workspace.client.rpc.GWTWorkspaceService#getItemForFileGrid(java.lang.String)
*/
/**
* Gets the item for file grid.
*
* @param itemId the item id
* @return the item for file grid
* @throws Exception the exception
*/
@Override
public FileGridModel getItemForFileGrid(String itemId) throws Exception {
try {
if(itemId == null)
throw new Exception(IDENTIFIER_IS_NULL);
Workspace workspace = getWorkspace();
workspaceLogger.trace("get child for Grid by id: "+itemId);
WorkspaceItem wsItem = workspace.getItem(itemId);
GWTWorkspaceBuilder builder = getGWTWorkspaceBuilder();
Long startTime = System.currentTimeMillis();
Long endTime = System.currentTimeMillis() - startTime;
String time = String.format("%d msc %d sec", endTime, TimeUnit.MILLISECONDS.toSeconds(endTime));
workspaceLogger.debug("get child for Grid by id returning element in " + time);
//BUILD PARENT
WorkspaceFolder folder = wsItem.getParent(); //get parent
FileGridModel wsFolder = builder.buildGXTFileGridModelItem(folder, null);
//BUILD ITEM
return builder.buildGXTFileGridModelItem(wsItem, wsFolder);
} catch (Exception e) {
workspaceLogger.error("Error in server during item retrieving, getItemForFileGrid", e);
String error = ConstantsExplorer.SERVER_ERROR + RETRIEVING_ITEM_EITHER_ITEM_DOESN_T_EXIST;
throw new Exception(error);
}
}
/* (non-Javadoc)
* @see org.gcube.portlets.user.workspace.client.rpc.GWTWorkspaceService#getItemForFileTree(java.lang.String)
*/
/**
* Gets the item for file tree.
*
* @param itemId the item id
* @return the item for file tree
* @throws Exception the exception
*/
@Override
public FileModel getItemForFileTree(String itemId) throws Exception {
try {
if(itemId == null)
throw new Exception(IDENTIFIER_IS_NULL);
Workspace workspace = getWorkspace();
WorkspaceItem wsItem = workspace.getItem(itemId);
GWTWorkspaceBuilder builder = getGWTWorkspaceBuilder();
//BUILD PARENT
WorkspaceFolder folderParent = wsItem.getParent(); //get parent
FileModel wsFolderParent = builder.buildGXTFileModelItem(folderParent, null);
//BUILD ITEM
return builder.buildGXTFileModelItem(wsItem, wsFolderParent);
} catch (Exception e) {
workspaceLogger.error("Error in server during item retrieving, getItemForFileGrid", e);
String error = ConstantsExplorer.SERVER_ERROR + RETRIEVING_ITEM_EITHER_ITEM_DOESN_T_EXIST;
throw new Exception(error);
}
}
/**
* Check notify add item to share.
*
* @param destinationItem the destination item
* @param sourceSharedId the source shared id
* @param folderDestinationItem the folder destination item
*/
private void checkNotifyAddItemToShare(final WorkspaceItem destinationItem, final String sourceSharedId, final WorkspaceItem folderDestinationItem) {
workspaceLogger.trace("checkNotifyAddItemToShare");
if(folderDestinationItem!=null){
try{
//if folder destination is shared folder
if(folderDestinationItem.isShared()){ //Notify Added Item To Sharing?
workspaceLogger.trace("checkNotifyAddItemToShare destination item: "+destinationItem.getName()+" sourceSharedId: "+sourceSharedId + " folder destination: "+folderDestinationItem.getName());
//share condition is true if source shared folder is null or not equal to destination shared folder
boolean shareChangeCondition = sourceSharedId==null || sourceSharedId.compareTo(folderDestinationItem.getIdSharedFolder())!=0;
workspaceLogger.trace("shareChangeCondition add item: "+shareChangeCondition);
//if shareChangeCondition is true.. notifies added item to sharing
if(shareChangeCondition){
List<InfoContactModel> listContacts = getListUserSharedByFolderSharedId(folderDestinationItem.getIdSharedFolder());
//DEBUG
//printContacts(listContacts);
Workspace workspace = getWorkspace();
WorkspaceItem destinationSharedFolder = workspace.getItem(folderDestinationItem.getIdSharedFolder());
NotificationsProducer np = getNotificationProducer();
if(destinationSharedFolder instanceof WorkspaceSharedFolder){
np.notifyAddedItemToSharing(listContacts, destinationItem, (WorkspaceSharedFolder) destinationSharedFolder);
workspaceLogger.trace("The notifies sent correctly");
}
else
workspaceLogger.warn("Notifies added item: "+destinationItem+ "to share doesn't sent because "+destinationSharedFolder+" is not istance of WorkspaceSharedFolder");
// np.notifyAddedItemToSharing(listContacts, (WorkspaceFolder) folderDestinationItem);
}
}
else
workspaceLogger.trace("folder destination is not shared");
}catch (Exception e) {
workspaceLogger.error("An error occurred in verifyNotifyAddItemToShare ",e);
}
}else
workspaceLogger.warn("The notifies is failure in verifyNotifyAddItemToShare because folder destination item is null");
}
/**
* Check notify move item from share.
*
* @param sourceItemIsShared the source item is shared
* @param sourceItem the source item
* @param sourceSharedId the source shared id
* @param folderDestinationItem the folder destination item
*/
private void checkNotifyMoveItemFromShare(final boolean sourceItemIsShared, final WorkspaceItem sourceItem, final String sourceSharedId, final WorkspaceItem folderDestinationItem) {
workspaceLogger.trace("checkNotifyMoveItemFromShare:");
try{
if(folderDestinationItem!=null){
String idSharedFolder = folderDestinationItem.getIdSharedFolder()!=null?folderDestinationItem.getIdSharedFolder():"";
//share condition is true if source shared folder is not equal to destination shared folder
boolean shareChangeCondition = sourceSharedId==null?false:sourceSharedId.compareTo(idSharedFolder)!=0;
workspaceLogger.trace("checkNotifyMoveItemFromShare source item: "+sourceItem.getName()+" sourceSharedId: "+sourceSharedId + " folder destination: "+folderDestinationItem.getName() +" sourceItemIsShared: "+sourceItemIsShared);
// System.out.println("shareChangeCondition remove item: "+ shareChangeCondition);
workspaceLogger.trace("shareChangeCondition remove item: "+ shareChangeCondition);
//Notify Removed Item To Sharing?
//if source Item is shared and folder destination is not shared or shareChangeCondition is true.. notifies removed item to sharing
if(sourceItemIsShared && (!folderDestinationItem.isShared() || shareChangeCondition)){
//get contacts
List<InfoContactModel> listContacts = getListUserSharedByFolderSharedId(sourceSharedId);
//DEBUG
printContacts(listContacts);
Workspace workspace = getWorkspace();
WorkspaceItem sourceSharedFolder = workspace.getItem(sourceSharedId);
NotificationsProducer np = getNotificationProducer();
if(sourceSharedFolder instanceof WorkspaceSharedFolder){
np.notifyMovedItemToSharing(listContacts, sourceItem, (WorkspaceSharedFolder) sourceSharedFolder);
workspaceLogger.trace("The notifies was sent correctly");
}else
workspaceLogger.warn("Notifies moved item: "+sourceItem+ "from share doesn't sent because "+sourceSharedFolder+" is not istance of WorkspaceSharedFolder");
}
}else
workspaceLogger.warn("The notifies is failure in checkNotifyMoveItemFromShare because folder destination item is null");
}catch (Exception e) {
workspaceLogger.error("An error occurred in checkNotifyMoveItemFromShare ",e);
}
}
//DEBUG
/**
* Prints the contacts.
*
* @param listContacts the list contacts
*/
private void printContacts(List<InfoContactModel> listContacts){
workspaceLogger.trace("Contacts:");
for (InfoContactModel infoContactModel : listContacts) {
workspaceLogger.trace("User: "+infoContactModel);
}
}
//DEBUG
/**
* Prints the list.
*
* @param list the list
*/
private void printList(List<String> list){
for (String string : list) {
workspaceLogger.trace(string);
}
}
/* (non-Javadoc)
* @see org.gcube.portlets.user.workspace.client.rpc.GWTWorkspaceService#getDetailsFile(org.gcube.portlets.user.workspace.client.model.FileModel)
*/
/**
* Gets the details file.
*
* @param folder the folder
* @return the details file
* @throws Exception the exception
*/
@Override
public FileDetailsModel getDetailsFile(FileModel folder) throws Exception {
try {
if(folder == null)
throw new Exception("Folder is null");
workspaceLogger.trace("load file details: " + folder.getName());
Workspace workspace = getWorkspace();
WorkspaceItem wsItem = workspace.getItem(folder.getIdentifier());
GWTWorkspaceBuilder builder = getGWTWorkspaceBuilder();
return builder.buildGWTWorkspaceFileDetails(wsItem, folder);
} catch (Exception e) {
workspaceLogger.error("Error in load server file details", e);
throw new Exception(e.getMessage());
}
}
/* (non-Javadoc)
* @see org.gcube.portlets.user.workspace.client.rpc.GWTWorkspaceService#getChildrenSubTreeToRootByIdentifier(java.lang.String)
*/
/**
* Gets the children sub tree to root by identifier.
*
* @param itemIdentifier the item identifier
* @return the children sub tree to root by identifier
* @throws Exception the exception
*/
@Override
public ArrayList<SubTree> getChildrenSubTreeToRootByIdentifier(String itemIdentifier) throws Exception {
ArrayList<SubTree> listSubTree = new ArrayList<SubTree>();
try {
if(itemIdentifier == null)
throw new Exception(IDENTIFIER_IS_NULL);
Workspace workspace = getWorkspace();
workspaceLogger.trace("search itemId: "+itemIdentifier);
WorkspaceItem item = workspace.getItem(itemIdentifier); //get item from workspace
getListsChildrenByParent(listSubTree, item);
Collections.reverse(listSubTree); //reverse order of array
//SET THE ROOT
int lenght = listSubTree.size();
if(lenght>0){
FolderModel firstLevel = listSubTree.get(0).getParent(); //get root
workspaceLogger.trace("set: "+firstLevel.getName() +" as root");
listSubTree.get(0).getParent().setIsRoot(true);
//IF IT CASE - REWRITE SPECIAL FOLDER NAME
if(lenght>1){
FolderModel wsFolder = listSubTree.get(1).getParent(); //get first child
String nameSpecialFolder = getNameForSpecialFolder();
if(wsFolder.getName().compareTo(ConstantsExplorer.MY_SPECIAL_FOLDERS)==0 && firstLevel.isRoot()){
//MANAGEMENT SPECIAL FOLDER
workspaceLogger.debug("getChildrenSubTreeToRootByIdentifier MANAGEMENT SPECIAL FOLDER NAME REWRITING AS: "+nameSpecialFolder);
if(nameSpecialFolder!=null && !nameSpecialFolder.isEmpty())
listSubTree.get(1).getParent().setName(nameSpecialFolder);
}
}
}
workspaceLogger.trace("getChildrenSubTreeToRootByIdentifier returning list SubTree: "+listSubTree);
} catch (Exception e) {
workspaceLogger.error("Error in server find Item", e);
throw new Exception(e.getMessage());
}
return listSubTree;
}
/* (non-Javadoc)
* @see org.gcube.portlets.user.workspace.client.rpc.GWTWorkspaceService#getSmartFolderResultsByCategory(java.lang.String)
*/
/**
* Gets the smart folder results by category.
*
* @param category the category
* @return the smart folder results by category
* @throws Exception the exception
*/
@Override
public List<FileGridModel> getSmartFolderResultsByCategory(GXTCategorySmartFolder category) throws Exception {
try {
Workspace workspace = getWorkspace();
workspaceLogger.trace("get smart folder by category: "+category);
GWTWorkspaceBuilder builder = getGWTWorkspaceBuilder();
List<SearchItem> listWorkspaceItems = new ArrayList<SearchItem>();
//Category IMAGES
if(category.equals(GXTCategorySmartFolder.SMF_IMAGES)){
listWorkspaceItems = workspace.getFolderItems(FolderItemType.IMAGE_DOCUMENT, FolderItemType.EXTERNAL_IMAGE);
//Category BIODIVERSITY
}else if(category.equals(GXTCategorySmartFolder.SMF_BIODIVERSITY)){
// listWorkspaceItems = workspace.getFolderItems(FolderItemType.AQUAMAPS_ITEM);
//Category DOCUMENTS
}else if(category.equals(GXTCategorySmartFolder.SMF_DOCUMENTS)){
listWorkspaceItems = workspace.getFolderItems(
FolderItemType.EXTERNAL_FILE,
FolderItemType.EXTERNAL_PDF_FILE,
FolderItemType.QUERY,
FolderItemType.PDF_DOCUMENT,
FolderItemType.METADATA,
FolderItemType.DOCUMENT
);
//Category LINKS
}else if(category.equals(GXTCategorySmartFolder.SMF_LINKS)){
// listWorkspaceItems = workspace.getFolderItems(FolderItemType.EXTERNAL_URL, FolderItemType.URL_DOCUMENT, FolderItemType.EXTERNAL_RESOURCE_LINK);
//Category REPORTS
}else if(category.equals(GXTCategorySmartFolder.SMF_REPORTS)){
listWorkspaceItems = workspace.getFolderItems(FolderItemType.REPORT_TEMPLATE, FolderItemType.REPORT);
//Category TIME SERIES
}else if(category.equals(GXTCategorySmartFolder.SMF_TIMESERIES)){
listWorkspaceItems = workspace.getFolderItems(FolderItemType.TIME_SERIES);
}
else if(category.equals(GXTCategorySmartFolder.SMF_PUBLIC_FOLDERS)){
List<WorkspaceItem> listFolder = workspace.getPublicFolders();
if(listFolder==null || listFolder.isEmpty())
return new ArrayList<FileGridModel>();
return builder.buildGXTListFileGridModelItem(listFolder, null);
}else
new Exception("Smart folder category unknown");
return builder.filterListFileGridModelItemByCategory(listWorkspaceItems, category);
} catch (Exception e) {
workspaceLogger.error("Error in server get smart folder by category", e);
throw new Exception(e.getMessage());
}
}
/**
* Gets the lists children by parents.
*
* @param listSubTree the list sub tree
* @param parent the parent
* @return the lists children by parents
* @throws Exception the exception
*/
private void getListsChildrenByParent(ArrayList<SubTree> listSubTree, WorkspaceItem parent) throws Exception{
if(parent==null)
return;
if(!parent.isFolder()){
workspaceLogger.warn("getListsChildrenByParent returning: "+parent.getName() +" is not a folder");
return;
}
workspaceLogger.trace("getListsChildrenByParent: "+parent.getName());
GWTWorkspaceBuilder builder = getGWTWorkspaceBuilder();
FolderModel parentModel = (FolderModel) builder.buildGXTFileModelItem(parent, null); //get folder
List<FileModel> childrenList = getFolderChildren(parentModel); //get children
SubTree subTree = new SubTree(parentModel, childrenList);
listSubTree.add(subTree);
getListsChildrenByParent(listSubTree, parent.getParent());
}
/* (non-Javadoc)
* @see org.gcube.portlets.user.workspace.client.rpc.GWTWorkspaceService#createSmartFolder(java.lang.String, java.lang.String, java.lang.String)
*/
/**
* Creates the smart folder.
*
* @param name the name
* @param description the description
* @param query the query
* @param parentId the parent id
* @return the smart folder model
* @throws Exception the exception
*/
@Override
public SmartFolderModel createSmartFolder(String name, String description, String query, String parentId) throws Exception {
if(isSessionExpired())
throw new SessionExpiredException();
try {
Workspace workspace = getWorkspace();
workspaceLogger.trace("create smart folder by name: "+name);
workspaceLogger.trace("description " + description);
workspaceLogger.trace("query " + query);
workspaceLogger.trace("parentId " + parentId);
if(parentId==null || parentId.isEmpty()){
workspaceLogger.trace("parent id is null using root id");
parentId = workspace.getRoot().getId();
}
WorkspaceSmartFolder wsSmartFolder = workspace.createSmartFolder(name, description, query, parentId); //create Smart Folder from workspace
workspaceLogger.trace("create : " +wsSmartFolder.getName() + " id "+ wsSmartFolder.getId());
GWTWorkspaceBuilder builder = getGWTWorkspaceBuilder();
return builder.buildGXTSmartFolderModel(wsSmartFolder,query);
} catch (Exception e) {
workspaceLogger.error("Error in server create smart folder by name: ", e);
// workspaceLogger.trace("Error in server create smart folder by id " + e);
//GWT can't serialize all exceptions
throw new Exception(e.getMessage());
}
}
/* (non-Javadoc)
* @see org.gcube.portlets.user.workspace.client.rpc.GWTWorkspaceService#removeSmartFolder(java.lang.String, java.lang.String)
*/
/**
* Removes the smart folder.
*
* @param itemId the item id
* @param name the name
* @return the boolean
* @throws Exception the exception
*/
@Override
public Boolean removeSmartFolder(String itemId, String name) throws Exception {
if(itemId==null)
return null;
try {
Workspace workspace = getWorkspace();
workspaceLogger.trace("remove smart folder by id: "+itemId);
workspace.removeItem(itemId); //remove Smart Folder from workspace
return true;
} catch (Exception e) {
workspaceLogger.error("Error in remove smart folder by id: ", e);
throw new Exception(e.getMessage());
}
}
/* (non-Javadoc)
* @see org.gcube.portlets.user.workspace.client.rpc.GWTWorkspaceService#getAllSmartFolders()
*/
/**
* Gets the all smart folders.
*
* @return the all smart folders
* @throws Exception the exception
*/
@Override
public List<SmartFolderModel> getAllSmartFolders() throws Exception{
try {
Workspace workspace = getWorkspace();
workspaceLogger.trace("get all smart folder");
List<WorkspaceSmartFolder> listWorkspaceFolder = new ArrayList<WorkspaceSmartFolder>();
listWorkspaceFolder = workspace.getAllSmartFolders(); //create Smart Folder from workspace
workspaceLogger.trace("list smart folders size" + listWorkspaceFolder.size());
GWTWorkspaceBuilder builder = getGWTWorkspaceBuilder();
return builder.buildGXTListSmartFolderModel(listWorkspaceFolder);
} catch (Exception e) {
workspaceLogger.error("Error in server get all smart folder: ", e);
throw new Exception(e.getMessage());
}
}
/* (non-Javadoc)
* @see org.gcube.portlets.user.workspace.client.rpc.GWTWorkspaceService#getSmartFolderResultsById(java.lang.String)
*/
/**
* Gets the smart folder results by id.
*
* @param folderId the folder id
* @return the smart folder results by id
* @throws Exception the exception
*/
@Override
public List<FileGridModel> getSmartFolderResultsById(String folderId) throws Exception {
if(folderId == null)
return null;
try {
Workspace workspace = getWorkspace();
workspaceLogger.trace("get smart folder by id: "+folderId);
WorkspaceSmartFolder wsSmartFolder = workspace.getSmartFolder(folderId); //get Smart Folder from workspace
workspaceLogger.trace("wsFolder " + wsSmartFolder.getName());
GWTWorkspaceBuilder builder = getGWTWorkspaceBuilder();
List<? extends SearchItem> searchItems = wsSmartFolder.getSearchItems();
if(searchItems!=null){
workspaceLogger.trace("smart folders size "+searchItems.size());
return builder.buildGXTListFileGridModelItemForSearch((List<SearchItem>) searchItems);
}else
return new ArrayList<FileGridModel>();
} catch (Exception e) {
workspaceLogger.error("Error in get server smart folder by id", e);
throw new Exception(e.getMessage());
}
}
/* (non-Javadoc)
* @see org.gcube.portlets.user.workspace.client.rpc.GWTWorkspaceService#getImageById(java.lang.String, boolean, boolean)
*/
/**
* Gets the image by id.
*
* @param identifier the identifier
* @param isInteralImage the is interal image
* @param fullDetails the full details
* @return the image by id
* @throws Exception the exception
*/
@Override
public GWTWorkspaceItem getImageById(String identifier, boolean isInteralImage, boolean fullDetails) throws Exception {
if(identifier==null)
return null;
try {
Workspace workspace = getWorkspace();
workspaceLogger.trace("get image by id: "+identifier);
WorkspaceItem item = workspace.getItem(identifier); //get item from workspace
workspaceLogger.trace("item name " + item.getName());
GWTWorkspaceBuilder builder = getGWTWorkspaceBuilder();
PortalContextInfo context = WsUtil.getPortalContext(this.getThreadLocalRequest());
GCubeUser user = PortalContext.getConfiguration().getCurrentUser(this.getThreadLocalRequest());
return builder.buildGWTWorkspaceImage(item, isInteralImage, fullDetails, context.getCurrGroupId()+"", user.getUserId()+"");
} catch (Exception e) {
workspaceLogger.error("Error in server get image by id", e);
throw new Exception(e.getMessage());
}
}
/* (non-Javadoc)
* @see org.gcube.portlets.user.workspace.client.rpc.GWTWorkspaceService#getTimeSeriesById(java.lang.String)
*/
/**
* Gets the time series by id.
*
* @param identifier the identifier
* @return the time series by id
* @throws Exception the exception
*/
@Override
@Deprecated
/**
* this method return always null
*/
public GWTWorkspaceItem getTimeSeriesById(String identifier) throws Exception {
if(identifier==null)
return null;
try {
Workspace workspace = getWorkspace();
workspaceLogger.trace("get timeseries by id: "+identifier);
WorkspaceItem item = workspace.getItem(identifier); //get item from workspace
workspaceLogger.trace("item name " + item.getName());
GWTWorkspaceBuilder builder = getGWTWorkspaceBuilder();
return null;
} catch (Exception e) {
workspaceLogger.error("Error in server get timeseries by id", e);
throw new Exception(e.getMessage());
}
}
/* (non-Javadoc)
* @see org.gcube.portlets.user.workspace.client.rpc.GWTWorkspaceService#getUrlById(java.lang.String, boolean, boolean)
*/
/**
* Gets the url by id.
*
* @param identifier the identifier
* @param isInternalUrl the is internal url
* @param fullDetails the full details
* @return the url by id
* @throws Exception the exception
*/
@Override
public GWTWorkspaceItem getUrlById(String identifier, boolean isInternalUrl, boolean fullDetails) throws Exception {
try {
if(identifier==null)
throw new Exception(IDENTIFIER_IS_NULL);
Workspace workspace = getWorkspace();
workspaceLogger.trace("get url by id: "+identifier);
WorkspaceItem item = workspace.getItem(identifier); //get item from workspace
workspaceLogger.trace("item name " + item.getName());
GWTWorkspaceBuilder builder = getGWTWorkspaceBuilder();
return builder.buildGWTWorspaceUrl(item, isInternalUrl, fullDetails);
} catch (Exception e) {
workspaceLogger.error("Error in server get image by id ", e);
// workspaceLogger.trace("Error in server get image by id " + e);
//GWT can't serialize all exceptions
throw new Exception(e.getMessage());
}
}
/* (non-Javadoc)
* @see org.gcube.portlets.user.workspace.client.rpc.GWTWorkspaceService#createExternalUrl(org.gcube.portlets.user.workspace.client.model.FileModel, java.lang.String, java.lang.String, java.lang.String)
*/
/**
* Creates the external url.
*
* @param parentId the parent id
* @param name the name
* @param description the description
* @param url the url
* @return the file model
* @throws Exception the exception
*/
@Override
public FileModel createExternalUrl(String parentId, String name, String description, String url) throws Exception {
try {
Workspace workspace = getWorkspace();
if(parentId==null){
workspaceLogger.error("Error on creating url. Parent ID is null");
throw new Exception("Parent ID is null");
}
checkItemLocked(parentId);
workspaceLogger.trace("create url in parent id: "+parentId);
ExternalUrl ext = workspace.createExternalUrl(name, description, url, parentId);
WorkspaceItem parent = workspace.getItem(parentId); //get item from workspace
workspaceLogger.trace("parent name " + parent.getName());
GWTWorkspaceBuilder builder = getGWTWorkspaceBuilder();
FolderModel parentFileModel = builder.buildGXTFolderModelItem((WorkspaceFolder) parent, null);
return builder.buildGXTFileModelItem(ext, parentFileModel);
}catch (WorkspaceFolderLocked e1){
throw new Exception(e1.getMessage());
} catch (Exception e) {
workspaceLogger.error("Error in server create url in parent id ", e);
// workspaceLogger.trace("Error in server create url in parent id " + e);
//GWT can't serialize all exceptions
throw new Exception(e.getMessage());
}
}
/* (non-Javadoc)
* @see org.gcube.portlets.user.workspace.client.rpc.GWTWorkspaceService#getURLFromApplicationProfile(java.lang.String)
*/
/**
* Gets the URL from application profile.
*
* @param oid the oid
* @return the URL from application profile
* @throws Exception the exception
*/
@Override
public String getURLFromApplicationProfile(String oid) throws Exception {
throw new Exception("Operation not supported");
}
/* (non-Javadoc)
* @see org.gcube.portlets.user.workspace.client.rpc.GWTWorkspaceService#setValueInSession(java.lang.String, java.lang.String)
*/
/**
* Sets the value in session.
*
* @param name the name
* @param value the value
* @throws Exception the exception
*/
@Override
public void setValueInSession(String name, String value) throws Exception {
try{
this.getThreadLocalRequest().getSession().setAttribute(name, value);
workspaceLogger.trace("set value in session with name: "+name+", value: "+value);
} catch (Exception e) {
workspaceLogger.error("setValueInSession", e);
throw new Exception(e.getMessage());
}
}
/* (non-Javadoc)
* @see org.gcube.portlets.user.workspace.client.rpc.GWTWorkspaceService#getAllScope()
*/
/**
* Gets the all scope.
*
* @return the all scope
* @throws Exception the exception
*/
@Override
public List<ScopeModel> getAllScope() throws Exception {
try {
Workspace workspace = getWorkspace();
workspaceLogger.trace("get all scope");
GWTWorkspaceBuilder builder = getGWTWorkspaceBuilder();
ScopeUtilFilter scopeUtilFilter = getScopeUtilFilter();
Home home = workspace.getHome();
if(home!=null){
List<String> listIdFilterdScope = scopeUtilFilter.convertListScopeToPortlet(home.listScopes());
return builder.buildGXTListScopeModel(listIdFilterdScope, scopeUtilFilter.getHashScopesFiltered());
}else{
workspaceLogger.error("workspace.getHome() is null");
throw new Exception("Sorry, an error occurred on getting all scope. Please try later");
}
} catch (Exception e) {
workspaceLogger.error("Error in server get all scope ", e);
e.printStackTrace();
// workspaceLogger.trace("Error in server get all scope " + e.getMessage());
//GWT can't serialize all exceptions
throw new Exception(e.getMessage());
}
}
/* (non-Javadoc)
* @see org.gcube.portlets.user.workspace.client.rpc.GWTWorkspaceService#getAllContacts()
*/
/**
* Gets the all contacts.
*
* @return the all contacts
* @throws Exception the exception
*/
@Override
public List<InfoContactModel> getAllContacts() throws Exception {
try {
workspaceLogger.debug("Get all contacts from server...");
GWTWorkspaceBuilder builder = getGWTWorkspaceBuilder();
getWorkspace(); //DO NOT REMOVE, IT IS NEEDED TO SET TOKEN IN ECLIPSE
org.gcube.common.homelibrary.home.workspace.usermanager.UserManager hlUserManager = HomeLibrary.getHomeManagerFactory().getUserManager();
if(isTestMode()){
workspaceLogger.warn("WORKSPACE PORTLET IS IN TEST MODE - RETURN TEST USERS");
List<InfoContactModel> listContactsModel = new ArrayList<InfoContactModel>();
HashMap<String, InfoContactModel> hashFakeUsers = GWTWorkspaceBuilder.getHashTestUsers();
for (String login : hashFakeUsers.keySet()) {
InfoContactModel contact = hashFakeUsers.get(login);
listContactsModel.add(contact);
}
workspaceLogger.trace("Home Library User Manager getting list Gcube Group");
listContactsModel.addAll(builder.buildGXTListContactsModelFromGcubeGroup(hlUserManager.getGroups()));
return listContactsModel;
}
UserManager userManag = new LiferayUserManager();
GroupManager gm = new LiferayGroupManager();
long groupId = gm.getRootVO().getGroupId();
workspaceLogger.trace("Liferay User Manager getting list users by group: "+groupId);
List<InfoContactModel> listContactsModel = builder.buildGXTListContactsModelFromUserModel(userManag.listUsersByGroup(groupId));
workspaceLogger.trace("Home Library User Manager getting list Gcube Group");
listContactsModel.addAll(builder.buildGXTListContactsModelFromGcubeGroup(hlUserManager.getGroups()));
workspaceLogger.debug("Returning list of contacts");
return listContactsModel;
} catch (Exception e) {
workspaceLogger.error("Error in server get all contacts ", e);
// return new ArrayList<InfoContactModel>();
throw new Exception(e.getMessage());
}
}
/* (non-Javadoc)
* @see org.gcube.portlets.user.workspace.client.rpc.GWTWorkspaceService#sendToById(java.util.List, java.util.List, java.lang.String, java.lang.String)
*/
/**
* Send to by id.
*
* @param listContactsId the list contacts id
* @param listAttachmentsId the list attachments id
* @param subject the subject
* @param body the body
* @return true, if successful
* @throws Exception the exception
*/
@Override
public boolean sendToById(List<String> listContactsId, List<String> listAttachmentsId, String subject, String body) throws Exception {
try {
Workspace workspace = getWorkspace();
// workspaceLogger.trace("######### SEND TO: ");
// workspaceLogger.trace("subject " + subject);
// workspaceLogger.trace("body " + body);
//DEBUG
for(String contactId : listContactsId)
workspaceLogger.trace("contactId " + contactId);
//DEBUG
for(String id : listAttachmentsId)
workspaceLogger.trace("attachId " + id);
workspace.getWorkspaceMessageManager().sendMessageToPortalLogins(subject, body, listAttachmentsId, listContactsId);
return true;
} catch (Exception e) {
workspaceLogger.error("Error in server sendTo ", e);
//GWT can't serialize all exceptions
throw new Exception(e.getMessage());
}
}
/**
* Gets the list workspace item by id.
*
* @param workspace the workspace
* @param listItemsId the list items id
* @return the list workspace item by id
* @throws ItemNotFoundException the item not found exception
* @throws InternalErrorException the internal error exception
*/
private List<WorkspaceItem> getListWorkspaceItemById(Workspace workspace, List<String> listItemsId) throws ItemNotFoundException, InternalErrorException{
List<WorkspaceItem> listWorkspaceItem = new ArrayList<WorkspaceItem>();
for(String itemId: listItemsId){
WorkspaceItem item = workspace.getItem(itemId);
workspaceLogger.trace("Attach name: " +item.getName());
workspaceLogger.trace("Attach id: " +item.getId());
listWorkspaceItem.add(workspace.getItem(itemId)); //get item from workspace
}
return listWorkspaceItem;
}
/* (non-Javadoc)
* @see org.gcube.portlets.user.workspace.client.rpc.GWTWorkspaceService#getUrlWebDav(java.lang.String)
*/
/**
* Gets the url web dav.
*
* @param itemId the item id
* @return the url web dav
* @throws Exception the exception
*/
@Override
public String getUrlWebDav(String itemId) throws Exception {
try {
Workspace workspace = getWorkspace();
workspaceLogger.trace("getWebDavUrl" + itemId);
return workspace.getUrlWebDav();
} catch (Exception e) {
workspaceLogger.error("Error in getNewFolderBulkCreator ", e);
// workspaceLogger.trace("Error in getNewFolderBulkCreator " + e.getMessage());
throw new Exception(e.getMessage());
}
}
/* (non-Javadoc)
* @see org.gcube.portlets.user.workspace.client.rpc.GWTWorkspaceService#shareFolder(org.gcube.portlets.user.workspace.client.model.FileModel, java.util.List, boolean, org.gcube.portlets.user.workspace.shared.WorkspaceACL)
*/
/**
* Share folder.
*
* @param folder the folder
* @param listContacts the list contacts
* @param isNewFolder the is new folder
* @param acl the acl
* @return true, if successful
* @throws Exception the exception
*/
@Override
public boolean shareFolder(FileModel folder, List<InfoContactModel> listContacts, boolean isNewFolder, WorkspaceACL acl) throws Exception {
if(isSessionExpired())
throw new SessionExpiredException();
try {
Workspace workspace = getWorkspace();
workspaceLogger.info("shareFolder "+ folder.getIdentifier()
+ " name: "+ folder.getName()
+ " parent is: " + folder.getParentFileModel()
+ " listContacts size: " + listContacts.size()
+" ACL: "+acl);
//DEBUG
//printContacts(listContacts);
List<String> listLogin = UserUtil.getListLoginByInfoContactModel(listContacts);
WorkspaceSharedFolder sharedFolder = null;
List<InfoContactModel> listSharedContact = null;
boolean sourceFolderIsShared = folder.isShared();
if(sourceFolderIsShared){ //if source folder is already share... retrieve old list of sharing to notify
listSharedContact = getListUserSharedByFolderSharedId(folder.getIdentifier());
}
if(listLogin.size()>0){
if(!isNewFolder){
sharedFolder = workspace.shareFolder(listLogin, folder.getIdentifier());
sharedFolder.setDescription(folder.getDescription()); //SET NEW DESCRIPTION
//USER REMOVED FROM SHARE
DifferenceBetweenInfoContactModel diff2 = new DifferenceBetweenInfoContactModel(listSharedContact, listContacts);
List<InfoContactModel> listRemovedUsersFromShare = diff2.getDifferentsContacts();
workspaceLogger.info("List removed user from share has size: "+listRemovedUsersFromShare.size());
for (InfoContactModel userRemoved : listRemovedUsersFromShare) {
workspaceLogger.info("Unsharing user: "+userRemoved.getLogin());
sharedFolder.unShare(userRemoved.getLogin());
}
}
else{
//IS NEW SHARED FOLDER
FileModel parent = folder.getParentFileModel();
String parentId = "";
if(parent!=null){
parentId = parent.getIdentifier();
}else{
workspaceLogger.info("Parent is null, reading root ID from workspace");
parentId = getWorkspace().getRoot().getId();
}
//CHECKING THAT THE PARENT IS NOT LOCKED
checkItemLocked(parentId);
sharedFolder = workspace.createSharedFolder(folder.getName(), folder.getDescription(), listLogin, parentId);
}
}
boolean created = sharedFolder==null?false:true;
if(acl!=null)
setACLs(sharedFolder.getId(), listLogin, acl.getId().toString());
if(created){
NotificationsProducer np = getNotificationProducer();
if(!sourceFolderIsShared) //if source folder is not already shared
np.notifyFolderSharing(listContacts, sharedFolder);
else{
// printContacts(listContacts);
np.notifyUpdatedUsersToSharing(listSharedContact, listContacts, sharedFolder);
}
}
return created;
}catch (WorkspaceFolderLocked e1){
throw new Exception(e1.getMessage());
} catch (InsufficientPrivilegesException e) {
workspaceLogger.error("Error in shareFolder ", e);
String error = "An error occurred on creating shared folder. "+ e.getMessage();
throw new Exception(error);
} catch (ItemAlreadyExistException e) {
workspaceLogger.error("Error in shareFolder ", e);
String error = "An error occurred on creating shared folder. "+ e.getMessage();
throw new Exception(error);
} catch (WrongDestinationException e) {
workspaceLogger.error("Error in shareFolder ", e);
String error = "An error occurred on creating shared folder. "+ e.getMessage();
throw new Exception(error);
} catch (Exception e) {
workspaceLogger.error("Error in shareFolder ", e);
String error = ConstantsExplorer.SERVER_ERROR+" creating shared folder.";
throw new Exception(error);
}
}
/* (non-Javadoc)
* @see org.gcube.portlets.user.workspace.client.rpc.GWTWorkspaceService#getListUserSharedByFolderSharedId(java.lang.String)
*/
/**
* Gets the list user shared by folder shared id.
*
* @param folderSharedId the folder shared id
* @return the list user shared by folder shared id
* @throws Exception the exception
*/
@Override
public List<InfoContactModel> getListUserSharedByFolderSharedId(String folderSharedId) throws Exception{
workspaceLogger.debug("getListUserSharedByFolderSharedId "+ folderSharedId);
try {
Workspace workspace = getWorkspace();
WorkspaceItem wsItem = workspace.getItem(folderSharedId);
if(NotificationsUtil.isASharedFolder(wsItem)){
WorkspaceSharedFolder wsFolder = (WorkspaceSharedFolder) wsItem;
//GWTWorkspaceBuilder builder = getGWTWorkspaceBuilder();
List<String> listPortalLogin = wsFolder.getUsers();
workspaceLogger.debug("HL return "+ listPortalLogin.size() + " user/s");
if(isTestMode())
return GWTWorkspaceBuilder.buildGxtInfoContactFromPortalLoginTestMode(listPortalLogin);
return GWTWorkspaceBuilder.buildGxtInfoContactsFromPortalLogins(listPortalLogin);
}
else
workspaceLogger.trace("the item with id: "+folderSharedId+ " is not "+WorkspaceItemType.SHARED_FOLDER);
return new ArrayList<InfoContactModel>();
} catch (Exception e) {
workspaceLogger.error("Error in getListUserSharedByItemId ", e);
throw new Exception(e.getMessage());
}
}
/* (non-Javadoc)
* @see org.gcube.portlets.user.workspace.client.rpc.GWTWorkspaceService#unSharedFolderByFolderSharedId(java.lang.String)
*/
/**
* Un shared folder by folder shared id.
*
* @param folderSharedId the folder shared id
* @return true, if successful
* @throws Exception the exception
*/
@Override
public boolean unSharedFolderByFolderSharedId(String folderSharedId) throws Exception{
boolean unShared = false;
if(isSessionExpired())
throw new SessionExpiredException();
workspaceLogger.trace("unSharedFolderByFolderSharedId "+ folderSharedId);
try {
checkItemLocked(folderSharedId);
if(isASharedFolder(folderSharedId, true)){
Workspace workspace = getWorkspace();
WorkspaceItem wsItem = workspace.getItem(folderSharedId);
workspaceLogger.trace("workspace return an item with name "+wsItem.getName());
WorkspaceSharedFolder wsFolder = (WorkspaceSharedFolder) wsItem;
List<InfoContactModel> contacts = getListUserSharedByFolderSharedId(folderSharedId);
String sharedFolderName = wsFolder.getName();
//RETURN A NEW FOLDER
wsFolder.unShare();
workspaceLogger.trace("no error incoming on unsharing");
unShared = true;
NotificationsProducer np = getNotificationProducer();
List<InfoContactModel> purgeMyContact = new ArrayList<InfoContactModel>(contacts.size()-1);
String myLogin = getMyLogin(null).getUsername();
workspaceLogger.trace("Preparing list of contacts to send un share notification");
for (InfoContactModel infoContactModel : contacts) {
if(infoContactModel.getLogin().compareToIgnoreCase(getMyLogin(null).getUsername())==0)
workspaceLogger.trace("skipping my login "+myLogin);
else
purgeMyContact.add(infoContactModel);
}
workspaceLogger.trace("UNSHARE WITH: ");
printContacts(purgeMyContact);
np.notifyFolderUnSharing(purgeMyContact, folderSharedId, sharedFolderName);
}
else{
String msg = "The item with id: "+folderSharedId+ "is not a base shared folder";
workspaceLogger.warn("the item with id: "+folderSharedId+ "is not "+WorkspaceItemType.SHARED_FOLDER +" or root shared folder");
throw new WorkspaceHandledException(msg);
}
}catch (WorkspaceFolderLocked e1){
throw new Exception(e1.getMessage());
} catch (InternalErrorException e) {
workspaceLogger.error("Error in unSharedFolderByFolderSharedId ", e);
String error = "An error occerred on unsharing folder. "+ e.getMessage();
throw new Exception(error);
} catch (WorkspaceHandledException e) {
String error = ConstantsExplorer.SERVER_ERROR+" unshare folder. "+e.getMessage();
throw new Exception(error);
} catch (Exception e) {
workspaceLogger.error("Error in unSharedFolderByFolderSharedId ", e);
String error = ConstantsExplorer.SERVER_ERROR+" unshare folder. Refresh folder and " +ConstantsExplorer.TRY_AGAIN;
throw new Exception(error);
}
return unShared;
}
/**
* Gets the list parents by item identifier.
*
* @param itemIdentifier the item identifier
* @param includeItemAsParent - if parameter is true and item passed in input is a folder, the folder is included in path returned as last parent
* @return the list parents by item identifier
* @throws Exception the exception
*/
@Override
public List<FileModel> getListParentsByItemIdentifier(String itemIdentifier, boolean includeItemAsParent) throws Exception {
workspaceLogger.debug("get List Parents By Item Identifier "+ itemIdentifier +", include Item As (Last) Parent: "+includeItemAsParent);
if(isSessionExpired())
throw new SessionExpiredException();
if(itemIdentifier==null)
return new ArrayList<FileModel>(); //empty list
try {
Workspace workspace = getWorkspace();
GWTWorkspaceBuilder builder = getGWTWorkspaceBuilder();
List<WorkspaceItem> parents = workspace.getParentsById(itemIdentifier);
workspaceLogger.debug("parents returned by HL, size: "+ parents.size());
String nameSpecialFolder = getNameForSpecialFolder();
switch (parents.size()) {
case 0: // itemIdentifier is ROOT
workspaceLogger.trace("itemIdentifier isRoot...");
if (includeItemAsParent) { //ADDIND ROOT
WorkspaceFolder wsFolder =(WorkspaceFolder) workspace.getItem(itemIdentifier);
FolderModel root = builder.buildGXTFolderModelItemHandleSpecialFolder(wsFolder, null, nameSpecialFolder);
List<FileModel> listParents = new ArrayList<FileModel>(1);
listParents.add(root);
// workspaceLogger.trace("returning: "+listParents.toString());
return listParents;
}
else{
workspaceLogger.trace("returning empty list");
return new ArrayList<FileModel>(); // empty list
}
case 1: //itemIdentifier is first level from root
workspaceLogger.trace("itemIdentifier is first level...");
List<FileModel> listParents = new ArrayList<FileModel>();
WorkspaceFolder wsRootFolder = (WorkspaceFolder) parents.get(0); //isRoot
FolderModel root = builder.buildGXTFolderModelItemHandleSpecialFolder(wsRootFolder, null, nameSpecialFolder);
FolderModel parent = null;
if(includeItemAsParent){
WorkspaceFolder wsFolder1 =(WorkspaceFolder) workspace.getItem(itemIdentifier); //root
parent = builder.buildGXTFolderModelItemHandleSpecialFolder(wsFolder1, null, nameSpecialFolder);
}
listParents.add(root);
if(parent!=null)
listParents.add(parent);
// workspaceLogger.trace("returning: "+listParents.toString());
return listParents;
default:
break;
}
WorkspaceItem lastItem = parents.get(parents.size()-1);
FileModel[] arrayParents;
//CONVERTING LAST ELEMENT IF NECESSARY
workspaceLogger.trace("converting last element..");
if(includeItemAsParent && lastItem.isFolder()){ //FIX BUG #298
arrayParents = new FileModel[parents.size()];
workspaceLogger.debug("including last item into path: "+lastItem.getName());
arrayParents[parents.size()-1] = builder.buildGXTFolderModelItemHandleSpecialFolder((WorkspaceFolder) lastItem, null, nameSpecialFolder);
}else
arrayParents = new FileModel[parents.size()-1];
//CONVERTING PATH
workspaceLogger.trace("converting path from second-last..");
for (int i = parents.size()-2; i >= 0; i--) {
WorkspaceFolder wsFolder = (WorkspaceFolder) parents.get(i);
arrayParents[i] = builder.buildGXTFolderModelItemHandleSpecialFolder(wsFolder, null, nameSpecialFolder);
}
//SET PARENTS
workspaceLogger.trace("setting parents..");
for(int i=0; i<arrayParents.length-1; i++){
FileModel parent = arrayParents[i];
FileModel fileModel = arrayParents[i+1];
fileModel.setParentFileModel(parent);
}
// workspaceLogger.trace("list parents returning size: "+arrayParents.length);
// return new ArrayList<FileModel>(Arrays.asList(arrayParents));
workspaceLogger.trace("list parents returning size: "+arrayParents.length);
if(arrayParents[0]==null){ //EXIT BY BREAK IN CASE OF SPECIAL FOLDER
List<FileModel> breadcrumbs = new ArrayList<FileModel>(arrayParents.length-1);
for (int i=1; i<arrayParents.length; i++) {
breadcrumbs.add(arrayParents[i]);
}
return breadcrumbs;
}else
return new ArrayList<FileModel>(Arrays.asList(arrayParents));
} catch (Exception e) {
workspaceLogger.error("Error in get List Parents By Item Identifier ", e);
e.printStackTrace();
throw new Exception(e.getMessage());
}
}
/* (non-Javadoc)
* @see org.gcube.portlets.user.workspace.client.rpc.GWTWorkspaceService#getOwnerByItemId(java.lang.String)
*/
/**
* Gets the owner by item id.
*
* @param itemId the item id
* @return the owner by item id
* @throws Exception the exception
*/
@Override
public InfoContactModel getOwnerByItemId(String itemId) throws Exception {
workspaceLogger.trace("get Owner By ItemId "+ itemId);
try {
//TEST MODE
/*if(!isWithinPortal()){
workspaceLogger.info("getOwnerByItemId is in test mode returning owner francesco.mangiacrapa");
return new InfoContactModel("francesco.mangiacrapa", "francesco.mangiacrapa", "Francesco Mangiacrapa", false);
}*/
Workspace workspace = getWorkspace();
WorkspaceItem wsItem = workspace.getItem(itemId);
GWTWorkspaceBuilder builder = getGWTWorkspaceBuilder();
return builder.buildGXTInfoContactModel(wsItem.getOwner());
} catch (Exception e) {
workspaceLogger.error("Error in getOwnerByItemId ", e);
throw new Exception(e.getMessage());
}
}
/* (non-Javadoc)
* @see org.gcube.portlets.user.workspace.client.rpc.GWTWorkspaceService#getUsersManagerToSharedFolder(java.lang.String)
*/
/**
* Gets the users manager to shared folder.
*
* @param folderId the folder id
* @return the users manager to shared folder
* @throws Exception the exception
*/
@Override
public List<InfoContactModel> getUsersManagerToSharedFolder(String folderId) throws Exception{
try{
workspaceLogger.info("Get User Manager to shared folder id: "+folderId);
Workspace workspace = getWorkspace();
List<InfoContactModel> listManagers = new ArrayList<InfoContactModel>();
workspaceLogger.info("Adding owner..");
InfoContactModel owner = getOwnerByItemId(folderId); //GET OWNER
workspaceLogger.info("Added owner: "+owner);
listManagers.add(owner);
WorkspaceItem wsItem = workspace.getItem(folderId);
if(wsItem.isShared() && wsItem.getType().equals(WorkspaceItemType.SHARED_FOLDER)){
WorkspaceSharedFolder ite = (WorkspaceSharedFolder) wsItem;
workspaceLogger.info("Retrieving administrators...");
Map<ACLType, List<String>> aclOwner = ite.getACLOwner();
if(aclOwner!=null){
List<String> listLogins = new ArrayList<String>();
workspaceLogger.info("Adding administrators...");
for (ACLType type : aclOwner.keySet()) {
switch (type) {
case ADMINISTRATOR:
listLogins.addAll(aclOwner.get(type)); //ADD ALL ADMINISTRATORS
break;
}
}
workspaceLogger.info("Added " +listLogins.size() +"administrators, converting into InfoContactModel");
GWTWorkspaceBuilder builder = getGWTWorkspaceBuilder();
List<InfoContactModel> adms = builder.buildGxtInfoContactsFromPortalLogins(listLogins);
listManagers.addAll(adms);
workspaceLogger.info("Returing" +listManagers.size() +"users managers");
return listManagers;
}
}else
throw new Exception("Source item is not shared or shared folder");
}catch (Exception e) {
String error = "Sorry an error occurred on get managers ";
workspaceLogger.error(error, e);
throw new Exception(e.getMessage());
}
return null;
}
/* (non-Javadoc)
* @see org.gcube.portlets.user.workspace.client.rpc.GWTWorkspaceService#itemExistsInWorkpaceFolder(java.lang.String, java.lang.String)
*/
/**
* Item exists in workpace folder.
*
* @param parentId the parent id
* @param itemName the item name
* @return the string
* @throws Exception the exception
*/
@Override
public String itemExistsInWorkpaceFolder(String parentId, String itemName) throws Exception {
workspaceLogger.trace("get itemExistsInWorkpace by parentId: "+parentId);
System.out.println("get itemExistsInWorkpace by parentId: "+parentId);
try {
Workspace workspace = getWorkspace();
WorkspaceItem wsItem = workspace.getItem(parentId); //GET PARENT
if(wsItem.getType().equals(WorkspaceItemType.FOLDER) || wsItem.getType().equals(WorkspaceItemType.SHARED_FOLDER)){
WorkspaceItem itemFound = workspace.find(itemName, parentId);
if(itemFound==null)
return null;
return itemFound.getId();
}
else
throw new Exception("Invalid Folder parent");
} catch (InternalErrorException e) {
return null;
} catch (ItemNotFoundException e) {
return null;
} catch (Exception e) {
String error = "an error occurred on search item in folder ";
workspaceLogger.error(error, e);
throw new Exception(e.getMessage());
}
}
/* (non-Javadoc)
* @see org.gcube.portlets.user.workspace.client.rpc.GWTWorkspaceService#getItemCreationDateById(java.lang.String)
*/
/**
* Gets the item creation date by id.
*
* @param itemId the item id
* @return the item creation date by id
* @throws Exception the exception
*/
@Override
public Date getItemCreationDateById(String itemId) throws Exception {
workspaceLogger.trace("get Item Creation Date By ItemId "+ itemId);
try {
Workspace workspace = getWorkspace();
WorkspaceItem wsItem = workspace.getItem(itemId);
Calendar cl = wsItem.getCreationTime();
if(cl!=null)
return cl.getTime();
return null;
} catch (Exception e) {
workspaceLogger.error("get Item Creation Date By ItemId ", e);
throw new Exception(e.getMessage());
}
}
/* (non-Javadoc)
* @see org.gcube.portlets.user.workspace.client.rpc.GWTWorkspaceService#loadSizeByItemId(java.lang.String)
*/
/**
* Load size by item id.
*
* @param itemId the item id
* @return the long
* @throws Exception the exception
*/
@Override
public Long loadSizeByItemId(String itemId) throws Exception {
workspaceLogger.info("get Size By ItemId "+ itemId);
try {
Workspace workspace = getWorkspace();
WorkspaceItem wsItem = workspace.getItem(itemId);
Long size = new Long(-1);
if(wsItem instanceof FolderItem){ //ITEM
FolderItem folderItem = (FolderItem) wsItem;
size = new Long(folderItem.getLength());
} else if (wsItem instanceof WorkspaceFolder ){ //FOLDER
WorkspaceFolder theFolder = (WorkspaceFolder) wsItem;
size = theFolder.getSize();
} else if (wsItem instanceof WorkspaceSharedFolder){ //SHARED FOLDER
WorkspaceSharedFolder theFolder = (WorkspaceSharedFolder) wsItem;
size = theFolder.getSize();
}
workspaceLogger.info("returning size: " +size);
return size;
} catch (Exception e) {
workspaceLogger.error("get Size By ItemId ", e);
throw new Exception(e.getMessage());
}
}
/* (non-Javadoc)
* @see org.gcube.portlets.user.workspace.client.rpc.GWTWorkspaceService#loadLastModificationDateById(java.lang.String)
*/
/**
* Load last modification date by id.
*
* @param itemId the item id
* @return the date
* @throws Exception the exception
*/
@Override
public Date loadLastModificationDateById(String itemId) throws Exception {
workspaceLogger.trace("get last modification date ItemId "+ itemId);
try {
Workspace workspace = getWorkspace();
WorkspaceItem wsItem = workspace.getItem(itemId);
wsItem.getLastModificationTime().getTime();
Date lastModification =null;
if(wsItem.getLastModificationTime()!=null){
lastModification = wsItem.getLastModificationTime().getTime();
}
return lastModification;
} catch (Exception e) {
workspaceLogger.error("get last modification date ItemId ", e);
throw new Exception(e.getMessage());
}
}
/* (non-Javadoc)
* @see org.gcube.portlets.user.workspace.client.rpc.GWTWorkspaceService#getParentByItemId(java.lang.String)
*/
/**
* Gets the parent by item id.
*
* @param identifier the identifier
* @return the parent by item id
* @throws Exception the exception
*/
@Override
public FileModel getParentByItemId(String identifier) throws Exception {
workspaceLogger.trace("get Parent By Item Identifier "+ identifier);
try {
Workspace workspace = getWorkspace();
WorkspaceItem wsItem = workspace.getItem(identifier);
workspaceLogger.trace("workspace retrieve item name: "+wsItem.getName());
GWTWorkspaceBuilder builder = getGWTWorkspaceBuilder();
while(wsItem!=null && wsItem.getParent()!=null){
WorkspaceFolder wsFolder = wsItem.getParent();
workspaceLogger.trace("parent was found "+wsFolder.getName()+ " retuning");
return builder.buildGXTFolderModelItem(wsFolder, null);
}
workspaceLogger.trace("parent not found - retuning");
return null;
} catch (Exception e) {
workspaceLogger.error("Error in get Parent By Item Identifier", e);
e.printStackTrace();
throw new Exception(e.getMessage());
}
}
/* (non-Javadoc)
* @see org.gcube.portlets.user.workspace.client.rpc.GWTWorkspaceService#getAccountingReaders(java.lang.String)
*/
/**
* Gets the accounting readers.
*
* @param identifier the identifier
* @return the accounting readers
* @throws Exception the exception
*/
@Override
public List<GxtAccountingField> getAccountingReaders(String identifier) throws Exception {
workspaceLogger.trace("get accounting readers "+ identifier);
try {
Workspace workspace = getWorkspace();
WorkspaceItem wsItem = workspace.getItem(identifier);
GWTWorkspaceBuilder builder = getGWTWorkspaceBuilder();
List<GxtAccountingField> listReaders = builder.buildGXTAccountingItemFromReaders(wsItem.getReaders());
workspaceLogger.trace("get accounting readers - returning size "+listReaders.size());
return listReaders;
} catch (Exception e) {
workspaceLogger.error("Error get accounting readers ", e);
String error = ConstantsExplorer.SERVER_ERROR+" getting account. "+ConstantsExplorer.TRY_AGAIN;
throw new Exception(error);
}
}
/* (non-Javadoc)
* @see org.gcube.portlets.user.workspace.client.rpc.GWTWorkspaceService#getAccountingHistory(java.lang.String)
*/
/**
* Gets the accounting history.
*
* @param identifier the identifier
* @return the accounting history
* @throws Exception the exception
*/
@Override
public List<GxtAccountingField> getAccountingHistory(String identifier) throws Exception {
workspaceLogger.trace("get accounting history "+ identifier);
try {
Workspace workspace = getWorkspace();
WorkspaceItem wsItem = workspace.getItem(identifier);
List<AccountingEntry> accoutings = wsItem.getAccounting();
GWTWorkspaceBuilder builder = getGWTWorkspaceBuilder();
List<GxtAccountingField> listReaders = builder.buildGXTAccountingItem(accoutings, GxtAccountingEntryType.ALL);
workspaceLogger.trace("get accounting readers - returning size "+listReaders.size());
return listReaders;
} catch (Exception e) {
workspaceLogger.error("Error get accounting readers ", e);
String error = ConstantsExplorer.SERVER_ERROR+" getting account. "+ConstantsExplorer.TRY_AGAIN;
throw new Exception(error);
}
}
/* (non-Javadoc)
* @see org.gcube.portlets.user.workspace.client.rpc.GWTWorkspaceService#getShortUrl(java.lang.String)
*/
/**
* Gets the short url.
*
* @param longUrl the long url
* @return the short url
* @throws Exception the exception
*/
@Override
public String getShortUrl(String longUrl) throws Exception {
workspaceLogger.trace("get short url for "+ longUrl);
UrlShortener shortener = getUrlShortener();
try{
if(shortener!=null && shortener.isAvailable())
return shortener.shorten(longUrl);
return longUrl;
}catch (Exception e) {
workspaceLogger.error("Error get short url for ", e);
return null;
}
}
/* (non-Javadoc)
* @see org.gcube.portlets.user.workspace.client.rpc.GWTWorkspaceService#getLinkForSendToSwitchBoard(java.lang.String)
*/
/**
* Gets the link for send to switch board.
*
* @param itemId the item id
* @return the link for send to switch board
* @throws Exception the exception
*/
@Override
public String getLinkForSendToSwitchBoard(String itemId) throws Exception {
String fallbackValue = ConstantsExplorer.CLARIN_SWITCHBOARD_ENDPOINT_FALLBACK;
String sbEndpoint = "";
try {
sbEndpoint = getCLARINSwitchBoardEndpoint();
}
catch (Exception e) {
workspaceLogger.error("Could not find CLARINSwitchBoardEndpoint on IS, returning fallback value: " + fallbackValue);
sbEndpoint = fallbackValue;
}
String URI = getPublicLinkForFileItemId(itemId, false).getCompleteURL();
workspaceLogger.debug("Got LinkForSendToSwitchBoard: " + URI + " encoding ...");
String encodedURI = URLEncoder.encode(getPublicLinkForFileItemId(itemId, false).getCompleteURL(), "UTF-8");
workspaceLogger.debug("LinkForSendToSwitchBoard: " + encodedURI + " encoded ...");
return new StringBuilder(sbEndpoint).append(encodedURI).toString();
}
/* (non-Javadoc)
* @see org.gcube.portlets.user.workspace.client.rpc.GWTWorkspaceService#isSessionExpired()
*/
/**
* Checks if is session expired.
*
* @return true, if is session expired
* @throws Exception the exception
*/
@Override
public boolean isSessionExpired() throws Exception {
return WsUtil.isSessionExpired(this.getThreadLocalRequest());
}
/* (non-Javadoc)
* @see org.gcube.portlets.user.workspace.client.rpc.GWTWorkspaceService#setACLs(java.lang.String, java.util.List, java.lang.String)
*/
/**
* Sets the ac ls.
*
* @param folderId the folder id
* @param listLogins the list logins
* @param aclType the acl type
* @throws Exception the exception
*/
@Override
public void setACLs(String folderId, List<String> listLogins, String aclType) throws Exception{
try {
if(folderId == null)
throw new Exception("Folder id is null");
if(listLogins==null || listLogins.size()==0)
throw new Exception("List Logins is null or empty");
workspaceLogger.trace("Setting ACL for folder id: "+folderId);
workspaceLogger.trace("ACL type is: "+aclType);
Workspace workspace = getWorkspace();
WorkspaceItem wsItem = workspace.getItem(folderId);
//IS A WORKSPACE FOLDER?
if(wsItem!= null && wsItem.isFolder() && wsItem.isShared()){
WorkspaceFolder ite;
if(wsItem.getType().equals(WorkspaceItemType.SHARED_FOLDER)){
//IS ROOT SHARED FOLDER
ite = (WorkspaceSharedFolder) wsItem;
workspaceLogger.trace("Folder " +ite.getName()+" is a "+WorkspaceSharedFolder.class.getName());
// ite = (WorkspaceSharedFolder) workspace.getItemByPath(wsItem.getPath());
}else{
// IS SUB FOLDER OF THE SHARING
ite = (WorkspaceFolder) wsItem;
workspaceLogger.trace("Folder " +ite.getName()+" is a "+WorkspaceFolder.class.getName());
// ite = (WorkspaceSharedFolder) workspace.getItem(wsItem.getIdSharedFolder());
}
ite.setACL(listLogins, ACLType.valueOf(aclType));
}else
throw new Exception("Source item is not shared or shared folder");
workspaceLogger.info("Setting ACL for "+wsItem.getName()+" completed, returning");
} catch (Exception e) {
workspaceLogger.error("Error in set ACLs", e);
String error = ConstantsExplorer.SERVER_ERROR +" setting permissions. "+e.getMessage();
throw new Exception(error);
}
}
/**
* Validate acl to user.
*
* @param folderId the folder id
* @param listLogins the list logins
* @param aclType the acl type
* @return the report assignment acl
* @throws Exception the exception
*/
@Override
public ReportAssignmentACL validateACLToUser(String folderId, List<String> listLogins, String aclType) throws Exception {
if(folderId == null)
throw new Exception("Folder id is null");
if(listLogins==null || listLogins.size()==0)
throw new Exception("List Logins is null or empty");
if(isASharedFolder(folderId, false)){
try{
Workspace workspace = getWorkspace();
WorkspaceFolder folder = (WorkspaceFolder) workspace.getItem(folderId);
if(!folder.getType().equals(WorkspaceItemType.SHARED_FOLDER)){ //IS NOT ROOT SHARED FOLDER?
WorkspaceFolder parent = folder.getParent();
if(parent!=null)
folder = parent;
else
workspaceLogger.warn("Parent folder of folder: "+folder.getName() + " is null, using current folder");
}
Map<ACLType, List<String>> mapACL = folder.getACLOwner();
ACLType settingACL = ACLType.valueOf(aclType);
workspaceLogger.info("Validating assignment: "+settingACL);
workspaceLogger.info("To logins: "+listLogins);
AclTypeComparator comparator = new AclTypeComparator();
List<String> errors = new ArrayList<String>();
//TO REMOVE ADMINS
List<String> admins = mapACL.get(ACLType.ADMINISTRATOR);
if(admins !=null){
for (String admin : admins) {
boolean removed = listLogins.remove(admin);
workspaceLogger.info("Reject username: "+admin +" as "+ACLType.ADMINISTRATOR);
if(removed){
String fullname = isTestMode()?admin: UserUtil.getUserFullName(admin);
errors.add("Unable to grant the privilege "+settingACL+" for "+fullname+", he/she is an: "+ ACLType.ADMINISTRATOR);
}
}
}
//TO COMPLETE REPORT
List<String> validLogins = new ArrayList<String>(listLogins);
ReportAssignmentACL reportValidation = new ReportAssignmentACL();
workspaceLogger.debug("\nChecking listLogins: "+listLogins);
for (String username : listLogins) {
workspaceLogger.trace("\nChecking username: "+username);
for (ACLType aclHL : mapACL.keySet()) {
if(!aclHL.equals(ACLType.ADMINISTRATOR)){
List<String> loginsHL = mapACL.get(aclHL);
workspaceLogger.trace("to ACLType: "+aclHL +", logins found: "+loginsHL);
if(loginsHL.contains(username)){
int cmp = comparator.compare(settingACL, aclHL);
workspaceLogger.trace("Compare result between "+aclHL + " and "+settingACL +": "+cmp);
String fullname = isTestMode()?username: UserUtil.getUserFullName(username);
if(cmp==-1){
//CHANGE ACL IS NOT VALID
workspaceLogger.trace("Reject ACL: "+settingACL+ " to "+username);
validLogins.remove(username);
errors.add("Unable to grant the privilege "+settingACL+" for "+fullname+", it's lower than (parent privilege) "+ aclHL);
break;
}else if(cmp==0){
//SAME ACL
workspaceLogger.trace("Skipping ACL: "+settingACL+ " to "+username);
errors.add(settingACL+" privilege for "+fullname+ " already assigned");
validLogins.remove(username);
break;
}else if(cmp==1){
//CHANGE ACL IS VALID
workspaceLogger.trace("Valid ACL: "+settingACL+ " to "+username);
}
}else{
//CHANGE ACL IS VALID
workspaceLogger.trace("[Login not found], Set ACL: "+settingACL+ " to "+username);
}
}
}
}
workspaceLogger.info("Valid logins: ");
for (String username : validLogins) {
workspaceLogger.info("Set ACL: "+settingACL+ " to "+username);
}
reportValidation.setAclType(aclType);
reportValidation.setErrors(errors);
reportValidation.setValidLogins(validLogins);
return reportValidation;
} catch (Exception e) {
workspaceLogger.error("Error on setting ACLs", e);
throw new Exception("Sorry, an error occurred when validating ACL assignment, try again later");
}
}else
throw new WorkspaceHandledException("the item with "+folderId +" is not a base shared folder!");
}
/**
* Gets the AC ls.
*
* @return the AC ls
* @throws Exception the exception
*/
@Override
public List<WorkspaceACL> getACLs() throws Exception{
try {
GWTWorkspaceBuilder builder = getGWTWorkspaceBuilder();
return builder.getWorkspaceACLFromACLs(Arrays.asList(ACLType.values()));
} catch (Exception e) {
workspaceLogger.error("Error in server get ACLs", e);
String error = ConstantsExplorer.SERVER_ERROR +" get ACL rules. "+e.getMessage();
throw new Exception(error);
}
}
/**
* Checks if is within portal.
*
* @return true if you're running into the portal, false if in development
*/
private boolean isWithinPortal() {
try {
UserLocalServiceUtil.getService();
return true;
}
catch (Exception ex) {
workspaceLogger.trace("Development Mode ON");
return false;
}
}
/* (non-Javadoc)
* @see org.gcube.portlets.user.workspace.client.rpc.GWTWorkspaceService#getMyLogin()
*/
/**
* Gets the my login.
*
* @param currentPortletUrl the current portlet url
* @return the my login
*/
@Override
public UserBean getMyLogin(String currentPortletUrl){
PortalContextInfo info = WsUtil.getPortalContext(this.getThreadLocalRequest());
String username = info.getUsername();
String email = info.getUserEmail();
String firstName = "Testing";
String lastName = "User";
if (isWithinPortal() && username != null) {
try {
LiferayUserManager l = new LiferayUserManager();
GCubeUser user = l.getUserByUsername(username);
firstName = user.getFirstName();
lastName = user.getLastName();
email = user.getEmail();
}catch (UserManagementSystemException e) {
workspaceLogger.error("UserManagementSystemException for username: "+username);
}
catch (UserRetrievalFault e) {
workspaceLogger.error("UserRetrievalFault for username: "+username);
}catch (Exception e) {
workspaceLogger.error("Error during getMyLogin for username: "+username, e);
}
}
UserBean us = new UserBean(username, firstName, lastName, email);
workspaceLogger.info("Returning myLogin: "+us);
return us;
}
/* (non-Javadoc)
* @see org.gcube.portlets.user.workspace.client.rpc.GWTWorkspaceService#getMyLogin()
*/
/**
* Gets the my first name.
*
* @return the my first name
*/
@Override
public String getMyFirstName(){
if(!isWithinPortal())
return "";
PortalContextInfo info = WsUtil.getPortalContext(this.getThreadLocalRequest());
String username = info.getUsername();
String firstName = "";
if (isWithinPortal() && username != null) {
try {
LiferayUserManager l = new LiferayUserManager();
GCubeUser user = l.getUserByUsername(username);
workspaceLogger.info("My login first name is: "+user.getFirstName());
firstName = user.getFirstName();
}catch (UserManagementSystemException e) {
workspaceLogger.error("UserManagementSystemException for username: "+username);
}
catch (UserRetrievalFault e) {
workspaceLogger.error("UserRetrievalFault for username: "+username);
}
}
return firstName;
}
/**
* Update acl for vr eby group name.
*
* @param folderId the folder id
* @param aclType the acl type
* @throws Exception the exception
*/
@Override
public void updateACLForVREbyGroupName(String folderId, String aclType) throws Exception{
try {
if(folderId == null)
throw new Exception("Folder id is null");
workspaceLogger.trace("Updating ACL to VRE FOLDER id: "+folderId);
workspaceLogger.trace("ACL type is: "+aclType);
Workspace workspace = getWorkspace();
WorkspaceItem wsItem = workspace.getItem(folderId);
if(wsItem.isShared() && wsItem.getType().equals(WorkspaceItemType.SHARED_FOLDER)){
WorkspaceSharedFolder ite = (WorkspaceSharedFolder) wsItem;
//PATCH TODO TEMPORARY SOLUTION
if(ite.isVreFolder()){
List<String> groupName = new ArrayList<String>();
groupName.add(wsItem.getName());
ite.setACL(groupName, ACLType.valueOf(aclType));
}
}else
throw new Exception("Source item is not shared or shared folder");
workspaceLogger.trace("Updating ACL completed, retuning");
} catch (Exception e) {
workspaceLogger.error("Error in set ACLs", e);
String error = ConstantsExplorer.SERVER_ERROR +" updating permissions. "+e.getMessage();
throw new Exception(error);
}
}
/**
* Gets the user acl for folder id.
*
* @param folderId the folder id
* @return the user acl for folder id
* @throws Exception the exception
*/
@Override
public List<ExtendedWorkspaceACL> getUserACLForFolderId(String folderId) throws Exception{
try {
workspaceLogger.info("Get user ACL to FOLDER id: "+folderId);
WorkspaceFolder wsFolder = getSharedWorkspaceFolderForId(folderId);
GWTWorkspaceBuilder builder = getGWTWorkspaceBuilder();
List<WorkspaceACL> listACL = builder.getWorkspaceACLFromACLs(Arrays.asList(wsFolder.getACLUser()));
List<ExtendedWorkspaceACL> listEACL = new ArrayList<ExtendedWorkspaceACL>(listACL.size());
for (WorkspaceACL workspaceACL : listACL) {
boolean isBaseSharedFolder = isASharedFolder(wsFolder, true) ?true:false;
ExtendedWorkspaceACL eac = new ExtendedWorkspaceACL(workspaceACL.getId(), workspaceACL.getLabel(), workspaceACL.getDefaultValue(), workspaceACL.getUserType(), workspaceACL.getDescription(), wsFolder.getOwner().getPortalLogin(), folderId, isBaseSharedFolder);
workspaceLogger.trace("ACL "+workspaceACL+" converted in: "+eac);
listEACL.add(eac);
}
return listEACL;
} catch (Exception e) {
workspaceLogger.error("Error in server get getACLForFolderId", e);
String error = ConstantsExplorer.SERVER_ERROR +" get ACL rules for selected folder. "+e.getMessage();
throw new Exception(error);
}
}
/**
* Gets ACLs Description For WorkspaceItem ById.
*
* @param workspaceItemId the folder id
* @return a description of the ACLs
* @throws Exception the exception
*/
@Override
public String getACLsDescriptionForWorkspaceItemById(String workspaceItemId) throws Exception{
try {
workspaceLogger.info("Get ACLsDescriptionForWorkspaceItemById: "+workspaceItemId);
Workspace workspace = getWorkspace();
WorkspaceItem wsItem = workspace.getItem(workspaceItemId);
GWTWorkspaceBuilder builder = getGWTWorkspaceBuilder();
Map<ACLType, List<String>> acls = wsItem.getACLOwner();
if(acls==null)
throw new Exception("ACLOwner is null!");
return builder.getFormatHtmlACLFromACLs(acls);
} catch (Exception e) {
workspaceLogger.error("Error in getACLsDescriptionForWorkspaceItemById for workspaceItemId: "+workspaceItemId, e);
String error = ConstantsExplorer.SERVER_ERROR +" getting ACL rules for requested item. "+e.getMessage();
throw new Exception(error);
}
}
/**
* Gets the shared workspace folder for id.
*
* @param folderId the folder id
* @return the shared workspace folder for id
* @throws Exception the exception
*/
private WorkspaceFolder getSharedWorkspaceFolderForId(String folderId) throws Exception{
if(folderId == null)
throw new Exception("Folder id is null");
workspaceLogger.trace("Get SharedFolderForId: "+folderId);
Workspace workspace = getWorkspace();
WorkspaceItem wsItem = null;
try{
wsItem = workspace.getItem(folderId);
}catch(Exception e){
workspaceLogger.error("Get SharedFolderForId error on folder id: "+folderId, e);
throw new Exception(ConstantsExplorer.SERVER_ERROR +" retrieving item with id: "+folderId+". Try again later!");
}
if(isASharedFolder(wsItem, false)){
workspaceLogger.trace("Get SharedFolderForId: folder id "+folderId+" is shared");
//TODO REMOVE wsItem.getIdSharedFolder()
// WorkspaceSharedFolder wsFolder = (WorkspaceSharedFolder) workspace.getItem(wsItem.getIdSharedFolder());
WorkspaceFolder wsFolder = (WorkspaceFolder) wsItem;
if(wsFolder!=null){
workspaceLogger.info("Get SharedFolderForId return name: "+wsFolder.getName());
return wsFolder;
}else{
workspaceLogger.warn("Source item is not a shared folder, throw exception");
throw new Exception("Source item is not a shared folder");
}
}else{
workspaceLogger.warn("Source item is null or not shared folder, throw exception");
throw new Exception("Source item is null or not shared folder for id: "+folderId);
}
}
/**
* Checks if is a shared folder.
*
* @param itemID the item id
* @param asRoot true check if itemID is root, not otherwise
* @return true, if is a shared folder
*/
public boolean isASharedFolder(String itemID, boolean asRoot){
try {
if(itemID==null)
throw new Exception("ItemId is null");
Workspace workspace = getWorkspace();
WorkspaceItem item = workspace.getItem(itemID);
return isASharedFolder(item, asRoot);
}catch(Exception e){
workspaceLogger.error("Error in server isASharedFolder", e);
return false;
}
}
/**
* Checks if is a shared folder.
*
* @param item the item
* @param asRoot the as root
* @return true, if is a shared folder
* @see #isASharedFolder(String, boolean)
*/
public boolean isASharedFolder(WorkspaceItem item, boolean asRoot){
try {
if(item!=null && item.isFolder() && item.isShared()){ //IS A SHARED SUB-FOLDER
if(asRoot)
return item.getType().equals(WorkspaceItemType.SHARED_FOLDER); //IS ROOT?
return true;
}
return false;
}catch(Exception e){
workspaceLogger.error("Error in server isASharedFolder", e);
return false;
}
}
/* (non-Javadoc)
* @see org.gcube.portlets.user.workspace.client.rpc.GWTWorkspaceService#addAdministratorsByFolderId(java.lang.String, java.util.List)
*
* true if administrators have been added, false otherwise
*/
/**
* Adds the administrators by folder id.
*
* @param folderId the folder id
* @param listContactLogins the list contact logins
* @return true, if successful
* @throws Exception the exception
*/
@Override
public boolean addAdministratorsByFolderId(String folderId, List<String> listContactLogins) throws Exception {
if(folderId==null || listContactLogins==null || listContactLogins.size()==0)
return false;
try {
Workspace workspace = getWorkspace();
WorkspaceItem item = workspace.getItem(folderId);
workspaceLogger.info("Adding administator/s to folder: "+folderId);
if(item!=null && item.getType().equals(WorkspaceItemType.SHARED_FOLDER)){
WorkspaceSharedFolder sharedFolder = (WorkspaceSharedFolder) item;
//retrieving old administrators list
GWTWorkspaceBuilder builder = getGWTWorkspaceBuilder();
workspaceLogger.info("Retrieving old administator/s..");
List<InfoContactModel> oldAdmins = builder.buildGxtInfoContactsFromPortalLogins(sharedFolder.getAdministrators());
workspaceLogger.info("Retrieving old administator/s are/is: "+oldAdmins.size());
workspaceLogger.info("Setting administators:");
printList(listContactLogins);
sharedFolder.setAdmins(listContactLogins);
workspaceLogger.info("Converting new administator/s..");
List<InfoContactModel> newAdmins = builder.buildGxtInfoContactsFromPortalLogins(listContactLogins);
NotificationsProducer np = getNotificationProducer();
workspaceLogger.info("Sending notifications downgrade/upgrade administator/s..");
DifferenceBetweenInfoContactModel diff1 = new DifferenceBetweenInfoContactModel(oldAdmins, newAdmins);
List<InfoContactModel> contactsDowngrade = diff1.getDifferentsContacts();
for (InfoContactModel infoContactModel : contactsDowngrade) {
np.notifyAdministratorDowngrade(infoContactModel, sharedFolder);
}
DifferenceBetweenInfoContactModel diff2 = new DifferenceBetweenInfoContactModel(newAdmins, oldAdmins);
List<InfoContactModel> contactsUpgrade = diff2.getDifferentsContacts();
for (InfoContactModel infoContactModel : contactsUpgrade) {
np.notifyAdministratorUpgrade(infoContactModel, sharedFolder);
}
return true;
}else
throw new Exception("The item is null or not instanceof "+WorkspaceItemType.SHARED_FOLDER);
} catch (Exception e) {
workspaceLogger.error("Error in server addAdministratorsByFolderId: "+e.getMessage());
workspaceLogger.error(e);
String error = ConstantsExplorer.SERVER_ERROR +" adding administrators, try again later";
throw new Exception(error);
}
}
/* (non-Javadoc)
* @see org.gcube.portlets.user.workspace.client.rpc.GWTWorkspaceService#getAdministratorsByFolderId(java.lang.String)
*/
/**
* Gets the administrators by folder id.
*
* @param folderId the folder id
* @return the administrators by folder id
* @throws Exception the exception
*/
@Override
public List<InfoContactModel> getAdministratorsByFolderId(String folderId) throws Exception {
List<InfoContactModel> admins = new ArrayList<InfoContactModel>();
if(folderId==null)
return admins;
try {
workspaceLogger.info("Getting administator/s to folder: "+folderId);
WorkspaceFolder wsFolder = getSharedWorkspaceFolderForId(folderId);
GWTWorkspaceBuilder builder = getGWTWorkspaceBuilder();
WorkspaceSharedFolder wsSharedFolder = (WorkspaceSharedFolder) wsFolder;
return builder.buildGxtInfoContactsFromPortalLogins(wsSharedFolder.getAdministrators());
} catch (WorkspaceHandledException e){
workspaceLogger.error("Error in server getAdministratorsByFolderId: "+e.getMessage());
String error = ConstantsExplorer.SERVER_ERROR +" getting Administrators: "+e.getMessage();
throw new Exception(error);
} catch (Exception e) {
workspaceLogger.error("Error in server getAdministratorsByFolderId: "+e.getMessage());
workspaceLogger.error(e);
String error = ConstantsExplorer.SERVER_ERROR +" getting Administrators";
throw new Exception(error);
}
}
/* (non-Javadoc)
* @see org.gcube.portlets.user.workspace.client.rpc.GWTWorkspaceService#getItemDescriptionById(java.lang.String)
*/
/**
* Gets the item description by id.
*
* @param identifier the identifier
* @return the item description by id
* @throws Exception the exception
*/
@Override
public String getItemDescriptionById(String identifier) throws Exception {
workspaceLogger.info("Getting ItemDescriptionById: "+identifier);
if(identifier==null || identifier.isEmpty()){
workspaceLogger.warn("Getting ItemDescriptionById identifier is null or empty, returning null");
return null;
}
try {
Workspace workspace = getWorkspace();
WorkspaceItem item = workspace.getItem(identifier);
GWTWorkspaceBuilder builder = getGWTWorkspaceBuilder();
return builder.getItemDescriptionForTypeById(item);
} catch (Exception e) {
workspaceLogger.error("Error in server ItemDescriptionById: ", e);
String error = ConstantsExplorer.SERVER_ERROR +" getting description for item id: "+identifier;
throw new Exception(error);
}
}
/* (non-Javadoc)
* @see org.gcube.portlets.user.workspace.client.rpc.GWTWorkspaceService#getACLBySharedFolderId(java.lang.String)
*/
/**
* Gets the ACL by shared folder id.
*
* @param identifier the identifier
* @return the ACL by shared folder id
* @throws Exception the exception
*/
@Override
public WorkspaceACL getACLBySharedFolderId(String identifier) throws Exception {
workspaceLogger.info("Getting ACLBySharedFolderId: "+identifier);
if(identifier==null || identifier.isEmpty()){
workspaceLogger.warn("Getting ACLBySharedFolderId identifier is null or empty, returning null");
return null;
}
try {
WorkspaceFolder sharedFolder = getSharedWorkspaceFolderForId(identifier);
//IS ROOT??
if(isASharedFolder(sharedFolder, true)){
GWTWorkspaceBuilder builder = getGWTWorkspaceBuilder();
//CASTING TO ROOT
WorkspaceSharedFolder wsSharedFolder = (WorkspaceSharedFolder) sharedFolder;
workspaceLogger.info("Read getPrivilege from HL: "+wsSharedFolder.getACLUser());
List<WorkspaceACL> wsAcls = builder.getWorkspaceACLFromACLs(Arrays.asList(wsSharedFolder.getPrivilege()));
if(wsAcls==null || wsAcls.isEmpty()){
workspaceLogger.info("Converted ACLBySharedFolderId is null or empty, returning null");
return null;
}
workspaceLogger.info("Returning first acl with id: "+wsAcls.get(0).getId());
return wsAcls.get(0);
}
else{
workspaceLogger.warn("WorkspaceFolder "+sharedFolder+" is not type of "+WorkspaceItemType.SHARED_FOLDER+ ", returning null");
return null;
}
} catch (Exception e) {
workspaceLogger.error("Error in server ACLBySharedFolderId: "+e.getMessage());
workspaceLogger.error(e);
String error = ConstantsExplorer.SERVER_ERROR +" getting ACL of WorkspaceSharedFolder";
throw new Exception(error);
}
}
/* (non-Javadoc)
* @see org.gcube.portlets.user.workspace.client.rpc.GWTWorkspaceService#getUserWorkspaceQuote()
*/
/**
* Gets the user workspace quote.
*
* @return the user workspace quote
* @throws Exception the exception
*/
@Override
public WorkspaceUserQuote getUserWorkspaceQuote() throws Exception {
try{
workspaceLogger.info("Getting UserWorkspaceQuote..");
Workspace workspace = getWorkspace();
long size = workspace.getDiskUsage();
workspaceLogger.info("Root size is: "+size +" formatting..");
String formatSize = GWTWorkspaceBuilder.formatFileSize(size);
long total = getUserWorkspaceTotalItems();
WorkspaceUserQuote quote = new WorkspaceUserQuote();
quote.setDiskSpace(size);
quote.setDiskSpaceFormatted(formatSize);
quote.setTotalItems(total);
workspaceLogger.info("returning user quote: "+quote);
return quote;
}catch(Exception e){
workspaceLogger.error("Error on UserWorkspaceQuote",e);
return null;
}
}
/* (non-Javadoc)
* @see org.gcube.portlets.user.workspace.client.rpc.GWTWorkspaceService#getUserWorkspaceSize()
*/
/**
* Gets the user workspace size.
*
* @return the user workspace size
* @throws Exception the exception
*/
@Override
public String getUserWorkspaceSize() throws Exception {
try{
workspaceLogger.info("Getting workspace size..");
Workspace workspace = getWorkspace();
long size = workspace.getDiskUsage();
// workspaceLogger.info("Root size is: "+size +" formatting..");
String formatSize = GWTWorkspaceBuilder.formatFileSize(size);
workspaceLogger.info("returning workspace size: "+formatSize);
return formatSize;
}catch(Exception e){
workspaceLogger.error("Error on UserWorkspaceSize",e);
String error = ConstantsExplorer.SERVER_ERROR +" getting disk usage";
throw new Exception(error);
}
}
/* (non-Javadoc)
* @see org.gcube.portlets.user.workspace.client.rpc.GWTWorkspaceService#getUserWorkspaceTotalItems()
*/
/**
* Gets the user workspace total items.
*
* @return the user workspace total items
* @throws Exception the exception
*/
@Override
public long getUserWorkspaceTotalItems() throws Exception {
try{
workspaceLogger.info("Getting total items..");
Workspace workspace = getWorkspace();
long size = workspace.getTotalItems();
workspaceLogger.info("returning total items value: "+size);
return size;
}catch(Exception e){
workspaceLogger.error("Error on UserWorkspaceSize",e);
String error = ConstantsExplorer.SERVER_ERROR +" getting total items";
throw new Exception(error);
}
}
/* (non-Javadoc)
* @see org.gcube.portlets.user.workspace.client.rpc.GWTWorkspaceService#loadGcubeItemProperties(java.lang.String)
*/
/**
* Load gcube item properties.
*
* @param itemId the item id
* @return the map
* @throws Exception the exception
*/
@Override
public Map<String, String> loadGcubeItemProperties(String itemId) throws Exception {
workspaceLogger.info("Getting GcubeItemProperties for itemId: "+itemId);
if(itemId==null || itemId.isEmpty()){
workspaceLogger.warn("Getting GcubeItemProperties identifier is null or empty, returning null");
return null;
}
try {
Workspace workspace = getWorkspace();
WorkspaceItem item = workspace.getItem(itemId);
GWTWorkspaceBuilder builder = getGWTWorkspaceBuilder();
Map<String, String> mapProperties = builder.getGcubeItemProperties(item);
if(mapProperties!=null)
workspaceLogger.info("Returning "+mapProperties.size()+" properties");
else
workspaceLogger.info("Returning null properties");
return mapProperties;
} catch (Exception e) {
workspaceLogger.error("Error in server GcubeItemProperties: ", e);
String error = ConstantsExplorer.SERVER_ERROR +" getting gcube item properties for item id: "+itemId;
throw new Exception(error);
}
}
/**
* Gets the HTML gcube item properties.
*
* @param itemId the item id
* @return The Gcube Item Properties in HTML format if itemId is a GcubeItem and contains properties, null otherwise
* @throws Exception the exception
*/
@Override
public String getHTMLGcubeItemProperties(String itemId) throws Exception {
workspaceLogger.info("Getting FormattedGcubeItemProperties for itemId: "+itemId);
if(itemId==null || itemId.isEmpty()){
workspaceLogger.warn("Getting FormattedGcubeItemProperties identifier is null or empty, returning null");
return null;
}
try {
Workspace workspace = getWorkspace();
WorkspaceItem item = workspace.getItem(itemId);
GWTWorkspaceBuilder builder = getGWTWorkspaceBuilder();
return builder.getFormatHtmlGcubeItemProperties(item);
} catch (Exception e) {
workspaceLogger.error("Error in server FormattedGcubeItemProperties: ", e);
String error = ConstantsExplorer.SERVER_ERROR +" getting gcube item properties for item id: "+itemId;
throw new Exception(error);
}
}
/**
* Sets the gcube item properties.
*
* @param itemId the item id
* @param properties the properties
* @throws Exception the exception
*/
@Override
public void setGcubeItemProperties(String itemId, Map<String, String> properties) throws Exception {
workspaceLogger.info("Set GcubeItemProperties for itemId: "+itemId);
if(itemId==null || itemId.isEmpty()){
workspaceLogger.warn("Set GcubeItemProperties, identifier is null or empty, returning null");
throw new Exception("The item id is null or empty");
}
try {
Workspace workspace = getWorkspace();
WorkspaceItem item = workspace.getItem(itemId);
if(item instanceof GCubeItem){
workspaceLogger.info("Adding "+properties.size()+" properties to GCubeItem: "+itemId);
GCubeItem gItem = (GCubeItem) item;
for (String key : properties.keySet()) {
//ADD PROPERTIES
workspaceLogger.trace("Adding property: ["+key+","+properties.get(key)+"]");
gItem.getProperties().addProperty(key, properties.get(key));
}
gItem.getProperties().update();
}else
throw new NoGcubeItemTypeException("The item is not a Gcube Item");
} catch (NoGcubeItemTypeException e){
workspaceLogger.error("Error in server FormattedGcubeItemProperties: ", e);
throw new Exception(e.getMessage());
} catch (Exception e) {
workspaceLogger.error("Error in server FormattedGcubeItemProperties: ", e);
String error = ConstantsExplorer.SERVER_ERROR +" setting gcube item properties for item id: "+itemId;
throw new Exception(error);
}
}
/* (non-Javadoc)
* @see org.gcube.portlets.user.workspace.client.rpc.GWTWorkspaceService#markFolderAsPublicForFolderItemId(java.lang.String, boolean)
*/
/**
* Mark folder as public for folder item id.
*
* @param itemId the item id
* @param setPublic the set public
* @return the public link
* @throws SessionExpiredException the session expired exception
* @throws Exception the exception
*/
@Override
public PublicLink markFolderAsPublicForFolderItemId(String itemId, boolean setPublic) throws SessionExpiredException, Exception {
if(isSessionExpired())
throw new SessionExpiredException();
try {
Workspace workspace = getWorkspace();
WorkspaceItem item = workspace.getItem(itemId);
if(item instanceof WorkspaceFolder){
WorkspaceFolder folder = (WorkspaceFolder) item;
if(setPublic){
if(!folder.isPublic())
folder.setPublic(true);
String folderId = item.getId();
workspaceLogger.info("HL returning folder link id: "+folderId);
ApplicationProfileReader apReader = new ApplicationProfileReader("Workspace-Explorer-App", "org.gcube.portlets.user.workspaceexplorerapp.server.WorkspaceExplorerAppServiceImpl");
ApplicationProfile ap = apReader.readProfileFromInfrastrucure();
String encriptedFId = StringEncrypter.getEncrypter().encrypt(folderId);
workspaceLogger.info("Encrypted folder Id: "+encriptedFId);
String encodedFId = StringUtil.base64EncodeStringURLSafe(encriptedFId);
workspaceLogger.info("Encoded in Base 64: "+encodedFId);
workspaceLogger.info("Application profile returning url: "+ap.getUrl());
String folderLink = ap.getUrl()+"?folderId="+encodedFId;
String shortURL = null;
try{
shortURL = getShortUrl(folderLink);
shortURL = shortURL!=null?shortURL:"not available";
}catch(Exception e){
workspaceLogger.warn("Short url error, skipping");
shortURL = "not available";
}
return new PublicLink(folderLink, shortURL);
}else{
folder.setPublic(false);
return null;
}
}else
throw new NoGcubeItemTypeException("The item is not a Gcube Item");
} catch (NoGcubeItemTypeException e){
workspaceLogger.error("Error in server: ", e);
throw new Exception(e.getMessage());
} catch (InsufficientPrivilegesException e) {
workspaceLogger.error("Error in server: ", e);
throw new Exception(e.getMessage());
} catch (Exception e) {
workspaceLogger.error("Error in server markFolderAsPublicForFolderItemId: ", e);
String error = ConstantsExplorer.SERVER_ERROR +" reading Folder Link for id: "+itemId;
throw new Exception(error);
}
}
/**
* Gets the servlet context path.
*
* @param protocol the protocol
* @return the servlet context path
*/
@Override
public String getServletContextPath(String protocol) {
HttpServletRequest req = getThreadLocalRequest();
String scheme = protocol;
String serverName = req.getServerName(); // hostname.com
int serverPort = req.getServerPort(); // 80
String contextPath = req.getServletContext().getContextPath(); // /mywebapp
// Reconstruct original requesting URL
StringBuffer url = new StringBuffer();
url.append(scheme).append("//").append(serverName);
if (serverPort != 80 && serverPort != 443) {
url.append(":").append(serverPort);
}
workspaceLogger.debug("server: "+url);
workspaceLogger.debug("omitted contextPath: "+contextPath);
url.append(contextPath);
workspaceLogger.debug("getServletContextPath=" + url.toString());
return url.toString();
}
/* (non-Javadoc)
* @see org.gcube.portlets.user.workspace.client.rpc.GWTWorkspaceService#accessToFolderLink(java.lang.String)
*/
/**
* Access to folder link.
*
* @param itemId the item id
* @return the allow access
* @throws SessionExpiredException the session expired exception
* @throws Exception the exception
*/
@Override
public AllowAccess accessToFolderLink(String itemId) throws SessionExpiredException, Exception {
workspaceLogger.info("Access to Folder Link "+itemId+" working... ");
try {
Workspace workspace = getWorkspace();
WorkspaceItem item = workspace.getItem(itemId);
if(item instanceof WorkspaceFolder){
WorkspaceFolder folder = (WorkspaceFolder) item;
InfoContactModel owner = getOwnerByItemId(itemId);
PortalContextInfo context = WsUtil.getPortalContext(this.getThreadLocalRequest());
if(folder.isPublic()){
workspaceLogger.info("The folder is already public. Access granted to "+context.getUsername());
return new AllowAccess(itemId, true, "The folder is already public. Access granted to "+context.getUsername(),null);
}
workspaceLogger.info("owner of: "+folder.getName() +" is: "+owner);
workspaceLogger.info("current context user: "+context.getUsername());
if(owner.getLogin().compareToIgnoreCase(context.getUsername())==0){
workspaceLogger.info("Access to Folder Link "+folder.getName()+" granted, "+context.getUsername() +" is the owner of: "+itemId);
return new AllowAccess(itemId, true, context.getUserFullName() +" is the owner of: "+folder.getName(),null);
}
try{
List<InfoContactModel> admins = getAdministratorsByFolderId(itemId);
for (InfoContactModel infoContactModel : admins) {
if(infoContactModel.getLogin().compareToIgnoreCase(context.getUsername())==0){
workspaceLogger.info("Access to Folder Link "+folder.getName()+" granted, "+context.getUsername() +" is the admin of: "+itemId);
return new AllowAccess(itemId, true, context.getUserFullName() +" is the admin of: "+folder.getName(),null);
}
}
}catch (Exception e){
return new AllowAccess(itemId, false, "You have not permission to get Folder Link, you must be owner or administrator to the folder", e.getMessage());
}
return new AllowAccess(itemId, false, "You have not permission to get Folder Link, you must be owner or administrator to the folder", null);
}
return new AllowAccess(itemId, false, "The item is not a folder", null);
} catch (Exception e) {
workspaceLogger.error("Error in server FormattedGcubeItemProperties: ", e);
String error = ConstantsExplorer.SERVER_ERROR +" when reading access policy to Folder Link: "+itemId+", Refresh and try again";
throw new Exception(error);
}
}
/* (non-Javadoc)
* @see org.gcube.portlets.user.workspace.client.rpc.GWTWorkspaceService#performOperationOnVersionedFile(java.lang.String, java.util.List, org.gcube.portlets.user.workspace.shared.WorkspaceVersioningOperation)
*/
/**
* Perform operation on versioned file.
*
* @param fileId the file id
* @param olderVersionIDs the older version i ds
* @param operation the operation
* @return the list
* @throws Exception the exception
*/
@Override
public List<FileVersionModel> performOperationOnVersionedFile(
String fileId, List<String> olderVersionIDs,
WorkspaceVersioningOperation operation) throws Exception {
if(fileId == null || olderVersionIDs==null || olderVersionIDs.size()==0)
throw new Exception("File Versioned is null");
workspaceLogger.info("File Id: "+fileId+", Ids Version: "+olderVersionIDs+ " perform operation: "+operation);
try {
Workspace workspace = getWorkspace();
WorkspaceItem fileHL = workspace.getItem(fileId);
if(fileHL instanceof ExternalFile){
ExternalFile extFile = (ExternalFile) fileHL;
switch (operation) {
case DOWNLOAD: {
//IMPLEMENTED CLIENT-SIDE
break;
}
case DELETE_ALL_OLDER_VERSIONS:{
//MUST BE OPTIMIZED HL-SIDE
for (String olderVersionId : olderVersionIDs) {
extFile.removeVersion(olderVersionId);
workspaceLogger.info("Version "+olderVersionId +" of file id: "+fileId+" removed");
}
return getVersionHistory(fileId);
}
// case RESTORE: {
// for (String olderVersionId : olderVersionIDs) {
// extFile.restoreVersion(olderVersionId);
// workspaceLogger.info("Version "+olderVersionId +" of file id: "+fileId+" restored");
// }
// return getVersionHistory(fileId);
//
// }
case REFRESH: {
return getVersionHistory(fileId);
}
case DELETE_PERMANENTLY: {
for (String olderVersionId : olderVersionIDs) {
extFile.removeVersion(olderVersionId);
workspaceLogger.info("Version "+olderVersionId +" of file id: "+fileId+" removed");
}
return getVersionHistory(fileId);
}
default:{
break;
}
}
return getVersionHistory(fileId);
}else
throw new FileNotVersionedException("Selected file is not versioned");
}catch (Exception e) {
if (e instanceof FileNotVersionedException)
throw new Exception(e.getMessage());
if(e instanceof InsufficientPrivilegesException)
throw new Exception(e.getMessage());
workspaceLogger.error("Error in server during perform operation on versioning on file id: "+fileId, e);
String error = ConstantsExplorer.SERVER_ERROR +" updating versioning of file id: "+fileId;
throw new Exception(error);
}
}
/* (non-Javadoc)
* @see org.gcube.portlets.user.workspace.client.rpc.GWTWorkspaceService#getImagesForFolder(java.lang.String, java.lang.String)
*/
/**
* Gets the images for folder.
*
* @param folderId the folder id
* @param currentImageId the current image id
* @return the images for folder
* @throws Exception the exception
*/
@Override
public List<GWTWorkspaceItem> getImagesForFolder(String folderId, String currentImageId) throws Exception {
if(folderId==null)
return null;
try {
Workspace workspace = getWorkspace();
workspaceLogger.debug("get images for folder id: "+folderId);
WorkspaceItem item = workspace.getItem(folderId); //get item from workspace
List<GWTWorkspaceItem> images = new ArrayList<GWTWorkspaceItem>();
if (item.isFolder()){
WorkspaceFolder folder = (WorkspaceFolder) item;
GWTWorkspaceBuilder builder = getGWTWorkspaceBuilder();
PortalContextInfo context = WsUtil.getPortalContext(this.getThreadLocalRequest());
GCubeUser user = PortalContext.getConfiguration().getCurrentUser(this.getThreadLocalRequest());
List<WorkspaceItem> children = folder.getChildren();
for (WorkspaceItem workspaceItem : children) {
boolean foundCurrentImage = false;
if(workspaceItem.getType().compareTo(WorkspaceItemType.FOLDER_ITEM)==0){
FolderItem file = (FolderItem) workspaceItem;
GWTWorkspaceItem image = null;
switch (file.getFolderItemType()) {
case EXTERNAL_IMAGE:
image = builder.buildGWTWorkspaceImage(workspaceItem, false, false, context.getCurrGroupId()+"", user.getUserId()+"");
image.setId(workspaceItem.getId());
break;
case IMAGE_DOCUMENT:
image = builder.buildGWTWorkspaceImage(workspaceItem, true, false, context.getCurrGroupId()+"", user.getUserId()+"");
image.setId(workspaceItem.getId());
break;
default:
break;
}
if(image!=null){
if(!foundCurrentImage && image.getId().compareTo(currentImageId)==0){
workspaceLogger.debug("It is current thumbnail adding to list as first element: "+image.getName());
images.add(0, image);
foundCurrentImage = true;
}else{
workspaceLogger.debug("Adding thumbnail name to list: "+image.getName());
images.add(image);
}
}
}
}
}
workspaceLogger.info("Returning "+images.size() +" images for folder id: "+folderId);
return images;
} catch (Exception e) {
workspaceLogger.error("Error in server get images by folder id: "+folderId, e);
throw new Exception(e.getMessage());
}
}
/* (non-Javadoc)
* @see org.gcube.portlets.user.workspace.client.rpc.GWTWorkspaceService#getListOfVREsForLoggedUser()
*/
/**
* Gets the list of vr es for logged user.
*
* @return the list of vr es for logged user
* @throws Exception the exception
*/
@Override
public List<GcubeVRE> getListOfVREsForLoggedUser() throws Exception{
workspaceLogger.debug("getListOfVREsForLoggedUser...: ");
//PortalContextInfo context = WsUtil.getPortalContext(this.getThreadLocalRequest());
GCubeUser user = PortalContext.getConfiguration().getCurrentUser(this.getThreadLocalRequest());
long userId = user.getUserId();
// Instanciate the manager
GroupManager groupManager = new LiferayGroupManager();
List<GcubeVRE> listOfVres = new ArrayList<GcubeVRE>();
if (isTestMode()){
listOfVres.add(new GcubeVRE("devVRE", "/gcube/devsec/devVRE"));
listOfVres.add(new GcubeVRE("NextNext", "/gcube/devNext/NextNext"));
return listOfVres;
}
try {
List<GCubeGroup> listOfGroups = groupManager.listGroupsByUser(userId);
for (GCubeGroup gCubeGroup : listOfGroups) {
if(groupManager.isVRE(gCubeGroup.getGroupId())){
GcubeVRE gcubeVRE = new GcubeVRE(gCubeGroup.getGroupName(), groupManager.getInfrastructureScope(gCubeGroup.getGroupId()));
listOfVres.add(gcubeVRE);
}
}
}
catch (UserRetrievalFault | UserManagementSystemException
| GroupRetrievalFault e) {
workspaceLogger.error("Error occurred server-side getting VRE folders: ", e);
throw new Exception("Sorry, an error occurred server-side getting VRE folders, try again later");
}
workspaceLogger.info("Returning list of VREs: "+listOfVres);
return listOfVres;
}
/**
* Gets the properties for workspace item id.
*
* @param itemId the item id
* @return the properties for workspace item id
*/
private Map<String, String> getPropertiesForWorkspaceItemId(String itemId){
try{
if(itemId==null || itemId.isEmpty())
return null;
Workspace ws = getWorkspace();
WorkspaceItem workItem = ws.getItem(itemId);
Properties properties = workItem.getProperties();
return properties.getProperties();
}catch(Exception e){
workspaceLogger.warn("Error on getting properties for item id: "+itemId, e);
return null;
}
}
/**
* Sets the properties for workspace item id.
*
* @param itemId the item id
* @param properties the properties
*/
private void setPropertiesForWorkspaceItemId(String itemId, Map<String, String> properties){
try{
if(itemId==null || itemId.isEmpty())
return;
Workspace ws = getWorkspace();
WorkspaceItem workItem = ws.getItem(itemId);
workItem.getProperties().addProperties(properties);
}catch(Exception e){
workspaceLogger.warn("Error on setting properties for item id: "+itemId, e);
}
}
/**
* Check item locked.
*
* @param itemId the item id
* @return true, if successful
* @throws WorkspaceFolderLocked the workspace folder locked
* @throws Exception the exception
*/
private boolean checkItemLocked(String itemId) throws WorkspaceFolderLocked, Exception{
if(itemId==null || itemId.isEmpty())
throw new Exception(IDENTIFIER_IS_NULL);
Workspace ws;
WorkspaceItem workItem = null;
try{
ws = getWorkspace();
workItem = ws.getItem(itemId);
//IF THE ITEM IS A FOLDER, CHECKING IT
if(workItem.isFolder())
WorkspaceThreddsSynchronize.getInstance().checkItemSynched(workItem.getId());
else{
//IF THE ITEM IS A FILE, CHECKING ITS PARENT
WorkspaceFolder parent = workItem.getParent();
if(parent!=null){
WorkspaceThreddsSynchronize.getInstance().checkItemSynched(parent.getId());
}
}
//in this case the folder is synched but not locked
return false;
}catch(ItemNotSynched e1){
//in this case the folder is not synched;
return false;
}catch(WorkspaceFolderLocked e2){
//in this case the folder synching is on-going and the folder is locked;
String msg = "The folder";
msg += workItem!=null?": "+workItem.getName():"";
msg += " is locked by a sync. You can not change its content";
workspaceLogger.warn(msg, e2);
throw new WorkspaceFolderLocked(itemId, msg);
}catch(InternalErrorException | ItemNotFoundException | HomeNotFoundException | WorkspaceFolderNotFoundException e){
workspaceLogger.warn(e);
throw new Exception("Sorry an error occurred during checking is folder locked, Refresh and try again");
}catch (Exception e) {
workspaceLogger.warn("Was there an Exception HL side? Ignoring it.. returning false (that means item not locked)");
return false;
}
}
/**
* Checks if is item under sync.
*
* @param itemId the item id
* @return true, if is item under sync
* @throws Exception the exception
*/
@Override
public Boolean isItemUnderSync(String itemId) throws Exception{
try {
GCubeUser user = PortalContext.getConfiguration().getCurrentUser(this.getThreadLocalRequest());
try{
Sync_Status status = WorkspaceThreddsSynchronize.getInstance().getSynchedStatusFromItemProperty(itemId, user.getUsername());
}catch(Exception e){
return false;
}
//HERE THE ITEM IS SYNCHED SO CHECK IF IT IS LOCKED
checkItemLocked(itemId);
return false;
}catch (WorkspaceFolderLocked e1){
return true;
}catch (Exception e) {
throw new Exception("Error on checking item "+itemId+" is under sync");
}
}
/**
* Gets the CLARIN switch board endpoint.
*
* @return the CLARIN switch board endpoint
*/
private String getCLARINSwitchBoardEndpoint() {
//save the context for this resource
String currContext = ScopeProvider.instance.get();
//set the context for this resource
ScopeProvider.instance.set("/"+PortalContext.getConfiguration().getInfrastructureName());
//construct the xquery
SimpleQuery query = queryFor(ServiceEndpoint.class);
query.addCondition("$resource/Profile/Name/text() eq '"+ ConstantsExplorer.CLARIN_SWITCHBOARD_ENDPOINT_NAME +"'");
query.addCondition("$resource/Profile/Category/text() eq '"+ ConstantsExplorer.CLARIN_SWITCHBOARD_ENDPOINT_CATEGORY +"'");
DiscoveryClient<ServiceEndpoint> client = clientFor(ServiceEndpoint.class);
List<ServiceEndpoint> conf = client.submit(query);
if (conf == null || conf.isEmpty())
return null;
ServiceEndpoint res = conf.get(0);
//reset the context
ScopeProvider.instance.set(currContext);
return res.profile().runtime().hostedOn();
}
/**
* *****************************************************************************
* ******************************************************************************
* ******************************************************************************
* ******************************************************************************
* ******************************************************************************
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
* TODO TO STORAGE HUB.
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
* ******************************************************************************
* ******************************************************************************
* ******************************************************************************
* ******************************************************************************
* ******************************************************************************
* *******************************************************************************
* *******************************************************************************
* *******************************************************************************
* *****************************************************************************
*
* @return the workspace from storage hub
* @throws Exception the exception
*/
/**
* Gets the workspace from storage hub.
*
* @return the workspace from storage hub
* @throws Exception the exception
*/
protected org.gcube.common.storagehubwrapper.server.tohl.Workspace getWorkspaceFromStorageHub() throws Exception
{
GCubeUser user = PortalContext.getConfiguration().getCurrentUser(this.getThreadLocalRequest());
StorageHubWrapper storageHubWrapper = WsUtil.getStorageHubWrapper(this.getThreadLocalRequest(), null, user);
return storageHubWrapper.getWorkspace();
}
/**
* Gets the storage hub to workpace converter.
*
* @return the storage hub to workpace converter
* @throws Exception the exception
*/
protected StorageHubToWorkpaceConverter getStorageHubToWorkpaceConverter() throws Exception
{
GCubeUser user = PortalContext.getConfiguration().getCurrentUser(this.getThreadLocalRequest());
StorageHubToWorkpaceConverter converter = WsUtil.getStorageHubToWorkpaceConverter(this.getThreadLocalRequest(), null, user);
//SETTING ROOT ID JUST ONCE
if(converter.getWorkspaceRootId()==null){
org.gcube.common.storagehubwrapper.server.tohl.Workspace ws = getWorkspaceFromStorageHub();
converter.setWorkspaceRootId(ws.getRoot().getId());
}
return converter;
}
/**
* Gets the notification producer to storage hub.
*
* @return the notification producer to storage hub
*/
protected NotificationsProducerToStorageHub getNotificationProducerToStorageHub(){
return WsUtil.getNotificationProducerToStorageHub(this.getThreadLocalRequest());
}
/* (non-Javadoc)
* @see org.gcube.portlets.user.workspace.client.rpc.GWTWorkspaceService#getRootForTree()
*/
/**
* Gets the root for tree.
*
* @return the root for tree
* @throws Exception the exception
*/
@Override
public FolderModel getRootForTree() throws Exception {
workspaceLogger.trace("getRoot");
try {
org.gcube.common.storagehubwrapper.server.tohl.Workspace workspace = getWorkspaceFromStorageHub();
org.gcube.common.storagehubwrapper.shared.tohl.WorkspaceFolder root = workspace.getRoot();
if (root == null) {
workspaceLogger.error("The root is null");
throw new Exception("The root is null");
}
workspaceLogger.trace("Root converted, returning...");
StorageHubToWorkpaceConverter converter = getStorageHubToWorkpaceConverter();
return converter.toRootFolder(root);
} catch (Exception e) {
workspaceLogger.error("Error in server during root retrieving", e);
// workspaceLogger.trace("Error in server During root retrieving " + e);
//GWT can't serialize all exceptions
throw new Exception("Error during workspace loading, please contact the support. Exception:" +e);
}
}
/**
* Delete item.
*
* @param itemId the item id
* @return the boolean
* @throws Exception the exception
*/
@Override
public Boolean deleteItem(String itemId) throws Exception {
try {
if(itemId == null)
throw new Exception(IDENTIFIER_IS_NULL);
checkItemLocked(itemId);
org.gcube.common.storagehubwrapper.server.tohl.Workspace workspaceSH = getWorkspaceFromStorageHub();
org.gcube.common.storagehubwrapper.shared.tohl.WorkspaceItem theItem = workspaceSH.getItem(itemId);
boolean sourceItemIsShared = theItem.isShared();
String itemName = theItem.getName();
String sourceFolderSharedId = null;
if(sourceItemIsShared){
org.gcube.common.storagehubwrapper.shared.tohl.WorkspaceItem rootSharedFolder = workspaceSH.getRootSharedFolder(itemId);
sourceFolderSharedId = rootSharedFolder.getId();
}
//HERE REMOVING THE ITEM
workspaceLogger.info("Calling storageHub to delete item with id: "+itemId);
workspaceSH.deleteItem(itemId);
if(sourceFolderSharedId!=null)
NotificationsUtil.checkSendNotifyRemoveItemToShare(this.getThreadLocalRequest(), sourceItemIsShared, itemName, itemId, sourceFolderSharedId);
return Boolean.TRUE;
}catch (WorkspaceFolderLocked e1){
throw new Exception(e1.getMessage());
} catch (InsufficientPrivilegesException e) {
workspaceLogger.error("Error in server Item remove", e);
String error = "Insufficient Privileges to remove the item";
throw new Exception(error);
}catch (ItemNotFoundException e) {
String error = "An error occurred on deleting item. "+ConstantsExplorer.ERROR_ITEM_DOES_NOT_EXIST;
workspaceLogger.error(error, e);
throw new Exception(error);
} catch (Exception e) {
workspaceLogger.error("Remove item error.", e);
String error = "Error on deleting. Either the item is shared, unshare it and try to delete again or you have not the permission to delete the item";
throw new Exception(error);
}
}
/* (non-Javadoc)
* @see org.gcube.portlets.user.workspace.client.rpc.GWTWorkspaceService#getFolderChildren(org.gcube.portlets.user.workspace.client.model.FolderModel)
*/
/**
* Gets the folder children.
*
* @param folder the folder
* @return the folder children
* @throws Exception the exception
* @throws SessionExpiredException the session expired exception
*/
@Override
public List<FileModel> getFolderChildren(FolderModel folder) throws Exception, SessionExpiredException{
org.gcube.common.storagehubwrapper.server.tohl.Workspace shWorkspace;
if(isSessionExpired())
throw new SessionExpiredException();
try {
if(folder == null)
throw new Exception("Folder is null");
workspaceLogger.trace("getting workspace");
shWorkspace = getWorkspaceFromStorageHub();
//org.gcube.common.storagehubwrapper.shared.tohl.WorkspaceItem wsItem = workspace.getItem(folder.getIdentifier()); //removed for optimization
//REMEMBER wsItem.isRoot() is always false;
//REQUIRING ONLY THE FOLDERS
List<? extends org.gcube.common.storagehubwrapper.shared.tohl.WorkspaceItem> children =
shWorkspace.getFilteredChildren(folder.getIdentifier(),org.gcube.common.storagehub.model.items.FolderItem.class);
StorageHubToWorkpaceConverter converter = getStorageHubToWorkpaceConverter();
List<FileModel> listFileModels = new ArrayList<FileModel>(children.size());
//boolean isParentShared = workspace.isItemShared(folder.getIdentifier()); //removed for optimization
boolean isParentShared = folder.isShared();
for (org.gcube.common.storagehubwrapper.shared.tohl.WorkspaceItem workspaceItem : children) {
//TO BE SURE IT IS A FOLDER
// if(workspaceItem.isFolder()){
workspaceLogger.debug("Converting tree folder: "+workspaceItem.getId() +" name "+ workspaceItem.getName());
listFileModels.add(converter.toTreeFileModel(workspaceItem, folder, isParentShared));
// }
}
boolean isRoot = WsUtil.isRootFolder(folder, converter);
//ADDING VRE FOLDER?
if(isRoot){
folder.setIsRoot(true);
//ADD VRE FOLDER
try{
String vreFolderId = shWorkspace.getVREFoldersId();
org.gcube.common.storagehubwrapper.shared.tohl.WorkspaceItem baseVREFolder = shWorkspace.getItem(vreFolderId);
FileModel specialFolderModel = converter.toTreeFileModel(baseVREFolder, folder, false);
specialFolderModel.setSpecialFolder(true);
String newName = getNameForSpecialFolder();
if(!newName.isEmpty()){
workspaceLogger.info("Special folder name updated as: "+newName);
specialFolderModel.setName(newName);
}else
workspaceLogger.info("Special folder name is empty, skipping");
listFileModels.add(specialFolderModel);
}catch (Exception e) {
workspaceLogger.warn("An error occurred on retrieving special folders for folder id: "+folder.getIdentifier(), e);
}
}
workspaceLogger.info("Returning "+listFileModels.size()+" tree item/s");
/*int i = 0;
for (FileModel fileModel : listFileModels) {
System.out.println(i++ +")"+fileModel);
}*/
return listFileModels;
} catch (Exception e) {
workspaceLogger.error("Error in server During item retrieving", e);
// workspaceLogger.trace("Error in server During item retrieving " + e);
String error = ConstantsExplorer.SERVER_ERROR + RETRIEVING_ITEM_EITHER_ITEM_DOESN_T_EXIST;
//GWT can't serialize all exceptions
throw new Exception(error);
}
}
/* (non-Javadoc)
* @see org.gcube.portlets.user.workspace.client.rpc.GWTWorkspaceService#getFolderChildrenForFileGrid(org.gcube.portlets.user.workspace.client.model.FileModel)
*/
/**
* Gets the folder children for file grid.
*
* @param folder the folder
* @return the folder children for file grid
* @throws Exception the exception
* @throws SessionExpiredException the session expired exception
*/
@Override
public List<FileGridModel> getFolderChildrenForFileGrid(FileModel folder) throws Exception, SessionExpiredException {
if(isSessionExpired())
throw new SessionExpiredException();
try {
if(folder == null)
throw new Exception("Folder is null");
workspaceLogger.trace("Get Grid children for folder: "+folder.getIdentifier());
org.gcube.common.storagehubwrapper.server.tohl.Workspace shWorkspace = getWorkspaceFromStorageHub();
List<? extends org.gcube.common.storagehubwrapper.shared.tohl.WorkspaceItem> children = shWorkspace.getChildren(folder.getIdentifier());
StorageHubToWorkpaceConverter converter = getStorageHubToWorkpaceConverter();
List<FileGridModel> listFileGridModels = new ArrayList<FileGridModel>(children.size());
//boolean isParentShared = folder.isShared();
for (org.gcube.common.storagehubwrapper.shared.tohl.WorkspaceItem workspaceItem : children) {
workspaceLogger.debug("Converting grid item: "+workspaceItem.getId() +" name "+ workspaceItem.getName());
listFileGridModels.add(converter.toGridFileModel(workspaceItem, folder));
}
boolean isRoot = WsUtil.isRootFolder(folder, converter);
workspaceLogger.debug("****** IS ROOT? "+isRoot);
//ADDING VRE FOLDER?
if(isRoot){
folder.setIsRoot(true);
//ADD VRE FOLDER
try{
String vreFolderId = shWorkspace.getVREFoldersId();
org.gcube.common.storagehubwrapper.shared.tohl.WorkspaceItem baseVREFolder = shWorkspace.getItem(vreFolderId);
FileGridModel specialFolderModel = converter.toGridFileModel(baseVREFolder, folder);
specialFolderModel.setSpecialFolder(true);
String newName = getNameForSpecialFolder();
if(!newName.isEmpty()){
workspaceLogger.info("Special folder name updated as: "+newName);
specialFolderModel.setName(newName);
}else
workspaceLogger.info("Special folder name is empty, skipping");
listFileGridModels.add(specialFolderModel);
}catch (Exception e) {
workspaceLogger.warn("An error occurred on retrieving special folders for folder id: "+folder.getIdentifier(), e);
}
}
return listFileGridModels;
} catch (Exception e) {
workspaceLogger.error("Error in server During items retrieving", e);
String error = ConstantsExplorer.SERVER_ERROR + RETRIEVING_ITEM_EITHER_ITEM_DOESN_T_EXIST;
//GWT can't serialize all exceptions
throw new Exception(error);
}
}
/* (non-Javadoc)
* @see org.gcube.portlets.user.workspace.client.rpc.GWTWorkspaceService#getFolderChildrenForFileGridById(java.lang.String)
*/
/**
* Gets the folder children for file grid by id.
*
* @param folderId the folder id
* @return the folder children for file grid by id
* @throws Exception the exception
* @throws SessionExpiredException the session expired exception
*/
@Override
public List<FileGridModel> getFolderChildrenForFileGridById(String folderId) throws Exception, SessionExpiredException {
if(isSessionExpired())
throw new SessionExpiredException();
try {
if(folderId == null || folderId.isEmpty())
throw new Exception("Folder id is null or empty");
org.gcube.common.storagehubwrapper.server.tohl.Workspace shWorkspace = getWorkspaceFromStorageHub();
workspaceLogger.trace("get children for Grid by id: "+folderId);
List<FileGridModel> listFileGridModels = new ArrayList<FileGridModel>();
//BUILDING THE PARENT
org.gcube.common.storagehubwrapper.shared.tohl.WorkspaceItem wsItem = shWorkspace.getItem(folderId);
org.gcube.common.storagehubwrapper.shared.tohl.WorkspaceFolder parent;
if(wsItem.isFolder()){
workspaceLogger.trace("item id: "+folderId +" is of type: "+wsItem.getType());
parent = (org.gcube.common.storagehubwrapper.shared.tohl.WorkspaceFolder) wsItem;
}else{
workspaceLogger.trace("item id: "+folderId +" is not a folder but of type: "+wsItem.getType()+", get parent");
parent = (org.gcube.common.storagehubwrapper.shared.tohl.WorkspaceFolder) shWorkspace.getItem(wsItem.getParentId());
}
if(parent==null)
return listFileGridModels;
StorageHubToWorkpaceConverter converter = getStorageHubToWorkpaceConverter();
FileGridModel wsParent = converter.toGridFileModel(parent, null);
//PARENT BUILT IS SHARED?
if(parent.isShared()){
wsParent.setShared(true);
wsParent.setShareable(false);
}
Long startTime = System.currentTimeMillis();
//GET CHILDREN
List<? extends org.gcube.common.storagehubwrapper.shared.tohl.WorkspaceItem> children = shWorkspace.getChildren(wsParent.getIdentifier());
Long endTime = System.currentTimeMillis() - startTime;
String time = String.format("%d msc %d sec", endTime, TimeUnit.MILLISECONDS.toSeconds(endTime));
workspaceLogger.debug("grid getChildren() returning "+children.size()+" elements in " + time);
//boolean isParentShared = folder.isShared();
for (org.gcube.common.storagehubwrapper.shared.tohl.WorkspaceItem workspaceItem : children) {
workspaceLogger.debug("Converting grid item: "+workspaceItem.getId() +" name "+ workspaceItem.getName());
listFileGridModels.add(converter.toGridFileModel(workspaceItem, wsParent));
}
return listFileGridModels;
} catch (Exception e) {
workspaceLogger.error("Error in server During items retrieving", e);
String error = ConstantsExplorer.SERVER_ERROR + RETRIEVING_ITEM_EITHER_ITEM_DOESN_T_EXIST;
throw new Exception(error);
}
}
/**
* Gets the trash content.
*
* @return the trash content
* @throws Exception the exception
*/
@Override
public List<FileTrashedModel> getTrashContent() throws Exception{
workspaceLogger.trace("Get TrashContent: ");
try {
org.gcube.common.storagehubwrapper.server.tohl.Workspace workspace = getWorkspaceFromStorageHub();
org.gcube.common.storagehubwrapper.shared.tohl.WorkspaceItem baseTrashFolder = workspace.getTrash();
List<? extends org.gcube.common.storagehubwrapper.shared.tohl.WorkspaceItem> trashChildren = workspace.getChildren(baseTrashFolder.getId());
List<FileTrashedModel> trashContent = new ArrayList<FileTrashedModel>(trashChildren.size());
StorageHubToWorkpaceConverter converter = getStorageHubToWorkpaceConverter();
for (org.gcube.common.storagehubwrapper.shared.tohl.WorkspaceItem workspaceItem : trashChildren) {
if(workspaceItem.isTrashed()){
trashContent.add(converter.toFileTrashedModel((TrashedItem) workspaceItem));
}else
workspaceLogger.warn("The item: "+workspaceItem.getId()+" is not trashed");
}
return trashContent;
}catch (Exception e) {
workspaceLogger.error("Error in server TrashConten", e);
String error = ConstantsExplorer.SERVER_ERROR +" get Trash content. "+e.getMessage();
throw new Exception(error);
}
}
/**
* Update trash content.
*
* @param operation the operation
* @return the trash content
* @throws Exception the exception
*/
@Override
public TrashContent updateTrashContent(WorkspaceTrashOperation operation) throws Exception{
workspaceLogger.info("Updating TrashContent with operation: "+operation);
try {
org.gcube.common.storagehubwrapper.server.tohl.Workspace workspace = getWorkspaceFromStorageHub();
TrashContent result = new TrashContent();
switch (operation) {
case EMPTY_TRASH:
workspace.emptyTrash();
// case RESTORE_ALL:
// //listErrors = trash.restoreAll();
// //workspace.re
// break;
case REFRESH:
default:
result.setTrashContent(getTrashContent()); //THIS WORKING WITH STORAGE-HUB
return result;
}
}catch (Exception e) {
workspaceLogger.error("Error in server TrashContent", e);
String error = ConstantsExplorer.SERVER_ERROR +" update Trash content. "+e.getMessage();
throw new Exception(error);
}
}
/* (non-Javadoc)
* @see org.gcube.portlets.user.workspace.client.rpc.GWTWorkspaceService#executeOperationOnTrash(java.util.List, org.gcube.portlets.user.workspace.shared.WorkspaceTrashOperation)
*/
/**
* Execute operation on trash.
*
* @param listTrashItemIds the list trash item ids
* @param operation the operation
* @return the trash operation content
* @throws Exception the exception
*/
@Override
public TrashOperationContent executeOperationOnTrash(List<String> listTrashItemIds, WorkspaceTrashOperation operation) throws Exception{
workspaceLogger.info("Get TrashContent, operation: "+operation);
if(listTrashItemIds==null || listTrashItemIds.size()==0)
throw new Exception("List of Trash item ids is null or empty");
List<FileTrashedModel> listContentError = new ArrayList<FileTrashedModel>();
try {
org.gcube.common.storagehubwrapper.server.tohl.Workspace workspace = getWorkspaceFromStorageHub();
// WorkspaceTrashFolder trash = workspace.getTrash();
TrashOperationContent result = new TrashOperationContent();
result.setOperation(operation);
List<String> listUpdatedTrashIds = new ArrayList<String>();
switch (operation) {
case DELETE_PERMANENTLY:{
boolean deleted = false;
for (String trashItemId : listTrashItemIds) {
try{
org.gcube.common.storagehubwrapper.shared.tohl.WorkspaceItem trashedItem = workspace.getItem(trashItemId);
if(trashedItem!=null && trashedItem.isTrashed()){
workspace.deleteItem(trashedItem.getId());
listUpdatedTrashIds.add(trashItemId);
deleted = true;
}
}catch (Exception e) {
workspaceLogger.warn("Error on DELETE_PERMANENTLY the item : "+trashItemId, e);
FileTrashedModel fakeFile = new FileTrashedModel();
fakeFile.setIdentifier(trashItemId);
listContentError.add(fakeFile);
}
}
String label = listTrashItemIds.size()>1?"items":"item";
if(!deleted)
throw new Exception("Sorry, an error occurred on deleting permanently the trash "+label+", try again");
break;
}
case RESTORE:{
boolean restored = false;
for (String trashItemId : listTrashItemIds) {
try{
org.gcube.common.storagehubwrapper.shared.tohl.WorkspaceItem trashedItem = workspace.getItem(trashItemId);
if(trashedItem!=null && trashedItem.isTrashed()){
workspace.restoreThrashItem(trashedItem.getId());
listUpdatedTrashIds.add(trashItemId);
restored = true;
}
}catch (Exception e) {
workspaceLogger.warn("Error on RESTORE the item : "+trashItemId, e);
FileTrashedModel fakeFile = new FileTrashedModel();
fakeFile.setIdentifier(trashItemId);
listContentError.add(fakeFile);
}
}
String label = listTrashItemIds.size()>1?"items":"item";
if(!restored)
throw new Exception("Sorry, an error occurred on restoring the trash "+label+", try again");
break;
}
default:
break;
}
if(!listContentError.isEmpty()){
result.setListErrors(listContentError);
}
result.setListTrashIds(listUpdatedTrashIds);
return result;
}catch (Exception e) {
workspaceLogger.error("Error in server executeOperationOnTrash", e);
String error = ConstantsExplorer.SERVER_ERROR +" updating the trash content. "+e.getMessage();
throw new Exception(error);
}
}
/* (non-Javadoc)
* @see org.gcube.portlets.user.workspace.client.rpc.GWTWorkspaceService#deleteListItemsForIds(java.util.List)
*/
/**
* Delete list items for ids.
*
* @param ids the ids
* @return the list
* @throws Exception the exception
*/
@Override
public List<GarbageItem> deleteListItemsForIds(List<String> ids) throws Exception {
try {
if(ids == null)
throw new Exception("List identifiers is null");
//Workspace workspace = getWorkspace();
org.gcube.common.storagehubwrapper.server.tohl.Workspace workspace = getWorkspaceFromStorageHub();
workspaceLogger.trace("removeItem item for list size: "+ids.size());
String[] items = new String[ids.size()];
items = ids.toArray(items);
Map<String, GarbageItem> garbage = new HashMap<String, GarbageItem>(items.length);
//SAVE DATE FOR NOTIFICATIONS
for (String itemId : ids) {
//NOTIFICATION
org.gcube.common.storagehubwrapper.shared.tohl.WorkspaceItem wsItem = workspace.getItem(itemId);
checkItemLocked(itemId);
//SAVING ATTRIBUTE FOR NOTIFICATION
boolean sourceItemIsShared = wsItem.isShared();
String itemName = wsItem.getName();
String sourceFolderSharedId = null;
try{
if(sourceItemIsShared){
org.gcube.common.storagehubwrapper.shared.tohl.WorkspaceItem rootSharedFolder = workspace.getRootSharedFolder(itemId);
sourceFolderSharedId = rootSharedFolder.getId();
}
//REMOVE ITEM
garbage.put(itemId, new GarbageItem(sourceItemIsShared, itemName, itemId, sourceFolderSharedId));
}catch(Exception e){
workspaceLogger.warn("Impossible to send notifiaction for item with id: "+itemId);
}
//workspace.removeItem(itemId);
////IF SOURCE SHARED FOLDER IS NOT NULL
//if(sourceFolderSharedId!=null)
//NotificationsUtil.checkSendNotifyRemoveItemToShare(this.getThreadLocalRequest().getSession(), sourceItemIsShared, itemName, itemId, sourceFolderSharedId);
}
//ITEM ID - ERROR
Map<String, String> backendError = workspace.removeItems(items);
//GARBAGE ITEM ERROR
List<GarbageItem> frontEndError = new ArrayList<GarbageItem>(backendError.size());
//REMOVING IDS WHICH HAVE GENERATED AN ERROR
for (String idError : backendError.keySet()) {
GarbageItem gbi = garbage.get(idError);
if(gbi!=null){
frontEndError.add(gbi);
garbage.remove(idError);
}
}
for (String idItem : garbage.keySet()) {
GarbageItem item = garbage.get(idItem);
workspaceLogger.trace("Check notification for "+item);
//IF SOURCE SHARED FOLDER IS NOT NULL
if(item.getSourceFolderSharedId()!=null)
NotificationsUtil.checkSendNotifyRemoveItemToShare(this.getThreadLocalRequest(), item.isSourceItemIsShared(), item.getOldItemName(), item.getOldItemName(), item.getSourceFolderSharedId());
}
return frontEndError;
}catch (WorkspaceFolderLocked e1){
throw new Exception(e1.getMessage());
} catch (InsufficientPrivilegesException e) {
workspaceLogger.error("Error in server Item remove", e);
String error = "An error occurred on deleting item. "+e.getMessage();
throw new Exception(error);
}catch (ItemNotFoundException e) {
String error = "An error occurred on deleting item. "+ConstantsExplorer.ERROR_ITEM_DOES_NOT_EXIST;
workspaceLogger.error(error, e);
throw new Exception(error);
} catch (Exception e) {
workspaceLogger.error("Error in server Item remove", e);
String error = ConstantsExplorer.SERVER_ERROR +" deleting item. "+e.getMessage();
throw new Exception(error);
}
}
/* (non-Javadoc)
* @see org.gcube.portlets.user.workspace.client.rpc.GWTWorkspaceService#createFolder(java.lang.String, java.lang.String, org.gcube.portlets.user.workspace.client.model.FileModel)
*/
/**
* Creates the folder.
*
* @param nameFolder the name folder
* @param description the description
* @param parent the parent
* @return the folder model
* @throws Exception the exception
*/
@Override
public FolderModel createFolder(String nameFolder, String description, FileModel parent) throws Exception {
workspaceLogger.debug("Create folder: "+nameFolder +" parent is null? "+parent==null);
if(isSessionExpired())
throw new SessionExpiredException();
try {
if(nameFolder == null)
throw new Exception("Folder name is null");
checkItemLocked(parent.getIdentifier());
org.gcube.common.storagehubwrapper.server.tohl.Workspace workspace = getWorkspaceFromStorageHub();
//Creating the folder
org.gcube.common.storagehubwrapper.shared.tohl.WorkspaceFolder wsFolder = workspace.createFolder(nameFolder, description, parent.getIdentifier());
//Getting the parent folder
org.gcube.common.storagehubwrapper.shared.tohl.WorkspaceFolder parentFolderDestionation = (org.gcube.common.storagehubwrapper.shared.tohl.WorkspaceFolder) workspace.getItem(parent.getIdentifier());
NotificationsProducerToStorageHub np = getNotificationProducerToStorageHub();
NotificationStorageHubUtil.checkNotifyAddItemToShare(wsFolder, null, parentFolderDestionation, workspace, np);
StorageHubToWorkpaceConverter converter = getStorageHubToWorkpaceConverter();
return (FolderModel) converter.toTreeFileModel(wsFolder, parent, parentFolderDestionation.isShared());
}catch (WorkspaceFolderLocked e1){
throw new Exception(e1.getMessage());
} catch(InsufficientPrivilegesException e){
String error = "Insufficient Privileges to create the folder";
workspaceLogger.error(error, e);
throw new Exception(error);
} catch (ItemAlreadyExistException e) {
String error = "An error occurred on creating folder, " +e.getMessage();
workspaceLogger.error(error, e);
throw new Exception(error);
} catch (Exception e) {
String error = "Error on creating folder. Either the folder already exist or you do not have the permission to create it";
workspaceLogger.error(error, e);
throw new Exception(error);
}
}
/* (non-Javadoc)
* @see org.gcube.portlets.user.workspace.client.rpc.GWTWorkspaceService#moveItems(java.util.List, java.lang.String)
*/
/**
* Move items.
*
* @param ids the ids
* @param destinationId the destination id
* @return the boolean
* @throws Exception the exception
*/
@Override
public WorkspaceOperationResult moveItems(List<String> ids, String destinationId) throws Exception {
workspaceLogger.trace("moveItems "+ids.size()+ ", destination: "+destinationId);
if(isSessionExpired())
throw new SessionExpiredException();
//boolean error = false;
WorkspaceOperationResult results = new WorkspaceOperationResult();
results.setOperationName("Move Items");
try {
checkItemLocked(destinationId);
org.gcube.common.storagehubwrapper.server.tohl.Workspace workspace = getWorkspaceFromStorageHub();
org.gcube.common.storagehubwrapper.shared.tohl.WorkspaceItem folderDestinationItem = workspace.getItem(destinationId); //retrieve folder destination
org.gcube.common.storagehubwrapper.shared.tohl.WorkspaceFolder folderDestination = null;
if(folderDestinationItem!= null && folderDestinationItem.isFolder()){
folderDestination = (org.gcube.common.storagehubwrapper.shared.tohl.WorkspaceFolder) folderDestinationItem;
}else
throw new Exception("Wrong destination. Either It is not a folder or not exist");
for (String itemId : ids) {
org.gcube.common.storagehubwrapper.shared.tohl.WorkspaceItem sourceItem = null;
try{
if(itemId == null)
throw new Exception(IDENTIFIER_IS_NULL);
workspaceLogger.trace("Moving item id: "+itemId+" in the destination: "+destinationId);
sourceItem = workspace.getItem(itemId); //GET SOURCE ITEM BEFORE OF MOVE
checkItemLocked(itemId);
String sourceRootSharedFolderId = null;
boolean sourceItemIsShared = sourceItem.isShared();
//JUST ONCE TO REDUCE THE NUMBER OF CALLS TO STORAGEHUB
if(sourceItemIsShared && sourceRootSharedFolderId==null){
org.gcube.common.storagehubwrapper.shared.tohl.WorkspaceItem sourceShared = workspace.getRootSharedFolder(itemId);
sourceRootSharedFolderId = sourceShared.getId(); //GET SHARED ID BEFORE OF MOVE
}
workspaceLogger.debug("Invoking move on source item id: "+itemId+" with name: "+sourceItem.getName() + " shared: "+sourceItemIsShared+ " destination: "+destinationId);
org.gcube.common.storagehubwrapper.shared.tohl.WorkspaceItem movedItem = workspace.moveItem(itemId, destinationId); //move item
workspaceLogger.debug("Moved item: "+movedItem);
try{
//NOTIFY?
NotificationsProducerToStorageHub np = getNotificationProducerToStorageHub();
NotificationStorageHubUtil.checkNotifyAddItemToShare(movedItem, sourceRootSharedFolderId, folderDestination, workspace, np);
NotificationStorageHubUtil.checkNotifyMoveItemFromShare(sourceItemIsShared, sourceItem, sourceRootSharedFolderId, folderDestination, workspace, np);
}catch (Exception e) {
workspaceLogger.error("An error occurred in checkNotify ", e);
}
}catch(Exception e){
String error = results.getError();
if(error==null)
error = "Error on moving:";
error+=" ";
error+= sourceItem!=null?sourceItem.getName():"item is null";
error+=",";
results.setError(error);
}
}
//removing last ','
if(results.getError()!=null)
results.setError(results.getError().substring(0, results.getError().length()-1));
workspaceLogger.info("Moved error: "+results.getError());
if(results.getError()!=null)
results.setError(results.getError()+". Operation not allowed. Moving to wrong path, either it is a shared folder or you have not the permission to move the item");
return results;
}catch (WorkspaceFolderLocked e1){
throw new Exception(e1.getMessage());
}catch (InsufficientPrivilegesException e) {
workspaceLogger.error("Error in server Item move", e);
String error1 = "An error occurred on moving item. "+e.getMessage();
throw new Exception(error1);
} catch (Exception e) {
workspaceLogger.error("Item move error.", e);
String error2 = ConstantsExplorer.SERVER_ERROR + " moving item/s. "+e.getMessage();
throw new Exception(error2);
}
}
/* (non-Javadoc)
* @see org.gcube.portlets.user.workspace.client.rpc.GWTWorkspaceService#renameItem(java.lang.String, java.lang.String, java.lang.String)
*/
/**
* Rename item.
*
* @param itemId the item id
* @param newName the new name
* @param previousName the previous name
* @return the boolean
* @throws Exception the exception
*/
@Override
public Boolean renameItem(String itemId, String newName, String previousName) throws Exception {
if(isSessionExpired())
throw new SessionExpiredException();
try {
if(itemId == null)
throw new Exception(IDENTIFIER_IS_NULL);
checkItemLocked(itemId);
org.gcube.common.storagehubwrapper.server.tohl.Workspace workspace = getWorkspaceFromStorageHub();
workspaceLogger.debug("Renaming item with id: "+itemId+" from old name "+ previousName +", to new name: "+newName);
org.gcube.common.storagehubwrapper.shared.tohl.WorkspaceItem wsItem = workspace.renameItem(itemId, newName);
workspaceLogger.debug("Item renamed is: "+wsItem);
//SEND NOTIFY?
if(wsItem.isShared()){
try{
List<InfoContactModel> listSharedContact = new ArrayList<InfoContactModel>();
NotificationsProducerToStorageHub np = getNotificationProducerToStorageHub();
org.gcube.common.storagehubwrapper.shared.tohl.WorkspaceItem sourceShared = workspace.getRootSharedFolder(wsItem.getId());
//NotificationsManager nManager = WsUtil.getNotificationManager(this.getThreadLocalRequest());
listSharedContact = NotificationStorageHubUtil.getListUserSharedByFolderSharedId(sourceShared,workspace);
//IS A SHARED FOLDER
if(NotificationStorageHubUtil.isASharedFolder(wsItem)){
np.notifyFolderRenamed(listSharedContact, wsItem, previousName, newName, sourceShared.getId());
// NotificationStorageHubUtil.checkNotifyAddItemToShare(movedItem, sourceRootSharedFolderId, folderDestination, workspace, np);
// NotificationStorageHubUtil.checkNotifyMoveItemFromShare(sourceItemIsShared, sourceItem, sourceRootSharedFolderId, folderDestination, workspace, np);
}else{
//IS AN SHARED ITEM
if(sourceShared instanceof org.gcube.common.storagehubwrapper.shared.tohl.WorkspaceSharedFolder)
np.notifyItemRenamed(listSharedContact, previousName, wsItem, (org.gcube.common.storagehubwrapper.shared.tohl.WorkspaceSharedFolder) sourceShared, workspace);
// //TWO CASES: EITHER ROOT FOLDER AS WorkspaceSharedFolder OR DOESN'T.
// WorkspaceItem sharedFolder = workspace.getItem(wsItem.getIdSharedFolder());
// if(sharedFolder instanceof WorkspaceSharedFolder)
// notification.notifyItemRenamed(listSharedContact, previousName, wsItem, (WorkspaceSharedFolder) sharedFolder);
// else
// workspaceLogger.trace("Notifies for rename item itemId: "+itemId+" doesn't sent because: "+sharedFolder+" is not an instance of WorkspaceSharedFolder");
}
}catch (Exception e) {
workspaceLogger.error("An error occurred in checkNotify ", e);
return true;
}
}
return true;
}catch (WorkspaceFolderLocked e1){
throw new Exception(e1.getMessage());
} catch (InsufficientPrivilegesException e) {
String error = "Insufficient Privileges to rename the item";
workspaceLogger.error(error, e);
throw new Exception(error);
} catch (ItemAlreadyExistException e) {
String error = "An error occurred on renaming item, " +e.getMessage();
workspaceLogger.error(error, e);
throw new Exception(error);
}catch (ItemNotFoundException e2) {
String error = "An error occurred on renaming item. "+ConstantsExplorer.ERROR_ITEM_DOES_NOT_EXIST;
workspaceLogger.error(error, e2);
throw new Exception(error);
} catch (Exception e) {
String error = ConstantsExplorer.SERVER_ERROR + " renaming item. "+ConstantsExplorer.TRY_AGAIN;
workspaceLogger.error(error, e);
throw new Exception(error);
}
}
/* (non-Javadoc)
* @see org.gcube.portlets.user.workspace.client.rpc.GWTWorkspaceService#copyItems(java.util.List, java.lang.String)
*/
/**
* Copy items.
*
* @param idsItem the ids item
* @param destinationFolderId the destination folder id
* @return the workspace operation result
* @throws Exception the exception
*/
@Override
public WorkspaceOperationResult copyItems(List<String> idsItem, String destinationFolderId) throws Exception {
workspaceLogger.debug("Copying ids: "+idsItem+ " in the destionation folder: "+destinationFolderId);
if(isSessionExpired())
throw new SessionExpiredException();
//boolean error = false;
WorkspaceOperationResult results = new WorkspaceOperationResult();
results.setOperationName("Copy Items");
try {
checkItemLocked(destinationFolderId);
org.gcube.common.storagehubwrapper.server.tohl.Workspace workspace = getWorkspaceFromStorageHub();
org.gcube.common.storagehubwrapper.shared.tohl.WorkspaceItem sourceItem = null;
org.gcube.common.storagehubwrapper.shared.tohl.WorkspaceItem folderDestinationItem = workspace.getItem(destinationFolderId);
NotificationsProducerToStorageHub np = getNotificationProducerToStorageHub();
String sourceRootSharedId = null;
for (String itemId : idsItem) {
try{
sourceItem = workspace.getItem(itemId); //GET SOURCE ITEM BEFORE COPY
//JUST ONCE. THE ROOT SHARED IS THE SAME FOR ALL ITEMS
if(sourceItem.isShared() && sourceRootSharedId!=null){
org.gcube.common.storagehubwrapper.shared.tohl.WorkspaceItem sourceShared = workspace.getRootSharedFolder(sourceItem.getId());
sourceRootSharedId = sourceShared.getId();
}
workspaceLogger.debug("Copying item with id: " + sourceItem.getId());
org.gcube.common.storagehubwrapper.shared.tohl.WorkspaceItem copiedFile = workspace.copyFile(sourceItem.getId(), destinationFolderId); //copy item
workspaceLogger.debug("Copied item is: " + copiedFile);
//final WorkspaceItem workspaceItem, final String sourceRootSharedFolderId, final WorkspaceFolder parentFolderItem, org.gcube.common.storagehubwrapper.server.tohl.Workspace workspace, NotificationsProducerToStorageHub np) {
NotificationStorageHubUtil.checkNotifyAddItemToShare(copiedFile, sourceRootSharedId, (org.gcube.common.storagehubwrapper.shared.tohl.WorkspaceFolder) folderDestinationItem, workspace, np);
}catch(Exception e){
String error = results.getError();
if(error==null)
error = "Error on copying:";
error+=" ";
error+= sourceItem!=null?sourceItem.getName():"item is null";
error+=",";
results.setError(error);
}
}
//removing last ','
if(results.getError()!=null)
results.setError(results.getError().substring(0, results.getError().length()-1));
workspaceLogger.info("Copied error: "+results.getError());
if(results.getError()!=null)
results.setError(results.getError()+". Operation not allowed");
return results;
}catch (WorkspaceFolderLocked e1){
throw new Exception(e1.getMessage());
}catch (InsufficientPrivilegesException e) {
String error = "An error occurred on copying item, " +e.getMessage() + ". "+ConstantsExplorer.TRY_AGAIN;
throw new Exception(error);
}catch (ItemAlreadyExistException e) {
String error = "An error occurred on copying item, " +e.getMessage();
throw new Exception(error);
} catch (Exception e) {
workspaceLogger.error("Error in server copyItem by id", e);
String error = ConstantsExplorer.SERVER_ERROR +" copying item " + ConstantsExplorer.TRY_AGAIN;
throw new Exception(error);
}
}
/* (non-Javadoc)
* @see org.gcube.portlets.user.workspace.client.rpc.GWTWorkspaceService#getPublicLinkForFileItemId(java.lang.String, boolean)
*/
/**
* Gets the public link for file item id.
*
* @param itemId the item id
* @param shortenUrl the shorten url
* @return the public link for file item id
* @throws Exception the exception
*/
@Override
public PublicLink getPublicLinkForFileItemId(String itemId, boolean shortenUrl) throws Exception{
workspaceLogger.trace("get Public Link For ItemId: "+ itemId);
try{
if(itemId==null)
throw new Exception("Sorry, The Public Link for empty item is unavailable (itemId is null)");
org.gcube.common.storagehubwrapper.server.tohl.Workspace workspace = getWorkspaceFromStorageHub();
org.gcube.common.storagehubwrapper.shared.tohl.WorkspaceItem wsItem = workspace.getItem(itemId);
if(wsItem==null)
throw new Exception("Sorry, The Public Link for empty item is unavailable");
if(wsItem.getType().equals(org.gcube.common.storagehubwrapper.shared.tohl.WorkspaceItemType.FILE_ITEM)){
URL publicLink = workspace.getPublicLinkForFile(itemId);
if(publicLink==null || publicLink.toString()==null)
throw new Exception("Sorry, public link on "+wsItem.getName() +" is not available");
String shortURL = null;
String httpURL = publicLink.toString();
if(shortenUrl){
shortURL = getShortUrl(httpURL);
shortURL = shortURL!=null?shortURL:"not available";
}
return new PublicLink(httpURL, shortURL);
}else{
workspaceLogger.warn("ItemId: "+ itemId +" is not a file, sent exception Public Link unavailable");
throw new Exception("Sorry, The Public Link for selected item is unavailable");
}
}catch (Exception e) {
workspaceLogger.error("Error getPublicLinkForFileItemId for item: "+itemId, e);
throw new Exception(e.getMessage());
}
}
/**
* Gets the version history.
*
* @param fileIdentifier the file identifier
* @return the version history
* @throws Exception the exception
*/
@Override
public List<FileVersionModel> getVersionHistory(String fileIdentifier) throws Exception{
workspaceLogger.info("Calling get Version History of: "+fileIdentifier);
if(fileIdentifier==null)
throw new Exception("File identifier is null");
try {
org.gcube.common.storagehubwrapper.server.tohl.Workspace workspace = getWorkspaceFromStorageHub();
org.gcube.common.storagehubwrapper.shared.tohl.WorkspaceItem wsItem = workspace.getItem(fileIdentifier);
if(wsItem.getType().equals(org.gcube.common.storagehubwrapper.shared.tohl.WorkspaceItemType.FILE_ITEM)){
List<WorkspaceFileVersion> listOfVersions = workspace.getListVersionsForFile(fileIdentifier);
StorageHubToWorkpaceConverter converter = getStorageHubToWorkpaceConverter();
workspaceLogger.info("Version list for "+fileIdentifier+" has "+listOfVersions.size()+" item/s");
return converter.toVersionHistory(listOfVersions);
}else
throw new FileNotVersionedException("Selected file is not versioned");
}catch (Exception e) {
if (e instanceof FileNotVersionedException)
throw new Exception(e.getMessage());
String error = "An error occurred when getting version history of: "+fileIdentifier+ ", try again";
workspaceLogger.error(error);
throw new Exception(error);
}
}
}