summaryrefslogtreecommitdiffstats
path: root/ecomp-sdk/epsdk-fw/src/main/java/org/onap/portalsdk/core/onboarding/crossapi/PortalRestAPICentralServiceImpl.java
blob: 208e8c3d39bb4e917a165535e45894a8be1d171c (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
/*
 * ============LICENSE_START==========================================
 * ONAP Portal SDK
 * ===================================================================
 * Copyright © 2017 AT&T Intellectual Property. All rights reserved.
 * ===================================================================
 *
 * Unless otherwise specified, all software contained herein is licensed
 * under the Apache License, Version 2.0 (the "License");
 * you may not use this software 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.
 *
 * Unless otherwise specified, all documentation contained herein is licensed
 * under the Creative Commons License, Attribution 4.0 Intl. (the "License");
 * you may not use this documentation except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *             https://creativecommons.org/licenses/by/4.0/
 *
 * Unless required by applicable law or agreed to in writing, documentation
 * 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.portalsdk.core.onboarding.crossapi;

import java.io.IOException;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Set;
import java.util.stream.Collectors;

import javax.servlet.ServletException;
import javax.servlet.http.HttpServletRequest;

import org.onap.portalsdk.core.onboarding.exception.CipherUtilException;
import org.onap.portalsdk.core.onboarding.exception.PortalAPIException;
import org.onap.portalsdk.core.onboarding.rest.RestWebServiceClient;
import org.onap.portalsdk.core.onboarding.util.CipherUtil;
import org.onap.portalsdk.core.onboarding.util.PortalApiConstants;
import org.onap.portalsdk.core.onboarding.util.PortalApiProperties;
import org.onap.portalsdk.core.restful.domain.EcompRole;
import org.onap.portalsdk.core.restful.domain.EcompUser;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;

import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.databind.type.TypeFactory;

public class PortalRestAPICentralServiceImpl implements IPortalRestAPIService {

	private static final Log logger = LogFactory.getLog(PortalRestAPICentralServiceImpl.class);
	private String username;
	private String password;
	private String appName;
	IPortalRestCentralService portalRestCentralService;
	public static final String API_VERSION = "/v4";
	private static String portalApiVersion = "/v3";

	public PortalRestAPICentralServiceImpl() throws ServletException {
		String centralClassName = PortalApiProperties.getProperty(PortalApiConstants.PORTAL_API_IMPL_CLASS);
		if (centralClassName == null)
			throw new ServletException(
					"init: Failed to find class name property " + PortalApiConstants.PORTAL_API_IMPL_CLASS);
		try {
			Class<?> centralImplClass = Class.forName(centralClassName);
			portalRestCentralService = (IPortalRestCentralService) (centralImplClass.getConstructor().newInstance());
			username = portalRestCentralService.getAppCredentials().get("username");
			password = portalRestCentralService.getAppCredentials().get("password");
			appName = portalRestCentralService.getAppCredentials().get("appName");
		} catch (Exception e) {
			throw new ClassCastException("Failed to find or instantiate class ");
		}
	}

	private final ObjectMapper mapper = new ObjectMapper();

	@Override
	public void pushUser(EcompUser user) throws PortalAPIException {
		portalRestCentralService.pushUser(user);
	}

	@Override
	public void editUser(String loginId, EcompUser user) throws PortalAPIException {
		portalRestCentralService.editUser(loginId, user);
	}

	@Override
	public EcompUser getUser(String loginId) throws PortalAPIException {
		EcompUser user = new EcompUser();
		String responseString = null;
		try {
			responseString = RestWebServiceClient.getInstance().getPortalContent(API_VERSION + "/user/" + loginId, null,
					appName, null, username, password, true);
			logger.debug("responseString is: " + responseString);
			user = mapper.readValue(responseString, EcompUser.class);

		} catch (IOException e) {
			String response = "PortalRestAPICentralServiceImpl.getUser failed";
			logger.error(response, e);
			throw new PortalAPIException(response, e);
		}
		return user;
	}

	@Override
	public List<EcompUser> getUsers() throws PortalAPIException {
		List<EcompUser> usersList = new ArrayList<>();
		String responseString = null;
		try {
			responseString = RestWebServiceClient.getInstance().getPortalContent(portalApiVersion + "/users", null, appName, null,
					username, password, true);
			logger.debug("responseString is: " + responseString);
			usersList = mapper.readValue(responseString,
					TypeFactory.defaultInstance().constructCollectionType(List.class, EcompUser.class));

		} catch (IOException e) {
			String response = "PortalRestAPICentralServiceImpl.getUsers failed";
			logger.error(response, e);
			throw new PortalAPIException(response, e);
		}
		return usersList;
	}

	@Override
	public List<EcompRole> getAvailableRoles(String requestedLoginId) throws PortalAPIException {
		List<EcompRole> rolesList = new ArrayList<>();
		String responseString = null;
		try {
			responseString = RestWebServiceClient.getInstance().getPortalContent(API_VERSION + "/roles", requestedLoginId,
					appName, null, username, password, true);
			logger.debug("responseString is: " + responseString);
			rolesList = mapper.readValue(responseString,
					TypeFactory.defaultInstance().constructCollectionType(List.class, EcompRole.class));

		} catch (IOException e) {
			String response = "PortalRestAPICentralServiceImpl.getRoles failed";
			logger.error(response, e);
			throw new PortalAPIException(response, e);
		}
		return rolesList;
	}

	@Override
	public void pushUserRole(String loginId, List<EcompRole> roles) throws PortalAPIException {
		throw new PortalAPIException("Please use Portal for Role Management");

	}

	@SuppressWarnings("unchecked")
	@Override
	public List<EcompRole> getUserRoles(String loginId) throws PortalAPIException {
		List<EcompRole> userRoles = new ArrayList<>();
		EcompUser user = new EcompUser();
		String responseString = null;
		try {
			responseString = RestWebServiceClient.getInstance().getPortalContent(API_VERSION + "/user/" + loginId, null,
					appName, null, username, password, true);
			logger.debug("responseString is: " + responseString);
			user = mapper.readValue(responseString, EcompUser.class);
			Set roles = user.getRoles();
			userRoles = (List<EcompRole>) roles.stream().collect(Collectors.toList());

		} catch (IOException e) {
			String response = "PortalRestAPICentralServiceImpl.getUserRoles failed";
			logger.error(response, e);
			throw new PortalAPIException(response, e);
		}
		return userRoles;
	}

	@Override
	public boolean isAppAuthenticated(HttpServletRequest request) throws PortalAPIException {
		boolean response = false;
		try {
			String restUser = request.getHeader("username");
			String restPw = request.getHeader("password");
			response = restUser != null && restPw != null && restUser.equals(username) && restPw.equals(password);
			logger.debug("isAppAuthenticated: " + response);
		} catch (Exception ex) {
			throw new PortalAPIException("isAppAuthenticated failed", ex);
		}
		return response;
	}

	@Override
	public String getUserId(HttpServletRequest request) throws PortalAPIException {
		return portalRestCentralService.getUserId(request);
	}
	
	@Override
	public Map<String, String> getCredentials() throws PortalAPIException{
		Map<String, String> credentialsMap = new HashMap<>();

		credentialsMap.put("username", username);
		credentialsMap.put("password", password);
		credentialsMap.put("appName", appName);
		return credentialsMap;
	}

}