io.gravitee.management.service.impl.ResourceServiceImpl Maven / Gradle / Ivy
/**
* Copyright (C) 2015 The Gravitee team (http://gravitee.io)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.gravitee.management.service.impl;
import io.gravitee.management.model.PluginEntity;
import io.gravitee.management.model.ResourceEntity;
import io.gravitee.management.service.ResourceService;
import io.gravitee.management.service.exceptions.ResourceNotFoundException;
import io.gravitee.management.service.exceptions.TechnicalManagementException;
import io.gravitee.plugin.core.api.Plugin;
import io.gravitee.plugin.resource.ResourcePlugin;
import io.gravitee.plugin.resource.ResourcePluginManager;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
import java.io.IOException;
import java.util.Collection;
import java.util.Set;
import java.util.stream.Collectors;
/**
* @author David BRASSELY (david at gravitee.io)
* @author GraviteeSource Team
*/
@Component
public class ResourceServiceImpl extends TransactionalService implements ResourceService {
/**
* Logger.
*/
private final Logger LOGGER = LoggerFactory.getLogger(ResourceServiceImpl.class);
@Autowired
private ResourcePluginManager resourcePluginManager;
@Override
public Set findAll() {
try {
LOGGER.debug("List all resources");
final Collection resourceDefinitions = resourcePluginManager.findAll();
return resourceDefinitions.stream()
.map(resourceDefinition -> convert(resourceDefinition, false))
.collect(Collectors.toSet());
} catch (Exception ex) {
LOGGER.error("An error occurs while trying to list all resources", ex);
throw new TechnicalManagementException("An error occurs while trying to list all resources", ex);
}
}
@Override
public ResourceEntity findById(String resource) {
LOGGER.debug("Find resource by ID: {}", resource);
ResourcePlugin resourceDefinition = resourcePluginManager.get(resource);
if (resourceDefinition == null) {
throw new ResourceNotFoundException(resource);
}
return convert(resourceDefinition, true);
}
@Override
public String getSchema(String resource) {
try {
LOGGER.debug("Find resource schema by ID: {}", resource);
return resourcePluginManager.getConfiguration(resource);
} catch (IOException ioex) {
LOGGER.error("An error occurs while trying to get resource's schema for resource {}", resource, ioex);
throw new TechnicalManagementException("An error occurs while trying to get resource's schema for resource " + resource, ioex);
}
}
private ResourceEntity convert(ResourcePlugin resourcePlugin, boolean withPlugin) {
ResourceEntity entity = new ResourceEntity();
entity.setId(resourcePlugin.id());
entity.setDescription(resourcePlugin.manifest().description());
entity.setName(resourcePlugin.manifest().name());
entity.setVersion(resourcePlugin.manifest().version());
if (withPlugin) {
// Plugin information
Plugin plugin = resourcePlugin;
PluginEntity pluginEntity = new PluginEntity();
pluginEntity.setPlugin(plugin.clazz());
pluginEntity.setPath(plugin.path().toString());
pluginEntity.setType(plugin.type().toString().toLowerCase());
pluginEntity.setDependencies(plugin.dependencies());
entity.setPlugin(pluginEntity);
}
return entity;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy