aboutsummaryrefslogtreecommitdiffstats
path: root/openecomp-be/tools/migration/1702_to_1707_zusammen/src/main/java/org/openecomp/core/migration/convertors/VspServiceTemplateConvertor.java
blob: a767246f128a4ee9d7b745bd5e734b8cc40a3f08 (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
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.core.model.types.ServiceTemplate;
import org.openecomp.core.utilities.file.FileUtils;
import org.openecomp.sdc.model.impl.zusammen.ElementType;
import org.openecomp.sdc.model.impl.zusammen.StructureElement;

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

/**
 * @author katyr
 * @since April 23, 2017
 */

public class VspServiceTemplateConvertor 
{
    private static Set<String> serviceTemplatesLoaded = new HashSet<>();
 


  public static CollaborationElement[] convertServiceTemplateToElement(ServiceTemplate serviceTemplate) {

    CollaborationElement[] serviceTemplateElements;
    List<String> serviceTemplateNamespace = getServiceTemplateNamespace();

    int index = 0;
    String serviceTemplatesEntityId = StructureElement.Templates.name();
    String uniqueId = serviceTemplate.getVspId()+"_"+serviceTemplate.getVersion().toString();
    if (serviceTemplatesLoaded.contains(uniqueId)) {
      serviceTemplateElements = new CollaborationElement[1];
    } else {
      serviceTemplatesLoaded.add(uniqueId);
      String vspServiceModelEntityId = StructureElement.ServiceModel.name();

      serviceTemplateElements = new CollaborationElement[3];
      serviceTemplateElements[index] = ElementHandler.getElementEntity(
          serviceTemplate.getVspId(),
          serviceTemplate.getVersion().toString(),
          vspServiceModelEntityId,
          serviceTemplateNamespace,
          ElementHandler.getServiceModelElementInfo(vspServiceModelEntityId,serviceTemplate),
          null,
          null,
          null);
     index++;
      serviceTemplateNamespace.add(vspServiceModelEntityId);
      serviceTemplateElements[index] = ElementHandler.getElementEntity(
          serviceTemplate.getVspId(), serviceTemplate.getVersion().toString(), serviceTemplatesEntityId,
          serviceTemplateNamespace,
          ElementHandler.getStructuralElementInfo(StructureElement.Templates.name()),
          null,
          null,
          null);
      index++;
    }

    serviceTemplateNamespace.add(serviceTemplatesEntityId);
    String elementId = serviceTemplate.getVspId()+"_"+serviceTemplate.getVersion().toString()
        +"_"+serviceTemplate.getName();
    serviceTemplateElements[index] = ElementHandler.getElementEntity(
        serviceTemplate.getVspId(), serviceTemplate.getVersion().toString(), elementId,
        serviceTemplateNamespace,
        getServiceTemplateInfo(serviceTemplate),
        null,
        null,
        FileUtils.toByteArray(serviceTemplate.getContent()));

    return serviceTemplateElements;
  }

  private static Info getServiceTemplateInfo(ServiceTemplate serviceTemplateEntity) {
    Info info = new Info();
    info.setName(serviceTemplateEntity.getName());
    info.addProperty("type", ElementType.Servicetemplate.name());
    info.addProperty("base", serviceTemplateEntity.getBaseName());



    return info;
  }

  private static List<String> getServiceTemplateNamespace() {
    return ElementHandler.getElementPath();
  }

  public static ElementEntityContext convertServiceTemplateToElementContext(ServiceTemplate
                                                                                serviceTemplateEntity) {

    return new ElementEntityContext("GLOBAL_USER", new
        ElementContext(serviceTemplateEntity.getVspId(), serviceTemplateEntity.getVersion().toString()));
  }

}