Merge "Remove code smells in dashboard"
[nonrtric.git] / dashboard / webapp-backend / src / main / java / org / oransc / ric / portal / dashboard / portalapi / PortalRestCentralServiceImpl.java
1 /*-
2  * ========================LICENSE_START=================================
3  * O-RAN-SC
4  * %%
5  * Copyright (C) 2019 AT&T Intellectual Property
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 package org.oransc.ric.portal.dashboard.portalapi;
21
22 import java.io.IOException;
23 import java.lang.invoke.MethodHandles;
24 import java.util.Map;
25
26 import javax.servlet.http.HttpServletRequest;
27
28 import org.onap.portalsdk.core.onboarding.crossapi.IPortalRestCentralService;
29 import org.onap.portalsdk.core.onboarding.exception.PortalAPIException;
30 import org.onap.portalsdk.core.restful.domain.EcompUser;
31 import org.oransc.ric.portal.dashboard.DashboardUserManager;
32 import org.oransc.ric.portal.dashboard.config.SpringContextCache;
33 import org.slf4j.Logger;
34 import org.slf4j.LoggerFactory;
35 import org.springframework.beans.factory.annotation.Autowired;
36 import org.springframework.context.ApplicationContext;
37
38 /**
39  * Implements the contract used by the Portal to transmit user details to this
40  * on-boarded application. The requests are intercepted first by a servlet in
41  * the EPSDK-FW library, which proxies the calls to these methods.
42  *
43  * An instance of this class is created upon first request to the API. But this
44  * class is found and instantiated via Class.forName(), so cannot use Spring
45  * annotations.
46  */
47 public class PortalRestCentralServiceImpl implements IPortalRestCentralService {
48
49     private static final Logger logger = LoggerFactory.getLogger(MethodHandles.lookup().lookupClass());
50
51     @Autowired
52     private SpringContextCache springContextCache;
53     private final PortalAuthManager authManager;
54     private final DashboardUserManager userManager;
55
56     public PortalRestCentralServiceImpl() throws IOException, PortalAPIException {
57         final ApplicationContext context = springContextCache.getApplicationContext();
58         authManager = context.getBean(PortalAuthManager.class);
59         userManager = context.getBean(DashboardUserManager.class);
60     }
61
62     /*
63      * Answers the Portal API credentials.
64      */
65     @Override
66     public Map<String, String> getAppCredentials() throws PortalAPIException {
67         logger.debug("getAppCredentials");
68         return authManager.getAppCredentials();
69     }
70
71     /*
72      * Extracts the user ID from a cookie in the header
73      */
74     @Override
75     public String getUserId(HttpServletRequest request) throws PortalAPIException {
76         logger.debug("getuserId");
77         return authManager.validateEcompSso(request);
78     }
79
80     @Override
81     public void pushUser(EcompUser user) throws PortalAPIException {
82         logger.debug("pushUser: {}", user);
83         userManager.createUser(user);
84     }
85
86     @Override
87     public void editUser(String loginId, EcompUser user) throws PortalAPIException {
88         logger.debug("editUser: {}", user);
89         userManager.updateUser(loginId, user);
90     }
91
92 }