/* * ***************************************************************************** * Cloud Foundry * Copyright (c) [2009-2016] Pivotal Software, Inc. All Rights Reserved. * This product is licensed to you under the Apache License, Version 2.0 (the "License"). * You may not use this product except in compliance with the License. * * This product includes a number of subcomponents with * separate copyright notices and license terms. Your use of these * subcomponents is subject to the terms and conditions of the * subcomponent's license, as noted in the LICENSE file. * ***************************************************************************** */ package org.cloudfoundry.identity.uaa.authentication; import org.cloudfoundry.identity.uaa.zone.IdentityZoneConfiguration; import org.cloudfoundry.identity.uaa.zone.IdentityZoneHolder; import org.springframework.security.core.Authentication; import org.springframework.security.oauth2.provider.ClientDetailsService; import org.springframework.security.web.authentication.logout.LogoutSuccessHandler; import javax.servlet.ServletException; import javax.servlet.http.Cookie; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import java.io.IOException; public class ZoneAwareWhitelistLogoutHandler implements LogoutSuccessHandler { private final ClientDetailsService clientDetailsService; public ZoneAwareWhitelistLogoutHandler(ClientDetailsService clientDetailsService) { this.clientDetailsService = clientDetailsService; } @Override public void onLogoutSuccess(HttpServletRequest request, HttpServletResponse response, Authentication authentication) throws IOException, ServletException { getZoneHandler().onLogoutSuccess(request, response, authentication); } protected String determineTargetUrl(HttpServletRequest request, HttpServletResponse response) { return getZoneHandler().determineTargetUrl(request, response); } protected WhitelistLogoutHandler getZoneHandler() { IdentityZoneConfiguration config = IdentityZoneHolder.get().getConfig(); if (config==null) { config = new IdentityZoneConfiguration(); } WhitelistLogoutHandler handler = new WhitelistLogoutHandler(config.getLinks().getLogout().getWhitelist()); handler.setTargetUrlParameter(config.getLinks().getLogout().getRedirectParameterName()); handler.setDefaultTargetUrl(config.getLinks().getLogout().getRedirectUrl()); handler.setAlwaysUseDefaultTargetUrl(config.getLinks().getLogout().isDisableRedirectParameter()); handler.setClientDetailsService(clientDetailsService); return handler; } }