aboutsummaryrefslogtreecommitdiffstats
path: root/openecomp-be/tools/migration/1702_to_1707_zusammen/src/main/java/org/openecomp/core/migration/convertors/LKGConvertor.java
blob: 7fd640b12d4e20ce9ea161c187b60103d96acb32 (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
package org.openecomp.core.migration.convertors;

import com.amdocs.zusammen.datatypes.item.ElementContext;
import com.amdocs.zusammen.datatypes.item.Info;
import com.amdocs.zusammen.plugin.statestore.cassandra.dao.types.ElementEntityContext;
import com.amdocs.zusammen.sdk.collaboration.types.CollaborationElement;
import org.openecomp.core.migration.store.ElementHandler;
import org.openecomp.sdc.logging.api.Logger;
import org.openecomp.sdc.logging.api.LoggerFactory;
import org.openecomp.sdc.vendorlicense.dao.impl.zusammen.RelationType;
import org.openecomp.sdc.vendorlicense.dao.impl.zusammen.StructureElement;
import org.openecomp.sdc.vendorlicense.dao.impl.zusammen.VlmZusammenUtil;
import org.openecomp.sdc.vendorlicense.dao.types.LicenseKeyGroupEntity;

import java.util.HashSet;
import java.util.List;
import java.util.Set;
import java.util.stream.Collectors;

/**
 * Created by ayalaben on 4/24/2017
 */
public class LKGConvertor {

    private static Logger logger = LoggerFactory.getLogger(LKGConvertor.class);
    private static Set<String> compLKGLoaded = new HashSet<>();

    public static CollaborationElement[] convertLKGToElement(LicenseKeyGroupEntity licenseKeyGroupEntity) {
        CollaborationElement[] elements;
        List<String> lkgNamespace = getLKGNamespace(licenseKeyGroupEntity);

        int index = 0;
        String lkgsEntityId = StructureElement.LicenseKeyGroups.name();
        String uniqueId = licenseKeyGroupEntity.getVendorLicenseModelId() + "_" + licenseKeyGroupEntity.getVersion().toString();

        if (compLKGLoaded.contains(uniqueId)) {
            elements = new CollaborationElement[1];
        } else {
            compLKGLoaded.add(uniqueId);
            elements = new CollaborationElement[2];
            elements[index] = ElementHandler.getElementEntity(
                    licenseKeyGroupEntity.getVendorLicenseModelId(), licenseKeyGroupEntity.getVersion().toString(), lkgsEntityId, lkgNamespace,
                    ElementHandler.getStructuralElementInfo(StructureElement.LicenseKeyGroups.name()), null, null, null);
            index++;
        }

        lkgNamespace.add(lkgsEntityId);

        elements[index] = ElementHandler.getElementEntity(
                licenseKeyGroupEntity.getVendorLicenseModelId(), licenseKeyGroupEntity.getVersion().toString(), licenseKeyGroupEntity.getId(), lkgNamespace,
                getLKGInfo(licenseKeyGroupEntity), licenseKeyGroupEntity.getReferencingFeatureGroups().stream().map(rel ->
                VlmZusammenUtil.createRelation( RelationType.LicenseKeyGroupToReferencingFeatureGroup, rel))
                        .collect(Collectors.toList()), null, null);

        return elements;
    }

    private static Info getLKGInfo(LicenseKeyGroupEntity licenseKeyGroupEntity) {

        Info info = new Info();
        info.setName(licenseKeyGroupEntity.getName());
        info.setDescription(licenseKeyGroupEntity.getDescription());
        info.addProperty("LicenseKeyType", licenseKeyGroupEntity.getType());
        info.addProperty("operational_scope", licenseKeyGroupEntity.getOperationalScope());

        return info;
    }

    private static List<String> getLKGNamespace(LicenseKeyGroupEntity LKGEntity) {
        return ElementHandler.getElementPath("");
    }

    public static ElementEntityContext convertLKGToElementContext(LicenseKeyGroupEntity licenseKeyGroupEntity) {

        return new ElementEntityContext("GLOBAL_USER", new
                ElementContext(licenseKeyGroupEntity.getVendorLicenseModelId(), licenseKeyGroupEntity.getVersion().toString()));
    }

}