/** * */ package org.gcube.datatransfer.resolver.services; import java.net.URI; import java.util.concurrent.ExecutionException; import javax.servlet.http.HttpServletRequest; import javax.ws.rs.GET; import javax.ws.rs.Path; import javax.ws.rs.PathParam; import javax.ws.rs.core.Context; import javax.ws.rs.core.Response; import org.gcube.datatransfer.resolver.applicationprofile.ApplicationProfileReader; import org.gcube.datatransfer.resolver.caches.LoadingVREsScopeCache; import org.gcube.datatransfer.resolver.services.error.ExceptionManager; import org.slf4j.Logger; import org.slf4j.LoggerFactory; /** * The Class DataMinerResolver. * * @author Francesco Mangiacrapa francesco.mangiacrapa@isti.cnr.it * Nov 28, 2018 */ @Path("/analytics") public class AnalyticsGetResolver { private static Logger logger = LoggerFactory.getLogger(AnalyticsGetResolver.class); private static final String ORG_GCUBE_PORTLETS_USER_DATAMINERMANAGER_SERVER_DATA_MINER_MANAGER_SERVICE_IMPL = "org.gcube.portlets.user.dataminermanager.server.DataMinerManagerServiceImpl"; private static final String APPLICATION_PROFILE = "ApplicationProfile"; private static String helpURI = "https://wiki.gcube-system.org/gcube/URI_Resolver#Analitycs_Resolver"; private static final String ANALYTICS_EXECUTOR_PORTLET_NAME = "Analytics Executor"; /** * Gets the data miner. * * @param req the req * @param vreName the vre name * @return the data miner */ @GET @Path("/get/{vreName}") public Response getDataMiner(@Context HttpServletRequest req, @PathParam("vreName") String vreName) { logger.info(this.getClass().getSimpleName()+" GET starts..."); try { if(vreName==null || vreName.isEmpty()){ logger.error("The path parameter 'vreName' not found or empty in the path"); ExceptionManager.throwBadRequestException(req, "Mandatory path parameter 'vreName' not found or empty", this.getClass(), helpURI); } try{ String fullScope = LoadingVREsScopeCache.getCache().get(vreName); ApplicationProfileReader reader = null; try{ reader = new ApplicationProfileReader(fullScope, APPLICATION_PROFILE, ORG_GCUBE_PORTLETS_USER_DATAMINERMANAGER_SERVER_DATA_MINER_MANAGER_SERVICE_IMPL, false); }catch(Exception e){ logger.error("Error on reading the "+APPLICATION_PROFILE+" with APPID: "+ORG_GCUBE_PORTLETS_USER_DATAMINERMANAGER_SERVER_DATA_MINER_MANAGER_SERVICE_IMPL, e); ExceptionManager.throwInternalErrorException(req, "Error on reading the Application Profile for the "+ANALYTICS_EXECUTOR_PORTLET_NAME+". Please contact the support", this.getClass(), helpURI); } //READ THE DATAMINER URL PORTLET FROM APPLICATION PROFRILE IN THE SCOPE fullScope String analyticsExecutorEndPoint = reader.getApplicationProfile().getUrl(); String queryString = ""; if(req.getQueryString()!=null && !req.getQueryString().isEmpty()){ queryString+=req.getQueryString(); } String analExecutorURL = String.format("%s?%s", analyticsExecutorEndPoint, queryString); logger.info("Resolving the request with the "+ANALYTICS_EXECUTOR_PORTLET_NAME+" URL: "+analExecutorURL); return Response.seeOther(new URI(analExecutorURL)).build(); }catch (ExecutionException e) { logger.error("The input VRE Name "+vreName+" not found", e); ExceptionManager.throwBadRequestException(req, "The input 'VRE Name' "+"+vreName+"+ "not found on Informatiion System. Is it a valid VRE?", this.getClass(), helpURI); } return null; }catch (Exception e) { logger.error("error resolving catalogue link",e); ExceptionManager.throwInternalErrorException(req, "Error occurred resolving catalogue link", this.getClass(), helpURI); return null; } } }