1229cf49c6cbba9dac712fc3d0b9e9a72787fccf
[aai/aai-common.git] / aai-schema-ingest / src / main / java / org / onap / aai / validation / edges / DefaultEdgeFieldsValidationModule.java
1 /** 
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017-18 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  * ============LICENSE_END=========================================================
19  */
20
21 /**
22  * 
23  */
24
25 package org.onap.aai.validation.edges;
26
27 import java.util.EnumSet;
28 import java.util.Map;
29 import java.util.Map.Entry;
30
31 import org.onap.aai.edges.enums.EdgeField;
32
33 /**
34  * Default core A&AI edge field validation
35  * All fields in EdgeField enum are required EXCEPT description
36  *
37  */
38 public class DefaultEdgeFieldsValidationModule implements EdgeFieldsValidationModule {
39
40     /*
41      * (non-Javadoc)
42      * 
43      * @see org.onap.aai.edges.EdgeFieldsValidator#verifyFields(java.util.Map)
44      */
45     @Override
46     public String verifyFields(Map<String, String> rule) {
47         EnumSet<EdgeField> missingFields = EnumSet.complementOf(EnumSet.allOf(EdgeField.class));
48
49         for (EdgeField f : EdgeField.values()) {
50             if (!rule.containsKey(f.toString()) && (f != EdgeField.DESCRIPTION) && (f != EdgeField.PRIVATE)) { // description
51                                                                                                                // is
52                                                                                                                // optional
53                 missingFields.add(f);
54             }
55         }
56
57         StringBuilder errorMsg = new StringBuilder();
58         if (!missingFields.isEmpty()) {
59             errorMsg.append("Rule ").append(ruleToString(rule)).append(" missing required fields: ");
60             for (EdgeField mf : missingFields) {
61                 errorMsg.append(mf.toString()).append(" ");
62             }
63         }
64
65         return errorMsg.toString();
66     }
67
68     private String ruleToString(Map<String, String> rule) {
69         StringBuilder sb = new StringBuilder();
70         for (Entry<String, String> fields : rule.entrySet()) {
71             sb.append(fields.getKey()).append(":").append(fields.getValue()).append(" ");
72         }
73
74         return sb.toString();
75     }
76
77 }