aboutsummaryrefslogtreecommitdiffstats
path: root/bpmn/MSOInfrastructureBPMN/src/main/groovy/org/openecomp/mso/bpmn/infrastructure/scripts/DoCreateResources.groovy
blob: 8eea0f5b9c6a15687e05b740a6e62126d81350bf (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
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
/*-
 * ============LICENSE_START=======================================================
 * ONAP - SO
 * ================================================================================
 * Copyright (C) 2018 Huawei Technologies Co., Ltd. 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.mso.bpmn.infrastructure.scripts

import org.openecomp.mso.bpmn.infrastructure.properties.BPMNProperties

import java.util.ArrayList
import java.util.Iterator
import java.util.List
import org.apache.commons.lang3.StringUtils
import org.apache.http.HttpResponse
import org.camunda.bpm.engine.delegate.DelegateExecution
import org.codehaus.groovy.runtime.ArrayUtil
import org.codehaus.groovy.runtime.ScriptBytecodeAdapter
import org.codehaus.groovy.runtime.callsite.CallSite
import org.codehaus.groovy.runtime.typehandling.DefaultTypeTransformation
import org.codehaus.groovy.runtime.typehandling.ShortTypeHandling
import org.json.JSONArray
import org.json.JSONObject
import org.openecomp.mso.bpmn.common.recipe.BpmnRestClient
import org.openecomp.mso.bpmn.common.recipe.ResourceInput
import org.openecomp.mso.bpmn.common.scripts.AbstractServiceTaskProcessor
import org.openecomp.mso.bpmn.common.scripts.CatalogDbUtils
import org.openecomp.mso.bpmn.common.scripts.ExceptionUtil
import org.openecomp.mso.bpmn.core.domain.AllottedResource
import org.openecomp.mso.bpmn.core.domain.NetworkResource
import org.openecomp.mso.bpmn.core.domain.Resource
import org.openecomp.mso.bpmn.core.domain.ServiceDecomposition
import org.openecomp.mso.bpmn.core.domain.VnfResource
import org.openecomp.mso.bpmn.core.json.JsonUtils
import org.openecomp.mso.bpmn.common.resource.ResourceRequestBuilder

/**
 * This groovy class supports the <class>DoCreateResources.bpmn</class> process.
 * 
 * Inputs:
 * @param - msoRequestId
 * @param - globalSubscriberId - O
 * @param - subscriptionServiceType - O
 * @param - serviceInstanceId
 * @param - serviceInstanceName - O
 * @param - serviceInputParams (should contain aic_zone for serviceTypes TRANSPORT,ATM)
 * @param - sdncVersion 
 *
 * @param - addResourceList
 *
 * Outputs:
 * @param - WorkflowException

 */
public class DoCreateResources extends AbstractServiceTaskProcessor
{
	ExceptionUtil exceptionUtil = new ExceptionUtil()
	JsonUtils jsonUtil = new JsonUtils()
	CatalogDbUtils cutils = new CatalogDbUtils()

    public void preProcessRequest(DelegateExecution execution)
    {
		def isDebugEnabled = execution.getVariable("isDebugLogEnabled")
		utils.log("INFO"," ***** preProcessRequest *****",    isDebugEnabled)
		String msg = ""
		
        List addResourceList = execution.getVariable("addResourceList")
        if (addResourceList == null)
        {
            msg = "Input addResourceList is null"
            utils.log("INFO", msg, isDebugEnabled)
            exceptionUtil.buildAndThrowWorkflowException(execution, 500, msg)  
        }
        else if (addResourceList.size() == 0)
        {
            msg = "No resource in addResourceList"
            utils.log("INFO", msg, isDebugEnabled)
        }
        utils.log("INFO", " ***** Exit preProcessRequest *****", isDebugEnabled)
    }
    
    public void sequenceResoure(DelegateExecution execution)
    {
        def isDebugEnabled = execution.getVariable("isDebugLogEnabled")
        utils.log("INFO", "======== Start sequenceResoure Process ======== ", isDebugEnabled)
        
        String serviceModelUUID = execution.getVariable("modelUuid")      
               
        List<Resource> addResourceList = execution.getVariable("addResourceList")        

        List<NetworkResource> networkResourceList = new ArrayList<NetworkResource>()

        //define sequenced resource list, we deploy vf first and then network and then ar 
        //this is defaule sequence
        List<Resource> sequencedResourceList = new ArrayList<Resource>()
        def resourceSequence = BPMNProperties.getResourceSequenceProp()

        for (resourceType in resourceSequence) {
            for (resource in addResourceList) {
                if (StringUtils.containsIgnoreCase(resource.getModelInfo().getModelName(), resourceType)) {
                    sequencedResourceList.add(resource)

                    if (resource instanceof NetworkResource) {
                        networkResourceList.add(resource)
                    }
                }
            }
        }

        String isContainsWanResource = networkResourceList.isEmpty() ? "false" : "true"
        execution.setVariable("isContainsWanResource", isContainsWanResource)
        execution.setVariable("currentResourceIndex", 0)
        execution.setVariable("sequencedResourceList", sequencedResourceList)
        utils.log("INFO", "sequencedResourceList: " + sequencedResourceList, isDebugEnabled) 
        utils.log("INFO", "======== COMPLETED sequenceResoure Process ======== ", isDebugEnabled)
    }   
   
    public void getCurrentResoure(DelegateExecution execution){
	    def isDebugEnabled=execution.getVariable("isDebugLogEnabled")   
        utils.log("INFO", "======== Start getCurrentResoure Process ======== ", isDebugEnabled)    
	    def currentIndex = execution.getVariable("currentResourceIndex")
	    List<Resource> sequencedResourceList = execution.getVariable("sequencedResourceList")  
	    Resource currentResource = sequencedResourceList.get(currentIndex)
        execution.setVariable("resourceType", currentResource.getModelInfo().getModelName())
	    utils.log("INFO", "Now we deal with resouce:" + currentResource.getModelInfo().getModelName(), isDebugEnabled)  
        utils.log("INFO", "======== COMPLETED getCurrentResoure Process ======== ", isDebugEnabled)  
    }
    
    public void parseNextResource(DelegateExecution execution){
        def isDebugEnabled=execution.getVariable("isDebugLogEnabled")
        utils.log("INFO", "======== Start parseNextResource Process ======== ", isDebugEnabled)    
        def currentIndex = execution.getVariable("currentResourceIndex")
        def nextIndex =  currentIndex + 1
        execution.setVariable("currentResourceIndex", nextIndex)
        List<String> sequencedResourceList = execution.getVariable("sequencedResourceList")    
        if(nextIndex >= sequencedResourceList.size()){
            execution.setVariable("allResourceFinished", "true")
        }else{
            execution.setVariable("allResourceFinished", "false")
        }
        utils.log("INFO", "======== COMPLETED parseNextResource Process ======== ", isDebugEnabled)       
    }    

	 public void prepareResourceRecipeRequest(DelegateExecution execution){
		 def isDebugEnabled=execution.getVariable("isDebugLogEnabled")
		 utils.log("INFO", "======== Start prepareResourceRecipeRequest Process ======== ", isDebugEnabled)
		 ResourceInput resourceInput = new ResourceInput()
		 String serviceInstanceName = execution.getVariable("serviceInstanceName")
         String resourceType = execution.getVariable("resourceType")
		 String resourceInstanceName = resourceType + "_" + serviceInstanceName
		 resourceInput.setResourceInstanceName(resourceInstanceName)
		 utils.log("INFO", "Prepare Resource Request resourceInstanceName:" + resourceInstanceName, isDebugEnabled)
		 String globalSubscriberId = execution.getVariable("globalSubscriberId")
		 String serviceType = execution.getVariable("serviceType")
		 String serviceInstanceId = execution.getVariable("serviceInstanceId")
		 String operationId = execution.getVariable("operationId")
		 String operationType = execution.getVariable("operationType")
		 resourceInput.setGlobalSubscriberId(globalSubscriberId)
		 resourceInput.setServiceType(serviceType)
		 resourceInput.setServiceInstanceId(serviceInstanceId)
		 resourceInput.setOperationId(operationId)
		 resourceInput.setOperationType(operationType);
		 def currentIndex = execution.getVariable("currentResourceIndex")
		 List<Resource> sequencedResourceList = execution.getVariable("sequencedResourceList")
		 Resource currentResource = sequencedResourceList.get(currentIndex)
		 resourceInput.setResourceModelInfo(currentResource.getModelInfo());
		 ServiceDecomposition serviceDecomposition = execution.getVariable("serviceDecomposition")
		 resourceInput.setServiceModelInfo(serviceDecomposition.getModelInfo());
         def String resourceCustomizationUuid = currentResource.getModelInfo().getModelCustomizationUuid();
		 
		 String incomingRequest = execution.getVariable("uuiRequest")
		 //set the requestInputs from tempalte  To Be Done
		 String serviceModelUuid = jsonUtil.getJsonValue(incomingRequest,"service.serviceUuid")
         String serviceParameters = jsonUtil.getJsonValue(incomingRequest, "service.parameters")
		 String resourceParameters = ResourceRequestBuilder.buildResourceRequestParameters(execution, serviceModelUuid, resourceCustomizationUuid, serviceParameters)
		 resourceInput.setResourceParameters(resourceParameters)
		 execution.setVariable("resourceInput", resourceInput)
		 utils.log("INFO", "======== COMPLETED prepareResourceRecipeRequest Process ======== ", isDebugEnabled)
	 }
	 
	 public void executeResourceRecipe(DelegateExecution execution){
		 def isDebugEnabled=execution.getVariable("isDebugLogEnabled")
		 utils.log("INFO", "======== Start executeResourceRecipe Process ======== ", isDebugEnabled)
		 String requestId = execution.getVariable("msoRequestId")
		 String serviceInstanceId = execution.getVariable("serviceInstanceId")
		 String serviceType = execution.getVariable("serviceType")
		 ResourceInput resourceInput = execution.getVariable("resourceInput")
		 String requestAction = resourceInput.getOperationType()
		 JSONObject resourceRecipe = cutils.getResourceRecipe(execution, resourceInput.getResourceModelInfo().getModelUuid(), requestAction)
         String recipeURL = BPMNProperties.getProperty("bpelURL", "http://mso:8080") + resourceRecipe.getString("orchestrationUri")
		 int recipeTimeOut = resourceRecipe.getInt("recipeTimeout")
		 String recipeParamXsd = resourceRecipe.get("paramXSD")
		 HttpResponse resp = BpmnRestClient.post(recipeURL, requestId, recipeTimeOut, requestAction, serviceInstanceId, serviceType, resourceInput.toString(), recipeParamXsd)
         utils.log("INFO", "======== end executeResourceRecipe Process ======== ", isDebugEnabled)
	 }
    
     public void postConfigRequest(DelegateExecution execution){
         //now do noting
     }
}