Refactor code to support no AAF requests
[dmaap/dbcapi.git] / src / main / java / org / onap / dmaap / dbcapi / service / MirrorMakerService.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * org.onap.dmaap
4  * ================================================================================
5  * Copyright (C) 2017 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.dmaap.dbcapi.service;
22
23 import java.util.ArrayList;
24 import java.util.List;
25 import java.util.Map;
26
27
28
29
30
31
32
33
34
35 //import org.openecomp.dmaapbc.aaf.AndrewDecryptor;
36 import org.onap.dmaap.dbcapi.aaf.AafDecrypt;
37 import org.onap.dmaap.dbcapi.client.MrTopicConnection;
38 import org.onap.dmaap.dbcapi.database.DatabaseClass;
39 import org.onap.dmaap.dbcapi.logging.BaseLoggingClass;
40 import org.onap.dmaap.dbcapi.logging.DmaapbcLogMessageEnum;
41 import org.onap.dmaap.dbcapi.model.ApiError;
42 import org.onap.dmaap.dbcapi.model.MR_Cluster;
43 import org.onap.dmaap.dbcapi.model.MirrorMaker;
44 import org.onap.dmaap.dbcapi.model.DmaapObject.DmaapObject_Status;
45 import org.onap.dmaap.dbcapi.util.DmaapConfig;
46 import org.onap.dmaap.dbcapi.util.RandomInteger;
47
48 public class MirrorMakerService extends BaseLoggingClass {
49         
50         private Map<String, MirrorMaker> mirrors = DatabaseClass.getMirrorMakers();
51         private static MrTopicConnection prov;
52         private static AafDecrypt decryptor;
53         
54         public MirrorMakerService() {
55                 super();
56                 
57                 decryptor = new AafDecrypt();
58         }
59
60         // will create a MM on MMagent if needed
61         // will update the MMagent whitelist with all topics for this MM
62         public MirrorMaker updateMirrorMaker( MirrorMaker mm ) {
63                 logger.info( "updateMirrorMaker");
64                 DmaapConfig p = (DmaapConfig)DmaapConfig.getConfig();
65                 String provUser = p.getProperty("MM.ProvUserMechId");
66                 String provUserPwd = decryptor.decrypt(p.getProperty( "MM.ProvUserPwd", "notSet" ));
67                 prov = new MrTopicConnection( provUser, provUserPwd );
68
69                 String centralFqdn = p.getProperty("MR.CentralCname", "notSet");
70                 
71                 DmaapService dmaap = new DmaapService();
72                 MR_ClusterService clusters = new MR_ClusterService();
73         
74                 // in 1610, MM should only exist for edge-to-central
75                 //  we use a cname for the central MR cluster that is active, and provision on agent topic on that target
76                 // but only send 1 message so MM Agents can read it relying on kafka delivery
77                 for( MR_Cluster central: clusters.getCentralClusters() ) {
78                         prov.makeTopicConnection(central, dmaap.getBridgeAdminFqtn(), centralFqdn  );
79                         ApiError resp = prov.doPostMessage(mm.createMirrorMaker());
80                         if ( ! resp.is2xx() ) {
81         
82                                 errorLogger.error( DmaapbcLogMessageEnum.MM_PUBLISH_ERROR, "create MM", Integer.toString(resp.getCode()), resp.getMessage());
83                                 mm.setStatus(DmaapObject_Status.INVALID);
84                         } else {
85                                 prov.makeTopicConnection(central, dmaap.getBridgeAdminFqtn(), centralFqdn );
86                                 resp = prov.doPostMessage(mm.updateWhiteList());
87                                 if ( ! resp.is2xx()) {
88                                         errorLogger.error( DmaapbcLogMessageEnum.MM_PUBLISH_ERROR,"MR Bridge", Integer.toString(resp.getCode()), resp.getMessage());
89                                         mm.setStatus(DmaapObject_Status.INVALID);
90                                 } else {
91                                         mm.setStatus(DmaapObject_Status.VALID);
92                                 }
93                         }
94                         
95                         // we only want to send one message even if there are multiple central clusters
96                         break;
97                 
98                 } 
99                 
100
101
102                 mm.setLastMod();
103                 return mirrors.put( mm.getMmName(), mm);
104         }
105         public MirrorMaker getMirrorMaker( String part1, String part2 ) {
106                 logger.info( "getMirrorMaker using " + part1 + " and " + part2 );
107                 return mirrors.get(MirrorMaker.genKey(part1, part2));
108         }       
109         public MirrorMaker getMirrorMaker( String key ) {
110                 logger.info( "getMirrorMaker using " + key);
111                 return mirrors.get(key);
112         }
113         
114         /*public MirrorMaker updateMirrorMaker( MirrorMaker mm ) {
115                 logger.info( "updateMirrorMaker");
116                 return mirrors.put( mm.getMmName(), mm);
117         }
118         */
119         
120         public void delMirrorMaker( MirrorMaker mm ) {
121                 logger.info( "delMirrorMaker");
122                 mirrors.remove(mm.getMmName());
123         }
124         
125         // TODO: this should probably return sequential values or get replaced by the MM client API
126         // but it should be sufficient for initial 1610 development
127         public static String genTransactionId() {
128                 RandomInteger ri = new RandomInteger(100000);
129             int randomInt = ri.next();
130             return Integer.toString(randomInt);
131         }
132         public List<String> getAllMirrorMakers() {
133                 List<String> ret = new ArrayList<String>();
134                 for( String key: mirrors.keySet()) {
135                         ret.add( key );
136                 }
137                 
138                 return ret;
139         }
140
141 }