aboutsummaryrefslogtreecommitdiffstats
path: root/POLICY-SDK-APP/src/main/java/org/onap/policy/admin/PolicyRestController.java
blob: 76bb0494546d70a7bc477e48e650cd812eec45e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
/*-
 * ============LICENSE_START=======================================================
 * ONAP Policy Engine
 * ================================================================================
 * Copyright (C) 2017-2019 AT&T Intellectual Property. All rights reserved.
 * Modified Copyright (C) 2018 Samsung Electronics Co., Ltd.
 * Modifications Copyright (C) 2019 Bell Canada
 * ================================================================================
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * ============LICENSE_END=========================================================
 */

package org.onap.policy.admin;

import com.att.research.xacml.util.XACMLProperties;
import com.fasterxml.jackson.databind.DeserializationFeature;
import com.fasterxml.jackson.databind.JsonNode;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.databind.SerializationFeature;

import java.io.ByteArrayInputStream;
import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.io.PrintWriter;
import java.net.HttpURLConnection;
import java.net.URL;
import java.nio.charset.StandardCharsets;
import java.util.ArrayList;
import java.util.Base64;
import java.util.List;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import org.apache.commons.fileupload.FileItem;
import org.apache.commons.fileupload.disk.DiskFileItemFactory;
import org.apache.commons.fileupload.servlet.ServletFileUpload;
import org.apache.commons.io.IOUtils;
import org.json.JSONObject;
import org.onap.policy.common.logging.flexlogger.FlexLogger;
import org.onap.policy.common.logging.flexlogger.Logger;
import org.onap.policy.controller.CreateClosedLoopFaultController;
import org.onap.policy.controller.CreateDcaeMicroServiceController;
import org.onap.policy.controller.CreateFirewallController;
import org.onap.policy.controller.CreateOptimizationController;
import org.onap.policy.controller.PolicyController;
import org.onap.policy.rest.XacmlRestProperties;
import org.onap.policy.rest.adapter.PolicyRestAdapter;
import org.onap.policy.rest.dao.CommonClassDao;
import org.onap.policy.rest.jpa.PolicyVersion;
import org.onap.policy.utils.PeCryptoUtils;
import org.onap.policy.utils.PolicyUtils;
import org.onap.policy.xacml.api.XACMLErrorConstants;
import org.onap.portalsdk.core.controller.RestrictedBaseController;
import org.onap.portalsdk.core.web.support.UserUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.HttpEntity;
import org.springframework.http.HttpHeaders;
import org.springframework.http.HttpMethod;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.client.HttpClientErrorException;
import org.springframework.web.client.RestTemplate;
import org.springframework.web.servlet.ModelAndView;

@RestController
@RequestMapping("/")
public class PolicyRestController extends RestrictedBaseController {

    private static final Logger policyLogger = FlexLogger.getLogger(PolicyRestController.class);

    private static final String MODEL = "model";
    private static final String IMPORT_DICTIONARY = "import_dictionary";
    private static final String FILE = "file";
    private static final String TYPE = "type";
    private static final String PATH = "path";
    private static final String NAME = "name";
    private static final String CLOSED_LOOP_FAULT = "ClosedLoop_Fault";
    private static final String FIREWALL_CONFIG = "Firewall Config";
    private static final String MICRO_SERVICE = "Micro Service";
    private static final String OPTIMIZATION = "Optimization";
    private static final String POLICY_NAME = "policyName";
    private static final String SUCCESS = "success";
    private static final String XML = ".xml";
    private static final String UTF_8 = "UTF-8";
    private static final String DATA = "data";
    private static final String USER_ID = "UserId:  ";
    private static final String BASIC = "Basic ";
    private static final String AUTHORIZATION = "Authorization";
    private static final String CONTENT_TYPE = "Content-Type";
    private static final String ONAP = "/onap";

    private static CommonClassDao commonClassDao;

    public PolicyRestController() {
        // default constructor
    }

    @Autowired
    private PolicyRestController(CommonClassDao commonClassDao) {
        PolicyRestController.commonClassDao = commonClassDao;
    }

