Add collaboration feature
[sdc.git] / openecomp-be / lib / openecomp-sdc-enrichment-lib / openecomp-sdc-enrichment-impl / src / main / java / org / openecomp / sdc / enrichment / impl / external / artifact / VspInformationArtifactEnricher.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. 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
21 package org.openecomp.sdc.enrichment.impl.external.artifact;
22
23
24 import org.openecomp.core.enrichment.types.ArtifactCategory;
25 import org.openecomp.core.enrichment.types.InformationArtifactFolderNames;
26 import org.openecomp.core.model.dao.EnrichedServiceModelDao;
27 import org.openecomp.core.model.dao.EnrichedServiceModelDaoFactory;
28 import org.openecomp.core.model.types.ServiceArtifact;
29 import org.openecomp.sdc.datatypes.error.ErrorLevel;
30 import org.openecomp.sdc.datatypes.error.ErrorMessage;
31 import org.openecomp.sdc.enrichment.EnrichmentInfo;
32 import org.openecomp.sdc.enrichment.inter.ExternalArtifactEnricherInterface;
33 import org.openecomp.sdc.logging.context.impl.MdcDataDebugMessage;
34 import org.openecomp.sdc.vendorsoftwareproduct.VendorSoftwareProductConstants;
35 import org.openecomp.sdc.vendorsoftwareproduct.dao.VendorSoftwareProductInfoDao;
36 import org.openecomp.sdc.vendorsoftwareproduct.dao.VendorSoftwareProductInfoDaoFactory;
37 import org.openecomp.sdc.vendorsoftwareproduct.dao.type.VspDetails;
38 import org.openecomp.sdc.vendorsoftwareproduct.factory.InformationArtifactGeneratorFactory;
39 import org.openecomp.sdc.vendorsoftwareproduct.informationArtifact.InformationArtifactGenerator;
40 import org.openecomp.sdc.versioning.dao.types.Version;
41
42 import java.io.File;
43 import java.io.IOException;
44 import java.nio.ByteBuffer;
45 import java.util.ArrayList;
46 import java.util.HashMap;
47 import java.util.List;
48 import java.util.Map;
49 import java.util.Objects;
50
51 /**
52  * Created by Talio on 11/24/2016
53  */
54 public class VspInformationArtifactEnricher implements ExternalArtifactEnricherInterface {
55   private static MdcDataDebugMessage mdcDataDebugMessage = new MdcDataDebugMessage();
56   private static InformationArtifactGenerator informationArtifactGenerator =
57       InformationArtifactGeneratorFactory.getInstance().createInterface();
58   private EnrichedServiceModelDao enrichedServiceModelDao =
59       EnrichedServiceModelDaoFactory.getInstance().createInterface();
60   private VendorSoftwareProductInfoDao vspInfoDao = VendorSoftwareProductInfoDaoFactory
61       .getInstance().createInterface();
62
63   public VspInformationArtifactEnricher() {
64   }
65
66   public Map<String, List<ErrorMessage>> enrich(EnrichmentInfo enrichmentInfo)
67       throws IOException {
68
69     String vspId = enrichmentInfo.getKey();
70     Version version = enrichmentInfo.getVersion();
71     Map<String, List<ErrorMessage>> errors = enrichInformationArtifact(vspId, version);
72
73     return errors;
74   }
75
76   private Map<String, List<ErrorMessage>> enrichInformationArtifact(String vspId, Version version)
77       throws IOException {
78
79
80     mdcDataDebugMessage.debugEntryMessage(null);
81
82     Map<String, List<ErrorMessage>> errors = new HashMap<>();
83     ByteBuffer infoArtifactByteBuffer = ByteBuffer.wrap(informationArtifactGenerator.generate(
84         vspId, version).getBytes());
85
86     if (Objects.isNull(infoArtifactByteBuffer)) {
87       List<ErrorMessage> errorList = new ArrayList<>();
88       errorList.add(new ErrorMessage(ErrorLevel.ERROR, String.format(
89           "Cannot enrich information artifact for vendor software product with id %s and version %s",
90           vspId, version.toString())));
91       //TODO: add error to map (what is the key?)
92
93       mdcDataDebugMessage.debugExitMessage(null);
94       return errors;
95     }
96
97     enrichInformationArtifact(vspId, version, infoArtifactByteBuffer);
98
99     mdcDataDebugMessage.debugExitMessage(null);
100     return errors;
101   }
102
103   private void enrichInformationArtifact(String vspId, Version version,
104                                          ByteBuffer infoArtifactByteBuffer) {
105     ServiceArtifact infoArtifactServiceArtifact = new ServiceArtifact();
106
107     String vspName = vspInfoDao.get(new VspDetails(vspId, version)).getName();
108
109     infoArtifactServiceArtifact.setVspId(vspId);
110     infoArtifactServiceArtifact.setVersion(version);
111     infoArtifactServiceArtifact
112         .setName(ArtifactCategory.INFORMATIONAL.getDisplayName() + File.separator
113             + InformationArtifactFolderNames.Guide + File.separator + String.format(
114             VendorSoftwareProductConstants
115                 .INFORMATION_ARTIFACT_NAME,
116             vspName));
117     infoArtifactServiceArtifact.setContentData(infoArtifactByteBuffer.array());
118
119     enrichedServiceModelDao.storeExternalArtifact(infoArtifactServiceArtifact);
120
121   }
122
123 }