aboutsummaryrefslogtreecommitdiffstats
path: root/openecomp-be/tools/migration/1702_to_1707_zusammen/src/main/java/org/openecomp/core/migration/convertors/VspServiceArtifactConvertor.java
blob: 15b8ad729ad3b649c3fab5d8ff9bacdcf4a51fa8 (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
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.ServiceArtifact;
import org.openecomp.core.utilities.file.FileUtils;
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 VspServiceArtifactConvertor 
{
    private static Set<String> serviceArtifactsLoaded = new HashSet<>();
 


  public static CollaborationElement[] convertServiceArtifactToElement(ServiceArtifact serviceArtifact) {

    CollaborationElement[] serviceArtifactElements;
    List<String> serviceArtifactNamespace = getServiceArtifactNamespace();

    int index = 0;
    String serviceArtifactsEntityId = StructureElement.Artifacts.name();
    String uniqueId = serviceArtifact.getVspId()+"_"+serviceArtifact.getVersion().toString();
    if (serviceArtifactsLoaded.contains(uniqueId)) {
      serviceArtifactElements = new CollaborationElement[1];
    } else {
      serviceArtifactsLoaded.add(uniqueId);
      serviceArtifactElements = new CollaborationElement[2];
      serviceArtifactElements[index] = ElementHandler.getElementEntity(
          serviceArtifact.getVspId(), serviceArtifact.getVersion().toString(), serviceArtifactsEntityId,
          serviceArtifactNamespace,
          ElementHandler.getStructuralElementInfo(StructureElement.Artifacts.name()),
          null,
          null,
          null);
      index++;
    }

    serviceArtifactNamespace.add(serviceArtifactsEntityId);
    String elementId = serviceArtifact.getVspId()+"_"+serviceArtifact.getVersion().toString()
        +"_"+serviceArtifact.getName();
    serviceArtifactElements[index] = ElementHandler.getElementEntity(
        serviceArtifact.getVspId(), serviceArtifact.getVersion().toString(), elementId,
        serviceArtifactNamespace,
        getServiceArtifactInfo(serviceArtifact),
        null,
        null,
        FileUtils.toByteArray(serviceArtifact.getContent()));

    return serviceArtifactElements;
  }

  private static Info getServiceArtifactInfo(ServiceArtifact serviceArtifactEntity) {
    Info info = new Info();
    info.setName(serviceArtifactEntity.getName());
    info.addProperty("type", org.openecomp.sdc.model.impl.zusammen.ElementType.Artifact.name());

    return info;
  }

  private static List<String> getServiceArtifactNamespace() {
    return ElementHandler.getElementPath(StructureElement.ServiceModel.name());
  }

  public static ElementEntityContext convertServiceArtifactToElementContext(ServiceArtifact
                                                                                serviceArtifactEntity) {

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

}