Add validation of manifest for helm packages.
[sdc.git] / openecomp-be / backend / openecomp-sdc-vendor-software-product-manager / src / main / java / org / openecomp / sdc / vendorsoftwareproduct / impl / onboarding / ManifestAnalyzer.java
1 /*
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2021 Nokia
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  *  Unless required by applicable law or agreed to in writing, software
11  *  distributed under the License is distributed on an "AS IS" BASIS,
12  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  *  See the License for the specific language governing permissions and
14  *  limitations under the License.
15  *
16  *  SPDX-License-Identifier: Apache-2.0
17  *  ============LICENSE_END=========================================================
18  */
19
20 package org.openecomp.sdc.vendorsoftwareproduct.impl.onboarding;
21
22 import java.util.ArrayList;
23 import java.util.Collections;
24 import java.util.List;
25 import java.util.Set;
26 import org.openecomp.sdc.heat.datatypes.manifest.FileData;
27 import org.openecomp.sdc.heat.datatypes.manifest.FileData.Type;
28 import org.openecomp.sdc.heat.datatypes.manifest.ManifestContent;
29
30 public class ManifestAnalyzer {
31
32     private final ManifestContent manifest;
33
34     private final static Set<Type> HEAT_TYPES = Collections.singleton(Type.HEAT);
35
36     private final static Set<Type> HELM_TYPES = Collections.singleton(Type.HELM);
37
38     public ManifestAnalyzer(ManifestContent manifest) {
39         this.manifest = manifest;
40     }
41
42     public boolean hasHeatEntries() {
43         return hasEntriesOfType(HEAT_TYPES);
44     }
45
46     public boolean hasHelmEntries() {
47         return hasEntriesOfType(HELM_TYPES);
48     }
49
50     public List<FileData> getHelmEntries() {
51         List<FileData> entries = new ArrayList<>();
52         if (hasFileData()) {
53             for (FileData d : manifest.getData()) {
54                 if (HELM_TYPES.contains(d.getType())) {
55                     entries.add(d);
56                 }
57             }
58         }
59         return entries;
60     }
61
62     private boolean hasEntriesOfType(Set<Type> types) {
63         boolean result = false;
64         if (hasFileData()) {
65             result = manifest.getData().stream().anyMatch(fileData -> types.contains(fileData.getType()));
66         }
67         return result;
68     }
69
70     private boolean hasFileData() {
71         return manifest != null && manifest.getData() != null && !manifest.getData().isEmpty();
72     }
73 }