aboutsummaryrefslogtreecommitdiffstats
path: root/examples/examples-onap-vcpe/src/main/resources/logic/standalone/GetEntityStateTask.js
blob: 1567608bbf9ec15d5ccba9703e53592fa5e4b19f (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
/*
 * ============LICENSE_START=======================================================
 *  Copyright (C) 2020 Nordix Foundation.
 * ================================================================================
 * 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.
 *
 * Note: The incoming closedloop message can be ONSET with both VNF-name and VNF-ID
 *       or ABATED with only VNF-name. So need to handle differently. For ABATED case,
 *       since we still keep the RequireIDVNFID context album, we can get it from there.
 *
 * SPDX-License-Identifier: Apache-2.0
 * ============LICENSE_END=========================================================
 */

executor.logger.info(executor.subject.id);
executor.logger.info(executor.inFields);

var utf8Type = Java.type("org.apache.avro.util.Utf8");
var uuidType = Java.type("java.util.UUID");

var clEvent = executor.inFields.get("VirtualControlLoopEvent");

executor.logger.info(clEvent.toString());
executor.logger.info(clEvent.get("closedLoopControlName"));

var requestID = uuidType.fromString(clEvent.get("requestID"));
executor.logger.info("requestID = " + requestID);
var vnfID = null;
var vcpeClosedLoopStatus = null;

if (clEvent.get("AAI").get(new utf8Type("generic_DasH_vnf_DoT_vnf_DasH_id")) != null) {
    vnfID = uuidType.fromString(clEvent.get("AAI").get(new utf8Type("generic_DasH_vnf_DoT_vnf_DasH_id")));
    executor.logger.info("vnfID = " + vnfID);
    vcpeClosedLoopStatus = executor.getContextAlbum("ControlLoopStatusAlbum").get(vnfID);

    if (vcpeClosedLoopStatus == null) {
        executor.logger.info("Creating context information for new vCPE VNF \"" + vnfID.toString() + "\"");

        vcpeClosedLoopStatus = executor.getContextAlbum("ControlLoopStatusAlbum").getSchemaHelper().createNewInstance();

        vcpeClosedLoopStatus.put("closedLoopControlName", clEvent.get("closedLoopControlName"));
        vcpeClosedLoopStatus.put("closedLoopAlarmStart", clEvent.get("closedLoopAlarmStart"));
        vcpeClosedLoopStatus.put("closedLoopEventClient", clEvent.get("closedLoopEventClient"));
        vcpeClosedLoopStatus.put("closedLoopEventStatus", clEvent.get("closedLoopEventStatus"));
        vcpeClosedLoopStatus.put("version", clEvent.get("version"));
        vcpeClosedLoopStatus.put("requestID", clEvent.get("requestID"));
        vcpeClosedLoopStatus.put("target_type", clEvent.get("target_type"));
        vcpeClosedLoopStatus.put("target", clEvent.get("target"));
        vcpeClosedLoopStatus.put("from", clEvent.get("from"));
        vcpeClosedLoopStatus.put("policyScope", "vCPE");
        vcpeClosedLoopStatus.put("policyName", "ONAPvCPEPolicyModel");
        vcpeClosedLoopStatus.put("policyVersion", "0.0.1");
        vcpeClosedLoopStatus.put("notification", "ACTIVE");
        vcpeClosedLoopStatus.put("notificationTime", java.lang.System.currentTimeMillis());
        vcpeClosedLoopStatus.put("message", "");

        var aaiInfo = executor.getContextAlbum("ControlLoopStatusAlbum").getSchemaHelper().createNewSubInstance(
                "VCPE_AAI_Type");

        aaiInfo.put("genericVnfResourceVersion", clEvent.get("AAI").get(
                new utf8Type("generic_DasH_vnf_DoT_resource_DasH_version")));
        aaiInfo.put("genericVnfVnfName", clEvent.get("AAI").get(new utf8Type("generic_DasH_vnf_DoT_vnf_DasH_name")));
        aaiInfo.put("genericVnfProvStatus", clEvent.get("AAI").get(
                new utf8Type("generic_DasH_vnf_DoT_prov_DasH_status")));
        aaiInfo.put("genericVnfIsClosedLoopDisabled", clEvent.get("AAI").get(
                new utf8Type("generic_DasH_vnf_DoT_is_DasH_closed_DasH_loop_DasH_disabled")));
        aaiInfo.put("genericVnfOrchestrationStatus", clEvent.get("AAI").get(
                new utf8Type("generic_DasH_vnf_DoT_orchestration_DasH_status")));
        aaiInfo.put("genericVnfVnfType", clEvent.get("AAI").get(new utf8Type("generic_DasH_vnf_DoT_vnf_DasH_type")));
        aaiInfo.put("genericVnfInMaint", clEvent.get("AAI").get(new utf8Type("generic_DasH_vnf_DoT_in_DasH_maint")));
        aaiInfo
                .put("genericVnfServiceId", clEvent.get("AAI")
                        .get(new utf8Type("generic_DasH_vnf_DoT_service_DasH_id")));
        aaiInfo.put("genericVnfVnfId", clEvent.get("AAI").get(new utf8Type("generic_DasH_vnf_DoT_vnf_DasH_id")));
        aaiInfo.put("vserverIsClosedLoopDisabled", clEvent.get("AAI").get(
                new utf8Type("vserver_DoT_is_DasH_closed_DasH_loop_DasH_disabled")));
        aaiInfo.put("vserverProvStatus", clEvent.get("AAI").get(new utf8Type("vserver_DoT_prov_DasH_status")));
        aaiInfo.put("vserverName", clEvent.get("AAI").get(new utf8Type("vserver_DoT_vserver_DasH_name")));

        vcpeClosedLoopStatus.put("AAI", aaiInfo);

        if (clEvent.get("closedLoopAlarmEnd") != null) {
            vcpeClosedLoopStatus.put("closedLoopAlarmEnd", clEvent.get("closedLoopAlarmEnd"));
        } else {
            vcpeClosedLoopStatus.put("closedLoopAlarmEnd", java.lang.Long.valueOf(0));
        }

        executor.getContextAlbum("ControlLoopStatusAlbum").put(vnfID.toString(), vcpeClosedLoopStatus);

        executor.logger.info("Created context information for new vCPE VNF \"" + vnfID.toString() + "\"");
    }

    executor.outFields.put("requestID", requestID);
    executor.outFields.put("vnfID", vnfID);

    executor.logger.info(executor.outFields);
} else {
    executor.logger.info("No vnf-id in VirtualControlLoopEvent, status:"
            + clEvent.get("closedLoopEventStatus").toString());
    var vnfName = clEvent.get("AAI").get(new utf8Type("generic_DasH_vnf_DoT_vnf_DasH_name"));
    executor.logger.info("No vnf-id in VirtualControlLoopEvent for " + vnfName);

    vcpeClosedLoopStatus = executor.getContextAlbum("ControlLoopStatusAlbum").get(vnfName);

    if (vcpeClosedLoopStatus == null) {
        executor.logger.info("Creating context information for new vCPE VNF \"" + vnfName + "\"");

        vcpeClosedLoopStatus = executor.getContextAlbum("ControlLoopStatusAlbum").getSchemaHelper().createNewInstance();

        vcpeClosedLoopStatus.put("closedLoopControlName", clEvent.get("closedLoopControlName"));
        vcpeClosedLoopStatus.put("closedLoopAlarmStart", clEvent.get("closedLoopAlarmStart"));
        vcpeClosedLoopStatus.put("closedLoopEventClient", clEvent.get("closedLoopEventClient"));
        vcpeClosedLoopStatus.put("closedLoopEventStatus", clEvent.get("closedLoopEventStatus("));
        vcpeClosedLoopStatus.put("version", clEvent.get("version"));
        vcpeClosedLoopStatus.put("requestID", clEvent.get("requestID"));
        vcpeClosedLoopStatus.put("target_type", clEvent.get("targetType"));
        vcpeClosedLoopStatus.put("target", clEvent.get("target"));
        vcpeClosedLoopStatus.put("from", clEvent.get("from"));
        vcpeClosedLoopStatus.put("policyScope", "vCPE");
        vcpeClosedLoopStatus.put("policyName", "ONAPvCPEPolicyModel");
        vcpeClosedLoopStatus.put("policyVersion", "0.0.1");
        vcpeClosedLoopStatus.put("notification", "ACTIVE");
        vcpeClosedLoopStatus.put("notificationTime", java.lang.System.currentTimeMillis());
        vcpeClosedLoopStatus.put("message", "");

        var aaiInfo = executor.getContextAlbum("ControlLoopStatusAlbum").getSchemaHelper().createNewSubInstance(
                "VCPE_AAI_Type");

        aaiInfo.put("genericVnfVnfName", clEvent.get("AAI").get(new utf8Type("generic_DasH_vnf_DoT_vnf_DasH_name")));
        vcpeClosedLoopStatus.put("AAI", aaiInfo);

        if (clEvent.get("closedLoopAlarmEnd") != null) {
            vcpeClosedLoopStatus.put("closedLoopAlarmEnd", clEvent.get("closedLoopAlarmEnd"));
        } else {
            vcpeClosedLoopStatus.put("closedLoopAlarmEnd", java.lang.Long.valueOf(0));
        }

        executor.getContextAlbum("ControlLoopStatusAlbum").put(vnfName, vcpeClosedLoopStatus);

        executor.logger.info("Created context information for new vCPE VNF \"" + vnfName + "\"");
    }
    executor.outFields.put("requestID", requestID);
    executor.outFields.put("vnfName", vnfName);
    executor.logger.info(executor.outFields);
}

var returnValue = executor.isTrue;