summaryrefslogtreecommitdiffstats
path: root/openecomp-be/lib/openecomp-sdc-vendor-license-lib/openecomp-sdc-vendor-license-core/src/main/java/org/openecomp/sdc/vendorlicense/dao/impl/zusammen/LicenseKeyGroupZusammenDaoImpl.java
blob: 6d44d1a66ab0a2c4d6facdcce48d5510f9c9a960 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
/*-
 * ============LICENSE_START=======================================================
 * SDC
 * ================================================================================
 * Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
 * ================================================================================
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * ============LICENSE_END=========================================================
 */
package org.openecomp.sdc.vendorlicense.dao.impl.zusammen;

import static org.openecomp.core.zusammen.api.ZusammenUtil.buildElement;
import static org.openecomp.core.zusammen.api.ZusammenUtil.buildStructuralElement;
import static org.openecomp.core.zusammen.api.ZusammenUtil.createSessionContext;

import com.amdocs.zusammen.adaptor.inbound.api.types.item.Element;
import com.amdocs.zusammen.adaptor.inbound.api.types.item.ElementInfo;
import com.amdocs.zusammen.adaptor.inbound.api.types.item.ZusammenElement;
import com.amdocs.zusammen.datatypes.Id;
import com.amdocs.zusammen.datatypes.SessionContext;
import com.amdocs.zusammen.datatypes.item.Action;
import com.amdocs.zusammen.datatypes.item.ElementContext;
import com.amdocs.zusammen.datatypes.item.Info;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Optional;
import java.util.stream.Collectors;
import lombok.AllArgsConstructor;
import org.openecomp.core.zusammen.api.ZusammenAdaptor;
import org.openecomp.sdc.datatypes.model.ElementType;
import org.openecomp.sdc.vendorlicense.dao.LicenseKeyGroupDao;
import org.openecomp.sdc.vendorlicense.dao.impl.zusammen.convertor.ElementToLicenseKeyGroupConvertor;
import org.openecomp.sdc.vendorlicense.dao.types.LicenseKeyGroupEntity;
import org.openecomp.types.ElementPropertyName;

@AllArgsConstructor
public class LicenseKeyGroupZusammenDaoImpl implements LicenseKeyGroupDao {

    private ZusammenAdaptor zusammenAdaptor;

    @Override
    public void registerVersioning(String versionableEntityType) {
        //no need
    }

    @Override
    public void create(LicenseKeyGroupEntity licenseKeyGroup) {
        ZusammenElement licenseKeyGroupElement = buildLicenseKeyGroupElement(licenseKeyGroup, Action.CREATE);
        ZusammenElement limitsElement = buildStructuralElement(ElementType.Limits, Action.CREATE);
        licenseKeyGroupElement.addSubElement(limitsElement);
        ZusammenElement lkgsElement = buildStructuralElement(ElementType.LicenseKeyGroups, Action.IGNORE);
        lkgsElement.addSubElement(licenseKeyGroupElement);
        SessionContext context = createSessionContext();
        Element lkgsSavedElement = zusammenAdaptor
            .saveElement(context, new ElementContext(licenseKeyGroup.getVendorLicenseModelId(), licenseKeyGroup.getVersion().getId()), lkgsElement,
                "Create license Key Group");
        licenseKeyGroup.setId(lkgsSavedElement.getSubElements().iterator().next().getElementId().getValue());
    }

    @Override
    public void update(LicenseKeyGroupEntity licenseKeyGroup) {
        ZusammenElement licenseKeyGroupElement = buildLicenseKeyGroupElement(licenseKeyGroup, Action.UPDATE);
        SessionContext context = createSessionContext();
        ElementContext elementContext = new ElementContext(licenseKeyGroup.getVendorLicenseModelId(), licenseKeyGroup.getVersion().getId());
        Optional<ElementInfo> lkgFromDb = zusammenAdaptor.getElementInfo(context, elementContext, new Id(licenseKeyGroup.getId()));
        if (lkgFromDb.isPresent()) {
            if (licenseKeyGroupElement.getRelations() == null) {
                licenseKeyGroupElement.setRelations(new ArrayList<>());
            }
            if (lkgFromDb.get().getRelations() != null && !lkgFromDb.get().getRelations().isEmpty()) {
                licenseKeyGroupElement.getRelations().addAll(lkgFromDb.get().getRelations());
            }
        }
        zusammenAdaptor.saveElement(context, elementContext, licenseKeyGroupElement,
            String.format("Update license key group with id %s", licenseKeyGroup.getId()));
    }

    @Override
    public LicenseKeyGroupEntity get(LicenseKeyGroupEntity licenseKeyGroup) {
        SessionContext context = createSessionContext();
        ElementContext elementContext = new ElementContext(licenseKeyGroup.getVendorLicenseModelId(), licenseKeyGroup.getVersion().getId());
        ElementToLicenseKeyGroupConvertor convertor = new ElementToLicenseKeyGroupConvertor();
        return zusammenAdaptor.getElementInfo(context, elementContext, new Id(licenseKeyGroup.getId())).map(elementInfo -> {
            LicenseKeyGroupEntity entity = convertor.convert(elementInfo);
            entity.setVendorLicenseModelId(licenseKeyGroup.getVendorLicenseModelId());
            entity.setVersion(licenseKeyGroup.getVersion());
            return entity;
        }).orElse(null);
    }

