blob: 0c51e1761886b9710defc221deb932f4aff3276f [file] [log] [blame]
Aharoni, Pavel (pa0916)ca3cb012018-10-22 15:29:57 +03001/*-
2 * ============LICENSE_START=======================================================
3 * OSAM
4 * ================================================================================
5 * Copyright (C) 2018 AT&T
6 * ================================================================================
7 * Licensed under the Apache License, Version 2.0 (the "License");
8 * you may not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
10 *
11 * http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS,
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
18 * ============LICENSE_END=========================================================
19 */
20
21
22
23package org.onap.osam.aai;
24
25import com.fasterxml.jackson.databind.ObjectMapper;
26import org.onap.osam.model.PombaInstance.PombaRequest;
27import org.onap.portalsdk.core.logging.logic.EELFLoggerDelegate;
28import org.onap.portalsdk.core.util.SystemProperties;
29import org.springframework.beans.factory.annotation.Autowired;
30
31import javax.servlet.ServletContext;
32import javax.ws.rs.core.Response;
33import java.io.File;
34import java.text.DateFormat;
35import java.text.SimpleDateFormat;
36import java.util.Date;
37
38public class PombaClientImpl implements PombaClientInterface {
39
40 final static DateFormat dateFormat = new SimpleDateFormat("HH:mm:ss:SSSS");
41 protected String fromAppId = "VidAaiController";
42 EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(AaiClient.class);
43
44 @Autowired
45 ServletContext servletContext;
46
47 @Autowired
48 PombaRestInterface pombaRestInterface;
49
50
51 @Override
52 public void verify(PombaRequest request) {
53 String methodName = "doAaiPost";
54 logger.debug(EELFLoggerDelegate.debugLogger, dateFormat.format(new Date()) + "<== " + methodName + " start");
55 String uri = SystemProperties.getProperty("pomba.server.url");
56
57
58 try {
59 Response response = pombaRestInterface.RestPost(fromAppId, uri, new ObjectMapper().writeValueAsString(request));
60 } catch (Exception e) {
61 logger.info(EELFLoggerDelegate.errorLogger, dateFormat.format(new Date()) + "<== " + "." + methodName + e.toString());
62 logger.debug(EELFLoggerDelegate.debugLogger, dateFormat.format(new Date()) + "<== " + "." + methodName + e.toString());
63 }
64 }
65
66
67 private File getCertificatesFile() {
68 if (servletContext != null)
69 return new File(servletContext.getRealPath("/WEB-INF/cert/"));
70 return null;
71 }
72}