2 * ============LICENSE_START=======================================================
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
11 * http://www.apache.org/licenses/LICENSE-2.0
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=========================================================
21 package org.openecomp.sdc.enrichment.impl.external.artifact;
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.tosca.datatypes.ToscaServiceModel;
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;
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;
49 import java.util.Objects;
52 * Created by Talio on 11/24/2016
54 public class VspInformationArtifactEnricher implements ExternalArtifactEnricherInterface {
55 private static InformationArtifactGenerator informationArtifactGenerator =
56 InformationArtifactGeneratorFactory.getInstance().createInterface();
57 private EnrichedServiceModelDao enrichedServiceModelDao =
58 EnrichedServiceModelDaoFactory.getInstance().createInterface();
59 private VendorSoftwareProductInfoDao vspInfoDao = VendorSoftwareProductInfoDaoFactory
60 .getInstance().createInterface();
62 public VspInformationArtifactEnricher() {
65 public Map<String, List<ErrorMessage>> enrich(EnrichmentInfo enrichmentInfo,
66 ToscaServiceModel serviceModel)
69 String vspId = enrichmentInfo.getKey();
70 Version version = enrichmentInfo.getVersion();
71 return enrichInformationArtifact(vspId, version);
74 private Map<String, List<ErrorMessage>> enrichInformationArtifact(String vspId, Version version)
76 Map<String, List<ErrorMessage>> errors = new HashMap<>();
77 ByteBuffer infoArtifactByteBuffer = ByteBuffer.wrap(informationArtifactGenerator.generate(
78 vspId, version).getBytes());
80 if (Objects.isNull(infoArtifactByteBuffer)) {
81 List<ErrorMessage> errorList = new ArrayList<>();
82 errorList.add(new ErrorMessage(ErrorLevel.ERROR, String.format(
83 "Cannot enrich information artifact for vendor software product with id %s and version %s",
84 vspId, version.toString())));
88 enrichInformationArtifact(vspId, version, infoArtifactByteBuffer);
92 private void enrichInformationArtifact(String vspId, Version version,
93 ByteBuffer infoArtifactByteBuffer) {
94 ServiceArtifact infoArtifactServiceArtifact = new ServiceArtifact();
96 String vspName = vspInfoDao.get(new VspDetails(vspId, version)).getName();
98 infoArtifactServiceArtifact.setVspId(vspId);
99 infoArtifactServiceArtifact.setVersion(version);
100 infoArtifactServiceArtifact
101 .setName(ArtifactCategory.INFORMATIONAL.getDisplayName() + File.separator
102 + InformationArtifactFolderNames.Guide + File.separator + String.format(
103 VendorSoftwareProductConstants
104 .INFORMATION_ARTIFACT_NAME,
106 infoArtifactServiceArtifact.setContentData(infoArtifactByteBuffer.array());
108 enrichedServiceModelDao.storeExternalArtifact(infoArtifactServiceArtifact);