Create plugin point for csar generation
[sdc.git] / catalog-be / src / main / java / org / openecomp / sdc / be / tosca / MapFromModelCsarGeneratorService.java
1 /*
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2023 Nordix Foundation. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20 package org.openecomp.sdc.be.tosca;
21
22 import fj.data.Either;
23 import java.io.IOException;
24 import java.util.List;
25 import java.util.Map;
26 import java.util.function.Function;
27 import java.util.stream.Collectors;
28 import java.util.zip.ZipOutputStream;
29 import org.openecomp.sdc.be.model.Component;
30 import org.openecomp.sdc.be.plugins.CsarZipGenerator;
31 import org.openecomp.sdc.exception.ResponseFormat;
32 import org.springframework.beans.factory.annotation.Autowired;
33 import org.springframework.stereotype.Service;
34
35 @Service
36 public class MapFromModelCsarGeneratorService {
37
38     private final Map<String, CsarZipGenerator> servicesByModel;
39
40     @Autowired
41     public MapFromModelCsarGeneratorService(List<CsarZipGenerator> modelServices) {
42         servicesByModel = modelServices.stream()
43             .collect(Collectors.toMap(CsarZipGenerator::getModel, Function.identity()));
44     }
45
46     public Either<ZipOutputStream, ResponseFormat> generateCsarZip(final Component component,
47                                                                    boolean getFromCS,
48                                                                    ZipOutputStream zip,
49                                                                    boolean isInCertificationRequest,
50                                                                    boolean isAsdPackage) throws IOException {
51         CsarZipGenerator generatorImpl = servicesByModel.get(component.getModel());
52
53         if (null == generatorImpl) {
54             generatorImpl = servicesByModel.get(null);
55         }
56
57         return generatorImpl.generateCsarZip(component, getFromCS, zip, isInCertificationRequest, isAsdPackage);
58     }
59 }