180dcba71c970c1001d530675c8752fa5039d931
[policy/apex-pdp.git] / examples / examples-grpc / src / main / resources / logic / DeleteSubscriptionPayloadTask.js
1 /*
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2020 Nordix. All rights reserved.
4  * ================================================================================
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *      http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  *
17  * SPDX-License-Identifier: Apache-2.0
18  * ============LICENSE_END=========================================================
19  */
20
21 executor.logger.info(executor.subject.id);
22
23 var pmSubscriptionInfo = executor.getContextAlbum("PMSubscriptionAlbum").get(executor.inFields.get("albumID").toString())
24
25 var payloadProperties = executor.subject.getOutFieldSchemaHelper("payload").createNewSubInstance("delete_DasH_subscription_DasH_properties_record");
26
27 payloadProperties.put("nfName",  pmSubscriptionInfo.get("nfName"))
28 payloadProperties.put("subscriptionName",  pmSubscriptionInfo.get("subscription").get("subscriptionName"))
29 payloadProperties.put("administrativeState", pmSubscriptionInfo.get("subscription").get("administrativeState"))
30 payloadProperties.put("fileBasedGP",  pmSubscriptionInfo.get("subscription").get("fileBasedGP").toString())
31 payloadProperties.put("fileLocation", pmSubscriptionInfo.get("subscription").get("fileLocation"))
32 payloadProperties.put("measurementGroups", pmSubscriptionInfo.get("subscription").get("measurementGroups"))
33
34 var payloadEntry = executor.subject.getOutFieldSchemaHelper("payload").createNewSubInstance("CDSRequestPayloadEntry");
35 payloadEntry.put("delete_DasH_subscription_DasH_properties", payloadProperties)
36
37 var payload = executor.subject.getOutFieldSchemaHelper("payload").createNewInstance();
38 payload.put("delete_DasH_subscription_DasH_request", payloadEntry);
39
40 executor.outFields.put("albumID", executor.inFields.get("albumID"))
41 executor.outFields.put("payload", payload);
42
43 executor.logger.info("Sending delete Subscription Event to CDS")
44
45 true;