Create onboarding validator for ASD VSPs
[sdc.git] / openecomp-be / lib / openecomp-tosca-lib / src / main / java / org / openecomp / sdc / tosca / csar / AsdPackageHelper.java
1 /*
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2022 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  *  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  */
21 package org.openecomp.sdc.tosca.csar;
22
23 import org.openecomp.core.utilities.file.FileContentHandler;
24 import org.openecomp.sdc.logging.api.Logger;
25 import org.openecomp.sdc.logging.api.LoggerFactory;
26
27 import java.io.IOException;
28
29 import static org.openecomp.sdc.tosca.csar.CSARConstants.ASD_DEFINITION_TYPE;
30 import static org.openecomp.sdc.tosca.csar.ManifestTokenType.ENTRY_DEFINITION_TYPE;
31
32 /**
33  * Helper class for ASD packages.
34  */
35 public class AsdPackageHelper {
36
37     protected static final Logger LOGGER = LoggerFactory.getLogger(AsdPackageHelper.class);
38
39     private final ManifestUtils manifestUtils;
40
41     public AsdPackageHelper(ManifestUtils manifestUtils) {
42         this.manifestUtils = manifestUtils;
43     }
44
45     public boolean isAsdPackage(final FileContentHandler fileContentHandler) {
46         try {
47             final Manifest manifest = manifestUtils.loadManifest(fileContentHandler, new AsdManifestOnboarding());
48             return null != manifest && manifest.getMetadata().entrySet().stream()
49                     .anyMatch(manifestEntry -> ENTRY_DEFINITION_TYPE.getToken().equalsIgnoreCase(manifestEntry.getKey())
50                             && ASD_DEFINITION_TYPE.equalsIgnoreCase(manifestEntry.getValue()));
51         }
52         catch (IOException ioe) {
53             LOGGER.warn("There was a problem loading the manifest: ", ioe);
54             return false;
55         }
56     }
57 }