2 * ================================================================================
4 * ================================================================================
5 * Copyright (C) 2017 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
11 * http://www.apache.org/licenses/LICENSE-2.0
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 * ================================================================================
20 package org.openecomp.portalapp.controller.core;
22 import java.util.HashMap;
25 import javax.servlet.http.HttpServletRequest;
26 import javax.servlet.http.HttpServletResponse;
28 import org.openecomp.portalsdk.core.auth.LoginStrategy;
29 import org.openecomp.portalsdk.core.controller.UnRestrictedBaseController;
30 import org.openecomp.portalsdk.core.onboarding.listener.PortalTimeoutHandler;
31 import org.openecomp.portalsdk.core.service.LoginService;
32 import org.openecomp.portalsdk.core.service.ProfileService;
33 import org.openecomp.portalsdk.core.web.support.AppUtils;
34 import org.springframework.beans.factory.annotation.Autowired;
35 import org.springframework.stereotype.Controller;
36 import org.springframework.web.bind.annotation.RequestMapping;
37 import org.springframework.web.bind.annotation.RequestMethod;
38 import org.springframework.web.servlet.ModelAndView;
42 public class SDKLoginController extends UnRestrictedBaseController {
44 ProfileService service;
46 private LoginService loginService;
48 private LoginStrategy loginStrategy;
50 private String viewName;
52 @RequestMapping(value = { "/login.htm" }, method = RequestMethod.GET)
53 public ModelAndView login(HttpServletRequest request) {
54 Map<String, Object> model = new HashMap<String, Object>();
55 return new ModelAndView("login", "model", model);
58 @RequestMapping(value = { "/login_external.htm" }, method = RequestMethod.GET)
59 public ModelAndView externalLogin(HttpServletRequest request) {
60 Map<String, Object> model = new HashMap<String, Object>();
61 return new ModelAndView("login_external", "model", model);
64 @RequestMapping(value = { "/login_external" }, method = RequestMethod.POST)
65 public ModelAndView doexternalLogin(HttpServletRequest request, HttpServletResponse response) throws Exception {
66 return loginStrategy.doExternalLogin(request, response);
69 @RequestMapping(value = { "/doLogin" }, method = RequestMethod.GET)
70 public ModelAndView doLogin(HttpServletRequest request, HttpServletResponse response) throws Exception {
71 return loginStrategy.doLogin(request, response);
74 public String getJessionId(HttpServletRequest request) {
75 return request.getSession().getId();
78 protected void initateSessionMgtHandler(HttpServletRequest request) {
79 String jSessionId = getJessionId(request);
80 PortalTimeoutHandler.sessionCreated(jSessionId, jSessionId, AppUtils.getSession(request));
83 public String getViewName() {
87 public void setViewName(String viewName) {
88 this.viewName = viewName;
91 public LoginService getLoginService() {
95 public void setLoginService(LoginService loginService) {
96 this.loginService = loginService;