package org.gcube.informationsystem.icproxy.resources; import static org.gcube.resources.discovery.icclient.ICFactory.client; import static org.gcube.resources.discovery.icclient.ICFactory.clientFor; import static org.gcube.resources.discovery.icclient.ICFactory.queryFor; import java.util.List; import java.util.Objects; import javax.validation.constraints.NotNull; import javax.ws.rs.GET; import javax.ws.rs.Path; import javax.ws.rs.PathParam; import javax.ws.rs.Produces; import javax.ws.rs.core.MediaType; import lombok.extern.slf4j.Slf4j; import org.gcube.common.resources.gcore.*; import org.gcube.common.scope.api.ScopeProvider; import org.gcube.resources.discovery.client.api.DiscoveryClient; import org.gcube.resources.discovery.client.queries.api.SimpleQuery; import org.gcube.resources.discovery.client.queries.impl.XQuery; @Slf4j @Path("ServiceEndpoint") public class ServiceEndpointResource { @GET @Path("/{category}") @Produces(MediaType.APPLICATION_XML) public List retrieve(@NotNull @PathParam("category") String resourceCategory) { log.info("ServiceEndpoint called with category {} in context {}",resourceCategory, ScopeProvider.instance.get()); DiscoveryClient client = clientFor(ServiceEndpoint.class); List endpoints = client.submit(getQuery(resourceCategory)); log.debug("retrieved resources are "+endpoints.size()); return endpoints; } @GET @Path("/{category}/{name}") @Produces(MediaType.APPLICATION_XML) public List retrieve(@NotNull @PathParam("name") String resourceName, @NotNull @PathParam("category") String resourceCategory) { log.info("ServiceEndpoint called with category {} and name {} in scope {}",resourceCategory, resourceName, ScopeProvider.instance.get()); DiscoveryClient client = clientFor(ServiceEndpoint.class); List endpoints = client.submit(getQuery(resourceName, resourceCategory)); log.debug("retrieved resources are "+endpoints.size()); return endpoints; } @GET @Path("/{category}/{name}/{ap}") @Produces(MediaType.TEXT_XML) public String retrieve(@NotNull @PathParam("name") String resourceName, @NotNull @PathParam("category") String resourceCategory, @NotNull @PathParam("ap") String accessPoint) { log.info("ServiceEndpoint called with category {}, name {} and accessPoint {} in scope {}",resourceCategory, resourceName, accessPoint, ScopeProvider.instance.get()); // SimpleQuery query = getQuery(resourceName, resourceCategory); // query.setResult("$resource/Profile/AccessPoint/Interface/Endpoint[@EntryName='"+accessPoint+"'"); //// DiscoveryClient client = clientFor(ServiceEndpoint.class); // DiscoveryClient client = client(); //// List endpoints = client.submit(query); // log.debug("retrieved endpoint is "+endpoints); // if (Objects.nonNull(endpoints)) // return endpoints.get(0).toString(); // else // log.warn("endpoint not found with following coordinates: {} {} and accesspoint: {}", resourceCategory, resourceName,accessPoint); // return null; XQuery query=queryFor(ServiceEndpoint.class); query.addCondition(String.format("$resource/Profile/Name/text() eq '%s'",resourceName)); query.addCondition(String.format("$resource/Profile/Category/text() eq '%s'",resourceCategory)); query.setResult("$resource/Profile/AccessPoint/Interface/Endpoint[@EntryName='"+accessPoint+"']/text()"); DiscoveryClient client = client(); List accessList= client.submit(query); if (Objects.nonNull(accessList)) return accessList.get(0).toString(); else log.warn("endpoint not found with following coordinates: {} {} and accesspoint: {}", resourceCategory, resourceName,accessPoint); return null; } @GET @Path("/{category}/{name}/Result/{result:([^$\\?]+)}") @Produces(MediaType.TEXT_XML) public String retrieveCustom(@NotNull @PathParam("name") String resourceName, @NotNull @PathParam("category") String resourceCategory, @NotNull @PathParam("result") String resultXPath) { log.info("ServiceEndpoint called with category {} and name {} and result {} in scope {}" ,resourceCategory, resourceName, resultXPath, ScopeProvider.instance.get()); SimpleQuery query = getQuery(resourceName, resourceCategory); if (resultXPath.startsWith("/")) query.setResult("$resource"+resultXPath); else query.setResult("$resource/"+resultXPath); DiscoveryClient client = client(); List endpoints = client.submit(query); StringBuilder builder = new StringBuilder(""); for (String single: endpoints) builder.append("").append(single.replaceAll("\n", "")).append(""); builder.append(""); log.debug("retrieved resources are "+endpoints.size()); return builder.toString(); } private SimpleQuery getQuery(String resourceName, String resourceCategory){ SimpleQuery query = queryFor(ServiceEndpoint.class); query.addCondition(String.format("$resource/Profile/Name/text() eq '%s'",resourceName)); query.addCondition(String.format("$resource/Profile/Category/text() eq '%s'",resourceCategory)); return query; } private SimpleQuery getQuery(String resourceCategory){ SimpleQuery query = queryFor(ServiceEndpoint.class); query.addCondition(String.format("$resource/Profile/Category/text() eq '%s'",resourceCategory)); return query; } public static XQuery getSpecificXQuery(T resource) { XQuery query = null; if(resource.type().toString().equalsIgnoreCase("RuntimeResource")){ query = queryFor(ServiceEndpoint.class); }else if(resource.type().toString().equalsIgnoreCase("GenericResource")){ query = queryFor(GenericResource.class); }else if(resource.type().toString().equalsIgnoreCase("RunningInstance")){ query = queryFor(GCoreEndpoint.class); }else if(resource.type().toString().equalsIgnoreCase("GHN")){ query = queryFor(HostingNode.class); }else{ throw new RuntimeException("The following resource type is not managed: "+resource); } return query; } }