    @Override
    public void delete(LicenseKeyGroupEntity licenseKeyGroup) {
        ZusammenElement zusammenElement = buildElement(new Id(licenseKeyGroup.getId()), Action.DELETE);
        SessionContext context = createSessionContext();
        ElementContext elementContext = new ElementContext(licenseKeyGroup.getVendorLicenseModelId(), licenseKeyGroup.getVersion().getId());
        zusammenAdaptor.saveElement(context, elementContext, zusammenElement, "delete license key group. id:" + licenseKeyGroup.getId() + ".");
    }

    @Override
    public Collection<LicenseKeyGroupEntity> list(LicenseKeyGroupEntity licenseKeyGroup) {
        SessionContext context = createSessionContext();
        ElementContext elementContext = new ElementContext(licenseKeyGroup.getVendorLicenseModelId(), licenseKeyGroup.getVersion().getId());
        ElementToLicenseKeyGroupConvertor convertor = new ElementToLicenseKeyGroupConvertor();
        return zusammenAdaptor.listElementsByName(context, elementContext, null, ElementType.LicenseKeyGroups.name()).stream().map(elementInfo -> {
            LicenseKeyGroupEntity entity = convertor.convert(elementInfo);
            entity.setVendorLicenseModelId(licenseKeyGroup.getVendorLicenseModelId());
            entity.setVersion(licenseKeyGroup.getVersion());
            return entity;
        }).collect(Collectors.toList());
    }

    @Override
    public long count(LicenseKeyGroupEntity licenseKeyGroup) {
        SessionContext context = createSessionContext();
        ElementContext elementContext = new ElementContext(licenseKeyGroup.getVendorLicenseModelId(), licenseKeyGroup.getVersion().getId());
        return zusammenAdaptor.listElementsByName(context, elementContext, null, ElementType.LicenseKeyGroups.name()).size();
    }

    @Override
    public void deleteAll(LicenseKeyGroupEntity licenseKeyGroup) {
        //not supported
    }

    @Override
    public void removeReferencingFeatureGroup(LicenseKeyGroupEntity licenseKeyGroup, String featureGroupId) {
        SessionContext context = createSessionContext();
        ElementContext elementContext = new ElementContext(licenseKeyGroup.getVendorLicenseModelId(), licenseKeyGroup.getVersion().getId());
        Optional<ElementInfo> elementInfo = zusammenAdaptor.getElementInfo(context, elementContext, new Id(licenseKeyGroup.getId()));
        if (elementInfo.isPresent()) {
            ZusammenElement zusammenElement = VlmZusammenUtil.getZusammenElement(elementInfo.get());
            zusammenElement.setAction(Action.UPDATE);
            zusammenElement.setRelations(
                elementInfo.get().getRelations().stream().filter(relation -> !featureGroupId.equals(relation.getEdge2().getElementId().getValue()))
                    .collect(Collectors.toList()));
            zusammenAdaptor.saveElement(context, elementContext, zusammenElement, "remove referencing feature group");
        }
    }

    @Override
    public void addReferencingFeatureGroup(LicenseKeyGroupEntity licenseKeyGroup, String featureGroupId) {
        SessionContext context = createSessionContext();
        ElementContext elementContext = new ElementContext(licenseKeyGroup.getVendorLicenseModelId(), licenseKeyGroup.getVersion().getId());
        Optional<ElementInfo> elementInfo = zusammenAdaptor.getElementInfo(context, elementContext, new Id(licenseKeyGroup.getId()));
        if (elementInfo.isPresent()) {
            ZusammenElement zusammenElement = VlmZusammenUtil.getZusammenElement(elementInfo.get());
            zusammenElement.setAction(Action.UPDATE);
            if (zusammenElement.getRelations() == null) {
                zusammenElement.setRelations(new ArrayList<>());
            }
            zusammenElement.getRelations().add(VlmZusammenUtil.createRelation(RelationType.LicenseKeyGroupToReferencingFeatureGroup, featureGroupId));
            zusammenAdaptor.saveElement(context, elementContext, zusammenElement, "add referencing feature group");
        }
    }

    private ZusammenElement buildLicenseKeyGroupElement(LicenseKeyGroupEntity licenseKeyGroup, Action action) {
        ZusammenElement lkgElement = buildElement(licenseKeyGroup.getId() == null ? null : new Id(licenseKeyGroup.getId()), action);
        Info info = new Info();
        info.setName(licenseKeyGroup.getName());
        info.setDescription(licenseKeyGroup.getDescription());
        info.addProperty(ElementPropertyName.elementType.name(), ElementType.LicenseKeyGroup);
        info.addProperty("version_uuid", licenseKeyGroup.getVersionUuId());
        info.addProperty("LicenseKeyType", licenseKeyGroup.getType());
        info.addProperty("operational_scope", licenseKeyGroup.getOperationalScope());
        info.addProperty("startDate", licenseKeyGroup.getStartDate());
        info.addProperty("expiryDate", licenseKeyGroup.getExpiryDate());
        info.addProperty("thresholdValue", licenseKeyGroup.getThresholdValue());
        info.addProperty("thresholdUnits", licenseKeyGroup.getThresholdUnits());
        info.addProperty("increments", licenseKeyGroup.getIncrements());
        info.addProperty("manufacturerReferenceNumber", licenseKeyGroup.getManufacturerReferenceNumber());
        lkgElement.setInfo(info);
        if (licenseKeyGroup.getReferencingFeatureGroups() != null && !licenseKeyGroup.getReferencingFeatureGroups().isEmpty()) {
            lkgElement.setRelations(licenseKeyGroup.getReferencingFeatureGroups().stream()
                .map(rel -> VlmZusammenUtil.createRelation(RelationType.LicenseKeyGroupToReferencingFeatureGroup, rel)).collect(Collectors.toList()));
        }
        return lkgElement;
    }
}