Adding generic vnf and relationship endpoints
[integration/csit.git] / plans / so / integration-etsi-testing / so-simulators / aai-simulator / src / main / java / org / onap / so / aaisimulator / service / providers / ProjectCacheServiceProviderImpl.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2019 Nordix Foundation.
4  * ================================================================================
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *      http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  *
17  * SPDX-License-Identifier: Apache-2.0
18  * ============LICENSE_END=========================================================
19  */
20 package org.onap.so.aaisimulator.service.providers;
21
22 import static org.onap.so.aaisimulator.utils.CacheName.PROJECT_CACHE;
23 import static org.onap.so.aaisimulator.utils.Constants.SERVICE_RESOURCE_TYPE;
24 import java.util.Optional;
25 import org.onap.aai.domain.yang.Project;
26 import org.onap.aai.domain.yang.Relationship;
27 import org.onap.aai.domain.yang.RelationshipList;
28 import org.onap.so.simulator.cache.provider.AbstractCacheServiceProvider;
29 import org.slf4j.Logger;
30 import org.slf4j.LoggerFactory;
31 import org.springframework.beans.factory.annotation.Autowired;
32 import org.springframework.cache.Cache;
33 import org.springframework.cache.CacheManager;
34 import org.springframework.stereotype.Service;
35
36 /**
37  * @author waqas.ikram@ericsson.com
38  *
39  */
40 @Service
41 public class ProjectCacheServiceProviderImpl extends AbstractCacheServiceProvider
42         implements ProjectCacheServiceProvider {
43
44     private static final String RELATIONSHIPS_LABEL = "org.onap.relationships.inventory.Uses";
45
46     private static final Logger LOGGER = LoggerFactory.getLogger(ProjectCacheServiceProviderImpl.class);
47
48
49     @Autowired
50     public ProjectCacheServiceProviderImpl(final CacheManager cacheManager) {
51         super(cacheManager);
52     }
53
54     @Override
55     public void putProject(final String projectName, final Project project) {
56         LOGGER.info("Adding project: {} with name to cache", project, projectName);
57         final Cache cache = getCache(PROJECT_CACHE.getName());
58         cache.put(projectName, project);
59     }
60
61
62     @Override
63     public Optional<Project> getProject(final String projectName) {
64         LOGGER.info("getting project from cache using key: {}", projectName);
65         final Cache cache = getCache(PROJECT_CACHE.getName());
66         final Project value = cache.get(projectName, Project.class);
67         if (value != null) {
68             return Optional.of(value);
69         }
70         return Optional.empty();
71     }
72
73     @Override
74     public boolean putProjectRelationShip(final String projectName, final Relationship relationship) {
75         final Cache cache = getCache(PROJECT_CACHE.getName());
76         final Project value = cache.get(projectName, Project.class);
77         if (value != null) {
78             RelationshipList relationshipList = value.getRelationshipList();
79             if (relationshipList == null) {
80                 relationshipList = new RelationshipList();
81                 value.setRelationshipList(relationshipList);
82             }
83
84             if (relationship.getRelatedTo() == null) {
85                 relationship.setRelatedTo(SERVICE_RESOURCE_TYPE);
86             }
87             if (relationship.getRelationshipLabel() == null) {
88                 relationship.setRelationshipLabel(RELATIONSHIPS_LABEL);
89             }
90
91             return relationshipList.getRelationship().add(relationship);
92         }
93         LOGGER.error("Project not found in cache for {}", projectName);
94         return false;
95
96     }
97
98     @Override
99     public void clearAll() {
100         clearCahce(PROJECT_CACHE.getName());
101     }
102 }