f8a7feed13a48bf49349bc83100d1b7a7fd55f8a
[dmaap/messagerouter/messageservice.git] / src / main / java / com / att / nsa / dmaap / service / MMRestService.java
1 /*******************************************************************************
2  *  ============LICENSE_START=======================================================
3  *  org.onap.dmaap
4  *  ================================================================================
5  *  Copyright © 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  *        http://www.apache.org/licenses/LICENSE-2.0
11  *  
12  *  Unless required by applicable law or agreed to in writing, software
13  *  distributed under the License is distributed on an "AS IS" BASIS,
14  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  *  See the License for the specific language governing permissions and
16  *  limitations under the License.
17  *  ============LICENSE_END=========================================================
18  *
19  *  ECOMP is a trademark and service mark of AT&T Intellectual Property.
20  *  
21  *******************************************************************************/
22 package com.att.nsa.dmaap.service;
23
24 import java.io.IOException;
25 import java.io.InputStream;
26 import java.util.ArrayList;
27 import java.util.Date;
28 import java.util.List;
29
30
31 import javax.servlet.http.HttpServletRequest;
32 import javax.servlet.http.HttpServletResponse;
33 import javax.ws.rs.POST;
34 import javax.ws.rs.Path;
35 import javax.ws.rs.Produces;
36 import javax.ws.rs.core.Context;
37 import org.json.JSONObject;
38 import org.apache.commons.io.IOUtils;
39 import org.apache.commons.lang.StringUtils;
40 import com.att.eelf.configuration.EELFLogger;
41 import com.att.eelf.configuration.EELFManager;
42 import org.springframework.beans.factory.annotation.Autowired;
43 import org.springframework.beans.factory.annotation.Qualifier;
44 import org.springframework.stereotype.Component;
45
46 import com.att.nsa.cambria.utils.ConfigurationReader;
47 import com.att.nsa.cambria.utils.DMaaPResponseBuilder;
48 import com.att.nsa.cambria.utils.Utils;
49 import com.att.nsa.configs.ConfigDbException;
50 import com.att.nsa.dmaap.mmagent.*;
51 import com.att.nsa.drumlin.till.nv.rrNvReadable.missingReqdSetting;
52 import com.att.nsa.security.ReadWriteSecuredResource.AccessDeniedException;
53 import com.google.gson.Gson;
54 import com.google.gson.JsonSyntaxException;
55
56 import edu.emory.mathcs.backport.java.util.Arrays;
57
58 import com.att.ajsc.filemonitor.AJSCPropertiesMap;
59 import com.att.nsa.cambria.CambriaApiException;
60 import com.att.nsa.cambria.backends.ConsumerFactory.UnavailableException;
61
62 import org.json.JSONArray;
63 import org.json.JSONException;
64 import com.att.nsa.cambria.beans.DMaaPContext;
65 import com.att.nsa.cambria.constants.CambriaConstants;
66 import com.att.nsa.cambria.exception.DMaaPErrorMessages;
67 import com.att.nsa.cambria.metabroker.Broker.TopicExistsException;
68 import com.att.nsa.cambria.security.DMaaPAAFAuthenticator;
69 import com.att.nsa.cambria.security.DMaaPAAFAuthenticatorImpl;
70 import com.att.nsa.cambria.service.MMService;
71
72 /**
73  * Rest Service class for Mirror Maker proxy Rest Services
74  * 
75  * @author <a href="mailto:"></a>
76  *
77  * @since May 25, 2016
78  */
79
80 @Component
81 public class MMRestService {
82
83         private static final EELFLogger LOGGER = EELFManager.getInstance().getLogger(MMRestService.class);
84         private static final String NO_ADMIN_PERMISSION = "No Mirror Maker Admin permission.";
85         private static final String NO_USER_PERMISSION = "No Mirror Maker User permission.";
86         private static final String NO_USER_CREATE_PERMISSION = "No Mirror Maker User Create permission.";
87         private static final String NAME_DOES_NOT_MEET_REQUIREMENT = "Mirror Maker name can only contain alpha numeric";
88         private static final String INVALID_IPPORT = "This is not a valid IP:Port";
89         private static final String MIRROR_MAKERADMIN = "msgRtr.mirrormakeradmin.aaf";
90         private static final String MIRROR_MAKERUSER = "msgRtr.mirrormakeruser.aaf";
91         private static final String UTF_8 = "UTF-8";
92         private static final String MESSAGE = "message";
93         private static final String LISTMIRRORMAKER = "listMirrorMaker";
94         private static final String ERROR = "error";
95         private static final String NAMESPACE = "namespace";
96
97         private String topic;
98         private int timeout;
99         private String consumergroup;
100         private String consumerid;
101
102         @Autowired
103         @Qualifier("configurationReader")
104         private ConfigurationReader configReader;
105
106         @Context
107         private HttpServletRequest request;
108
109         @Context
110         private HttpServletResponse response;
111
112         @Autowired
113         private MMService mirrorService;
114
115         @Autowired
116         private DMaaPErrorMessages errorMessages;
117
118         /**
119          * This method is used for taking Configuration Object,HttpServletRequest
120          * Object,HttpServletRequest HttpServletResponse Object,HttpServletSession
121          * Object.
122          * 
123          * @return DMaaPContext object from where user can get Configuration
124          *         Object,HttpServlet Object
125          * 
126          */
127         private DMaaPContext getDmaapContext() {
128                 DMaaPContext dmaapContext = new DMaaPContext();
129                 dmaapContext.setRequest(request);
130                 dmaapContext.setResponse(response);
131                 dmaapContext.setConfigReader(configReader);
132                 dmaapContext.setConsumerRequestTime(Utils.getFormattedDate(new Date()));
133
134                 return dmaapContext;
135         }
136
137         @POST
138         @Produces("application/json")
139         @Path("/create")
140         public void callCreateMirrorMaker(InputStream msg) {
141
142                 DMaaPContext ctx = getDmaapContext();
143                 if (checkMirrorMakerPermission(ctx,
144                                 AJSCPropertiesMap.getProperty(CambriaConstants.msgRtr_prop, MIRROR_MAKERADMIN))) {
145
146                         loadProperty();
147                         String input = null;
148                         String randomStr = getRandomNum();
149
150                         InputStream inStream = null;
151                         Gson gson = new Gson();
152                         CreateMirrorMaker createMirrorMaker = new CreateMirrorMaker();
153
154                         try {
155                                 input = IOUtils.toString(msg, UTF_8);
156
157                                 if (input != null && input.length() > 0) {
158                                         input = removeExtraChar(input);
159                                 }
160
161                                 // Check if the request has CreateMirrorMaker
162                                 try {
163                                         createMirrorMaker = gson.fromJson(input, CreateMirrorMaker.class);
164
165                                 } catch (JsonSyntaxException ex) {
166
167                                         sendErrResponse(ctx, errorMessages.getIncorrectJson());
168                                         LOGGER.error("JsonSyntaxException: ", ex);
169                                 }
170                                 String name = createMirrorMaker.getCreateMirrorMaker().getName();
171                                 // send error message if it is not a CreateMirrorMaker request.
172                                 if (createMirrorMaker.getCreateMirrorMaker() == null) {
173                                         sendErrResponse(ctx, "This is not a CreateMirrorMaker request. Please try again.");
174                                 }
175
176                                 // MirrorMaker whitelist and status should not be passed
177                                 else if (createMirrorMaker.getCreateMirrorMaker().getWhitelist() != null
178                                                 || createMirrorMaker.getCreateMirrorMaker().getStatus() != null) {
179                                         sendErrResponse(ctx, "This is not a CreateMirrorMaker request. Please try again.");
180                                 }
181                                 
182                                 // if empty, blank name is entered
183                                 else if (StringUtils.isBlank(name)) {
184                                         sendErrResponse(ctx, "Name can not be empty or blank.");
185                                 }
186
187                                 // Check if the name contains only Alpha Numeric
188                                 else if (!isAlphaNumeric(name)) {
189                                         sendErrResponse(ctx, NAME_DOES_NOT_MEET_REQUIREMENT);
190
191                                 }
192
193                                 // Validate the IP and Port
194                                 else if (!StringUtils.isBlank(createMirrorMaker.getCreateMirrorMaker().getConsumer())
195                                                 && !StringUtils.isBlank(createMirrorMaker.getCreateMirrorMaker().getProducer())
196                                                 && !validateIPPort(createMirrorMaker.getCreateMirrorMaker().getConsumer())
197                                                 || !validateIPPort(createMirrorMaker.getCreateMirrorMaker().getProducer())) {
198                                         sendErrResponse(ctx, INVALID_IPPORT);
199
200                                 }
201                                 // Set a random number as messageID, convert Json Object to
202                                 // InputStream and finally call publisher and subscriber
203                                 else if (isAlphaNumeric(name) && validateIPPort(createMirrorMaker.getCreateMirrorMaker().getConsumer())
204                                                 && validateIPPort(createMirrorMaker.getCreateMirrorMaker().getProducer())) {
205
206                                         createMirrorMaker.setMessageID(randomStr);
207                                         inStream = IOUtils.toInputStream(gson.toJson(createMirrorMaker), UTF_8);
208                                         callPubSub(randomStr, ctx, inStream);
209                                 }
210
211                         } catch (IOException e) {
212
213                                 LOGGER.error("IOException: ", e);
214                         }
215                 }
216                 // Send error response if user does not provide Authorization
217                 else {
218                         sendErrResponse(ctx, NO_ADMIN_PERMISSION);
219                 }
220         }
221
222         @POST
223         @Produces("application/json")
224         @Path("/listall")
225         public void callListAllMirrorMaker(InputStream msg) throws CambriaApiException {
226                 DMaaPContext ctx = getDmaapContext();
227
228                 if (checkMirrorMakerPermission(ctx,
229                                 AJSCPropertiesMap.getProperty(CambriaConstants.msgRtr_prop, MIRROR_MAKERADMIN))) {
230
231                         loadProperty();
232
233                         String input = null;
234
235                         try {
236                                 input = IOUtils.toString(msg, UTF_8);
237
238                                 if (input != null && input.length() > 0) {
239                                         input = removeExtraChar(input);
240                                 }
241
242                                 String randomStr = getRandomNum();
243                                 JSONObject jsonOb = null;
244
245                                 try {
246                                         jsonOb = new JSONObject(input);
247
248                                 } catch (JSONException ex) {
249
250                                         sendErrResponse(ctx, errorMessages.getIncorrectJson());
251                                         LOGGER.error("JSONException: ", ex);
252                                 }
253
254                                 // Check if request has listAllMirrorMaker and
255                                 // listAllMirrorMaker is empty
256                                 if ((jsonOb != null) && (jsonOb.has("listAllMirrorMaker") &&
257                                     jsonOb.getJSONObject("listAllMirrorMaker").length() == 0)) {
258                                         jsonOb.put("messageID", randomStr);
259                                         InputStream inStream = null;
260
261                                         try {
262                                                 inStream = IOUtils.toInputStream(jsonOb.toString(), UTF_8);
263
264                                         } catch (IOException ioe) {
265                                                 LOGGER.error("IOException: ", ioe);
266                                         }
267
268                                         callPubSub(randomStr, ctx, inStream);
269
270                                 } else {
271
272                                         sendErrResponse(ctx, "This is not a ListAllMirrorMaker request. Please try again.");
273                                 }
274
275                         } catch (IOException ioe) {
276
277                                 LOGGER.error("IOException: ", ioe);
278                         }
279
280                 } else {
281
282                         sendErrResponse(getDmaapContext(), NO_ADMIN_PERMISSION);
283                 }
284         }
285
286         @POST
287         @Produces("application/json")
288         @Path("/update")
289         public void callUpdateMirrorMaker(InputStream msg) throws CambriaApiException {
290
291                 DMaaPContext ctx = getDmaapContext();
292                 if (checkMirrorMakerPermission(ctx,
293                                 AJSCPropertiesMap.getProperty(CambriaConstants.msgRtr_prop, MIRROR_MAKERADMIN))) {
294
295                         loadProperty();
296                         String input = null;
297                         String randomStr = getRandomNum();
298
299                         InputStream inStream = null;
300                         Gson gson = new Gson();
301                         UpdateMirrorMaker updateMirrorMaker = new UpdateMirrorMaker();
302
303                         try {
304                                 input = IOUtils.toString(msg, UTF_8);
305
306                                 if (input != null && input.length() > 0) {
307                                         input = removeExtraChar(input);
308                                 }
309
310                                 // Check if the request has UpdateMirrorMaker
311                                 try {
312                                         updateMirrorMaker = gson.fromJson(input, UpdateMirrorMaker.class);
313
314                                 } catch (JsonSyntaxException ex) {
315
316                                         sendErrResponse(ctx, errorMessages.getIncorrectJson());
317                                         LOGGER.error("JsonSyntaxException: ", ex);
318
319                                 }
320                                 String name = updateMirrorMaker.getUpdateMirrorMaker().getName();
321
322                                 // send error message if it is not a UpdateMirrorMaker request.
323                                 if (updateMirrorMaker.getUpdateMirrorMaker() == null) {
324                                         sendErrResponse(ctx, "This is not a UpdateMirrorMaker request. Please try again.");
325                                 }
326
327                                 // MirrorMaker whitelist and status should not be passed
328                                 else if (updateMirrorMaker.getUpdateMirrorMaker().getWhitelist() != null
329                                                 || updateMirrorMaker.getUpdateMirrorMaker().getStatus() != null) {
330                                         sendErrResponse(ctx, "This is not a UpdateMirrorMaker request. Please try again.");
331                                 }
332                                 
333                                 // if empty, blank name is entered
334                                 else if (StringUtils.isBlank(name)) {
335                                         sendErrResponse(ctx, "Name can not be empty or blank.");
336                                 }
337
338                                 // Check if the name contains only Alpha Numeric
339                                 else if (!isAlphaNumeric(name)) {
340                                         sendErrResponse(ctx, NAME_DOES_NOT_MEET_REQUIREMENT);
341
342                                 }
343
344                                 // Validate the IP and Port
345                                 else if (!StringUtils.isBlank(updateMirrorMaker.getUpdateMirrorMaker().getConsumer())
346                                                 && !StringUtils.isBlank(updateMirrorMaker.getUpdateMirrorMaker().getProducer())
347                                                 && !validateIPPort(updateMirrorMaker.getUpdateMirrorMaker().getConsumer())
348                                                 || !validateIPPort(updateMirrorMaker.getUpdateMirrorMaker().getProducer())) {
349                                         sendErrResponse(ctx, INVALID_IPPORT);
350
351                                 }
352                                 // Set a random number as messageID, convert Json Object to
353                                 // InputStream and finally call publisher and subscriber
354                                 else if (isAlphaNumeric(name) && validateIPPort(updateMirrorMaker.getUpdateMirrorMaker().getConsumer())
355                                                 && validateIPPort(updateMirrorMaker.getUpdateMirrorMaker().getProducer())) {
356
357                                         updateMirrorMaker.setMessageID(randomStr);
358                                         inStream = IOUtils.toInputStream(gson.toJson(updateMirrorMaker), UTF_8);
359                                         callPubSub(randomStr, ctx, inStream);
360                                 }
361
362                         } catch (IOException e) {
363
364                                 LOGGER.error("IOException: ", e);
365                         }
366                 }
367                 // Send error response if user does not provide Authorization
368                 else {
369                         sendErrResponse(ctx, NO_ADMIN_PERMISSION);
370                 }
371         }
372
373         @POST
374         @Produces("application/json")
375         @Path("/delete")
376         public void callDeleteMirrorMaker(InputStream msg) throws CambriaApiException {
377                 DMaaPContext ctx = getDmaapContext();
378
379                 if (checkMirrorMakerPermission(ctx,
380                                 AJSCPropertiesMap.getProperty(CambriaConstants.msgRtr_prop, MIRROR_MAKERADMIN))) {
381
382                         loadProperty();
383
384                         String input = null;
385
386                         try {
387                                 input = IOUtils.toString(msg, UTF_8);
388
389                                 if (input != null && input.length() > 0) {
390                                         input = removeExtraChar(input);
391                                 }
392
393                                 String randomStr = getRandomNum();
394                                 JSONObject jsonOb = null;
395
396                                 try {
397                                         jsonOb = new JSONObject(input);
398
399                                 } catch (JSONException ex) {
400
401                                         sendErrResponse(ctx, errorMessages.getIncorrectJson());
402                                         LOGGER.error("JSONException: ", ex);
403                                 }
404
405                                 // Check if request has DeleteMirrorMaker and
406                                 // DeleteMirrorMaker has MirrorMaker object with name variable
407                                 // and check if the name contain only alpha numeric
408                                 if ((jsonOb != null) && (jsonOb.has("deleteMirrorMaker") 
409                                                 && jsonOb.getJSONObject("deleteMirrorMaker").length() == 1
410                                                 && jsonOb.getJSONObject("deleteMirrorMaker").has("name") 
411                                                 && !StringUtils.isBlank(jsonOb.getJSONObject("deleteMirrorMaker").getString("name"))
412                                                 && isAlphaNumeric(jsonOb.getJSONObject("deleteMirrorMaker").getString("name")))) {
413
414                                         jsonOb.put("messageID", randomStr);
415                                         InputStream inStream = null;
416
417                                         try {
418                                                 inStream = IOUtils.toInputStream(jsonOb.toString(), UTF_8);
419
420                                         } catch (IOException ioe) {
421                                                 LOGGER.error("IOException: ", ioe);
422                                         }
423
424                                         callPubSub(randomStr, ctx, inStream);
425
426                                 } else {
427
428                                         sendErrResponse(ctx, "This is not a DeleteMirrorMaker request. Please try again.");
429                                 }
430
431                         } catch (IOException ioe) {
432
433                                 ioe.printStackTrace();
434                                 LOGGER.error("IOException: ", ioe);
435                         }
436
437                 } else {
438
439                         sendErrResponse(getDmaapContext(), NO_ADMIN_PERMISSION);
440                 }
441         }
442
443         private boolean isListMirrorMaker(String msg, String messageID) {
444                 String topicmsg = msg;
445                 topicmsg = removeExtraChar(topicmsg);
446
447                 JSONObject jObj;
448                 JSONArray jArray;
449                 boolean exist = false;
450
451                 if (!StringUtils.isBlank(topicmsg) && topicmsg.length() > 2) {
452                         jArray = new JSONArray(topicmsg);
453
454                         for (int i = 0; i < jArray.length(); i++) {
455                                 jObj = jArray.getJSONObject(i);
456                                 
457                                 JSONObject obj = new JSONObject();
458                                 if (jObj.has(MESSAGE)) {
459                                         obj = jObj.getJSONObject(MESSAGE);
460                                 }
461                                 if (obj.has("messageID") && obj.get("messageID").equals(messageID) && obj.has(LISTMIRRORMAKER)) {
462                                         exist = true;
463                                         break;
464                                 }
465                         }
466                 }
467                 return exist;
468         }
469
470         private void loadProperty() {
471
472                 this.timeout = Integer.parseInt(
473                                 AJSCPropertiesMap.getProperty(CambriaConstants.msgRtr_prop, "msgRtr.mirrormaker.timeout").trim());
474                 this.topic = AJSCPropertiesMap.getProperty(CambriaConstants.msgRtr_prop, "msgRtr.mirrormaker.topic").trim();
475                 this.consumergroup = AJSCPropertiesMap
476                                 .getProperty(CambriaConstants.msgRtr_prop, "msgRtr.mirrormaker.consumergroup").trim();
477                 this.consumerid = AJSCPropertiesMap.getProperty(CambriaConstants.msgRtr_prop, "msgRtr.mirrormaker.consumerid")
478                                 .trim();
479         }
480
481         private String removeExtraChar(String message) {
482                 String str = message;
483                 str = checkJsonFormate(str);
484
485                 if (str != null && str.length() > 0) {
486                         str = str.replace("\\", "");
487                         str = str.replace("\"{", "{");
488                         str = str.replace("}\"", "}");
489                 }
490                 return str;
491         }
492
493         private String getRandomNum() {
494                 long random = Math.round(Math.random() * 89999) + 10000;
495                 String strLong = Long.toString(random);
496                 return strLong;
497         }
498
499         private boolean isAlphaNumeric(String name) {
500                 String pattern = "^[a-zA-Z0-9]*$";
501                 if (name.matches(pattern)) {
502                         return true;
503                 }
504                 return false;
505         }
506
507         // This method validate IPv4
508         private boolean validateIPPort(String ipPort) {
509                 String pattern = "^([01]?\\d\\d?|2[0-4]\\d|25[0-5])\\.([01]?\\d\\d?|2[0-4]\\d|25[0-5])\\."
510                                 + "([01]?\\d\\d?|2[0-4]\\d|25[0-5])\\.([01]?\\d\\d?|2[0-4]\\d|25[0-5]):"
511                                 + "([1-9][0-9]{0,3}|[1-5][0-9]{4}|6[0-4][0-9]{3}|65[0-4][0-9]{2}|655[0-2][0-9]|6553[0-5])$";
512                 if (ipPort.matches(pattern)) {
513                         return true;
514                 }
515                 return false;
516         }
517
518         private String checkJsonFormate(String jsonStr) {
519
520                 String json = jsonStr;
521                 if (jsonStr != null && jsonStr.length() > 0 && jsonStr.startsWith("[") && !jsonStr.endsWith("]")) {
522                         json = json + "]";
523                 }
524                 return json;
525         }
526
527         private boolean checkMirrorMakerPermission(DMaaPContext ctx, String permission) {
528
529                 boolean hasPermission = false;
530
531                 DMaaPAAFAuthenticator aaf = new DMaaPAAFAuthenticatorImpl();
532
533                 if (aaf.aafAuthentication(ctx.getRequest(), permission)) {
534                         hasPermission = true;
535                 }
536                 return hasPermission;
537         }
538
539         private void callPubSub(String randomstr, DMaaPContext ctx, InputStream inStream) {
540                 try {
541                         mirrorService.pushEvents(ctx, topic, inStream, null, null);
542                         long startTime = System.currentTimeMillis();
543                         String msgFrmSubscribe = mirrorService.subscribe(ctx, topic, consumergroup, consumerid);
544
545                         while (!isListMirrorMaker(msgFrmSubscribe, randomstr)
546                                         && (System.currentTimeMillis() - startTime) < timeout) {
547                                 msgFrmSubscribe = mirrorService.subscribe(ctx, topic, consumergroup, consumerid);
548                         }
549
550                         JSONObject jsonObj;
551                         JSONObject finalJsonObj = new JSONObject();
552                         JSONArray jsonArray;
553
554                         if (msgFrmSubscribe != null && msgFrmSubscribe.length() > 0
555                                         && isListMirrorMaker(msgFrmSubscribe, randomstr)) {
556                                 msgFrmSubscribe = removeExtraChar(msgFrmSubscribe);
557                                 jsonArray = new JSONArray(msgFrmSubscribe);
558
559                                 for (int i = 0; i < jsonArray.length(); i++) {
560                                         jsonObj = jsonArray.getJSONObject(i);
561                                         
562                                         JSONObject obj = new JSONObject();
563                                         if (jsonObj.has(MESSAGE)) {
564                                                 obj = jsonObj.getJSONObject(MESSAGE);
565                                         }
566                                         if (obj.has("messageID") && obj.get("messageID").equals(randomstr) && obj.has(LISTMIRRORMAKER)) {
567                                                 finalJsonObj.put(LISTMIRRORMAKER, obj.get(LISTMIRRORMAKER));
568                                                 break;
569                                         }
570                                 }
571
572                                 DMaaPResponseBuilder.respondOk(ctx, finalJsonObj);
573
574                         } else {
575
576                                 JSONObject err = new JSONObject();
577                                 err.append(ERROR, "listMirrorMaker is not available, please make sure MirrorMakerAgent is running");
578                                 DMaaPResponseBuilder.respondOk(ctx, err);
579                         }
580
581                 } catch (Exception e) {
582                         LOGGER.error("Exception: ", e);                 
583                 }
584         }
585
586         private void sendErrResponse(DMaaPContext ctx, String errMsg) {
587                 JSONObject err = new JSONObject();
588                 err.append(ERROR, errMsg);
589
590                 try {
591                         DMaaPResponseBuilder.respondOk(ctx, err);
592                         LOGGER.error(errMsg);
593
594                 } catch (JSONException | IOException e) {
595                         LOGGER.error(errMsg);
596                 }
597         }
598
599         @SuppressWarnings("unchecked")
600         @POST
601         @Produces("application/json")
602         @Path("/listallwhitelist")
603         public void listWhiteList(InputStream msg) {
604
605                 DMaaPContext ctx = getDmaapContext();
606                 if (checkMirrorMakerPermission(ctx,
607                                 AJSCPropertiesMap.getProperty(CambriaConstants.msgRtr_prop, MIRROR_MAKERUSER))) {
608
609                         loadProperty();
610                         String input = null;
611
612                         try {
613                                 input = IOUtils.toString(msg, UTF_8);
614
615                                 if (input != null && input.length() > 0) {
616                                         input = removeExtraChar(input);
617                                 }
618
619                                 // Check if it is correct Json object
620                                 JSONObject jsonOb = null;
621
622                                 try {
623                                         jsonOb = new JSONObject(input);
624
625                                 } catch (JSONException ex) {
626
627                                         sendErrResponse(ctx, errorMessages.getIncorrectJson());
628                                         LOGGER.error("JSONException: ", ex);
629                                 }
630
631                                 // Check if the request has name and name contains only alpha
632                                 // numeric
633                                 // and check if the request has namespace and namespace contains
634                                 // only alpha numeric
635                                 if (jsonOb != null 
636                                                 && jsonOb.length() == 2 && jsonOb.has("name")
637                                                 && !StringUtils.isBlank(jsonOb.getString("name"))
638                                                 && isAlphaNumeric(jsonOb.getString("name")) && jsonOb.has(NAMESPACE)
639                                                 && !StringUtils.isBlank(jsonOb.getString(NAMESPACE))) {
640
641                                         String permission = AJSCPropertiesMap.getProperty(CambriaConstants.msgRtr_prop,
642                                                         "msgRtr.mirrormakeruser.aaf.create") + jsonOb.getString(NAMESPACE) + "|create";
643
644                                         // Check if the user have create permission for the
645                                         // namespace
646                                         if (checkMirrorMakerPermission(ctx, permission)) {
647
648                                                 JSONObject listAll = new JSONObject();
649                                                 JSONObject emptyObject = new JSONObject();
650
651                                                 // Create a listAllMirrorMaker Json object
652                                                 try {
653                                                         listAll.put("listAllMirrorMaker", emptyObject);
654
655                                                 } catch (JSONException e) {
656
657                                                         LOGGER.error("JSONException: ", e);
658                                                 }
659
660                                                 // set a random number as messageID
661                                                 String randomStr = getRandomNum();
662                                                 listAll.put("messageID", randomStr);
663                                                 InputStream inStream = null;
664
665                                                 // convert listAll Json object to InputStream object
666                                                 try {
667                                                         inStream = IOUtils.toInputStream(listAll.toString(), UTF_8);
668
669                                                 } catch (IOException ioe) {
670                                                         LOGGER.error("IOException: ", ioe);
671                                                 }
672                                                 // call listAllMirrorMaker
673                                                 mirrorService.pushEvents(ctx, topic, inStream, null, null);
674
675                                                 // subscribe for listMirrorMaker
676                                                 long startTime = System.currentTimeMillis();
677                                                 String msgFrmSubscribe = mirrorService.subscribe(ctx, topic, consumergroup, consumerid);
678
679                                                 while (!isListMirrorMaker(msgFrmSubscribe, randomStr)
680                                                                 && (System.currentTimeMillis() - startTime) < timeout) {
681                                                         msgFrmSubscribe = mirrorService.subscribe(ctx, topic, consumergroup, consumerid);
682                                                 }
683
684                                                 if (msgFrmSubscribe != null && msgFrmSubscribe.length() > 0
685                                                                 && isListMirrorMaker(msgFrmSubscribe, randomStr)) {
686                                                         
687                                                         JSONArray listMirrorMaker;
688                                                         listMirrorMaker = getListMirrorMaker(msgFrmSubscribe, randomStr);
689
690                                                         String whitelist = null;
691                                                         for (int i = 0; i < listMirrorMaker.length(); i++) {
692
693                                                                 JSONObject mm;
694                                                                 mm = listMirrorMaker.getJSONObject(i);
695                                                                 String name = mm.getString("name");
696
697                                                                 if (name.equals(jsonOb.getString("name")) && mm.has("whitelist")) {
698                                                                         whitelist = mm.getString("whitelist");
699                                                                         break;
700                                                                 }
701                                                         }
702
703                                                         if (!StringUtils.isBlank(whitelist)) {
704
705                                                                 List<String> topicList = new ArrayList<>();
706                                                                 List<String> finalTopicList = new ArrayList<>();
707                                                                 topicList = Arrays.asList(whitelist.split(","));
708
709                                                                 for (String topic : topicList) {
710                                                                         if (topic != null && !topic.equals("null")
711                                                                                         && getNamespace(topic).equals(jsonOb.getString(NAMESPACE))) {
712
713                                                                                 finalTopicList.add(topic);
714                                                                         }
715                                                                 }
716
717                                                                 String topicNames = "";
718
719                                                                 if (!finalTopicList.isEmpty()) {
720                                                                         topicNames = StringUtils.join(finalTopicList, ",");
721                                                                 }
722
723                                                                 JSONObject listAllWhiteList = new JSONObject();
724                                                                 listAllWhiteList.put("name", jsonOb.getString("name"));
725                                                                 listAllWhiteList.put("whitelist", topicNames);
726
727                                                                 DMaaPResponseBuilder.respondOk(ctx, listAllWhiteList);
728                                                         }
729
730                                                 } else {
731
732                                                         JSONObject err = new JSONObject();
733                                                         err.append(ERROR,
734                                                                         "listWhiteList is not available, please make sure MirrorMakerAgent is running");
735                                                         DMaaPResponseBuilder.respondOk(ctx, err);
736                                                 }
737
738                                         } else {
739                                                 sendErrResponse(ctx, NO_USER_CREATE_PERMISSION);
740                                         }
741
742                                 } else {
743
744                                         sendErrResponse(ctx, "This is not a ListAllWhitelist request. Please try again.");
745                                 }
746
747                         } catch (IOException | CambriaApiException | ConfigDbException | AccessDeniedException
748                                         | TopicExistsException | missingReqdSetting | UnavailableException e) {
749
750                                 LOGGER.error("IOException: ", e);
751                         }
752                 } else {
753                         sendErrResponse(ctx, NO_USER_PERMISSION);
754                 }
755         }
756
757         @SuppressWarnings("unchecked")
758         @POST
759         @Produces("application/json")
760         @Path("/createwhitelist")
761         public void createWhiteList(InputStream msg) {
762
763                 DMaaPContext ctx = getDmaapContext();
764                 if (checkMirrorMakerPermission(ctx,
765                                 AJSCPropertiesMap.getProperty(CambriaConstants.msgRtr_prop, MIRROR_MAKERUSER))) {
766
767                         loadProperty();
768                         String input = null;
769
770                         try {
771                                 input = IOUtils.toString(msg, UTF_8);
772
773                                 if (input != null && input.length() > 0) {
774                                         input = removeExtraChar(input);
775                                 }
776
777                                 // Check if it is correct Json object
778                                 JSONObject jsonOb = null;
779
780                                 try {
781                                         jsonOb = new JSONObject(input);
782
783                                 } catch (JSONException ex) {
784
785                                         sendErrResponse(ctx, errorMessages.getIncorrectJson());
786                                         LOGGER.error("JSONException: ", ex);
787                                 }
788
789                                 // Check if the request has name and name contains only alpha numeric,
790                                 // check if the request has namespace and
791                                 // check if the request has whitelistTopicName
792                                 // check if the topic name contains only alpha numeric
793                                 if (jsonOb != null && jsonOb.length() == 3 && jsonOb.has("name")
794                                                 && !StringUtils.isBlank(jsonOb.getString("name")) 
795                                                 && isAlphaNumeric(jsonOb.getString("name")) 
796                                                 && jsonOb.has(NAMESPACE) && !StringUtils.isBlank(jsonOb.getString(NAMESPACE))
797                                                 && jsonOb.has("whitelistTopicName") && !StringUtils.isBlank(jsonOb.getString("whitelistTopicName"))
798                                                 && isAlphaNumeric(jsonOb.getString("whitelistTopicName").substring(jsonOb.getString("whitelistTopicName").lastIndexOf(".")+1, 
799                                                                 jsonOb.getString("whitelistTopicName").length()))) {
800
801                                         String permission = AJSCPropertiesMap.getProperty(CambriaConstants.msgRtr_prop,
802                                                         "msgRtr.mirrormakeruser.aaf.create") + jsonOb.getString(NAMESPACE) + "|create";
803
804                                         // Check if the user have create permission for the
805                                         // namespace
806                                         if (checkMirrorMakerPermission(ctx, permission)) {
807
808                                                 JSONObject listAll = new JSONObject();
809                                                 JSONObject emptyObject = new JSONObject();
810
811                                                 // Create a listAllMirrorMaker Json object
812                                                 try {
813                                                         listAll.put("listAllMirrorMaker", emptyObject);
814
815                                                 } catch (JSONException e) {
816
817                                                         LOGGER.error("JSONException: ", e);
818                                                 }
819
820                                                 // set a random number as messageID
821                                                 String randomStr = getRandomNum();
822                                                 listAll.put("messageID", randomStr);
823                                                 InputStream inStream = null;
824
825                                                 // convert listAll Json object to InputStream object
826                                                 try {
827                                                         inStream = IOUtils.toInputStream(listAll.toString(), UTF_8);
828
829                                                 } catch (IOException ioe) {
830                                                         ioe.printStackTrace();
831                                                         LOGGER.error("IOException: ", ioe);
832                                                 }
833                                                 // call listAllMirrorMaker
834                                                 mirrorService.pushEvents(ctx, topic, inStream, null, null);
835
836                                                 // subscribe for listMirrorMaker
837                                                 long startTime = System.currentTimeMillis();
838                                                 String msgFrmSubscribe = mirrorService.subscribe(ctx, topic, consumergroup, consumerid);
839
840                                                 while (!isListMirrorMaker(msgFrmSubscribe, randomStr)
841                                                                 && (System.currentTimeMillis() - startTime) < timeout) {
842                                                         msgFrmSubscribe = mirrorService.subscribe(ctx, topic, consumergroup, consumerid);
843                                                 }
844
845                                                 JSONArray listMirrorMaker;
846
847                                                 if (msgFrmSubscribe != null && msgFrmSubscribe.length() > 0
848                                                                 && isListMirrorMaker(msgFrmSubscribe, randomStr)) {
849                                                         
850                                                         listMirrorMaker = getListMirrorMaker(msgFrmSubscribe, randomStr);
851                                                         String whitelist = null;
852
853                                                         for (int i = 0; i < listMirrorMaker.length(); i++) {
854                                                                 JSONObject mm;
855                                                                 mm = listMirrorMaker.getJSONObject(i);
856                                                                 String name = mm.getString("name");
857
858                                                                 if (name.equals(jsonOb.getString("name")) && mm.has("whitelist")) {
859                                                                         whitelist = mm.getString("whitelist");
860                                                                         break;
861                                                                 }
862                                                         }
863
864                                                         List<String> topicList = new ArrayList<>();
865                                                         List<String> finalTopicList = new ArrayList<>();
866
867                                                         if (whitelist != null) {
868                                                                 topicList = Arrays.asList(whitelist.split(","));
869                                                         }
870
871                                                         for (String st : topicList) {
872                                                                 if (!StringUtils.isBlank(st)) {
873                                                                         finalTopicList.add(st);
874                                                                 }
875                                                         }
876
877                                                         String newTopic = jsonOb.getString("whitelistTopicName");
878
879                                                         if (!topicList.contains(newTopic)
880                                                                         && getNamespace(newTopic).equals(jsonOb.getString(NAMESPACE))) {
881
882                                                                 UpdateWhiteList updateWhiteList = new UpdateWhiteList();
883                                                                 MirrorMaker mirrorMaker = new MirrorMaker();
884                                                                 mirrorMaker.setName(jsonOb.getString("name"));
885                                                                 finalTopicList.add(newTopic);
886                                                                 String newWhitelist = "";
887
888                                                                 if (!finalTopicList.isEmpty()) {
889                                                                         newWhitelist = StringUtils.join(finalTopicList, ",");
890                                                                 }
891
892                                                                 mirrorMaker.setWhitelist(newWhitelist);
893
894                                                                 String newRandom = getRandomNum();
895                                                                 updateWhiteList.setMessageID(newRandom);
896                                                                 updateWhiteList.setUpdateWhiteList(mirrorMaker);
897
898                                                                 Gson g = new Gson();
899                                                                 g.toJson(updateWhiteList);
900                                                                 InputStream inputStream;
901                                                                 inputStream = IOUtils.toInputStream(g.toJson(updateWhiteList), UTF_8);
902                                                                 // callPubSub(newRandom, ctx, inputStream);
903                                                                 callPubSubForWhitelist(newRandom, ctx, inputStream, jsonOb.getString(NAMESPACE));
904
905                                                         } else if (topicList.contains(newTopic)) {
906                                                                 sendErrResponse(ctx, "The topic already exist.");
907
908                                                         } else if (!getNamespace(newTopic).equals(jsonOb.getString(NAMESPACE))) {
909                                                                 sendErrResponse(ctx,
910                                                                                 "The namespace of the topic does not match with the namespace you provided.");
911                                                         }
912                                                 } else {
913
914                                                         JSONObject err = new JSONObject();
915                                                         err.append(ERROR,
916                                                                         "listWhiteList is not available, please make sure MirrorMakerAgent is running");
917                                                         DMaaPResponseBuilder.respondOk(ctx, err);
918                                                 }
919
920                                         } else {
921                                                 sendErrResponse(ctx, NO_USER_CREATE_PERMISSION);
922                                         }
923
924                                 } else {
925
926                                         sendErrResponse(ctx, "This is not a createWhitelist request. Please try again.");
927                                 }
928
929                         } catch (IOException | CambriaApiException | ConfigDbException | AccessDeniedException
930                                         | TopicExistsException | missingReqdSetting | UnavailableException e) {
931
932                                 LOGGER.error("IOException: ", e);
933                         }
934                 }
935                 // Send error response if user does not provide Authorization
936                 else {
937                         sendErrResponse(ctx, NO_USER_PERMISSION);
938                 }
939         }
940
941         @SuppressWarnings("unchecked")
942         @POST
943         @Produces("application/json")
944         @Path("/deletewhitelist")
945         public void deleteWhiteList(InputStream msg) {
946
947                 DMaaPContext ctx = getDmaapContext();
948                 if (checkMirrorMakerPermission(ctx,
949                                 AJSCPropertiesMap.getProperty(CambriaConstants.msgRtr_prop, MIRROR_MAKERUSER))) {
950
951                         loadProperty();
952                         String input = null;
953
954                         try {
955                                 input = IOUtils.toString(msg, UTF_8);
956
957                                 if (input != null && input.length() > 0) {
958                                         input = removeExtraChar(input);
959                                 }
960
961                                 // Check if it is correct Json object
962                                 JSONObject jsonOb = null;
963
964                                 try {
965                                         jsonOb = new JSONObject(input);
966
967                                 } catch (JSONException ex) {
968
969                                         sendErrResponse(ctx, errorMessages.getIncorrectJson());
970                                         LOGGER.error("JSONException: ", ex);
971                                 }
972
973                                 // Check if the request has name and name contains only alpha numeric,
974                                 // check if the request has namespace and
975                                 // check if the request has whitelistTopicName
976                                 if (jsonOb != null && jsonOb.length() == 3 && jsonOb.has("name") && isAlphaNumeric(jsonOb.getString("name"))
977                                                 && jsonOb.has(NAMESPACE) && jsonOb.has("whitelistTopicName") 
978                                                 && isAlphaNumeric(jsonOb.getString("whitelistTopicName").substring(jsonOb.getString("whitelistTopicName").lastIndexOf(".")+1, 
979                                                                 jsonOb.getString("whitelistTopicName").length()))) {
980
981                                         String permission = AJSCPropertiesMap.getProperty(CambriaConstants.msgRtr_prop,
982                                                         "msgRtr.mirrormakeruser.aaf.create") + jsonOb.getString(NAMESPACE) + "|create";
983
984                                         // Check if the user have create permission for the
985                                         // namespace
986                                         if (checkMirrorMakerPermission(ctx, permission)) {
987
988                                                 JSONObject listAll = new JSONObject();
989                                                 JSONObject emptyObject = new JSONObject();
990
991                                                 // Create a listAllMirrorMaker Json object
992                                                 try {
993                                                         listAll.put("listAllMirrorMaker", emptyObject);
994
995                                                 } catch (JSONException e) {
996
997                                                         LOGGER.error("JSONException: ", e);
998                                                 }
999
1000                                                 // set a random number as messageID
1001                                                 String randomStr = getRandomNum();
1002                                                 listAll.put("messageID", randomStr);
1003                                                 InputStream inStream = null;
1004
1005                                                 // convert listAll Json object to InputStream object
1006                                                 try {
1007                                                         inStream = IOUtils.toInputStream(listAll.toString(), UTF_8);
1008
1009                                                 } catch (IOException ioe) {
1010                                                         ioe.printStackTrace();
1011                                                         LOGGER.error("IOException: ", ioe);
1012                                                 }
1013                                                 // call listAllMirrorMaker
1014                                                 mirrorService.pushEvents(ctx, topic, inStream, null, null);
1015
1016                                                 // subscribe for listMirrorMaker
1017                                                 long startTime = System.currentTimeMillis();
1018                                                 String msgFrmSubscribe = mirrorService.subscribe(ctx, topic, consumergroup, consumerid);
1019
1020                                                 while (!isListMirrorMaker(msgFrmSubscribe, randomStr)
1021                                                                 && (System.currentTimeMillis() - startTime) < timeout) {
1022                                                         msgFrmSubscribe = mirrorService.subscribe(ctx, topic, consumergroup, consumerid);
1023                                                 }
1024
1025                                                 JSONObject jsonObj;
1026                                                 JSONArray jsonArray;
1027                                                 JSONArray listMirrorMaker = null;
1028
1029                                                 if (msgFrmSubscribe != null && msgFrmSubscribe.length() > 0
1030                                                                 && isListMirrorMaker(msgFrmSubscribe, randomStr)) {
1031                                                         msgFrmSubscribe = removeExtraChar(msgFrmSubscribe);
1032                                                         jsonArray = new JSONArray(msgFrmSubscribe);
1033
1034                                                         for (int i = 0; i < jsonArray.length(); i++) {
1035                                                                 jsonObj = jsonArray.getJSONObject(i);
1036                                                                 
1037                                                                 JSONObject obj = new JSONObject();
1038                                                                 if (jsonObj.has(MESSAGE)) {
1039                                                                         obj = jsonObj.getJSONObject(MESSAGE);
1040                                                                 }
1041                                                                 if (obj.has("messageID") && obj.get("messageID").equals(randomStr) && obj.has(LISTMIRRORMAKER)) {
1042                                                                         listMirrorMaker = obj.getJSONArray(LISTMIRRORMAKER);
1043                                                                         break;
1044                                                                 }
1045                                                         }
1046                                                         String whitelist = null;
1047                                                         if (listMirrorMaker != null) {
1048                                                                 for (int i = 0; i < listMirrorMaker.length(); i++) {
1049
1050                                                                         JSONObject mm = new JSONObject();
1051                                                                         mm = listMirrorMaker.getJSONObject(i);
1052                                                                         String name = mm.getString("name");
1053
1054                                                                         if (name.equals(jsonOb.getString("name")) && mm.has("whitelist")) {
1055                                                                                 whitelist = mm.getString("whitelist");
1056                                                                                 break;
1057                                                                         }
1058                                                                 }
1059                                                         }
1060
1061                                                         List<String> topicList = new ArrayList<>();
1062
1063                                                         if (whitelist != null) {
1064                                                                 topicList = Arrays.asList(whitelist.split(","));
1065                                                         }
1066                                                         boolean removeTopic = false;
1067                                                         String topicToRemove = jsonOb.getString("whitelistTopicName");
1068
1069                                                         if (topicList.contains(topicToRemove)) {
1070                                                                 removeTopic = true;
1071                                                         } else {
1072                                                                 sendErrResponse(ctx, "The topic does not exist.");
1073                                                         }
1074
1075
1076                                                         if (removeTopic) {
1077                                                                 UpdateWhiteList updateWhiteList = new UpdateWhiteList();
1078                                                                 MirrorMaker mirrorMaker = new MirrorMaker();
1079                                                                 
1080                                                                 mirrorMaker.setName(jsonOb.getString("name"));
1081                                                                 mirrorMaker.setWhitelist(removeTopic(whitelist, topicToRemove));
1082                                                         
1083                                                                 String newRandom = getRandomNum();
1084                                                                 
1085                                                                 updateWhiteList.setMessageID(newRandom);
1086                                                                 updateWhiteList.setUpdateWhiteList(mirrorMaker);
1087                                                                 
1088                                                                 Gson g = new Gson();
1089                                                                 g.toJson(updateWhiteList);
1090                                                                 
1091                                                                 InputStream inputStream;
1092                                                                 inputStream = IOUtils.toInputStream(g.toJson(updateWhiteList), UTF_8);
1093                                                                 callPubSubForWhitelist(newRandom, ctx, inputStream, getNamespace(topicToRemove));
1094                                                         }
1095
1096                                                 } else {
1097
1098                                                         JSONObject err = new JSONObject();
1099                                                         err.append(ERROR,
1100                                                                         "listWhiteList is not available, please make sure MirrorMakerAgent is running");
1101                                                         DMaaPResponseBuilder.respondOk(ctx, err);
1102                                                 }
1103
1104                                         } else {
1105                                                 sendErrResponse(ctx, NO_USER_CREATE_PERMISSION);
1106                                         }
1107
1108                                 } else {
1109
1110                                         sendErrResponse(ctx, "This is not a DeleteAllWhitelist request. Please try again.");
1111                                 }
1112
1113                         } catch (IOException | CambriaApiException | ConfigDbException | AccessDeniedException
1114                                         | TopicExistsException | missingReqdSetting | UnavailableException e) {
1115
1116                                 LOGGER.error("IOException: ", e);
1117                         }
1118                 }
1119                 // Send error response if user does not provide Authorization
1120                 else {
1121                         sendErrResponse(ctx, NO_USER_PERMISSION);
1122                 }
1123         }
1124
1125         private String getNamespace(String topic) {
1126                 return topic.substring(0, topic.lastIndexOf("."));
1127         }
1128
1129         private String removeTopic(String whitelist, String topicToRemove) {
1130                 List<String> topicList = new ArrayList<>();
1131                 List<String> newTopicList = new ArrayList<>();
1132
1133                 if (whitelist.contains(",")) {
1134                         topicList = Arrays.asList(whitelist.split(","));
1135
1136                 }
1137
1138                 if (topicList.contains(topicToRemove)) {
1139                         for (String topic: topicList) {
1140                                 if (!topic.equals(topicToRemove)) {
1141                                         newTopicList.add(topic);
1142                                 }
1143                         }
1144                 }
1145
1146                 String newWhitelist = StringUtils.join(newTopicList, ",");
1147
1148                 return newWhitelist;
1149         }
1150
1151         private void callPubSubForWhitelist(String randomStr, DMaaPContext ctx, InputStream inStream, String namespace) {
1152                 
1153                 try {
1154                         mirrorService.pushEvents(ctx, topic, inStream, null, null);
1155                         long startTime = System.currentTimeMillis();
1156                         String msgFrmSubscribe = mirrorService.subscribe(ctx, topic, consumergroup, consumerid);
1157
1158                         while (!isListMirrorMaker(msgFrmSubscribe, randomStr)
1159                                         && (System.currentTimeMillis() - startTime) < timeout) {
1160                                 msgFrmSubscribe = mirrorService.subscribe(ctx, topic, consumergroup, consumerid);
1161                         }
1162
1163                         JSONObject jsonObj;
1164                         JSONArray jsonArray;
1165                         JSONArray jsonArrayNamespace = null;
1166
1167                         if (msgFrmSubscribe != null && msgFrmSubscribe.length() > 0
1168                                         && isListMirrorMaker(msgFrmSubscribe, randomStr)) {
1169                                 msgFrmSubscribe = removeExtraChar(msgFrmSubscribe);
1170                                 jsonArray = new JSONArray(msgFrmSubscribe);
1171
1172                                 for (int i = 0; i < jsonArray.length(); i++) {
1173                                         jsonObj = jsonArray.getJSONObject(i);
1174                                         
1175                                         JSONObject obj = new JSONObject();
1176                                         if (jsonObj.has(MESSAGE)) {
1177                                                 obj = jsonObj.getJSONObject(MESSAGE);
1178                                         }
1179                                         if (obj.has("messageID") && obj.get("messageID").equals(randomStr) && obj.has(LISTMIRRORMAKER)) {
1180                                                 jsonArrayNamespace = obj.getJSONArray(LISTMIRRORMAKER);
1181                                         }
1182                                 }
1183                                 JSONObject finalJasonObj = new JSONObject();
1184                                 JSONArray finalJsonArray = new JSONArray();
1185
1186                                 for (int i = 0; i < jsonArrayNamespace.length(); i++) {
1187
1188                                         JSONObject mmObj;
1189                                         mmObj = jsonArrayNamespace.getJSONObject(i);
1190                                         String whitelist;
1191
1192                                         if (mmObj.has("whitelist")) {
1193                                                 whitelist = getWhitelistByNamespace(mmObj.getString("whitelist"), namespace);
1194
1195                                                 if (whitelist != null) {
1196                                                         mmObj.remove("whitelist");
1197                                                         mmObj.put("whitelist", whitelist);
1198                                                 } else {
1199                                                         mmObj.remove("whitelist");
1200                                                 }
1201                                         }
1202                                         finalJsonArray.put(mmObj);
1203                                 }
1204                                 finalJasonObj.put(LISTMIRRORMAKER, finalJsonArray);
1205
1206                                 DMaaPResponseBuilder.respondOk(ctx, finalJasonObj);
1207
1208                         } else {
1209
1210                                 JSONObject err = new JSONObject();
1211                                 err.append(ERROR, "listMirrorMaker is not available, please make sure MirrorMakerAgent is running");
1212                                 DMaaPResponseBuilder.respondOk(ctx, err);
1213                         }
1214
1215                 } catch (Exception e) {
1216                         LOGGER.error("Exception: ", e);
1217                 }
1218         }
1219
1220         private String getWhitelistByNamespace(String originalWhitelist, String namespace) {
1221
1222                 String whitelist = null;
1223                 List<String> resultList = new ArrayList<>();
1224                 List<String> whitelistList = new ArrayList<>();
1225                 whitelistList = Arrays.asList(originalWhitelist.split(","));
1226
1227                 for (String topic : whitelistList) {
1228                         if (StringUtils.isNotBlank(originalWhitelist) && getNamespace(topic).equals(namespace)) {
1229                                 resultList.add(topic);
1230                         }
1231                 }
1232                 if (!resultList.isEmpty()) {
1233                         whitelist = StringUtils.join(resultList, ",");
1234                 }
1235
1236                 return whitelist;
1237         }
1238         
1239         private JSONArray getListMirrorMaker(String msgFrmSubscribe, String randomStr) {
1240                 JSONObject jsonObj;
1241                 JSONArray jsonArray;
1242                 JSONArray listMirrorMaker = new JSONArray();
1243                 
1244                 msgFrmSubscribe = removeExtraChar(msgFrmSubscribe);
1245                 jsonArray = new JSONArray(msgFrmSubscribe);
1246
1247                 for (int i = 0; i < jsonArray.length(); i++) {
1248                         jsonObj = jsonArray.getJSONObject(i);
1249                         
1250                         JSONObject obj = new JSONObject();
1251                         if (jsonObj.has(MESSAGE)) {
1252                                 obj = jsonObj.getJSONObject(MESSAGE);
1253                         }
1254                         if (obj.has("messageID") && obj.get("messageID").equals(randomStr) && obj.has(LISTMIRRORMAKER)) {
1255                                 listMirrorMaker = obj.getJSONArray(LISTMIRRORMAKER);
1256                                 break;
1257                         }
1258                 }
1259                 return listMirrorMaker;         
1260         }
1261 }