7346dded97a9a5b96a6826c051022a8107879448
[policy/xacml-pdp.git] / applications / guard / src / main / java / org / onap / policy / xacml / pdp / application / guard / LegacyGuardPolicyRequest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP
4  * ================================================================================
5  * Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  *
19  * SPDX-License-Identifier: Apache-2.0
20  * ============LICENSE_END=========================================================
21  */
22
23 package org.onap.policy.xacml.pdp.application.guard;
24
25 import com.att.research.xacml.std.annotations.XACMLAction;
26 import com.att.research.xacml.std.annotations.XACMLRequest;
27 import com.att.research.xacml.std.annotations.XACMLResource;
28 import com.att.research.xacml.std.annotations.XACMLSubject;
29
30 import java.util.Map;
31
32 import lombok.Getter;
33 import lombok.Setter;
34 import lombok.ToString;
35
36 import org.onap.policy.models.decisions.concepts.DecisionRequest;
37
38 @Getter
39 @Setter
40 @ToString
41 @XACMLRequest(ReturnPolicyIdList = true)
42 public class LegacyGuardPolicyRequest {
43
44     private static final String STR_GUARD = "guard";
45
46     @XACMLSubject(includeInResults = true)
47     private String onapName;
48
49     @XACMLSubject(includeInResults = true, attributeId = "urn:org:onap:onap-component")
50     private String onapComponent;
51
52     @XACMLSubject(includeInResults = true, attributeId = "urn:org:onap:onap-instance")
53     private String onapInstance;
54
55     @XACMLSubject(includeInResults = true, attributeId = "urn:org:onap:guard:request:request-id")
56     private String requestId;
57
58     @XACMLAction
59     private String action = STR_GUARD;
60
61     @XACMLResource(includeInResults = true, attributeId = "urn:org:onap:guard:clname:clname-id")
62     private String clnameId;
63
64     @XACMLResource(includeInResults = true, attributeId = "urn:org:onap:guard:actor:actor-id")
65     private String actorId;
66
67     @XACMLResource(includeInResults = true, attributeId = "urn:org:onap:guard:operation:operation-id")
68     private String operationId;
69
70     @XACMLResource(includeInResults = true, attributeId = "urn:org:onap:guard:target:target-id")
71     private String targetId;
72
73     @XACMLResource(includeInResults = true, attributeId = "urn:org:onap:guard:target:vf-count")
74     private Integer vfCount;
75
76     @XACMLResource(includeInResults = true, attributeId = "urn:org:onap:guard:target:min")
77     private Integer min;
78
79     @XACMLResource(includeInResults = true, attributeId = "urn:org:onap:guard:target:max")
80     private Integer max;
81
82     @XACMLResource(includeInResults = true, attributeId = "urn:org:onap:guard:operation:operation-count")
83     private Integer operationCount;
84
85     public LegacyGuardPolicyRequest() {
86         super();
87     }
88
89     /**
90      * Parses the DecisionRequest into a StdMetadataPolicyRequest.
91      *
92      * @param decisionRequest Input DecisionRequest
93      * @return StdMetadataPolicyRequest
94      */
95     @SuppressWarnings("unchecked")
96     public static LegacyGuardPolicyRequest createInstance(DecisionRequest decisionRequest) {
97         //
98         // Create our return object
99         //
100         LegacyGuardPolicyRequest request = new LegacyGuardPolicyRequest();
101         //
102         // Add the subject attributes
103         //
104         request.onapName = decisionRequest.getOnapName();
105         request.onapComponent = decisionRequest.getOnapComponent();
106         request.onapInstance = decisionRequest.getOnapInstance();
107         request.requestId = decisionRequest.getRequestId();
108         //
109         // Now pull from the resources
110         //
111         Map<String, Object> resources = decisionRequest.getResource();
112         //
113         // Just in case nothing is in there
114         //
115         if (resources == null || resources.isEmpty() || ! resources.containsKey(STR_GUARD)) {
116             //
117             // Perhaps we throw an exception and then caller
118             // can put together a response
119             //
120             return request;
121         }
122         Map<String, Object> guard = (Map<String, Object>) resources.get(STR_GUARD);
123         if (guard == null || guard.isEmpty()) {
124             //
125             // again, same problem throw an exception?
126             //
127             return request;
128         }
129         //
130         // Find our fields
131         //
132         if (guard.containsKey("actor")) {
133             request.actorId = guard.get("actor").toString();
134         }
135         if (guard.containsKey("recipe")) {
136             request.operationId = guard.get("recipe").toString();
137         }
138         if (guard.containsKey("clname")) {
139             request.clnameId = guard.get("clname").toString();
140         }
141         if (guard.containsKey("target")) {
142             request.targetId = guard.get("target").toString();
143         }
144         if (guard.containsKey("vfCount")) {
145             request.vfCount = Integer.decode(guard.get("vfCount").toString());
146         }
147         if (guard.containsKey("min")) {
148             request.min = Integer.decode(guard.get("min").toString());
149         }
150         if (guard.containsKey("max")) {
151             request.max = Integer.decode(guard.get("max").toString());
152         }
153         //
154         // TODO - remove this when the PIP is hooked up
155         //
156         if (guard.containsKey("operationCount")) {
157             request.operationCount = Integer.decode(guard.get("operationCount").toString());
158         }
159
160         return request;
161     }
162
163 }