    public static CommonClassDao getCommonClassDao() {
        return commonClassDao;
    }

    public static void setCommonClassDao(CommonClassDao commonClassDao) {
        PolicyRestController.commonClassDao = commonClassDao;
    }

    /**
     * policyCreationController.
     *
     * @param request Request
     * @param response Response
     */
    @RequestMapping(value = {"/policycreation/save_policy"}, method = {RequestMethod.POST})
    public void policyCreationController(HttpServletRequest request, HttpServletResponse response) {
        ObjectMapper mapper = new ObjectMapper();
        mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false);
        try {
            updateAndSendToPap(request, response, UserUtils.getUserSession(request).getOrgUserId(), mapper);
        } catch (Exception e) {
            policyLogger.error("Exception Occured while saving policy", e);
        }
    }

    private void updateAndSendToPap(HttpServletRequest request, HttpServletResponse response, String userId,
            ObjectMapper mapper) throws IOException {
        JsonNode root = mapper.readTree(request.getReader());
        policyLogger.info(
                "********************Logging UserID while Create/Update Policy***********************************");
        policyLogger.info(USER_ID + userId + "Policy Data Object:  "
                + root.get(PolicyController.getPolicydata()).get("policy").toString());
        policyLogger.info(
                "************************************************************************************************");

        PolicyRestAdapter policyData = mapper.readValue(
                root.get(PolicyController.getPolicydata()).get("policy").toString(), PolicyRestAdapter.class);
        modifyPolicyData(root, policyData);

        if (policyData.getConfigPolicyType() != null) {
            if (CLOSED_LOOP_FAULT.equalsIgnoreCase(policyData.getConfigPolicyType())) {
                policyData = new CreateClosedLoopFaultController().setDataToPolicyRestAdapter(policyData, root);
            } else if (FIREWALL_CONFIG.equalsIgnoreCase(policyData.getConfigPolicyType())) {
                policyData = new CreateFirewallController().setDataToPolicyRestAdapter(policyData);
            } else if (MICRO_SERVICE.equalsIgnoreCase(policyData.getConfigPolicyType())) {
                policyData = new CreateDcaeMicroServiceController().setDataToPolicyRestAdapter(policyData, root);
            } else if (OPTIMIZATION.equalsIgnoreCase(policyData.getConfigPolicyType())) {
                policyData = new CreateOptimizationController().setDataToPolicyRestAdapter(policyData, root);
            }
        }

        policyData.setUserId(userId);

        String result;
        ResponseEntity<?> responseEntity = sendToPap(PolicyUtils.objectToJsonString(policyData),
                request.getRequestURI(), HttpMethod.POST);
        if (responseEntity != null && responseEntity.getBody().equals(HttpServletResponse.SC_CONFLICT)) {
            result = "PolicyExists";
        } else if (responseEntity != null) {
            result = responseEntity.getBody().toString();
            String policyName = responseEntity.getHeaders().get(POLICY_NAME).get(0);
            if (policyData.isEditPolicy() && SUCCESS.equalsIgnoreCase(result)) {
                final PolicyNotificationMail email = new PolicyNotificationMail();
                final String mode = "EditPolicy";
                String watchPolicyName = policyName.replace(XML, "");
                String version = watchPolicyName.substring(watchPolicyName.lastIndexOf('.') + 1);
                watchPolicyName =
                        watchPolicyName.substring(0, watchPolicyName.lastIndexOf('.')).replace(".", File.separator);
                String policyVersionName = watchPolicyName.replace(".", File.separator);
                watchPolicyName = watchPolicyName + "." + version + XML;
                PolicyVersion entityItem = new PolicyVersion();
                entityItem.setPolicyName(policyVersionName);
                entityItem.setActiveVersion(Integer.parseInt(version));
                entityItem.setModifiedBy(userId);
                email.sendMail(entityItem, watchPolicyName, mode, commonClassDao);
            }
        } else {
            result = "Response is null from PAP";
        }

        response.setCharacterEncoding(PolicyController.getCharacterencoding());
        response.setContentType(PolicyController.getContenttype());
        request.setCharacterEncoding(PolicyController.getCharacterencoding());

        PrintWriter out = response.getWriter();
        String responseString = mapper.writeValueAsString(result);
        JSONObject json = new JSONObject("{policyData: " + responseString + "}");
        out.write(json.toString());
    }

    private void modifyPolicyData(JsonNode root, PolicyRestAdapter policyData) {
        if (FILE.equals(root.get(PolicyController.getPolicydata()).get(MODEL).get(TYPE).toString().replace("\"", ""))) {
            policyData.setEditPolicy(true);
        }
        if (root.get(PolicyController.getPolicydata()).get(MODEL).get(PATH).size() != 0) {
            String dirName = "";
            for (int i = 0; i < root.get(PolicyController.getPolicydata()).get(MODEL).get(PATH).size(); i++) {
                dirName = dirName.replace("\"", "") + root.get(PolicyController.getPolicydata()).get(MODEL).get(PATH)
                        .get(i).toString().replace("\"", "") + File.separator;
            }
            if (policyData.isEditPolicy()) {
                policyData.setDomainDir(dirName.substring(0, dirName.lastIndexOf(File.separator)));
            } else {
                policyData.setDomainDir(dirName
                        + root.get(PolicyController.getPolicydata()).get(MODEL).get(NAME).toString().replace("\"", ""));
            }
        } else {
            String domain = root.get(PolicyController.getPolicydata()).get(MODEL).get(NAME).toString();
            if (domain.contains("/")) {
                domain = domain.substring(0, domain.lastIndexOf('/')).replace("/", File.separator);
            }
            domain = domain.replace("\"", "");
            policyData.setDomainDir(domain);
        }
    }

    private ResponseEntity<?> sendToPap(String body, String requestUri, HttpMethod method) {
        String papUrl = PolicyController.getPapUrl();
        String papPass = PeCryptoUtils.decrypt(XACMLProperties.getProperty(XacmlRestProperties.PROP_PAP_PASS));
        String encoding = Base64.getEncoder().encodeToString(
                (XACMLProperties.getProperty(XacmlRestProperties.PROP_PAP_USERID)
                + ":" + papPass).getBytes(StandardCharsets.UTF_8));
        HttpHeaders headers = new HttpHeaders();
        headers.set(AUTHORIZATION, BASIC + encoding);
        headers.set(CONTENT_TYPE, PolicyController.getContenttype());

        RestTemplate restTemplate = new RestTemplate();
        HttpEntity<?> requestEntity = new HttpEntity<>(body, headers);
        ResponseEntity<?> result = null;
        HttpClientErrorException exception = null;
        String uri = requestUri;
        if (uri.startsWith("/")) {
            uri = uri.substring(uri.indexOf('/') + 1);
        }
        uri = "onap" + uri.substring(uri.indexOf('/'));
        try {
            result = restTemplate.exchange(papUrl + uri, method, requestEntity, String.class);
        } catch (Exception e) {
            policyLogger.error(XACMLErrorConstants.ERROR_PROCESS_FLOW + "Error while connecting to " + papUrl, e);
            exception = new HttpClientErrorException(HttpStatus.INTERNAL_SERVER_ERROR, e.getMessage());
            if ("409 Conflict".equals(e.getMessage())) {
                return ResponseEntity.ok(HttpServletResponse.SC_CONFLICT);
            }
        }
        if (exception != null && exception.getStatusCode() != null) {
            if (exception.getStatusCode().equals(HttpStatus.UNAUTHORIZED)) {
                String message = XACMLErrorConstants.ERROR_PERMISSIONS + ":" + exception.getStatusCode() + ":"
                        + "ERROR_AUTH_GET_PERM";
                policyLogger.error(message);
            }
            if (exception.getStatusCode().equals(HttpStatus.BAD_REQUEST)) {
                String message = XACMLErrorConstants.ERROR_DATA_ISSUE + ":" + exception.getStatusCode() + ":"
                        + exception.getResponseBodyAsString();
                policyLogger.error(message);
            }
            if (exception.getStatusCode().equals(HttpStatus.NOT_FOUND)) {
                String message =
                        XACMLErrorConstants.ERROR_PROCESS_FLOW + "Error while connecting to " + papUrl + exception;
                policyLogger.error(message);
            }
            String message = XACMLErrorConstants.ERROR_PROCESS_FLOW + ":" + exception.getStatusCode() + ":"
                    + exception.getResponseBodyAsString();
            policyLogger.error(message);
        }
        return result;
    }

    private String callPap(HttpServletRequest request, String method, String uriValue) {
        PeCryptoUtils.initAesKey(XACMLProperties.getProperty(XacmlRestProperties.PROP_AES_KEY));
        String papPass = PeCryptoUtils.decrypt((XACMLProperties.getProperty(XacmlRestProperties.PROP_PAP_PASS)));

        Base64.Encoder encoder = Base64.getEncoder();
        String encoding = encoder.encodeToString((XACMLProperties.getProperty(XacmlRestProperties.PROP_PAP_USERID)
                + ":" + papPass).getBytes(StandardCharsets.UTF_8));
        HttpHeaders headers = new HttpHeaders();
        headers.set(AUTHORIZATION, BASIC + encoding);
        headers.set(CONTENT_TYPE, PolicyController.getContenttype());

        HttpURLConnection connection = null;
        FileItem item = null;
        File file = null;
        String uri = uriValue;
        if (uri.contains(IMPORT_DICTIONARY)) {
            try {
                List<FileItem> items = new ServletFileUpload(new DiskFileItemFactory()).parseRequest(request);
                item = items.get(0);
                file = new File(item.getName());
                String newFile = file.toString();
                uri = uri + "&dictionaryName=" + newFile;
            } catch (Exception e2) {
                policyLogger.error("Exception Occured while calling PAP with import dictionary request" + e2);
            }
        }

        try {
            URL url = new URL(PolicyController.getPapUrl() + uri);
            connection = (HttpURLConnection) url.openConnection();
            connection.setRequestMethod(method);
            connection.setUseCaches(false);
            connection.setInstanceFollowRedirects(false);
            connection.setRequestProperty(AUTHORIZATION, BASIC + encoding);
            connection.setDoOutput(true);
            connection.setDoInput(true);

            if (uri.contains("searchPolicy?action=delete&")) {
                // do something
                return doConnect(connection);
            }

            checkUri(request, uri, connection, item);

            return doConnect(connection);
        } catch (Exception e) {
            policyLogger.error("Exception Occured" + e);
        } finally {
            if (file != null && file.exists() && file.delete()) {
                policyLogger.info("File Deleted Successfully");
            }
            if (connection != null) {
                try {
                    // For some reason trying to get the inputStream from the connection
                    // throws an exception rather than returning null when the InputStream does not exist.
                    InputStream is = connection.getInputStream();
                    if (is != null) {
                        is.close();
                    }
                } catch (IOException ex) {
                    policyLogger.error(XACMLErrorConstants.ERROR_PROCESS_FLOW + "Failed to close connection: " + ex,
                            ex);
                }
                connection.disconnect();
            }
        }
        return null;
    }

    private void checkUri(HttpServletRequest request, String uri, HttpURLConnection connection, FileItem item)
            throws IOException {
        if (!(uri.endsWith("set_BRMSParamData") || uri.contains(IMPORT_DICTIONARY))) {
            connection.setRequestProperty(CONTENT_TYPE, PolicyController.getContenttype());
            ObjectMapper mapper = new ObjectMapper();
            mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false);
            JsonNode root = getJsonNode(request, mapper);

            ObjectMapper mapper1 = new ObjectMapper();
            mapper1.configure(SerializationFeature.ORDER_MAP_ENTRIES_BY_KEYS, true);

            Object obj = mapper1.treeToValue(root, Object.class);
            String json = mapper1.writeValueAsString(obj);

            // send current configuration
            try (InputStream content = new ByteArrayInputStream(json.getBytes());
                    OutputStream os = connection.getOutputStream()) {
                int count = IOUtils.copy(content, os);
                if (policyLogger.isDebugEnabled()) {
                    policyLogger.debug("copied to output, bytes=" + count);
                }
            }
        } else if (uri.endsWith("set_BRMSParamData")) {
            connection.setRequestProperty(CONTENT_TYPE, PolicyController.getContenttype());
            try (OutputStream os = connection.getOutputStream()) {
                IOUtils.copy(request.getInputStream(), os);
            }
        } else {
            String boundary = "===" + System.currentTimeMillis() + "===";
            connection.setRequestProperty(CONTENT_TYPE, "multipart/form-data; boundary=" + boundary);
            try (OutputStream os = connection.getOutputStream()) {
                if (item != null) {
                    IOUtils.copy(item.getInputStream(), os);
                }
            }
        }
    }

    private JsonNode getJsonNode(HttpServletRequest request, ObjectMapper mapper) {
        JsonNode root = null;
        try {
            root = mapper.readTree(request.getReader());
        } catch (Exception e1) {
            policyLogger.error("Exception Occured while calling PAP" + e1);
        }
        return root;
    }

    private String doConnect(final HttpURLConnection connection) throws IOException {
        connection.connect();
        if (connection.getResponseCode() == 200) {
            // get the response content into a String
            String responseJson = null;
            // read the inputStream into a buffer (trick found online scans entire input looking for end-of-file)
            try (java.util.Scanner scanner = new java.util.Scanner(connection.getInputStream())) {
                scanner.useDelimiter("\\A");
                responseJson = scanner.hasNext() ? scanner.next() : "";
            } catch (Exception e) {
                // Reason for rethrowing the exception is if any exception occurs during reading of inputsteam
                // then the exception handling is done by the outer block without returning the response immediately
                // Also finally block is existing only in outer block and not here so all exception handling is
                // done in only one place
                policyLogger.error("Exception Occured" + e);
                throw e;
            }

            policyLogger.info("JSON response from PAP: " + responseJson);
            return responseJson;
        }
        return null;
    }

    /**
     * getDictionaryController.
     *
     * @param request Request
     * @param response Response
     */
    @RequestMapping(value = {"/getDictionary/*"}, method = {RequestMethod.GET})
    public void getDictionaryController(HttpServletRequest request, HttpServletResponse response) {
        String body;
        ResponseEntity<?> responseEntity = sendToPap(null, request.getRequestURI().replace("/getDictionary", ""),
                HttpMethod.GET);
        if (responseEntity != null) {
            body = responseEntity.getBody().toString();
        } else {
            body = "";
        }
        try {
            response.getWriter().write(body);
        } catch (IOException e) {
            policyLogger.error("Exception occured while getting Dictionary entries", e);
        }
    }

    /**
     * saveDictionaryController.
     *
     * @param request Request
     * @param response Response
     * @throws IOException IO Exception
     */
    @RequestMapping(value = {"/saveDictionary/*/*"}, method = {RequestMethod.POST})
    public void saveDictionaryController(HttpServletRequest request, HttpServletResponse response) throws IOException {
        String userId = "";
        String uri = request.getRequestURI().replace("/saveDictionary", "");
        if (uri.startsWith("/")) {
            uri = uri.substring(uri.indexOf('/') + 1);
        }
        uri = ONAP + uri.substring(uri.indexOf('/'));
        if (uri.contains(IMPORT_DICTIONARY)) {
            userId = UserUtils.getUserSession(request).getOrgUserId();
            uri = uri + "?userId=" + userId;
        }

        policyLogger.info(
                "********************Logging UserID while Saving Dictionary**************************************");
        policyLogger.info(USER_ID + userId);
        policyLogger.info(
                "************************************************************************************************");

        String body = callPap(request, "POST", uri.replaceFirst("/", "").trim());
        if (body != null && !body.isEmpty()) {
            response.getWriter().write(body);
        } else {
            response.getWriter().write("Failed");
        }
    }

    /**
     * deletetDictionaryController.
     *
     * @param request Request
     * @param response Response
     * @throws IOException IO Exception
     */
    @RequestMapping(value = {"/deleteDictionary/*/*"}, method = {RequestMethod.POST})
    public void deletetDictionaryController(HttpServletRequest request, HttpServletResponse response)
            throws IOException {
        String uri = request.getRequestURI().replace("/deleteDictionary", "");
        if (uri.startsWith("/")) {
            uri = uri.substring(uri.indexOf('/') + 1);
        }
        uri = ONAP + uri.substring(uri.indexOf('/'));

        String userId = UserUtils.getUserSession(request).getOrgUserId();
        policyLogger.info(
                "**********************Logging UserID while Deleting Dictionary*************************************");
        policyLogger.info(USER_ID + userId);
        policyLogger.info(
                "***************************************************************************************************");

        String body = callPap(request, "POST", uri.replaceFirst("/", "").trim());
        if (body != null && !body.isEmpty()) {
            response.getWriter().write(body);
        } else {
            response.getWriter().write("Failed");
        }
    }

    /**
     * searchDictionaryController.
     *
     * @param request Request
     * @param response Response
     * @return ModelAndView object
     * @throws IOException IO Exception
     */
    @RequestMapping(value = {"/searchDictionary"}, method = {RequestMethod.POST})
    public ModelAndView searchDictionaryController(HttpServletRequest request, HttpServletResponse response)
            throws IOException {
        Object resultList;
        String uri = request.getRequestURI();
        if (uri.startsWith("/")) {
            uri = uri.substring(uri.indexOf('/') + 1);
        }
        uri = ONAP + uri.substring(uri.indexOf('/'));
        try {
            String body = callPap(request, "POST", uri.replaceFirst("/", "").trim());
            if (body.contains("CouldNotConnectException")) {
                List<String> data = new ArrayList<>();
                data.add("Elastic Search Server is down");
                resultList = data;
            } else {
                resultList = new JSONObject(body).get("policyresult");
            }
        } catch (Exception e) {
            policyLogger.error(
                    XACMLErrorConstants.ERROR_PROCESS_FLOW + "Exception Occured while querying Elastic Search: " + e);
            List<String> data = new ArrayList<>();
            data.add("Elastic Search Server is down");
            resultList = data;
        }

        response.setCharacterEncoding(PolicyController.getCharacterencoding());
        response.setContentType(PolicyController.getContenttype());
        response.getWriter().write(new JSONObject("{result: " + resultList + "}").toString());
        return null;
    }

    /**
     * searchPolicy.
     *
     * @param request request
     * @param response response
     * @return ModelAndView object
     * @throws IOException IO exception
     */
    @RequestMapping(value = {"/searchPolicy"}, method = {RequestMethod.POST})
    public ModelAndView searchPolicy(HttpServletRequest request, HttpServletResponse response) throws IOException {
        Object resultList;
        String uri = request.getRequestURI() + "?action=search";
        if (uri.startsWith("/")) {
            uri = uri.substring(uri.indexOf('/') + 1);
        }
        uri = ONAP + uri.substring(uri.indexOf('/'));
        String body = callPap(request, "POST", uri.replaceFirst("/", "").trim());

        JSONObject json = new JSONObject(body);
        try {
            resultList = json.get("policyresult");
        } catch (Exception e) {
            List<String> data = new ArrayList<>();
            resultList = json.get(DATA);
            data.add("Exception");
            data.add(resultList.toString());
            resultList = data;
            policyLogger.error("Exception Occured while searching for Policy in Elastic Database" + e);
        }

        response.setCharacterEncoding(UTF_8);
        response.setContentType("application / json");
        request.setCharacterEncoding(UTF_8);

        response.getWriter().write(new JSONObject("{result: " + resultList + "}").toString());
        return null;
    }

    public void deleteElasticData(String fileName) {
        String uri = "searchPolicy?action=delete&policyName='" + fileName + "'";
        callPap(null, "POST", uri.trim());
    }

    /**
     * notifyOtherPAPSToUpdateConfigurations.
     *
     * @param mode Mode
     * @param newName New Name
     * @param oldName Old Name
     * @return String
     */
    public String notifyOtherPapsToUpdateConfigurations(String mode, String newName, String oldName) {
        String uri =
                "onap/notifyOtherPAPs?action=" + mode + "&newPolicyName=" + newName + "&oldPolicyName=" + oldName + "";
        return callPap(null, "POST", uri.trim());
    }

}