io.syndesis.server.runtime.IntegrationConfiguration Maven / Gradle / Ivy
/*
* Copyright (C) 2016 Red Hat, Inc.
*
* 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.syndesis.server.runtime;
import java.io.InputStream;
import java.util.List;
import java.util.Optional;
import java.util.stream.Collectors;
import io.syndesis.common.model.ListResult;
import io.syndesis.common.model.connection.Connector;
import io.syndesis.common.model.extension.Extension;
import io.syndesis.common.model.openapi.OpenApi;
import io.syndesis.integration.api.IntegrationResourceManager;
import io.syndesis.server.dao.file.FileDataManager;
import io.syndesis.server.dao.manager.DataManager;
import io.syndesis.server.dao.manager.EncryptionComponent;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
/**
* Creates and configures the integration bits.
*/
@Configuration
public class IntegrationConfiguration {
@Bean
@Autowired
public IntegrationResourceManager integrationResourceManager(
DataManager dataManager,
EncryptionComponent encryptionComponent,
FileDataManager extensionDataManager) {
return new IntegrationResourceManager() {
@Override
public Optional loadConnector(String id) {
return Optional.ofNullable(dataManager.fetch(Connector.class, id));
}
@Override
public Optional loadExtension(String id) {
return Optional.ofNullable(extensionDataManager.getExtensionMetadata(id));
}
@Override
public List loadExtensionsByTag(String tag) {
return dataManager.fetchAll(Extension.class,
resultList -> new ListResult.Builder()
.items(resultList.getItems().stream()
.filter(extension -> extension.getTags().contains(tag))
.collect(Collectors.toList()))
.totalCount(resultList.getTotalCount())
.build()
).getItems();
}
@Override
public Optional loadOpenApiDefinition(String id) {
return Optional.ofNullable(dataManager.fetch(OpenApi.class, id));
}
@Override
public Optional loadExtensionBLOB(String id) {
return Optional.ofNullable(extensionDataManager.getExtensionBinaryFile(id));
}
@Override
public String decrypt(String encrypted) {
return encryptionComponent.decrypt(encrypted);
}
};
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy