/** * Copyright (c) 2000-present Liferay, Inc. All rights reserved. * * This library is free software; you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License as published by the Free * Software Foundation; either version 2.1 of the License, or (at your option) * any later version. * * This library is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. */ package com.liferay.login.authentication.openid.connect.web.internal.servlet.taglib; import com.liferay.portal.kernel.log.Log; import com.liferay.portal.kernel.log.LogFactoryUtil; import com.liferay.portal.kernel.servlet.taglib.BaseDynamicInclude; import com.liferay.portal.kernel.servlet.taglib.DynamicInclude; import com.liferay.portal.kernel.theme.ThemeDisplay; import com.liferay.portal.kernel.util.ParamUtil; import com.liferay.portal.kernel.util.WebKeys; import com.liferay.portal.security.sso.openid.connect.OpenIdConnect; import com.liferay.portal.security.sso.openid.connect.OpenIdConnectProviderRegistry; import com.liferay.portal.security.sso.openid.connect.constants.OpenIdConnectWebKeys; import java.io.IOException; import java.util.Collection; import javax.servlet.RequestDispatcher; import javax.servlet.ServletContext; import javax.servlet.ServletException; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import org.osgi.service.component.annotations.Component; import org.osgi.service.component.annotations.Reference; /** * @author Michael C. Han */ @Component(immediate = true, service = DynamicInclude.class) public class OpenIdConnectNavigationPreDynamicInclude extends BaseDynamicInclude { @Override public void include( HttpServletRequest request, HttpServletResponse response, String key) throws IOException { Collection<String> openIdConnectProviderNames = _openIdConnectProviderRegistry.getOpenIdConnectProviderNames(); if (openIdConnectProviderNames.isEmpty()) { return; } String mvcRenderCommandName = ParamUtil.getString( request, "mvcRenderCommandName"); ThemeDisplay themeDisplay = (ThemeDisplay)request.getAttribute( WebKeys.THEME_DISPLAY); if (mvcRenderCommandName.equals( OpenIdConnectWebKeys.OPEN_ID_CONNECT_REQUEST_ACTION_NAME) || !_openIdConnect.isEnabled(themeDisplay.getCompanyId())) { return; } RequestDispatcher requestDispatcher = _servletContext.getRequestDispatcher(_JSP_PATH); try { requestDispatcher.include(request, response); } catch (ServletException se) { _log.error("Unable to include JSP " + _JSP_PATH, se); throw new IOException("Unable to include JSP " + _JSP_PATH, se); } } @Override public void register( DynamicInclude.DynamicIncludeRegistry dynamicIncludeRegistry) { dynamicIncludeRegistry.register( "com.liferay.login.web#/navigation.jsp#pre"); } private static final String _JSP_PATH = "/com.liferay.login.web/navigation/openid_connect.jsp"; private static final Log _log = LogFactoryUtil.getLog( OpenIdConnectNavigationPreDynamicInclude.class); @Reference private OpenIdConnect _openIdConnect; @Reference private OpenIdConnectProviderRegistry _openIdConnectProviderRegistry; @Reference( target = "(osgi.web.symbolicname=com.liferay.login.authentication.openid.connect.web)" ) private ServletContext _servletContext; }