aboutsummaryrefslogtreecommitdiffstats
path: root/examples/examples-onap-bbs/src/main/resources/logic
diff options
context:
space:
mode:
authors00370346 <swarup.nayak1@huawei.com>2019-04-11 00:14:39 +0530
committers00370346 <swarup.nayak1@huawei.com>2019-04-15 23:44:03 +0530
commit5262c350a449c02d91b558976c37850d6340ad81 (patch)
tree6dbd0594a6aa3dbd268f4ceaf18b1e9f4ea4519f /examples/examples-onap-bbs/src/main/resources/logic
parent5f3e975966a0eaa247ee0eac0148da2f8755e777 (diff)
ONAP BBS: Apex Nomadic ONT Policy Implementation
Issue-ID: DCAEGEN2-1237 Change-Id: I81831f6498b6c47c0a43215e0445c791b12dac6e Signed-off-by: s00370346 <swarup.nayak1@huawei.com>
Diffstat (limited to 'examples/examples-onap-bbs/src/main/resources/logic')
-rw-r--r--examples/examples-onap-bbs/src/main/resources/logic/AAIServiceAssignedTask.js210
-rw-r--r--examples/examples-onap-bbs/src/main/resources/logic/AAIServiceCreateTask.js158
-rw-r--r--examples/examples-onap-bbs/src/main/resources/logic/ErrorAAIServiceAssignedLogTask.js28
-rw-r--r--examples/examples-onap-bbs/src/main/resources/logic/ErrorSdncResourceUpdateTaskLogTask.js28
-rw-r--r--examples/examples-onap-bbs/src/main/resources/logic/GetBBSCloseLoopEventTask.js99
-rw-r--r--examples/examples-onap-bbs/src/main/resources/logic/NomadicEventSuccessTask.js46
-rw-r--r--examples/examples-onap-bbs/src/main/resources/logic/RUorInitStateSelect.js43
-rw-r--r--examples/examples-onap-bbs/src/main/resources/logic/SU2orInitStateSelect.js44
-rw-r--r--examples/examples-onap-bbs/src/main/resources/logic/SdncResourceUpdateTask.js163
-rw-r--r--examples/examples-onap-bbs/src/main/resources/logic/ServiceUpdateStateCpeAuthTask.js155
10 files changed, 974 insertions, 0 deletions
diff --git a/examples/examples-onap-bbs/src/main/resources/logic/AAIServiceAssignedTask.js b/examples/examples-onap-bbs/src/main/resources/logic/AAIServiceAssignedTask.js
new file mode 100644
index 000000000..f488c27bf
--- /dev/null
+++ b/examples/examples-onap-bbs/src/main/resources/logic/AAIServiceAssignedTask.js
@@ -0,0 +1,210 @@
+/*
+ * ============LICENSE_START=======================================================
+ * Copyright (C) 2019 Huawei. 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.
+ *
+ * SPDX-License-Identifier: Apache-2.0
+ * ============LICENSE_END=========================================================
+ */
+
+load("nashorn:mozilla_compat.js");
+importClass(org.apache.avro.Schema);
+importClass(java.io.BufferedReader);
+importClass(java.io.IOException);
+importClass(java.nio.file.Files);
+importClass(java.nio.file.Paths);
+
+executor.logger.info("Begin Execution AAIServiceAssignedTask.js");
+executor.logger.info(executor.subject.id);
+executor.logger.info(executor.inFields);
+
+var attachmentPoint = executor.inFields.get("attachmentPoint");
+var requestID = executor.inFields.get("requestID");
+var serviceInstanceId = executor.inFields.get("serviceInstanceId");
+
+var vcpeClosedLoopStatus = executor.getContextAlbum("VCPEClosedLoopStatusAlbum").get(attachmentPoint);
+executor.logger.info(vcpeClosedLoopStatus);
+
+var jsonObj;
+var aaiUpdateResult = true;
+
+/* Get AAI URL from Configuration file. */
+var AAI_URL = "localhost:8080";
+var CUSTOMER_ID = requestID;
+var BBS_CFS_SERVICE_TYPE = "BBS-CFS-Access_Test";
+var SERVICE_INSTANCE_UUID = serviceInstanceId;
+var service_instance_id;
+var resource_version;
+var relationship_list;
+var orchStatus;
+try {
+ var br = Files.newBufferedReader(Paths.get("/home/apexuser/examples/config/ONAPBBS/config.txt"));
+ // read line by line
+ var line;
+ while ((line = br.readLine()) != null) {
+ if (line.startsWith("AAI_URL")) {
+ var str = line.split("=");
+ AAI_URL = str[str.length - 1];
+ break;
+ }
+ }
+} catch (err) {
+ executor.logger.info("Failed to retrieve data " + err);
+}
+
+executor.logger.info("AAI_URL=>" + AAI_URL);
+
+/* Get service instance Id from AAI */
+try {
+ //var urlGet = "https://" + AAI_URL + "/aai/v14/business/customers/customer/" + CUSTOMER_ID + "/service-subscriptions/service-subscription/" + BBS_CFS_SERVICE_TYPE + "/service-instances/service-instance/" + SERVICE_INSTANCE_UUID
+ var urlGet = "http://" + AAI_URL + "/RestConfServer/rest/operations/policy/su1/getService";
+ executor.logger.info("Query url" + urlGet);
+
+ result = httpGet(urlGet).data;
+ executor.logger.info("Data received From " + urlGet + " " + result.toString());
+ jsonObj = JSON.parse(result);
+
+
+ /* Retrieve the service instance id */
+ service_instance_id = jsonObj['service-instance-id'];
+ resource_version = jsonObj['resource-version'];
+ relationship_list = jsonObj['relationship-list'];
+ executor.logger.info("After Parse " + JSON.stringify(jsonObj, null, 4));
+
+ if (result == "") {
+ aaiUpdateResult = false;
+ }
+}catch (err) {
+ executor.logger.info("Failed to retrieve data " + err);
+ aaiUpdateResult = false;
+}
+
+/* BBS Policy updates orchestration status of {{bbs-cfs-service-instance-UUID}} [ active --> assigned ] */
+orchStatus = {
+ "service-instance-id": service_instance_id,
+ "resource-version": resource_version,
+ "orchestration-status": "assigned",
+ "relationship-list": relationship_list
+ };
+try {
+ if (aaiUpdateResult == true) {
+ executor.logger.info("ready to putAfter Parse " + JSON.stringify(orchStatus, null, 4));
+
+ //var urlPut = "https://" + AAI_URL + "/aai/v14/business/customers/customer/" + CUSTOMER_ID + "/service-subscriptions/service-subscription/" + BBS_CFS_SERVICE_TYPE + "/service-instances/service-instance/" + SERVICE_INSTANCE_UUID;
+ var urlPut = "http://" + AAI_URL + "/RestConfServer/rest/operations/policy/su1/putOrchStatus";
+ result = httpPut(urlPut, JSON.stringify(orchStatus)).data;
+ executor.logger.info("Data received From " + urlPut + " " +result.toString());
+ jsonObj = JSON.parse(result);
+ executor.logger.info("After Parse " + JSON.stringify(jsonObj, null, 4));
+
+ /* If failure to retrieve data proceed to Failure */
+ if (result == "") {
+ aaiUpdateResult = false;
+ }
+ }
+}catch (err) {
+ executor.logger.info("Failed to retrieve data " + err);
+ aaiUpdateResult = false;
+}
+
+/* BBS Policy fetches from AAI {{bbs-cfs-service-instance-UUID}} relationship-list, including: CPE PNF ID, AccessConnectivity VF ID, InternetProfile VF ID */
+try {
+ if (aaiUpdateResult == true) {
+ var urlGet2 = "http://" + AAI_URL + "/RestConfServer/rest/operations/policy/su1/getHsia";
+ //var urlGet2 = "https://"+ AAI_URL + "/aai/v11/business/customers/customer/" + CUSTOMER_ID + "/service-subscriptions/service-subscription/" + BBS_CFS_SERVICE_TYPE +"/service-instances/service-instance/"+ SERVICE_INSTANCE_UUID + "?depth=all"
+ result = httpGet(urlGet2).data;
+ executor.logger.info("Data received From " + urlGet2 + " " +result.toString());
+ jsonObj = JSON.parse(result);
+ executor.logger.info("After Parse " + JSON.stringify(jsonObj, null, 4));
+
+ /* If failure to retrieve data proceed to Failure */
+ if ((result == "") || (jsonObj['orchestration-status'] != 'assigned')) {
+ executor.logger.info("Failed to get assigned status ");
+ aaiUpdateResult = false;
+ }
+ }
+}catch (err) {
+ executor.logger.info("Failed to retrieve data " + err);
+ aaiUpdateResult = false;
+}
+/* If Success then Fill output schema */
+if (aaiUpdateResult === true) {
+ vcpeClosedLoopStatus.put("result", "SUCCESS");
+ vcpeClosedLoopStatus.put("aai_message", JSON.stringify(orchStatus));
+} else {
+ vcpeClosedLoopStatus.put("result", "FAILURE");
+}
+
+executor.outFields.put("requestID", requestID);
+executor.outFields.put("attachmentPoint", attachmentPoint);
+executor.outFields.put("serviceInstanceId", executor.inFields.get("serviceInstanceId"));
+
+var returnValue = executor.isTrue;
+executor.logger.info("==========>" + executor.outFields);
+executor.logger.info("End Execution AAIServiceAssignedTask.js");
+
+
+/* Utility functions Begin */
+function httpGet(theUrl){
+ var con = new java.net.URL(theUrl).openConnection();
+ con.requestMethod = "GET";
+ return asResponse(con);
+}
+
+function httpPost(theUrl, data, contentType){
+ contentType = contentType || "application/json";
+ var con = new java.net.URL(theUrl).openConnection();
+ con.requestMethod = "POST";
+ con.setRequestProperty("Content-Type", contentType);
+ con.doOutput=true;
+ write(con.outputStream, data);
+ return asResponse(con);
+}
+
+function httpPut(theUrl, data, contentType){
+ contentType = contentType || "application/json";
+ var con = new java.net.URL(theUrl).openConnection();
+ con.requestMethod = "PUT";
+ con.setRequestProperty("Content-Type", contentType);
+ con.doOutput=true;
+ write(con.outputStream, data);
+ return asResponse(con);
+}
+
+function asResponse(con){
+ var d = read(con.inputStream);
+ return {data : d, statusCode : con.resultCode};
+}
+
+function write(outputStream, data){
+ var wr = new java.io.DataOutputStream(outputStream);
+ wr.writeBytes(data);
+ wr.flush();
+ wr.close();
+}
+
+function read(inputStream){
+ var inReader = new java.io.BufferedReader(new java.io.InputStreamReader(inputStream));
+ var inputLine;
+ var result = new java.lang.StringBuffer();
+
+ while ((inputLine = inReader.readLine()) != null) {
+ result.append(inputLine);
+ }
+ inReader.close();
+ return result.toString();
+}
+
+/* Utility functions End */
+
diff --git a/examples/examples-onap-bbs/src/main/resources/logic/AAIServiceCreateTask.js b/examples/examples-onap-bbs/src/main/resources/logic/AAIServiceCreateTask.js
new file mode 100644
index 000000000..e4f22369c
--- /dev/null
+++ b/examples/examples-onap-bbs/src/main/resources/logic/AAIServiceCreateTask.js
@@ -0,0 +1,158 @@
+/*
+ * ============LICENSE_START=======================================================
+ * Copyright (C) 2019 Huawei. 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.
+ *
+ * SPDX-License-Identifier: Apache-2.0
+ * ============LICENSE_END=========================================================
+ */
+load("nashorn:mozilla_compat.js");
+importClass(org.apache.avro.Schema);
+importClass(java.io.BufferedReader);
+importClass(java.io.IOException);
+importClass(java.nio.file.Files);
+importClass(java.nio.file.Paths);
+
+executor.logger.info("Begin Execution AAIServiceCreateTask.js");
+executor.logger.info(executor.subject.id);
+executor.logger.info(executor.inFields);
+
+var attachmentPoint = executor.inFields.get("attachmentPoint");
+var requestID = executor.inFields.get("requestID");
+var serviceInstanceId = executor.inFields.get("serviceInstanceId");
+
+//Get the AAI URL from configuraiotn file
+var AAI_URL = "localhost:8080";
+var CUSTOMER_ID = requestID;
+var BBS_CFS_SERVICE_TYPE = "BBS-CFS-Access_Test";
+var SERVICE_INSTANCE_UUID = serviceInstanceId;
+
+try {
+ var br = Files.newBufferedReader(Paths.get("/home/apexuser/examples/config/ONAPBBS/config.txt"));
+ // read line by line
+ var line;
+ while ((line = br.readLine()) != null) {
+ if (line.startsWith("AAI_URL")) {
+ var str = line.split("=");
+ AAI_URL = str[str.length - 1];
+ break;
+ }
+
+ }
+} catch (err) {
+ executor.logger.info("Failed to retrieve data " + err);
+}
+executor.logger.info("AAI_URL=>" + AAI_URL);
+
+
+var attachmentPoint = executor.inFields.get("attachmentPoint");
+var requestID = executor.inFields.get("requestID");
+var serviceInstanceId = executor.inFields.get("serviceInstanceId");
+
+var vcpeClosedLoopStatus = executor.getContextAlbum("VCPEClosedLoopStatusAlbum").get(attachmentPoint);
+executor.logger.info(vcpeClosedLoopStatus);
+
+var jsonObj = JSON.parse(vcpeClosedLoopStatus.get("aai_message"));
+
+jsonObj['orchestration-status'] = "created";
+executor.logger.info(" string" + JSON.stringify(jsonObj, null, 4));
+
+var aaiUpdateResult = true;
+
+
+/*BBS Policy updates {{bbs-cfs-service-instance-UUID}} orchestration-status [ assigned --> created ]*/
+try {
+ //var urlPut = "https://" + AAI_URL + "/aai/v14/business/customers/customer/" + CUSTOMER_ID + "/service-subscriptions/service-subscription/" + BBS_CFS_SERVICE_TYPE + "/service-instances/service-instance/" + SERVICE_INSTANCE_UUID;
+ var urlPut = "http://" + AAI_URL + "/RestConfServer/rest/operations/policy/su2/aaiUpdate";
+ result = httpPut(urlPut, JSON.stringify(jsonObj)).data;
+ executor.logger.info("Data received From " + urlPut + " " +result.toString());
+ repos = JSON.parse(result);
+ executor.logger.info("After Parse " + result.toString());
+
+ if (result == "") {
+ aaiUpdateResult = false;
+ }
+}catch (err) {
+ executor.logger.info("Failed to retrieve data " + err);
+ aaiUpdateResult = false;
+}
+
+/* If Success then Fill output schema */
+if (aaiUpdateResult === true) {
+ vcpeClosedLoopStatus.put("result", "SUCCESS");
+} else {
+ vcpeClosedLoopStatus.put("result", "FAILURE");
+}
+
+
+executor.outFields.put("requestID", requestID);
+executor.outFields.put("attachmentPoint", attachmentPoint);
+executor.outFields.put("serviceInstanceId", executor.inFields.get("serviceInstanceId"));
+
+var returnValue = executor.isTrue;
+executor.logger.info("==========>" + executor.outFields);
+executor.logger.info("End Execution AAIServiceCreateTask.js");
+
+
+function httpGet(theUrl){
+ var con = new java.net.URL(theUrl).openConnection();
+ con.requestMethod = "GET";
+ return asResponse(con);
+}
+
+function httpPost(theUrl, data, contentType){
+ contentType = contentType || "application/json";
+ var con = new java.net.URL(theUrl).openConnection();
+ con.requestMethod = "POST";
+ con.setRequestProperty("Content-Type", contentType);
+ con.doOutput=true;
+ write(con.outputStream, data);
+ return asResponse(con);
+}
+
+function httpPut(theUrl, data, contentType){
+ contentType = contentType || "application/json";
+ var con = new java.net.URL(theUrl).openConnection();
+ con.requestMethod = "PUT";
+ con.setRequestProperty("Content-Type", contentType);
+ con.doOutput=true;
+ write(con.outputStream, data);
+ return asResponse(con);
+}
+
+function asResponse(con){
+ var d = read(con.inputStream);
+ return {data : d, statusCode : con.resultCode};
+}
+
+function write(outputStream, data){
+ var wr = new java.io.DataOutputStream(outputStream);
+ wr.writeBytes(data);
+ wr.flush();
+ wr.close();
+}
+
+function read(inputStream){
+ var inReader = new java.io.BufferedReader(new java.io.InputStreamReader(inputStream));
+ var inputLine;
+ var result = new java.lang.StringBuffer();
+
+ while ((inputLine = inReader.readLine()) != null) {
+ result.append(inputLine);
+ }
+ inReader.close();
+ return result.toString();
+}
+
+
diff --git a/examples/examples-onap-bbs/src/main/resources/logic/ErrorAAIServiceAssignedLogTask.js b/examples/examples-onap-bbs/src/main/resources/logic/ErrorAAIServiceAssignedLogTask.js
new file mode 100644
index 000000000..ee646fa36
--- /dev/null
+++ b/examples/examples-onap-bbs/src/main/resources/logic/ErrorAAIServiceAssignedLogTask.js
@@ -0,0 +1,28 @@
+/*
+ * ============LICENSE_START=======================================================
+ * Copyright (C) 2019 Huawei. 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.
+ *
+ * SPDX-License-Identifier: Apache-2.0
+ * ============LICENSE_END=========================================================
+ */
+
+executor.logger.info("Begin Execution ErrorServiceUpdateOneLogTask.js");
+executor.logger.info(executor.subject.id);
+executor.logger.info(executor.inFields);
+
+executor.logger.info(executor.outFields);
+
+var returnValue = executor.isTrue;
+executor.logger.info("Begin Execution ErrorServiceUpdateOneLogTask.js");
diff --git a/examples/examples-onap-bbs/src/main/resources/logic/ErrorSdncResourceUpdateTaskLogTask.js b/examples/examples-onap-bbs/src/main/resources/logic/ErrorSdncResourceUpdateTaskLogTask.js
new file mode 100644
index 000000000..19a61cabd
--- /dev/null
+++ b/examples/examples-onap-bbs/src/main/resources/logic/ErrorSdncResourceUpdateTaskLogTask.js
@@ -0,0 +1,28 @@
+/*
+ * ============LICENSE_START=======================================================
+ * Copyright (C) 2019 Huawei. 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.
+ *
+ * SPDX-License-Identifier: Apache-2.0
+ * ============LICENSE_END=========================================================
+ */
+
+executor.logger.info("Begin Execution ErrorResourceUpdateLogTask.js");
+executor.logger.info(executor.subject.id);
+executor.logger.info(executor.inFields);
+
+executor.logger.info(executor.outFields);
+
+var returnValue = executor.isTrue;
+executor.logger.info("End Execution ErrorResourceUpdateLogTask.js");
diff --git a/examples/examples-onap-bbs/src/main/resources/logic/GetBBSCloseLoopEventTask.js b/examples/examples-onap-bbs/src/main/resources/logic/GetBBSCloseLoopEventTask.js
new file mode 100644
index 000000000..06b11acd5
--- /dev/null
+++ b/examples/examples-onap-bbs/src/main/resources/logic/GetBBSCloseLoopEventTask.js
@@ -0,0 +1,99 @@
+/*
+ * ============LICENSE_START=======================================================
+ * Copyright (C) 2019 Huawei. 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.
+ *
+ * SPDX-License-Identifier: Apache-2.0
+ * ============LICENSE_END=========================================================
+ */
+
+load("nashorn:mozilla_compat.js");
+
+executor.logger.info("Begin Execution GetBBSCloseLoopEventTask.js");
+executor.logger.info(executor.subject.id);
+executor.logger.info(executor.inFields);
+var returnValue = executor.isTrue;
+
+//**************************************************************************//
+
+var clEventType = Java.type("org.onap.policy.controlloop.VirtualControlLoopEvent");
+var clEvent = executor.inFields.get("VirtualControlLoopEvent");
+executor.logger.info(clEvent.toString());
+executor.logger.info(clEvent.getClosedLoopControlName());
+
+var requestID = clEvent.getRequestId();
+executor.logger.info("requestID = " + requestID);
+var attachmentPoint = null;
+var vcpeClosedLoopStatus = null;
+var serviceInstanceId = null;
+
+if (clEvent.getAai().get("attachmentPoint") != null) {
+ attachmentPoint = clEvent.getAai().get("attachmentPoint");
+ executor.logger.info("attachmentPoint = " + attachmentPoint);
+ vcpeClosedLoopStatus = executor.getContextAlbum("VCPEClosedLoopStatusAlbum").get(attachmentPoint);
+ serviceInstanceId = clEvent.getAai().get("service-information.hsia-cfs-service-instance-id");
+ executor.logger.info("serviceInstanceId = " + serviceInstanceId);
+
+ if (vcpeClosedLoopStatus == null) {
+ executor.logger.info("Creating context information for new ONT Device \"" + attachmentPoint.toString() + "\"");
+
+ vcpeClosedLoopStatus = executor.getContextAlbum("VCPEClosedLoopStatusAlbum").getSchemaHelper().createNewInstance();
+
+ vcpeClosedLoopStatus.put("closedLoopControlName", clEvent.getClosedLoopControlName());
+ vcpeClosedLoopStatus.put("closedLoopAlarmStart", clEvent.getClosedLoopAlarmStart().toEpochMilli());
+ vcpeClosedLoopStatus.put("closedLoopEventClient", clEvent.getClosedLoopEventClient());
+ vcpeClosedLoopStatus.put("closedLoopEventStatus", clEvent.getClosedLoopEventStatus().toString());
+ vcpeClosedLoopStatus.put("version", clEvent.getVersion());
+ vcpeClosedLoopStatus.put("requestID", clEvent.getRequestId().toString());
+ vcpeClosedLoopStatus.put("target_type", clEvent.getTargetType().toString());
+ vcpeClosedLoopStatus.put("target", clEvent.getTarget());
+ vcpeClosedLoopStatus.put("from", clEvent.getFrom());
+ vcpeClosedLoopStatus.put("policyScope", "Nomadic ONT");
+ vcpeClosedLoopStatus.put("policyName", clEvent.getPolicyName());
+ vcpeClosedLoopStatus.put("policyVersion", "1.0.0");
+ vcpeClosedLoopStatus.put("notificationTime", java.lang.System.currentTimeMillis());
+ vcpeClosedLoopStatus.put("message", "");
+ vcpeClosedLoopStatus.put("result", "SUCCESS");
+ var aaiInfo = executor.getContextAlbum("VCPEClosedLoopStatusAlbum").getSchemaHelper().createNewSubInstance("VCPE_AAI_Type");
+
+ aaiInfo.put("attachmentPoint", clEvent.getAai().get("attachmentPoint"));
+ aaiInfo.put("cvlan", clEvent.getAai().get("cvlan"));
+ aaiInfo.put("service_information_hsia_cfs_service_instance_id", clEvent.getAai().get("service-information.hsia-cfs-service-instance-id"));
+ aaiInfo.put("svlan", clEvent.getAai().get("svlan"));
+ aaiInfo.put("remoteId", clEvent.getAai().get("remoteId"));
+
+
+ vcpeClosedLoopStatus.put("AAI", aaiInfo);
+
+ if (clEvent.getClosedLoopAlarmEnd() != null) {
+ vcpeClosedLoopStatus.put("closedLoopAlarmEnd", clEvent.getClosedLoopAlarmEnd().toEpochMilli());
+ } else {
+ vcpeClosedLoopStatus.put("closedLoopAlarmEnd", java.lang.Long.valueOf(0));
+ }
+
+ executor.getContextAlbum("VCPEClosedLoopStatusAlbum").put(attachmentPoint.toString(), vcpeClosedLoopStatus);
+ executor.logger.info("Created context information for new vCPE VNF \"" + attachmentPoint.toString() + "\"");
+ }
+
+ executor.outFields.put("requestID", requestID);
+ executor.outFields.put("attachmentPoint", attachmentPoint);
+ executor.outFields.put("serviceInstanceId", attachmentPoint);
+ executor.logger.info(executor.outFields);
+}
+
+executor.logger.info("********************* Event Successfully Received and stored in album *********************");
+
+//**************************************************************************//
+
+
diff --git a/examples/examples-onap-bbs/src/main/resources/logic/NomadicEventSuccessTask.js b/examples/examples-onap-bbs/src/main/resources/logic/NomadicEventSuccessTask.js
new file mode 100644
index 000000000..f6a7c4ce7
--- /dev/null
+++ b/examples/examples-onap-bbs/src/main/resources/logic/NomadicEventSuccessTask.js
@@ -0,0 +1,46 @@
+/*
+ * ============LICENSE_START=======================================================
+ * Copyright (C) 2019 Huawei. 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.
+ *
+ * SPDX-License-Identifier: Apache-2.0
+ * ============LICENSE_END=========================================================
+ */
+load("nashorn:mozilla_compat.js");
+importClass(org.apache.avro.Schema);
+
+executor.logger.info("Begin Execution NomadicEventSuccess.js");
+executor.logger.info(executor.subject.id);
+executor.logger.info(executor.inFields);
+
+var attachmentPoint = executor.inFields.get("attachmentPoint");
+var vcpeClosedLoopStatus = executor.getContextAlbum("VCPEClosedLoopStatusAlbum").get(attachmentPoint);
+
+executor.logger.info("==========>" + executor.outFields);
+executor.logger.info("==========>" + executor.inFields);
+
+result = vcpeClosedLoopStatus.get("result");
+
+if (result === "SUCCESS") {
+ returnValue = executor.isTrue;
+ executor.outFields.put("result", "SUCCCESS");
+ executor.logger.info("BBS policy Execution Done$$$$$$$$$$$");
+} else {
+ executor.logger.info("BBS policy Execution Failed$$$$$$$$$$$");
+ executor.outFields.put("result", "FAILURE");
+ returnValue = executor.isFalse;
+}
+
+var returnValue = executor.isTrue;
+executor.logger.info("End Execution NomadicEventSuccess.js");
diff --git a/examples/examples-onap-bbs/src/main/resources/logic/RUorInitStateSelect.js b/examples/examples-onap-bbs/src/main/resources/logic/RUorInitStateSelect.js
new file mode 100644
index 000000000..959eab772
--- /dev/null
+++ b/examples/examples-onap-bbs/src/main/resources/logic/RUorInitStateSelect.js
@@ -0,0 +1,43 @@
+/*
+ * ============LICENSE_START=======================================================
+ * Copyright (C) 2019 Huawei. 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.
+ *
+ * SPDX-License-Identifier: Apache-2.0
+ * ============LICENSE_END=========================================================
+ */
+executor.logger.info("Begin Execution RUorInitStateSelect.js");
+executor.logger.info(executor.subject.id);
+executor.logger.info(executor.inFields);
+
+var returnValue = executor.isTrue;
+var result = null;
+
+var attachmentPoint = executor.inFields.get("attachmentPoint");
+var vcpeClosedLoopStatus = executor.getContextAlbum("VCPEClosedLoopStatusAlbum").get(attachmentPoint);
+
+executor.logger.info("==========>" + executor.outFields);
+executor.logger.info("==========>" + executor.inFields);
+
+result = vcpeClosedLoopStatus.get("result");
+
+if (result === "SUCCESS") {
+ executor.subject.getTaskKey("SdncResourceUpdateTask").copyTo(executor.selectedTask);
+} else {
+ executor.subject.getTaskKey("ErrorAAIServiceAssignedLogTask").copyTo(executor.selectedTask);
+ onsetFlag = executor.isFalse;
+}
+
+executor.logger.info("State Selected Task:" + executor.selectedTask);
+executor.logger.info("End Execution RUorInitStateSelect.js");
diff --git a/examples/examples-onap-bbs/src/main/resources/logic/SU2orInitStateSelect.js b/examples/examples-onap-bbs/src/main/resources/logic/SU2orInitStateSelect.js
new file mode 100644
index 000000000..6b4c4ff34
--- /dev/null
+++ b/examples/examples-onap-bbs/src/main/resources/logic/SU2orInitStateSelect.js
@@ -0,0 +1,44 @@
+/*
+ * ============LICENSE_START=======================================================
+ * Copyright (C) 2019 Huawei. 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.
+ *
+ * SPDX-License-Identifier: Apache-2.0
+ * ============LICENSE_END=========================================================
+ */
+
+executor.logger.info("Begin Execution SU2orInitStateSelect.js");
+executor.logger.info(executor.subject.id);
+executor.logger.info(executor.inFields);
+
+var returnValue = executor.isTrue;
+var result = null;
+
+var attachmentPoint = executor.inFields.get("attachmentPoint");
+var vcpeClosedLoopStatus = executor.getContextAlbum("VCPEClosedLoopStatusAlbum").get(attachmentPoint);
+
+executor.logger.info("==========>" + executor.outFields);
+executor.logger.info("==========>" + executor.inFields);
+
+result = vcpeClosedLoopStatus.get("result");
+
+if (result === "SUCCESS") {
+ executor.subject.getTaskKey("AAIServiceCreateTask").copyTo(executor.selectedTask);
+} else {
+ executor.subject.getTaskKey("SdncResourceUpdateErrorLogOutput").copyTo(executor.selectedTask);
+ onsetFlag = executor.isFalse;
+}
+
+executor.logger.info("State Selected Task:" + executor.selectedTask);
+executor.logger.info("End Execution RUorInitStateSelect.js"); \ No newline at end of file
diff --git a/examples/examples-onap-bbs/src/main/resources/logic/SdncResourceUpdateTask.js b/examples/examples-onap-bbs/src/main/resources/logic/SdncResourceUpdateTask.js
new file mode 100644
index 000000000..6a302ea6a
--- /dev/null
+++ b/examples/examples-onap-bbs/src/main/resources/logic/SdncResourceUpdateTask.js
@@ -0,0 +1,163 @@
+/*
+ * ============LICENSE_START=======================================================
+ * Copyright (C) 2019 Huawei. 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.
+ *
+ * SPDX-License-Identifier: Apache-2.0
+ * ============LICENSE_END=========================================================
+ */
+
+load("nashorn:mozilla_compat.js");
+importClass(org.apache.avro.Schema);
+importClass(java.io.BufferedReader);
+importClass(java.io.IOException);
+importClass(java.nio.file.Files);
+importClass(java.nio.file.Paths);
+executor.logger.info("Begin Execution SdncResourceUpdateTask.js");
+executor.logger.info(executor.subject.id);
+executor.logger.info(executor.inFields);
+
+var attachmentPoint = executor.inFields.get("attachmentPoint");
+var requestID = executor.inFields.get("requestID");
+var serviceInstanceId = executor.inFields.get("serviceInstanceId");
+
+var vcpeClosedLoopStatus = executor.getContextAlbum("VCPEClosedLoopStatusAlbum").get(attachmentPoint);
+executor.logger.info(vcpeClosedLoopStatus);
+var jsonObj;
+var aaiUpdateResult = true;
+var SDNC_URL = "localhost:8080";
+try {
+ var br = Files.newBufferedReader(Paths.get("/home/apexuser/examples/config/ONAPBBS/config.txt"));
+ // read line by line
+ var line;
+ while ((line = br.readLine()) != null) {
+ if (line.startsWith("SDNC_URL")) {
+ var str = line.split("=");
+ SDNC_URL = str[str.length - 1];
+ break;
+ }
+ }
+} catch (err) {
+ executor.logger.info("Failed to retrieve data " + err);
+}
+executor.logger.info("SDNC_URL=>" + SDNC_URL);
+
+
+var result;
+var jsonObj;
+var aaiUpdateResult = true;
+
+/* BBS Policy calls SDN-C GR-API to delete AccessConnectivity VF ID */
+var json = {id: 1, someValue: "1234"};
+try {
+ var urlPost1 = "http://" + SDNC_URL + "/RestConfServer/rest/operations/policy/ru/createInstance";
+ result = httpPost(urlPost1, JSON.stringify(json) ,"application/json").data;
+ executor.logger.info("Data received From " + urlPost1 + " " +result.toString());
+ jsonObj = JSON.parse(result);
+ executor.logger.info("After Parse " + jsonObj.toString());
+
+ if (result == "") {
+ aaiUpdateResult = false;
+ }
+}catch (err) {
+ executor.logger.info("Failed to retrieve data " + err);
+ aaiUpdateResult = false;
+}
+/* BBS Policy calls SDN-C GR-API to create new AccessConnectivity VF */
+try {
+ if (aaiUpdateResult == true) {
+ var json = {id: 2, someValue: "1234"};
+ var urlPost2 = "http://" + SDNC_URL + "/RestConfServer/rest/operations/policy/ru/createInstance";
+ result = httpPost(urlPost2, JSON.stringify(json), "application/json").data;
+ executor.logger.info("Data received From " + urlPost2 + " " +result.toString());
+ jsonObj = JSON.parse(result);
+ executor.logger.info("After Parse " + jsonObj.toString());
+
+ if (result == "") {
+ }
+ }
+}catch (err) {
+ executor.logger.info("Failed to retrieve data " + err);
+ aaiUpdateResult = false;
+}
+
+
+/* If Success then Fill output schema */
+if (aaiUpdateResult === true) {
+ vcpeClosedLoopStatus.put("result", "SUCCESS");
+} else {
+ vcpeClosedLoopStatus.put("result", "FAILURE");
+}
+
+
+executor.outFields.put("requestID", requestID);
+executor.outFields.put("attachmentPoint", attachmentPoint);
+executor.outFields.put("serviceInstanceId", executor.inFields.get("serviceInstanceId"));
+
+var returnValue = executor.isTrue;
+executor.logger.info("==========>" + executor.outFields);
+executor.logger.info("End Execution SdncResourceUpdateTask.js");
+
+
+/* Utility functions Begin */
+function httpGet(theUrl){
+ var con = new java.net.URL(theUrl).openConnection();
+ con.requestMethod = "GET";
+ return asresult(con);
+}
+
+function httpPost(theUrl, data, contentType){
+ contentType = contentType || "application/json";
+ var con = new java.net.URL(theUrl).openConnection();
+ con.requestMethod = "POST";
+ con.setRequestProperty("Content-Type", contentType);
+ con.doOutput=true;
+ write(con.outputStream, data);
+ return asresult(con);
+}
+
+function httpPut(theUrl, data, contentType){
+ contentType = contentType || "application/json";
+ var con = new java.net.URL(theUrl).openConnection();
+ con.requestMethod = "PUT";
+ con.setRequestProperty("Content-Type", contentType);
+ con.doOutput=true;
+ write(con.outputStream, data);
+ return asresult(con);
+}
+
+function asresult(con){
+ var d = read(con.inputStream);
+ return {data : d, statusCode : con.resultCode};
+}
+
+function write(outputStream, data){
+ var wr = new java.io.DataOutputStream(outputStream);
+ wr.writeBytes(data);
+ wr.flush();
+ wr.close();
+}
+
+function read(inputStream){
+ var inReader = new java.io.BufferedReader(new java.io.InputStreamReader(inputStream));
+ var inputLine;
+ var result = new java.lang.StringBuffer();
+
+ while ((inputLine = inReader.readLine()) != null) {
+ result.append(inputLine);
+ }
+ inReader.close();
+ return result.toString();
+}
+/* Utility functions End */
diff --git a/examples/examples-onap-bbs/src/main/resources/logic/ServiceUpdateStateCpeAuthTask.js b/examples/examples-onap-bbs/src/main/resources/logic/ServiceUpdateStateCpeAuthTask.js
new file mode 100644
index 000000000..9c48f0d52
--- /dev/null
+++ b/examples/examples-onap-bbs/src/main/resources/logic/ServiceUpdateStateCpeAuthTask.js
@@ -0,0 +1,155 @@
+/*
+ * ============LICENSE_START=======================================================
+ * Copyright (C) 2019 Huawei. 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.
+ *
+ * SPDX-License-Identifier: Apache-2.0
+ * ============LICENSE_END=========================================================
+ */
+
+load("nashorn:mozilla_compat.js");
+importClass(java.io.BufferedReader);
+importClass(java.io.IOException);
+importClass(java.nio.file.Files);
+importClass(java.nio.file.Paths);
+executor.logger.info("Begin Execution ServiceUpdateStateCpeAuthTask.js");
+executor.logger.info(executor.subject.id);
+executor.logger.info(executor.inFields);
+var returnValue = executor.isTrue;
+
+//**************************************************************************//
+
+var clEventType = Java.type("org.onap.policy.controlloop.VirtualControlLoopEvent");
+var clEvent = executor.inFields.get("VirtualControlLoopEvent");
+executor.logger.info(clEvent.toString());
+executor.logger.info(clEvent.getClosedLoopControlName());
+
+var requestID = clEvent.getRequestId();
+executor.logger.info("requestID = " + requestID);
+var attachmentPoint = null;
+var serviceInstanceId = null;
+var AAI_URL = "localhost:8080";
+try {
+ var br = Files.newBufferedReader(Paths.get("/home/apexuser/examples/config/ONAPBBS/config.txt"));
+ // read line by line
+ var line;
+ while ((line = br.readLine()) != null) {
+ if (line.startsWith("AAI_URL")) {
+ var str = line.split("=");
+ AAI_URL = str[str.length - 1];
+ break;
+ }
+
+ }
+} catch (err) {
+ executor.logger.info("Failed to retrieve data " + err);
+}
+executor.logger.info("AAI_URL=>" + AAI_URL);
+
+if (clEvent.getAai().get("attachmentPoint") != null) {
+ attachmentPoint = clEvent.getAai().get("attachmentPoint");
+ executor.logger.info("attachmentPoint = " + attachmentPoint);
+ serviceInstanceId = clEvent.getAai().get("service-information.hsia-cfs-service-instance-id");
+ executor.logger.info("serviceInstanceId = " + serviceInstanceId);
+
+ var result;
+ var jsonObj;
+ var prevResult = true;
+
+
+ /*BBS Policy updates {{bbs-cfs-service-instance-UUID}} orchestration-status [ assigned --> created ]*/
+ var json = {id: 1, someValue: "1234"};
+ try {
+ var urlPut = "http://" + AAI_URL + "/RestConfServer/rest/operations/policy/cpe/cpeAuthUpdate";
+ result = httpPut(urlPut, JSON.stringify(json)).data;
+ executor.logger.info("Data received From " + urlPut + " " +result.toString());
+ repos = JSON.parse(result);
+ executor.logger.info("After Parse " + result.toString());
+
+ if (result == "") {
+ prevResult = false;
+ }
+ }catch (err) {
+ executor.logger.info("Failed to retrieve data " + err);
+ prevResult = false;
+ }
+
+ /* If Success then Fill output schema */
+ if (prevResult == true) {
+ executor.outFields.put("result", "SUCCCESS");
+ } else {
+ executor.outFields.put("result", "FAILURE");
+ }
+
+ executor.outFields.put("requestID", requestID);
+ executor.outFields.put("attachmentPoint", attachmentPoint);
+ executor.outFields.put("serviceInstanceId", attachmentPoint);
+ executor.logger.info(executor.outFields);
+}
+
+
+
+var returnValue = executor.isTrue;
+executor.logger.info("End Execution ServiceUpdateStateCpeAuthTask.js");
+
+
+function httpGet(theUrl){
+ var con = new java.net.URL(theUrl).openConnection();
+ con.requestMethod = "GET";
+ return asResponse(con);
+}
+
+function httpPost(theUrl, data, contentType){
+ contentType = contentType || "application/json";
+ var con = new java.net.URL(theUrl).openConnection();
+ con.requestMethod = "POST";
+ con.setRequestProperty("Content-Type", contentType);
+ con.doOutput=true;
+ write(con.outputStream, data);
+ return asResponse(con);
+}
+
+function httpPut(theUrl, data, contentType){
+ contentType = contentType || "application/json";
+ var con = new java.net.URL(theUrl).openConnection();
+ con.requestMethod = "PUT";
+ con.setRequestProperty("Content-Type", contentType);
+ con.doOutput=true;
+ write(con.outputStream, data);
+ return asResponse(con);
+}
+
+function asResponse(con){
+ var d = read(con.inputStream);
+ return {data : d, statusCode : con.resultCode};
+}
+
+function write(outputStream, data){
+ var wr = new java.io.DataOutputStream(outputStream);
+ wr.writeBytes(data);
+ wr.flush();
+ wr.close();
+}
+
+function read(inputStream){
+ var inReader = new java.io.BufferedReader(new java.io.InputStreamReader(inputStream));
+ var inputLine;
+ var result = new java.lang.StringBuffer();
+
+ while ((inputLine = inReader.readLine()) != null) {
+ result.append(inputLine);
+ }
+ inReader.close();
+ return result.toString();
+}