/*- * ============LICENSE_START======================================================= * ONAP Policy API * ================================================================================ * Copyright (C) 2019-2021 AT&T Intellectual Property. All rights reserved. * Modifications Copyright (C) 2019-2021 Nordix Foundation. * Modifications Copyright (C) 2022 Bell Canada. All rights reserved. * ================================================================================ * 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. * * SPDX-License-Identifier: Apache-2.0 * ============LICENSE_END========================================================= */ package org.onap.policy.api.main.startstop; import java.util.LinkedHashMap; import java.util.LinkedList; import java.util.List; import javax.annotation.PostConstruct; import org.onap.policy.api.main.config.PolicyPreloadConfig; import org.onap.policy.api.main.exception.PolicyApiException; import org.onap.policy.common.utils.coder.CoderException; import org.onap.policy.common.utils.coder.StandardYamlCoder; import org.onap.policy.common.utils.resources.ResourceUtils; import org.onap.policy.models.base.PfModelException; import org.onap.policy.models.base.PfModelRuntimeException; import org.onap.policy.models.provider.PolicyModelsProvider; import org.onap.policy.models.tosca.authorative.concepts.ToscaEntityFilter; import org.onap.policy.models.tosca.authorative.concepts.ToscaPolicyType; import org.onap.policy.models.tosca.authorative.concepts.ToscaServiceTemplate; import org.onap.policy.models.tosca.authorative.concepts.ToscaTopologyTemplate; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty; import org.springframework.stereotype.Component; /** * This class creates initial policy types in the database. * * @author Chenfei Gao (cgao@research.att.com) */ @Component @ConditionalOnProperty(value = "database.initialize", havingValue = "true", matchIfMissing = true) public class ApiDatabaseInitializer { private static final Logger LOGGER = LoggerFactory.getLogger(ApiDatabaseInitializer.class); private static final StandardYamlCoder coder = new StandardYamlCoder(); @Autowired PolicyModelsProvider policyModelsProvider; @Autowired PolicyPreloadConfig policyPreloadConfig; @PostConstruct public void loadData() throws PolicyApiException { initializeApiDatabase(policyPreloadConfig.getPolicyTypes(), policyPreloadConfig.getPolicies()); } /** * Initializes database by preloading policy types and policies. * * @param policyTypes List of policy types to preload. * @param policies List of policies to preload. * @throws PolicyApiException in case of errors. */ public void initializeApiDatabase(final List policyTypes, final List policies) throws PolicyApiException { try { if (alreadyExists()) { LOGGER.warn("DB already contains policy data - skipping preload"); return; } var serviceTemplate = new ToscaServiceTemplate(); serviceTemplate.setDataTypes(new LinkedHashMap<>()); serviceTemplate.setPolicyTypes(new LinkedHashMap<>()); serviceTemplate.setToscaDefinitionsVersion("tosca_simple_yaml_1_1_0"); ToscaServiceTemplate createdPolicyTypes = preloadServiceTemplate(serviceTemplate, policyTypes, policyModelsProvider::createPolicyTypes); preloadServiceTemplate(createdPolicyTypes, policies, policyModelsProvider::createPolicies); } catch (final PolicyApiException | PfModelException | CoderException exp) { throw new PolicyApiException(exp); } } private boolean alreadyExists() throws PfModelException { try { ToscaServiceTemplate serviceTemplate = policyModelsProvider.getFilteredPolicyTypes(ToscaEntityFilter.builder().build()); if (!serviceTemplate.getPolicyTypes().isEmpty()) { return true; } } catch (PfModelRuntimeException e) { LOGGER.trace("DB does not yet contain policy types", e); } return false; } private ToscaServiceTemplate preloadServiceTemplate(ToscaServiceTemplate serviceTemplate, List entities, FunctionWithEx getter) throws PolicyApiException, CoderException, PfModelException { for (String entity : entities) { var entityAsStringYaml = ResourceUtils.getResourceAsString(entity); if (entityAsStringYaml == null) { LOGGER.warn("Preloading entity cannot be found: {}", entity); continue; } ToscaServiceTemplate singleEntity = coder.decode(entityAsStringYaml, ToscaServiceTemplate.class); if (singleEntity == null) { throw new PolicyApiException("Error deserializing entity from file: " + entity); } // Consolidate data types and policy types if (singleEntity.getDataTypes() != null) { serviceTemplate.getDataTypes().putAll(singleEntity.getDataTypes()); } if (singleEntity.getPolicyTypes() != null) { serviceTemplate.getPolicyTypes().putAll(singleEntity.getPolicyTypes()); } // Consolidate policies var topologyTemplate = singleEntity.getToscaTopologyTemplate(); if (topologyTemplate != null && topologyTemplate.getPolicies() != null) { serviceTemplate.setToscaTopologyTemplate(new ToscaTopologyTemplate()); serviceTemplate.getToscaTopologyTemplate().setPolicies(new LinkedList<>()); serviceTemplate.getToscaTopologyTemplate().getPolicies() .addAll(singleEntity.getToscaTopologyTemplate().getPolicies()); } } // Preload the specified entities ToscaServiceTemplate createdServiceTemplate = getter.apply(serviceTemplate); LOGGER.debug("Created initial tosca service template in DB - {}", createdServiceTemplate); return createdServiceTemplate; } @FunctionalInterface protected interface FunctionWithEx { public R apply(T value) throws PfModelException; } }