Post Init Service Starter
[aaf/authz.git] / cadi / aaf / src / main / java / org / onap / aaf / cadi / register / RegistrationCreator.java
1 /**
2  * ============LICENSE_START====================================================
3  * org.onap.aaf
4  * ===========================================================================
5  * Copyright (c) 2018 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 package org.onap.aaf.cadi.register;
22
23 import java.net.UnknownHostException;
24 import java.util.List;
25
26 import org.onap.aaf.cadi.Access;
27 import org.onap.aaf.cadi.Access.Level;
28 import org.onap.aaf.cadi.CadiException;
29 import org.onap.aaf.cadi.aaf.Defaults;
30 import org.onap.aaf.cadi.config.Config;
31 import org.onap.aaf.cadi.config.RegistrationPropHolder;
32 import org.onap.aaf.cadi.util.Split;
33
34 import locate.v1_0.MgmtEndpoint;
35 import locate.v1_0.MgmtEndpoint.SpecialPorts;
36 import locate.v1_0.MgmtEndpoints;
37
38 public class RegistrationCreator {
39         private Access access;
40     
41     public RegistrationCreator(Access access) {
42         this.access = access;
43     }
44     
45     public MgmtEndpoints create(final int port) throws CadiException {
46         MgmtEndpoints me = new MgmtEndpoints();
47         List<MgmtEndpoint> lme = me.getMgmtEndpoint();
48         MgmtEndpoint defData = null;
49         MgmtEndpoint locate = null;
50
51         try {
52                 String dot_le;
53                 String version=null;
54                 
55                 RegistrationPropHolder ph = new RegistrationPropHolder(access, port);
56                 
57                 // Now, loop through by Container
58                 for(String le : Split.splitTrim(',', ph.lcontainer)) {
59                         if(le.isEmpty()) {
60                                 dot_le = le;
61                         } else {
62                                 dot_le = "."+le;
63                         }
64
65                         for(String entry : Split.splitTrim(',', ph.lentries)) {
66                                 if(defData==null) {
67                                         defData = locate = new MgmtEndpoint();
68
69                                         version = access.getProperty(Config.AAF_LOCATOR_VERSION, Defaults.AAF_VERSION);
70                                         locate.setProtocol(access.getProperty(Config.AAF_LOCATOR_PROTOCOL,null));
71                                         List<String> ls = locate.getSubprotocol();
72                                         for(String sp : Split.splitTrim(',', access.getProperty(Config.AAF_LOCATOR_SUBPROTOCOL,""))) {
73                                                 ls.add(sp);     
74                                         }
75                                         locate.setLatitude(ph.latitude);
76                                         locate.setLongitude(ph.longitude);
77
78                                 } else {
79                                         locate = copy(defData);
80                                 }
81                                 
82                                 locate.setName(ph.getEntryName(entry,dot_le));
83                                 locate.setHostname(ph.getEntryFQDN(entry,dot_le));
84                                 locate.setPort(ph.getEntryPort(dot_le));
85                                 
86                                 String specificVersion = access.getProperty(Config.AAF_LOCATOR_VERSION + dot_le,null);
87                                 if(specificVersion == null && locate == defData) {
88                                         specificVersion = version;
89                                 }
90                                 if(specificVersion!=null) {
91                                         String split[] = Split.splitTrim('.', specificVersion);
92                                         locate.setPkg(split.length>3?Integer.parseInt(split[3]):0);
93                                         locate.setPatch(split.length>2?Integer.parseInt(split[2]):0);
94                                         locate.setMinor(split.length>1?Integer.parseInt(split[1]):0);
95                                         locate.setMajor(split.length>0?Integer.parseInt(split[0]):0);
96                                 }
97
98                                 String protocol = access.getProperty(Config.AAF_LOCATOR_PROTOCOL + dot_le, null);
99                                 if (protocol!=null) {
100                                         locate.setProtocol(protocol);
101                                                 List<String> ls = locate.getSubprotocol();
102                                                 if(ls==null || ls.isEmpty()) {
103                                                 String subprotocols = access.getProperty(Config.AAF_LOCATOR_SUBPROTOCOL + dot_le, null);
104                                                 if(subprotocols==null) {
105                                                         subprotocols = access.getProperty(Config.CADI_PROTOCOLS, null);
106                                                 }
107                                                 if(subprotocols!=null) {
108                                                         for (String s : Split.split(',', subprotocols)) {
109                                                                 ls.add(s);
110                                                         }
111                                                 } else {
112                                                         access.printf(Level.ERROR, "%s is required for Locator Registration of %s",
113                                                                         Config.AAF_LOCATOR_SUBPROTOCOL,Config.AAF_LOCATOR_PROTOCOL);
114                                                 }
115                                                 }
116                                         lme.add(locate);
117                                 } else {
118                                         access.printf(Level.ERROR, "%s is required for Locator Registration",Config.AAF_LOCATOR_PROTOCOL);
119                                 }
120                         }
121                 }
122         } catch (NumberFormatException | UnknownHostException e) {
123                 throw new CadiException("Error extracting Data from Properties for Registrar",e);
124         }
125         
126         if(access.willLog(Level.INFO)) {
127                 access.log(Level.INFO, print(new StringBuilder(),me.getMgmtEndpoint()));
128         }
129         return me;
130     }
131         
132     private StringBuilder print(StringBuilder sb, List<MgmtEndpoint> lme) {
133         int cnt = 0;
134                 for(MgmtEndpoint m : lme) {
135                         print(sb,cnt++,m);
136                 }
137                 return sb;
138         }
139
140         private void print(StringBuilder out, int cnt, MgmtEndpoint mep) {
141                 out.append("\nManagement Endpoint - ");
142                 out.append(cnt);
143                 out.append("\n\tName:       ");
144                 out.append(mep.getName());
145                 out.append("\n\tHostname:   ");
146                 out.append(mep.getHostname());
147                 out.append("\n\tLatitude:   ");
148                 out.append(mep.getLatitude());
149                 out.append("\n\tLongitude:  ");
150                 out.append(mep.getLongitude());
151                 out.append("\n\tVersion:    ");
152                 out.append(mep.getMajor());
153                 out.append('.');
154                 out.append(mep.getMinor());
155                 out.append('.');
156                 out.append(mep.getPkg());
157                 out.append('.');
158                 out.append(mep.getPatch());
159                 out.append("\n\tPort:       ");
160                 out.append(mep.getPort());
161                 out.append("\n\tProtocol:   ");
162                 out.append(mep.getProtocol());
163                 out.append("\n\tSpecial Ports:");
164                 for( SpecialPorts sp : mep.getSpecialPorts()) {
165                         out.append("\n\t\tName:       ");
166                         out.append(sp.getName());
167                         out.append("\n\t\tPort:       ");
168                         out.append(sp.getPort());
169                         out.append("\n\t\tProtocol:   ");
170                         out.append(sp.getProtocol());
171                         out.append("\n\t\t  Versions: ");
172                         boolean first = true;
173                         for(String s : sp.getProtocolVersions()) {
174                                 if(first) {
175                                         first = false;
176                                 } else {
177                                         out.append(',');
178                                 }
179                                 out.append(s);
180                         }
181                 }
182                 boolean first = true;
183                 out.append("\n\tSubProtocol: ");
184                 for(String s : mep.getSubprotocol()) {
185                         if(first) {
186                                 first = false;
187                         } else {
188                                 out.append(',');
189                         }
190                         out.append(s);
191                 }
192         }
193     
194     private MgmtEndpoint copy(MgmtEndpoint mep) {
195                 MgmtEndpoint out = new MgmtEndpoint();
196                 out.setName(mep.getName());
197                 out.setHostname(mep.getHostname());
198                 out.setLatitude(mep.getLatitude());
199                 out.setLongitude(mep.getLongitude());
200                 out.setMajor(mep.getMajor());
201                 out.setMinor(mep.getMinor());
202                 out.setPkg(mep.getPkg());
203                 out.setPatch(mep.getPatch());
204                 out.setPort(mep.getPort());
205                 out.setProtocol(mep.getProtocol());
206                 out.getSpecialPorts().addAll(mep.getSpecialPorts());
207                 out.getSubprotocol().addAll(mep.getSubprotocol());
208                 return out;
209         }
210 }