resource-registry-handlers/src/main/java/org/gcube/smartgears/handler/resourceregistry/resourcemanager/EServiceManager.java

285 lines
12 KiB
Java
Raw Normal View History

2020-10-20 16:25:30 +02:00
package org.gcube.smartgears.handler.resourceregistry.resourcemanager;
import java.net.URI;
import java.util.Arrays;
import java.util.List;
import java.util.Set;
2020-10-20 16:25:30 +02:00
import java.util.UUID;
import javax.servlet.ServletRegistration;
import org.gcube.informationsystem.model.impl.properties.HeaderImpl;
import org.gcube.informationsystem.model.impl.properties.PropagationConstraintImpl;
import org.gcube.informationsystem.model.reference.properties.Header;
import org.gcube.informationsystem.model.reference.properties.PropagationConstraint;
import org.gcube.informationsystem.model.reference.properties.PropagationConstraint.AddConstraint;
import org.gcube.informationsystem.model.reference.properties.PropagationConstraint.RemoveConstraint;
import org.gcube.informationsystem.resourceregistry.api.contexts.ContextCache;
2020-10-20 16:25:30 +02:00
import org.gcube.informationsystem.resourceregistry.api.exceptions.AvailableInAnotherContextException;
import org.gcube.informationsystem.resourceregistry.api.exceptions.NotFoundException;
import org.gcube.informationsystem.resourceregistry.api.exceptions.ResourceRegistryException;
import org.gcube.informationsystem.resourceregistry.api.exceptions.context.ContextNotFoundException;
import org.gcube.informationsystem.resourceregistry.api.exceptions.entity.resource.ResourceNotFoundException;
2020-10-22 12:10:37 +02:00
import org.gcube.informationsystem.resourceregistry.client.ResourceRegistryClient;
import org.gcube.informationsystem.resourceregistry.client.ResourceRegistryClientFactory;
2020-10-20 16:25:30 +02:00
import org.gcube.informationsystem.resourceregistry.publisher.ResourceRegistryPublisher;
import org.gcube.informationsystem.resourceregistry.publisher.ResourceRegistryPublisherFactory;
import org.gcube.resourcemanagement.model.impl.entities.facets.AccessPointFacetImpl;
import org.gcube.resourcemanagement.model.impl.entities.facets.SoftwareFacetImpl;
2020-12-21 23:10:14 +01:00
import org.gcube.resourcemanagement.model.impl.entities.facets.StateFacetImpl;
2020-10-20 16:25:30 +02:00
import org.gcube.resourcemanagement.model.impl.entities.resources.EServiceImpl;
import org.gcube.resourcemanagement.model.impl.properties.ValueSchemaImpl;
import org.gcube.resourcemanagement.model.impl.relations.consistsof.IsIdentifiedByImpl;
import org.gcube.resourcemanagement.model.impl.relations.isrelatedto.ActivatesImpl;
import org.gcube.resourcemanagement.model.reference.entities.facets.AccessPointFacet;
import org.gcube.resourcemanagement.model.reference.entities.facets.SoftwareFacet;
2020-12-21 23:10:14 +01:00
import org.gcube.resourcemanagement.model.reference.entities.facets.StateFacet;
2020-10-20 16:25:30 +02:00
import org.gcube.resourcemanagement.model.reference.entities.resources.EService;
import org.gcube.resourcemanagement.model.reference.entities.resources.HostingNode;
import org.gcube.resourcemanagement.model.reference.properties.ValueSchema;
import org.gcube.resourcemanagement.model.reference.relations.consistsof.IsIdentifiedBy;
import org.gcube.resourcemanagement.model.reference.relations.isrelatedto.Activates;
import org.gcube.smartgears.configuration.application.ApplicationConfiguration;
import org.gcube.smartgears.configuration.container.ContainerConfiguration;
import org.gcube.smartgears.context.application.ApplicationContext;
import org.gcube.smartgears.handler.resourceregistry.Constants;
import org.gcube.smartgears.handler.resourceregistry.ContextUtility;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* @author lucafrosini
*
*/
/**
* @author lucafrosini
*
*/
2020-10-20 16:25:30 +02:00
public class EServiceManager {
private static Logger logger = LoggerFactory.getLogger(HostingNodeManager.class);
2020-10-22 12:10:37 +02:00
2020-10-20 16:25:30 +02:00
private static List<String> servletExcludes = Arrays.asList("default", "jsp");
2020-10-22 12:10:37 +02:00
2020-10-20 16:25:30 +02:00
private ResourceRegistryPublisher resourceRegistryPublisher;
2020-10-22 12:10:37 +02:00
// private Activates<HostingNode, EService> activates;
2020-10-20 16:25:30 +02:00
private EService eService;
2020-12-21 23:10:14 +01:00
private StateFacet stateFacet;
2020-10-22 12:10:37 +02:00
2020-10-23 10:34:38 +02:00
private ApplicationContext applicationContext;
public EServiceManager(ApplicationContext applicationContext) {
this.applicationContext = applicationContext;
2020-10-20 16:25:30 +02:00
this.resourceRegistryPublisher = ResourceRegistryPublisherFactory.create();
}
2020-10-22 12:10:37 +02:00
2020-10-23 10:34:38 +02:00
public EService getEService() {
2020-10-20 16:25:30 +02:00
return eService;
}
2020-10-22 12:10:37 +02:00
2020-10-23 10:34:38 +02:00
public void addToContext() throws ResourceNotFoundException, ContextNotFoundException, ResourceRegistryException {
2020-10-22 12:10:37 +02:00
HostingNode hostingNode = applicationContext.container().properties()
.lookup(Constants.HOSTING_NODE_MANAGER_PROPERTY).value(HostingNodeManager.class).getHostingNode();
try {
resourceRegistryPublisher.addResourceToCurrentContext(hostingNode);
logger.info("{} successfully added to current context ({})", eService, ContextUtility.getCurrentContextName());
} catch (Exception e) {
logger.error("Unable to add {} to current context ({})", eService, ContextUtility.getCurrentContextName(), e);
2020-10-20 16:25:30 +02:00
}
}
2020-10-22 12:10:37 +02:00
public void removeFromContext()
throws ResourceNotFoundException, ContextNotFoundException, ResourceRegistryException {
try {
resourceRegistryPublisher.removeResourceFromCurrentContext(eService);
2020-10-20 16:25:30 +02:00
logger.info("{} successfully removed from current context ({})", eService,
ContextUtility.getCurrentContextName());
} catch (Exception e) {
2020-10-20 16:25:30 +02:00
logger.error("Unable to remove {} from current context ({})", eService,
ContextUtility.getCurrentContextName(), e);
2020-10-20 16:25:30 +02:00
}
}
public void removeFromContext(UUID contextUUID)
throws ResourceNotFoundException, ContextNotFoundException, ResourceRegistryException {
String contextFullName = ContextCache.getInstance().getContextFullNameByUUID(contextUUID);
try {
resourceRegistryPublisher.removeResourceFromContext(eService, contextUUID);
logger.info("{} successfully removed from context ({})", eService, contextFullName);
} catch (Exception e) {
logger.error("Unable to remove {} from current context ({})", eService, contextFullName, e);
}
}
2020-10-20 16:25:30 +02:00
2020-10-23 10:34:38 +02:00
private String getBaseAddress() {
ApplicationConfiguration configuration = applicationContext.configuration();
ContainerConfiguration container = applicationContext.container().configuration();
2020-10-20 16:25:30 +02:00
String baseAddress;
if (configuration.proxied()) {
String protocol = configuration.proxyAddress().protocol();
String port = configuration.proxyAddress().port() != null ? ":" + configuration.proxyAddress().port() : "";
baseAddress = String.format("%s://%s%s%s", protocol, configuration.proxyAddress().hostname(), port,
2020-10-23 10:34:38 +02:00
applicationContext.application().getContextPath());
2020-10-20 16:25:30 +02:00
} else {
String protocol = container.protocol();
int port = container.port();
baseAddress = String.format("%s://%s:%d%s", protocol, container.hostname(), port,
2020-10-23 10:34:38 +02:00
applicationContext.application().getContextPath());
2020-10-20 16:25:30 +02:00
}
return baseAddress;
}
2020-10-23 10:34:38 +02:00
public String getState() {
2020-10-20 16:25:30 +02:00
return applicationContext.lifecycle().state().remoteForm().toLowerCase();
}
2020-10-22 12:10:37 +02:00
2020-10-23 10:34:38 +02:00
private EService instantiateEService() {
2020-10-20 16:25:30 +02:00
logger.info("Creating {} for {}", EService.NAME, applicationContext.name());
ApplicationConfiguration applicationConfiguration = applicationContext.configuration();
String id = applicationContext.id();
2020-10-22 12:10:37 +02:00
2020-10-20 16:25:30 +02:00
UUID uuid = UUID.fromString(id);
EService eService = new EServiceImpl();
Header header = new HeaderImpl(uuid);
eService.setHeader(header);
SoftwareFacet softwareFacet = new SoftwareFacetImpl();
softwareFacet.setDescription(applicationConfiguration.description());
softwareFacet.setGroup(applicationConfiguration.serviceClass());
softwareFacet.setName(applicationConfiguration.name());
softwareFacet.setVersion(applicationConfiguration.version());
IsIdentifiedBy<EService, SoftwareFacet> isIdentifiedBy = new IsIdentifiedByImpl<EService, SoftwareFacet>(
eService, softwareFacet);
eService.addFacet(isIdentifiedBy);
2020-10-23 10:34:38 +02:00
String baseAddress = getBaseAddress();
2020-10-20 16:25:30 +02:00
for (ServletRegistration servlet : applicationContext.application().getServletRegistrations().values()) {
if (!servletExcludes.contains(servlet.getName())) {
for (String mapping : servlet.getMappings()) {
String address = baseAddress
+ (mapping.endsWith("*") ? mapping.substring(0, mapping.length() - 2) : mapping);
AccessPointFacet accessPointFacet = new AccessPointFacetImpl();
accessPointFacet.setEntryName(servlet.getName());
accessPointFacet.setEndpoint(URI.create(address));
ValueSchema valueSchema = new ValueSchemaImpl();
valueSchema.setValue("gcube-token");
accessPointFacet.setAuthorization(valueSchema);
eService.addFacet(accessPointFacet);
}
}
}
2020-12-21 23:10:14 +01:00
stateFacet = new StateFacetImpl();
2020-10-23 10:34:38 +02:00
String state = getState();
2020-12-21 23:10:14 +01:00
stateFacet.setValue(state);
eService.addFacet(stateFacet);
2020-10-20 16:25:30 +02:00
return eService;
}
2020-10-23 10:34:38 +02:00
public EService createEService() throws ResourceRegistryException {
ResourceRegistryClient resourceRegistryClient = ResourceRegistryClientFactory.create();
UUID eServiceUUID = UUID.fromString(applicationContext.id());
2020-10-20 16:25:30 +02:00
try {
ResourceRegistryClientFactory.includeContextsInInstanceHeader(true);
eService = resourceRegistryClient.getInstance(EService.class, eServiceUUID);
2020-12-21 23:10:14 +01:00
stateFacet = eService.getFacets(StateFacet.class).get(0);
if (stateFacet == null) {
2020-12-21 23:10:14 +01:00
stateFacet = new StateFacetImpl();
2020-10-26 14:25:54 +01:00
String state = getState();
2020-12-21 23:10:14 +01:00
stateFacet.setValue(state);
eService.addFacet(stateFacet);
2020-10-26 14:25:54 +01:00
resourceRegistryPublisher.update(eService);
} else {
2020-10-26 14:25:54 +01:00
updateServiceStateFacet();
}
} catch (NotFoundException e) {
eService = instantiateEService();
createActivatesRelation(eService);
2020-12-21 23:10:14 +01:00
stateFacet = eService.getFacets(StateFacet.class).get(0);
} catch (AvailableInAnotherContextException e) {
addToContext();
2020-10-22 12:10:37 +02:00
try {
eService = resourceRegistryClient.getInstance(EService.class, eServiceUUID);
} catch (AvailableInAnotherContextException ex) {
resourceRegistryPublisher.addResourceToCurrentContext(eService);
// addToContext() is executed on HostingNode.
// If the EService is still not available we need to create activates
// relation because does not exists otherwise the EService should
// already be in the context due to propagation constraint.
createActivatesRelation(eService);
2020-10-22 12:10:37 +02:00
}
2020-12-21 23:10:14 +01:00
stateFacet = eService.getFacets(StateFacet.class).get(0);
if (stateFacet == null) {
2020-12-21 23:10:14 +01:00
stateFacet = new StateFacetImpl();
2020-10-26 14:25:54 +01:00
String state = getState();
2020-12-21 23:10:14 +01:00
stateFacet.setValue(state);
eService.addFacet(stateFacet);
2020-10-26 14:25:54 +01:00
resourceRegistryPublisher.update(eService);
} else {
2020-10-26 14:25:54 +01:00
updateServiceStateFacet();
}
} catch (ResourceRegistryException e) {
throw e;
2020-10-20 16:25:30 +02:00
}
return eService;
}
2020-10-23 10:34:38 +02:00
public void updateServiceStateFacet() throws ResourceRegistryException {
String state = getState();
2020-12-21 23:10:14 +01:00
stateFacet.setValue(state);
stateFacet = resourceRegistryPublisher.updateFacet(stateFacet);
2020-10-22 12:10:37 +02:00
}
2020-10-20 16:25:30 +02:00
2020-10-23 10:34:38 +02:00
private Activates<HostingNode, EService> createActivatesRelation(EService eService)
throws ResourceRegistryException {
2020-10-20 16:25:30 +02:00
2020-10-22 12:10:37 +02:00
HostingNode hostingNode = applicationContext.container().properties()
.lookup(Constants.HOSTING_NODE_MANAGER_PROPERTY).value(HostingNodeManager.class).getHostingNode();
2020-10-20 16:25:30 +02:00
PropagationConstraint propagationConstraint = new PropagationConstraintImpl();
propagationConstraint.setRemoveConstraint(RemoveConstraint.cascade);
propagationConstraint.setAddConstraint(AddConstraint.propagate);
Activates<HostingNode, EService> activates = new ActivatesImpl<>(hostingNode, eService, propagationConstraint);
try {
activates = resourceRegistryPublisher.createIsRelatedTo(activates);
2020-11-24 21:08:24 +01:00
this.eService = activates.getTarget();
2020-10-20 16:25:30 +02:00
} catch (NotFoundException e) {
logger.error("THIS IS REALLY STRANGE. YOU SHOULD NE BE HERE. Error while creating {}.", activates, e);
throw e;
} catch (ResourceRegistryException e) {
logger.error("Error while creating {}", activates, e);
throw e;
}
hostingNode.attachResource(activates);
return activates;
}
2020-10-22 12:10:37 +02:00
2020-10-23 10:34:38 +02:00
public void removeEService() throws ResourceRegistryException {
2020-10-20 16:25:30 +02:00
try {
resourceRegistryPublisher.delete(eService);
} catch (ResourceRegistryException e) {
2020-10-23 10:34:38 +02:00
logger.error("Unable to delete {}. Going to set the state to {}", applicationContext.name(), getState());
updateServiceStateFacet();
2020-10-20 16:25:30 +02:00
}
}
public Set<UUID> getContextsUUID() throws Exception {
return resourceRegistryPublisher.getResourceContexts(eService);
}
2020-10-20 16:25:30 +02:00
}